diff mbox series

block: Fix building error

Message ID b5d0ed52eeeac60906d36cb17b5344063cfa4197.1599010452.git.baolin.wang@linux.alibaba.com (mailing list archive)
State New, archived
Headers show
Series block: Fix building error | expand

Commit Message

Baolin Wang Sept. 2, 2020, 1:36 a.m. UTC
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 <baolin.wang@linux.alibaba.com>
---
 block/partitions/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jens Axboe Sept. 2, 2020, 1:39 a.m. UTC | #1
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!
diff mbox series

Patch

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);