]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
block: don't optimize for non-cloned bio in bio_get_last_bvec()
authorMing Lei <ming.lei@canonical.com>
Sat, 12 Mar 2016 14:56:19 +0000 (22:56 +0800)
committerBrian Maly <brian.maly@oracle.com>
Mon, 23 Apr 2018 22:29:51 +0000 (18:29 -0400)
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>
(cherry picked from commit 90d0f0f11588ec692c12f9009089b398be395184)

Orabug: 27775588

Signed-off-by: Shan Hai <shan.hai@oracle.com>
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Brian Maly <brian.maly@oracle.com>
include/linux/bio.h

index 9f7d4dd5eabfa8c930869421aaedd3a236be2f1b..cf588a60ddea0405102f7a2a017b9c443e587cc8 100644 (file)
@@ -307,11 +307,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;