All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net: hns: Fix missing put_device() call in hns_mac_register_phy
@ 2022-01-10  6:40 Miaoqian Lin
  2022-01-12  4:33 ` Jakub Kicinski
  0 siblings, 1 reply; 4+ messages in thread
From: Miaoqian Lin @ 2022-01-10  6:40 UTC (permalink / raw)
  Cc: linmq006, Yisen Zhuang, Salil Mehta, David S. Miller,
	Jakub Kicinski, Yang Shen, Yonglong Liu, Peng Li,
	Matthias Brugger, netdev, linux-kernel

We need to drop the reference taken by hns_dsaf_find_platform_device
Missing put_device() may cause refcount leak.

Fixes: 804ffe5c6197 ("net: hns: support deferred probe when no mdio")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
---
 drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c b/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c
index 7edf8569514c..7364e05487c7 100644
--- a/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c
+++ b/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c
@@ -764,6 +764,7 @@ static int hns_mac_register_phy(struct hns_mac_cb *mac_cb)
 		dev_err(mac_cb->dev,
 			"mac%d mdio is NULL, dsaf will probe again later\n",
 			mac_cb->mac_id);
+		put_device(&pdev->dev);
 		return -EPROBE_DEFER;
 	}
 
-- 
2.17.1


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

end of thread, other threads:[~2022-01-12 13:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-10  6:40 [PATCH] net: hns: Fix missing put_device() call in hns_mac_register_phy Miaoqian Lin
2022-01-12  4:33 ` Jakub Kicinski
2022-01-12 10:39   ` [PATCH v2] " Miaoqian Lin
2022-01-12 13:46     ` Andrew Lunn

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.