[PATCH] [v3] block: Fix an error handling in add_partition

Subsystems: block layer, the rest

STALE2030d

3 messages, 3 authors, 2021-01-19 · open the first message on its own page

[PATCH] [v3] block: Fix an error handling in add_partition

From: Dinghao Liu <hidden>
Date: 2021-01-17 09:05:32

Once we have called device_initialize(), we should use put_device() to
give up the reference on error, just like what we have done on failure
of device_add().

Signed-off-by: Dinghao Liu <redacted>
---

Changelog:

v2: - Refine commit message.

v3: - Add '[v3]' to the title.
---
 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 e7d776db803b..23460cee9de5 100644
--- a/block/partitions/core.c
+++ b/block/partitions/core.c
@@ -384,7 +384,7 @@ static struct block_device *add_partition(struct gendisk *disk, int partno,
 
 	err = blk_alloc_devt(bdev, &devt);
 	if (err)
-		goto out_bdput;
+		goto out_put;
 	pdev->devt = devt;
 
 	/* delay uevent until 'holders' subdir is created */
-- 
2.17.1

Re: [PATCH] [v3] block: Fix an error handling in add_partition

From: Jan Kara <jack@suse.cz>
Date: 2021-01-18 19:33:30

On Sun 17-01-21 16:53:42, Dinghao Liu wrote:
Once we have called device_initialize(), we should use put_device() to
give up the reference on error, just like what we have done on failure
of device_add().

Signed-off-by: Dinghao Liu <redacted>
Looks good to me. You can add:

Reviewed-by: Jan Kara <jack@suse.cz>

								Honza
quoted hunk
---

Changelog:

v2: - Refine commit message.

v3: - Add '[v3]' to the title.
---
 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 e7d776db803b..23460cee9de5 100644
--- a/block/partitions/core.c
+++ b/block/partitions/core.c
@@ -384,7 +384,7 @@ static struct block_device *add_partition(struct gendisk *disk, int partno,
 
 	err = blk_alloc_devt(bdev, &devt);
 	if (err)
-		goto out_bdput;
+		goto out_put;
 	pdev->devt = devt;
 
 	/* delay uevent until 'holders' subdir is created */
-- 
2.17.1
-- 
Jan Kara [off-list ref]
SUSE Labs, CR

Re: [PATCH] [v3] block: Fix an error handling in add_partition

From: Chaitanya Kulkarni <hidden>
Date: 2021-01-19 05:02:03

On 1/17/21 1:00 AM, Dinghao Liu wrote:
Once we have called device_initialize(), we should use put_device() to
give up the reference on error, just like what we have done on failure
of device_add().

Signed-off-by: Dinghao Liu <redacted>
Looks good.

Reviewed-by: Chaitanya Kulkarni <redacted>
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help