* [PATCH] usb: musb: ux500: Fix transceiver leak in ux500_musb_init()
@ 2026-09-16 16:50 Wentao Liang
2026-09-16 17:33 ` Linus Walleij
2026-09-16 17:38 ` Greg KH
0 siblings, 2 replies; 3+ messages in thread
From: Wentao Liang @ 2026-09-16 16:50 UTC (permalink / raw)
To: b-liu
Cc: balbi, fabio.baltieri, gregkh, linusw, linux-kernel, linux-usb,
Wentao Liang, stable
ux500_musb_init() takes a reference on the USB2 transceiver with
usb_get_phy() and stores it in musb->xceiv. If the subsequent
usb_register_notifier() call fails, the function returns without
releasing the reference, leaking the transceiver. The only place the
reference is put is ux500_musb_exit(), which is not run when the init
fails.
Put the transceiver before returning on the notifier registration
failure path. The notifier itself does not need to be unregistered
since usb_register_notifier() failed.
Fixes: 0135522c4898 ("usb: musb: ux500: add otg notifier support")
Cc: stable@vger.kernel.org
Signed-off-by: Wentao Liang <vulab@iscas.ac.cn>
---
drivers/usb/musb/ux500.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/usb/musb/ux500.c b/drivers/usb/musb/ux500.c
index 8c2a43d992f5..14c5e986937e 100644
--- a/drivers/usb/musb/ux500.c
+++ b/drivers/usb/musb/ux500.c
@@ -155,6 +155,7 @@ static int ux500_musb_init(struct musb *musb)
status = usb_register_notifier(musb->xceiv, &musb->nb);
if (status < 0) {
dev_dbg(musb->controller, "notification register failed\n");
+ usb_put_phy(musb->xceiv);
return status;
}
--
2.34.1
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] usb: musb: ux500: Fix transceiver leak in ux500_musb_init()
2026-09-16 16:50 [PATCH] usb: musb: ux500: Fix transceiver leak in ux500_musb_init() Wentao Liang
@ 2026-09-16 17:33 ` Linus Walleij
2026-09-16 17:38 ` Greg KH
1 sibling, 0 replies; 3+ messages in thread
From: Linus Walleij @ 2026-09-16 17:33 UTC (permalink / raw)
To: Wentao Liang
Cc: b-liu, balbi, fabio.baltieri, gregkh, linux-kernel, linux-usb, stable
On Wed, Sep 16, 2026 at 6:51 PM Wentao Liang <vulab@iscas.ac.cn> wrote:
> ux500_musb_init() takes a reference on the USB2 transceiver with
> usb_get_phy() and stores it in musb->xceiv. If the subsequent
> usb_register_notifier() call fails, the function returns without
> releasing the reference, leaking the transceiver. The only place the
> reference is put is ux500_musb_exit(), which is not run when the init
> fails.
>
> Put the transceiver before returning on the notifier registration
> failure path. The notifier itself does not need to be unregistered
> since usb_register_notifier() failed.
>
> Fixes: 0135522c4898 ("usb: musb: ux500: add otg notifier support")
> Cc: stable@vger.kernel.org
> Signed-off-by: Wentao Liang <vulab@iscas.ac.cn>
Reviewed-by: Linus Walleij <linusw@kernel.org>
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] usb: musb: ux500: Fix transceiver leak in ux500_musb_init()
2026-09-16 16:50 [PATCH] usb: musb: ux500: Fix transceiver leak in ux500_musb_init() Wentao Liang
2026-09-16 17:33 ` Linus Walleij
@ 2026-09-16 17:38 ` Greg KH
1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2026-09-16 17:38 UTC (permalink / raw)
To: Wentao Liang
Cc: b-liu, balbi, fabio.baltieri, linusw, linux-kernel, linux-usb, stable
On Wed, Sep 16, 2026 at 04:50:55PM +0000, Wentao Liang wrote:
> ux500_musb_init() takes a reference on the USB2 transceiver with
> usb_get_phy() and stores it in musb->xceiv. If the subsequent
> usb_register_notifier() call fails, the function returns without
> releasing the reference, leaking the transceiver. The only place the
> reference is put is ux500_musb_exit(), which is not run when the init
> fails.
>
> Put the transceiver before returning on the notifier registration
> failure path. The notifier itself does not need to be unregistered
> since usb_register_notifier() failed.
>
> Fixes: 0135522c4898 ("usb: musb: ux500: add otg notifier support")
> Cc: stable@vger.kernel.org
> Signed-off-by: Wentao Liang <vulab@iscas.ac.cn>
> ---
> drivers/usb/musb/ux500.c | 1 +
> 1 file changed, 1 insertion(+)
Again, you need to add an assisted-by tag. Please go back and fix up
_ALL_ of these to have that.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-16 17:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-16 16:50 [PATCH] usb: musb: ux500: Fix transceiver leak in ux500_musb_init() Wentao Liang
2026-09-16 17:33 ` Linus Walleij
2026-09-16 17:38 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®