diff options
author | Ming Lei <ming.lei@canonical.com> | 2016-03-12 09:56:19 -0500 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-03-12 16:12:10 -0500 |
commit | 90d0f0f11588ec692c12f9009089b398be395184 (patch) | |
tree | a1e3eee514de4fd54349333b004825d4e5cb8add | |
parent | f2c1242194c7af9b26f53359ab2b23df36d3a643 (diff) |
block: don't optimize for non-cloned bio in bio_get_last_bvec()
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>
Signed-off-by: Jens Axboe <axboe@fb.com>
-rw-r--r-- | include/linux/bio.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/bio.h b/include/linux/bio.h index cb6888824108..88bc64f00bb5 100644 --- a/include/linux/bio.h +++ b/include/linux/bio.h | |||
@@ -320,11 +320,6 @@ static inline void bio_get_last_bvec(struct bio *bio, struct bio_vec *bv) | |||
320 | struct bvec_iter iter = bio->bi_iter; | 320 | struct bvec_iter iter = bio->bi_iter; |
321 | int idx; | 321 | int idx; |
322 | 322 | ||
323 | if (!bio_flagged(bio, BIO_CLONED)) { | ||
324 | *bv = bio->bi_io_vec[bio->bi_vcnt - 1]; | ||
325 | return; | ||
326 | } | ||
327 | |||
328 | if (unlikely(!bio_multiple_segments(bio))) { | 323 | if (unlikely(!bio_multiple_segments(bio))) { |
329 | *bv = bio_iovec(bio); | 324 | *bv = bio_iovec(bio); |
330 | return; | 325 | return; |