From: "Denis Efremov (Oracle)" <efremov@linux.com>
To: Guangshuo Li <lgs201920130244@gmail.com>,
Jens Axboe <axboe@kernel.dk>,
linux-block@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] floppy: unregister platform device on add_disk failure
Date: Fri, 24 Jul 2026 17:29:07 +0400 [thread overview]
Message-ID: <b70879c2-4dac-4068-8a98-ef1d28168234@linux.com> (raw)
In-Reply-To: <20260708105703.747262-1-lgs201920130244@gmail.com>
Hello,
Thank you for the patch.
On 08/07/2026 14:57, Guangshuo Li wrote:
> The change referenced by the Fixes tag reverted a previous fix because
> that fix added incorrect cleanup for the platform_device_register()
> failure path.
>
> However, reverting the whole change also removed the cleanup for a later
> failure path. If platform_device_register() succeeds but device_add_disk()
> fails, the current floppy platform device has already been registered and
> registered[drive] has been set.
>
> The common out_remove_drives path uses while (drive--), so it starts from
> the previous drive and does not unregister the current one. As a result,
> the platform device registered for the failing drive is leaked.
>
> Unregister the current platform device directly on the device_add_disk()
> failure path, where platform_device_register() is known to have
> succeeded. Leave the platform_device_register() failure path unchanged.
>
> Fixes: 895a9b37917d ("Revert "floppy: fix reference leak on platform_device_register() failure"")
> Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
Reviewed-by: Denis Efremov (Oracle) <efremov@linux.com>
I would also add
Fixes: 47d34aa2d211 ("floppy: add error handling support for add_disk()")
Cc: stable@vger.kernel.org
> ---
> drivers/block/floppy.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c
> index f04397b8e381..7a34af534460 100644
> --- a/drivers/block/floppy.c
> +++ b/drivers/block/floppy.c
> @@ -4729,8 +4729,11 @@ static int __init do_floppy_init(void)
>
> err = device_add_disk(&floppy_device[drive].dev,
> disks[drive][0], NULL);
> - if (err)
> + if (err) {
> + platform_device_unregister(&floppy_device[drive]);
> + registered[drive] = false;
> goto out_remove_drives;
> + }
> }
>
> return 0;
Thanks,
Denis
prev parent reply other threads:[~2026-07-24 13:29 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-08 10:57 [PATCH] floppy: unregister platform device on add_disk failure Guangshuo Li
2026-07-24 13:29 ` Denis Efremov (Oracle) [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b70879c2-4dac-4068-8a98-ef1d28168234@linux.com \
--to=efremov@linux.com \
--cc=axboe@kernel.dk \
--cc=lgs201920130244@gmail.com \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox