mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] ata: libahci_platform: Fix device reference leak in ahci_platform_get_resources()
@ 2026-09-15  6:59 Wentao Liang
  2026-09-15  9:22 ` Niklas Cassel
  2026-09-16  2:11 ` Damien Le Moal
  0 siblings, 2 replies; 4+ messages in thread
From: Wentao Liang @ 2026-09-15  6:59 UTC (permalink / raw)
  To: cassel
  Cc: dlemoal, gregory.clement, hansg, linux-ide, linux-kernel, tj,
	Wentao Liang, stable

of_find_device_by_node() takes a reference on the port platform device,
which is only used to look up its port regulator and is never released,
neither on success nor on the error paths. Drop the reference with
put_device() once the regulator has been obtained, which covers both the
success and error paths.

Fixes: c7d7ddee7e24 ("ata: libahci: Allow using multiple regulators")
Cc: stable@vger.kernel.org
Signed-off-by: Wentao Liang <vulab@iscas.ac.cn>
---
 drivers/ata/libahci_platform.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/ata/libahci_platform.c b/drivers/ata/libahci_platform.c
index 6e072d681341..14a47e0bddd4 100644
--- a/drivers/ata/libahci_platform.c
+++ b/drivers/ata/libahci_platform.c
@@ -624,6 +624,7 @@ struct ahci_host_priv *ahci_platform_get_resources(struct platform_device *pdev,
 			if (port_dev) {
 				rc = ahci_platform_get_regulator(hpriv, port,
 								&port_dev->dev);
+				put_device(&port_dev->dev);
 				if (rc == -EPROBE_DEFER)
 					goto err_out;
 			}
-- 
2.34.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-09-16  5:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-15  6:59 [PATCH] ata: libahci_platform: Fix device reference leak in ahci_platform_get_resources() Wentao Liang
2026-09-15  9:22 ` Niklas Cassel
2026-09-16  5:29   ` Niklas Cassel
2026-09-16  2:11 ` Damien Le Moal

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®