]> git.baikalelectronics.ru Git - kernel.git/commitdiff
drbd: remove bio_alloc_drbd
authorChristoph Hellwig <hch@lst.de>
Tue, 26 Jan 2021 14:52:39 +0000 (15:52 +0100)
committerJens Axboe <axboe@kernel.dk>
Wed, 27 Jan 2021 16:51:48 +0000 (09:51 -0700)
Given that drbd_md_io_bio_set is initialized during module initialization
and the module fails to load if the initialization fails there is no need
to fall back to plain bio_alloc.

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>
drivers/block/drbd/drbd_actlog.c
drivers/block/drbd/drbd_bitmap.c
drivers/block/drbd/drbd_int.h
drivers/block/drbd/drbd_main.c

index 7227fc7ab8ed1efb585a442f1ea102d935ad0dd6..72cf7603d51fc7191c8b2a22a6c170f6eecd76c1 100644 (file)
@@ -138,7 +138,7 @@ static int _drbd_md_sync_page_io(struct drbd_device *device,
                op_flags |= REQ_FUA | REQ_PREFLUSH;
        op_flags |= REQ_SYNC;
 
-       bio = bio_alloc_drbd(GFP_NOIO);
+       bio = bio_alloc_bioset(GFP_NOIO, 1, &drbd_md_io_bio_set);
        bio_set_dev(bio, bdev->md_bdev);
        bio->bi_iter.bi_sector = sector;
        err = -EIO;
index df53dca5d02c7e76fb4551587ea19dcce8a6200c..c1f816f896a89aab288c81f565e4e2a55d13c757 100644 (file)
@@ -976,7 +976,7 @@ static void drbd_bm_endio(struct bio *bio)
 
 static void bm_page_io_async(struct drbd_bm_aio_ctx *ctx, int page_nr) __must_hold(local)
 {
-       struct bio *bio = bio_alloc_drbd(GFP_NOIO);
+       struct bio *bio = bio_alloc_bioset(GFP_NOIO, 1, &drbd_md_io_bio_set);
        struct drbd_device *device = ctx->device;
        struct drbd_bitmap *b = device->bitmap;
        struct page *page;
index b2c93a29c251fdbe1ed11a3f412afcef0cb03089..02db50d7e4c6680d3d2bef93aba2ea2f9ea3acd1 100644 (file)
@@ -1422,8 +1422,6 @@ extern mempool_t drbd_md_io_page_pool;
 /* We also need to make sure we get a bio
  * when we need it for housekeeping purposes */
 extern struct bio_set drbd_md_io_bio_set;
-/* to allocate from that set */
-extern struct bio *bio_alloc_drbd(gfp_t gfp_mask);
 
 /* And a bio_set for cloning */
 extern struct bio_set drbd_io_bio_set;
index 1c8c18b2a25f33fc571f10e6eb7dfed21318e407..788dd97e6026b8c2c8685dac2a588c5cc3a97300 100644 (file)
@@ -138,19 +138,6 @@ static const struct block_device_operations drbd_ops = {
        .release        = drbd_release,
 };
 
-struct bio *bio_alloc_drbd(gfp_t gfp_mask)
-{
-       struct bio *bio;
-
-       if (!bioset_initialized(&drbd_md_io_bio_set))
-               return bio_alloc(gfp_mask, 1);
-
-       bio = bio_alloc_bioset(gfp_mask, 1, &drbd_md_io_bio_set);
-       if (!bio)
-               return NULL;
-       return bio;
-}
-
 #ifdef __CHECKER__
 /* When checking with sparse, and this is an inline function, sparse will
    give tons of false positives. When this is a real functions sparse works.