From: "Jernej Škrabec" <jernej.skrabec@gmail.com>
To: "Sean Young" <sean@mess.org>,
"Mauro Carvalho Chehab" <mchehab@kernel.org>,
박명훈 <mhun512@gmail.com>
Cc: Myeonghun Pak <mhun512@gmail.com>, Chen-Yu Tsai <wens@kernel.org>,
Samuel Holland <samuel@sholland.org>,
linux-media@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org,
stable@vger.kernel.org, Ijae Kim <ae878000@gmail.com>
Subject: Re: [PATCH] media: rc: sunxi-cir: unregister rc device on probe failure
Date: Wed, 13 May 2026 22:23:00 +0200 [thread overview]
Message-ID: <YRYbhQnwRdCZPKQIjbWE2A@gmail.com> (raw)
In-Reply-To: <20260424000000.558-1-mhun512@gmail.com>
Dne sreda, 13. maj 2026 ob 09:11:03 Srednjeevropski poletni čas je 박명훈 napisal(a):
> From: Myeonghun Pak <mhun512@gmail.com>
>
> After rc_register_device() succeeds, later probe failures must undo the
> registration with rc_unregister_device(). The current error path jumps to
> the allocation cleanup label and only calls rc_free_device(), leaving the
> rc device registration and resources created by rc_register_device()
> behind.
>
> Add a registered-device unwind label for the IRQ lookup, IRQ request, and
> hardware initialization failure paths. Keep rc_free_device() for failures
> before rc_register_device() succeeds.
>
> Fixes: b4e3e59fb59c ("[media] rc: add sunxi-ir driver")
> Cc: stable@vger.kernel.org
> Co-developed-by: Ijae Kim <ae878000@gmail.com>
> Signed-off-by: Ijae Kim <ae878000@gmail.com>
> Signed-off-by: Myeonghun Pak <mhun512@gmail.com>
> ---
> drivers/media/rc/sunxi-cir.c | 10 +++++++---
> 1 file changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/media/rc/sunxi-cir.c b/drivers/media/rc/sunxi-cir.c
> index 92ef4e7c6f..cc64a68dfe 100644
> --- a/drivers/media/rc/sunxi-cir.c
> +++ b/drivers/media/rc/sunxi-cir.c
> @@ -344,22 +344,26 @@ static int sunxi_ir_probe(struct platform_device *pdev)
> ir->irq = platform_get_irq(pdev, 0);
> if (ir->irq < 0) {
> ret = ir->irq;
> - goto exit_free_dev;
> + goto exit_unregister_dev;
> }
>
> ret = devm_request_irq(dev, ir->irq, sunxi_ir_irq, 0, SUNXI_IR_DEV, ir);
> if (ret) {
> dev_err(dev, "failed request irq\n");
> - goto exit_free_dev;
> + goto exit_unregister_dev;
> }
>
> ret = sunxi_ir_hw_init(dev);
> if (ret)
> - goto exit_free_dev;
> + goto exit_unregister_dev;
>
> dev_info(dev, "initialized sunXi IR driver\n");
> return 0;
>
> +exit_unregister_dev:
> + rc_unregister_device(ir->rc);
> + return ret;
This return should not be here. Device must be freed too.
Best regards,
Jernej
> +
> exit_free_dev:
> rc_free_device(ir->rc);
>
>
next prev parent reply other threads:[~2026-05-13 20:23 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-13 7:11 [PATCH] media: rc: sunxi-cir: unregister rc device on probe failure 박명훈
2026-05-13 20:23 ` Jernej Škrabec [this message]
2026-05-14 2:37 ` sashiko-bot
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=YRYbhQnwRdCZPKQIjbWE2A@gmail.com \
--to=jernej.skrabec@gmail.com \
--cc=ae878000@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-sunxi@lists.linux.dev \
--cc=mchehab@kernel.org \
--cc=mhun512@gmail.com \
--cc=samuel@sholland.org \
--cc=sean@mess.org \
--cc=stable@vger.kernel.org \
--cc=wens@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.