diff options
author | Christoph Hellwig <hch@lst.de> | 2021-08-10 18:45:10 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2021-08-12 19:31:35 +0300 |
commit | 7f6be3765e113e0d4b8e6b65e1074982de94377e (patch) | |
tree | bba3bfda58f09c1ffbe739fa8a06f2e2d7a98667 /block/blk.h | |
parent | a08aa9bccdc282b5e8d133bf8c239473f057b464 (diff) | |
download | linux-7f6be3765e113e0d4b8e6b65e1074982de94377e.tar.xz |
block: pass a gendisk to bdev_add_partition
bdev_add_partition can only operate on the whole device. Make that clear
by passing a gendisk instead of a block_device.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20210810154512.1809898-3-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk.h')
-rw-r--r-- | block/blk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/blk.h b/block/blk.h index 56f33fbcde59..c0486f609978 100644 --- a/block/blk.h +++ b/block/blk.h @@ -347,8 +347,8 @@ void blk_free_ext_minor(unsigned int minor); #define ADDPART_FLAG_NONE 0 #define ADDPART_FLAG_RAID 1 #define ADDPART_FLAG_WHOLEDISK 2 -int bdev_add_partition(struct block_device *bdev, int partno, - sector_t start, sector_t length); +int bdev_add_partition(struct gendisk *disk, int partno, sector_t start, + sector_t length); int bdev_del_partition(struct block_device *bdev, int partno); int bdev_resize_partition(struct block_device *bdev, int partno, sector_t start, sector_t length); |