]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
fs: logfs: convert to bio_add_page() in sync_request()
authorMing Lei <tom.leiming@gmail.com>
Fri, 11 Nov 2016 12:05:37 +0000 (20:05 +0800)
committerJens Axboe <axboe@fb.com>
Tue, 22 Nov 2016 15:57:55 +0000 (08:57 -0700)
Always bio_add_page() is the standard and preferred way to
do the task.

Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Ming Lei <tom.leiming@gmail.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
fs/logfs/dev_bdev.c

index dc8cafeee038bc4227bfe2b685ad99981e6126ec..e01075790600033987e2ad68ab07d5164dc1441a 100644 (file)
@@ -20,13 +20,9 @@ static int sync_request(struct page *page, struct block_device *bdev, int op)
        struct bio_vec bio_vec;
 
        bio_init(&bio, &bio_vec, 1);
-       bio_vec.bv_page = page;
-       bio_vec.bv_len = PAGE_SIZE;
-       bio_vec.bv_offset = 0;
-       bio.bi_vcnt = 1;
        bio.bi_bdev = bdev;
+       bio_add_page(&bio, page, PAGE_SIZE, 0);
        bio.bi_iter.bi_sector = page->index * (PAGE_SIZE >> 9);
-       bio.bi_iter.bi_size = PAGE_SIZE;
        bio_set_op_attrs(&bio, op, 0);
 
        return submit_bio_wait(&bio);