Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1387012 > unrolled thread

[PATCH] block: copy NOMERGE flag from bio to request

Started byShaohua Li <shli@fb.com>
First post2016-04-26 02:00 +0200
Last post2016-04-26 03:20 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] block: copy NOMERGE flag from bio to request Shaohua Li <shli@fb.com> - 2016-04-26 02:00 +0200
    Re: [PATCH] block: copy NOMERGE flag from bio to request Jens Axboe <axboe@kernel.dk> - 2016-04-26 03:20 +0200

#1387012 — [PATCH] block: copy NOMERGE flag from bio to request

FromShaohua Li <shli@fb.com>
Date2016-04-26 02:00 +0200
Subject[PATCH] block: copy NOMERGE flag from bio to request
Message-ID<rrYA2-67A-15@gated-at.bofh.it>
bio might have NOMERGE flag set, for example blk_queue_split sets it.
When we initiate request, copy this flag too.

Signed-off-by: Shaohua Li <shli@fb.com>
---
 include/linux/blk_types.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/blk_types.h b/include/linux/blk_types.h
index 86a38ea..77e5d81 100644
--- a/include/linux/blk_types.h
+++ b/include/linux/blk_types.h
@@ -208,7 +208,7 @@ enum rq_flag_bits {
 #define REQ_COMMON_MASK \
 	(REQ_WRITE | REQ_FAILFAST_MASK | REQ_SYNC | REQ_META | REQ_PRIO | \
 	 REQ_DISCARD | REQ_WRITE_SAME | REQ_NOIDLE | REQ_FLUSH | REQ_FUA | \
-	 REQ_SECURE | REQ_INTEGRITY)
+	 REQ_SECURE | REQ_INTEGRITY | REQ_NOMERGE)
 #define REQ_CLONE_MASK		REQ_COMMON_MASK
 
 #define BIO_NO_ADVANCE_ITER_MASK	(REQ_DISCARD|REQ_WRITE_SAME)
-- 
2.8.0.rc2

[toc] | [next] | [standalone]


#1387053

FromJens Axboe <axboe@kernel.dk>
Date2016-04-26 03:20 +0200
Message-ID<rrZPs-7hQ-19@gated-at.bofh.it>
In reply to#1387012
On 04/25/2016 05:50 PM, Shaohua Li wrote:
> bio might have NOMERGE flag set, for example blk_queue_split sets it.
> When we initiate request, copy this flag too.

Applied, thanks.


-- 
Jens Axboe

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web