OSDN Git Service

zonefs: use bio_alloc in zonefs_file_dio_append
authorChristoph Hellwig <hch@lst.de>
Tue, 26 Jan 2021 14:52:31 +0000 (15:52 +0100)
committerJens Axboe <axboe@kernel.dk>
Wed, 27 Jan 2021 16:51:48 +0000 (09:51 -0700)
Use bio_alloc instead of open coding it.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Reviewed-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Acked-by: Damien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/zonefs/super.c

index bec47f2..faea2ed 100644 (file)
@@ -678,7 +678,7 @@ static ssize_t zonefs_file_dio_append(struct kiocb *iocb, struct iov_iter *from)
        if (!nr_pages)
                return 0;
 
-       bio = bio_alloc_bioset(GFP_NOFS, nr_pages, &fs_bio_set);
+       bio = bio_alloc(GFP_NOFS, nr_pages);
        if (!bio)
                return -ENOMEM;