From: Christoph Hellwig Date: Tue, 26 Jan 2021 14:52:32 +0000 (+0100) Subject: btrfs: use bio_kmalloc in __alloc_device X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=616c6a6884e273349cda19483dfd7f5b7fd3da52;p=linux.git btrfs: use bio_kmalloc in __alloc_device Use bio_kmalloc instead of open coding it. Signed-off-by: Christoph Hellwig Reviewed-by: Josef Bacik Reviewed-by: Johannes Thumshirn Reviewed-by: Chaitanya Kulkarni Acked-by: Damien Le Moal Signed-off-by: Jens Axboe --- diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 0a6de859eb222..584ba093cf496 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c @@ -421,7 +421,7 @@ static struct btrfs_device *__alloc_device(struct btrfs_fs_info *fs_info) * Preallocate a bio that's always going to be used for flushing device * barriers and matches the device lifespan */ - dev->flush_bio = bio_alloc_bioset(GFP_KERNEL, 0, NULL); + dev->flush_bio = bio_kmalloc(GFP_KERNEL, 0); if (!dev->flush_bio) { kfree(dev); return ERR_PTR(-ENOMEM);