block: Cleanup set_capacity()/bdev_set_nr_sectors()
authorDamien Le Moal <dlemoal@kernel.org>
Mon, 24 Apr 2023 13:13:18 +0000 (22:13 +0900)
committerJens Axboe <axboe@kernel.dk>
Mon, 24 Apr 2023 14:48:09 +0000 (08:48 -0600)
commit83794367dcc6749662b17a1e4b8ec085023fc53b
tree25f3a27d3d30de07114aeb88ac0f8fcb29b12393
parent55793ea54d77719a071b1ccc05a05056e3b5e009
block: Cleanup set_capacity()/bdev_set_nr_sectors()

The code for setting a block device capacity (bd_nr_sectors field of
struct block_device) is duplicated in set_capacity() and
bdev_set_nr_sectors(). Clean this up by making bdev_set_nr_sectors()
a block layer internal function defined in block/bdev.c instead of
having this function statically defined in block/partitions/core.c.
With this change, set_capacity() implementation can be simplified to
only calling bdev_set_nr_sectors().

Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20230424131318.79935-1-dlemoal@kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/bdev.c
block/blk.h
block/genhd.c
block/partitions/core.c