block_dev: use bio_release_pages in blkdev_bio_end_io
authorChristoph Hellwig <hch@lst.de>
Wed, 26 Jun 2019 13:49:25 +0000 (15:49 +0200)
committerJens Axboe <axboe@kernel.dk>
Sat, 29 Jun 2019 15:47:31 +0000 (09:47 -0600)
Use bio_release_pages instead of duplicating it.

Reviewed-by: Minwoo Im <minwoo.im.dev@gmail.com>
Reviewed-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/block_dev.c

index 749f5984425dd493b212e589f4b7389b38bf1bc9..a6572a811880b4a28f03638b094adcb27277b41a 100644 (file)
@@ -335,13 +335,7 @@ static void blkdev_bio_end_io(struct bio *bio)
        if (should_dirty) {
                bio_check_pages_dirty(bio);
        } else {
-               if (!bio_flagged(bio, BIO_NO_PAGE_REF)) {
-                       struct bvec_iter_all iter_all;
-                       struct bio_vec *bvec;
-
-                       bio_for_each_segment_all(bvec, bio, iter_all)
-                               put_page(bvec->bv_page);
-               }
+               bio_release_pages(bio, false);
                bio_put(bio);
        }
 }