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


Groups > linux.kernel > #1356433

[PATCH] block: don't optimize for non-cloned bio in bio_get_last_bvec()

From Ming Lei <ming.lei@canonical.com>
Newsgroups linux.kernel
Subject [PATCH] block: don't optimize for non-cloned bio in bio_get_last_bvec()
Date 2016-03-12 16:00 +0100
Message-ID <rbTbj-7BO-11@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


For !BIO_CLONED bio, we can use .bi_vcnt safely, but it
doesn't mean we can just simply return .bi_io_vec[.bi_vcnt - 1]
because the start postion may have been moved in the middle of
the bvec, such as splitting in the middle of bvec.

Fixes: 7bcd79ac50d9(block: bio: introduce helpers to get the 1st and last bvec)
Cc: stable@vger.kernel.org
Reported-by: Kent Overstreet <kent.overstreet@gmail.com>
Signed-off-by: Ming Lei <ming.lei@canonical.com>
---
Jens, I am fine with either reverting previous patchset or
applying this one to v4.5, and you decide it.

Thanks Kent for reporting the issue!

 include/linux/bio.h | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/include/linux/bio.h b/include/linux/bio.h
index 1e7248f..4abc129 100644
--- a/include/linux/bio.h
+++ b/include/linux/bio.h
@@ -267,11 +267,6 @@ static inline void bio_get_last_bvec(struct bio *bio, struct bio_vec *bv)
 	struct bvec_iter iter = bio->bi_iter;
 	int idx;
 
-	if (!bio_flagged(bio, BIO_CLONED)) {
-		*bv = bio->bi_io_vec[bio->bi_vcnt - 1];
-		return;
-	}
-
 	if (unlikely(!bio_multiple_segments(bio))) {
 		*bv = bio_iovec(bio);
 		return;
-- 
1.9.1

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] block: don't optimize for non-cloned bio in bio_get_last_bvec() Ming Lei <ming.lei@canonical.com> - 2016-03-12 16:00 +0100
  Re: [PATCH] block: don't optimize for non-cloned bio in  bio_get_last_bvec() Jens Axboe <axboe@kernel.dk> - 2016-03-13 05:00 +0100
    Re: [PATCH] block: don't optimize for non-cloned bio in  bio_get_last_bvec() Jens Axboe <axboe@kernel.dk> - 2016-03-13 05:30 +0100

csiph-web