2020-09-02 01:39:52

by Baolin Wang

[permalink] [raw]
Subject: [PATCH] block: Fix building error

The disk argument has been removed by commit 3b843c0bda28
("block: remove the disk argument to delete_partition"), thus
fix a building error caused by an incorrect argument.

Fixes: 3b843c0bda28 ("block: remove the disk argument to delete_partition")
Signed-off-by: Baolin Wang <[email protected]>
---
block/partitions/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block/partitions/core.c b/block/partitions/core.c
index cf6229b..dd68114 100644
--- a/block/partitions/core.c
+++ b/block/partitions/core.c
@@ -557,7 +557,7 @@ int bdev_del_partition(struct block_device *bdev, int partno)
sync_blockdev(bdevp);
invalidate_bdev(bdevp);

- delete_partition(bdev->bd_disk);
+ delete_partition(part);
ret = 0;
out_unlock:
mutex_unlock(&bdev->bd_mutex);
--
1.8.3.1


2020-09-02 01:40:50

by Jens Axboe

[permalink] [raw]
Subject: Re: [PATCH] block: Fix building error

On 9/1/20 7:36 PM, Baolin Wang wrote:
> The disk argument has been removed by commit 3b843c0bda28
> ("block: remove the disk argument to delete_partition"), thus
> fix a building error caused by an incorrect argument.

That's my fault, after shuffling things around a bit. I've fixed it up,
thanks for letting me know!

--
Jens Axboe