mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] net: eth: skip opening disabled interfaces when going interactive
@ 2023-01-17  9:49 Ahmad Fatoum
  2023-01-20  7:38 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Ahmad Fatoum @ 2023-01-17  9:49 UTC (permalink / raw)
  To: barebox; +Cc: Ahmad Fatoum

Ethernet device global mode (ethX.mode) may be set to disabled when
ports should not be used. This setting is already respect in ifup, so do
likewise for eth_open_all(), which is called when going interactive.

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 net/eth.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/net/eth.c b/net/eth.c
index 863d0a046657..6fb64afea024 100644
--- a/net/eth.c
+++ b/net/eth.c
@@ -535,8 +535,11 @@ void eth_open_all(void)
 {
 	struct eth_device *edev;
 
-	list_for_each_entry(edev, &netdev_list, list)
+	list_for_each_entry(edev, &netdev_list, list) {
+		if (edev->global_mode == ETH_MODE_DISABLED)
+			continue;
 		eth_open(edev);
+	}
 }
 
 static int of_populate_ethaddr(void)
-- 
2.30.2




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

end of thread, other threads:[~2023-01-20  7:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-17  9:49 [PATCH] net: eth: skip opening disabled interfaces when going interactive Ahmad Fatoum
2023-01-20  7:38 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox