kernel-janitors.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC PATCH] net: stmmac: remove rtnl unlock/lock sequence from stmmac_resume
@ 2021-10-14 12:44 Edmundo Carmona Antoranz
  2021-10-15  5:22 ` Joakim Zhang
  0 siblings, 1 reply; 2+ messages in thread
From: Edmundo Carmona Antoranz @ 2021-10-14 12:44 UTC (permalink / raw)
  To: qiangqing.zhang; +Cc: kernel-janitors, Edmundo Carmona Antoranz

90702dcd19c ("net: stmmac: fix MAC not working when system resume back
with WoL active") introduced a section of code in stmmac_resume that
is protected with rtnl_lock/rtnl_unlock. However, the call to
rtnl_unlock() is followed by an already existing call to rtnl_lock().

Instead of unlock/lock, allow the prexisting lock to continue.

Signed-off-by: Edmundo Carmona Antoranz <eantoranz@gmail.com>
---
 drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
index eb3b7bf771d7..5e69380027af 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
@@ -7263,9 +7263,7 @@ int stmmac_resume(struct device *dev)
 		if (device_may_wakeup(priv->device))
 			phylink_speed_up(priv->phylink);
 	}
-	rtnl_unlock();
 
-	rtnl_lock();
 	mutex_lock(&priv->lock);
 
 	stmmac_reset_queues_param(priv);
-- 
2.33.0

Is this a valid patch? Perhaps the lock is released in the middle
on purpose but I would assume it was just an little oversight.


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

end of thread, other threads:[~2021-10-15  5:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-14 12:44 [RFC PATCH] net: stmmac: remove rtnl unlock/lock sequence from stmmac_resume Edmundo Carmona Antoranz
2021-10-15  5:22 ` Joakim Zhang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).