From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [RFC PATCH 2/2] net: ifup: have ifup -a stop at the first interface
Date: Wed, 25 Jan 2023 10:52:36 +0100 [thread overview]
Message-ID: <20230125095236.2626065-2-a.fatoum@pengutronix.de> (raw)
In-Reply-To: <20230125095236.2626065-1-a.fatoum@pengutronix.de>
The normal use case for ifup -a is to get *some* interface working and
not really wait for all interfaces to come up and then timeout waiting
for those without link up to get their DHCP lease. Thus repurpose ifup
-a to mean bring up all interfaces until first success with the new
ifup -A restoring the old behavior.
The optimal action would be to make dhcp() non-blocking, but that would
be somewhat more involved.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
include/net.h | 1 +
net/ifup.c | 21 ++++++++++++++++-----
2 files changed, 17 insertions(+), 5 deletions(-)
diff --git a/include/net.h b/include/net.h
index fdd21481dbf5..1046d1bf3681 100644
--- a/include/net.h
+++ b/include/net.h
@@ -512,6 +512,7 @@ int net_icmp_send(struct net_connection *con, int len);
void led_trigger_network(enum led_trigger trigger);
#define IFUP_FLAG_FORCE (1 << 0)
+#define IFUP_FLAG_UNTIL_FIRST (1 << 1)
int ifup_edev(struct eth_device *edev, unsigned flags);
int ifup(const char *name, unsigned flags);
diff --git a/net/ifup.c b/net/ifup.c
index a0167eeb8a82..1ae7dad76b87 100644
--- a/net/ifup.c
+++ b/net/ifup.c
@@ -291,11 +291,17 @@ int ifup_all(unsigned flags)
continue;
ifup_edev(edev, flags);
+ if ((flags & IFUP_FLAG_UNTIL_FIRST) && edev->ifup)
+ return 0;
}
- for_each_netdev(edev)
+ for_each_netdev(edev) {
ifup_edev(edev, flags);
+ if ((flags & IFUP_FLAG_UNTIL_FIRST) && edev->ifup)
+ return 0;
+ }
+
return 0;
}
@@ -326,12 +332,15 @@ static int do_ifup(int argc, char *argv[])
unsigned flags = 0;
int all = 0;
- while ((opt = getopt(argc, argv, "af")) > 0) {
+ while ((opt = getopt(argc, argv, "aAf")) > 0) {
switch (opt) {
case 'f':
flags |= IFUP_FLAG_FORCE;
break;
case 'a':
+ flags |= IFUP_FLAG_UNTIL_FIRST;
+ fallthrough;
+ case 'A':
all = 1;
break;
}
@@ -353,14 +362,15 @@ BAREBOX_CMD_HELP_TEXT("Network interfaces are configured with a NV variables or
BAREBOX_CMD_HELP_TEXT("/env/network/<intf> file. See Documentation/user/networking.rst")
BAREBOX_CMD_HELP_TEXT("")
BAREBOX_CMD_HELP_TEXT("Options:")
-BAREBOX_CMD_HELP_OPT ("-a", "bring up all interfaces")
+BAREBOX_CMD_HELP_OPT ("-A", "bring up all interfaces")
+BAREBOX_CMD_HELP_OPT ("-a", "bring up all interfaces until first successful one")
BAREBOX_CMD_HELP_OPT ("-f", "Force. Configure even if ip already set")
BAREBOX_CMD_HELP_END
BAREBOX_CMD_START(ifup)
.cmd = do_ifup,
BAREBOX_CMD_DESC("bring a network interface up")
- BAREBOX_CMD_OPTS("[-af] [INTF]")
+ BAREBOX_CMD_OPTS("[-aAf] [INTF]")
BAREBOX_CMD_GROUP(CMD_GRP_NET)
BAREBOX_CMD_COMPLETE(eth_complete)
BAREBOX_CMD_HELP(cmd_ifup_help)
@@ -371,8 +381,9 @@ static int do_ifdown(int argc, char *argv[])
int opt;
int all = 0;
- while ((opt = getopt(argc, argv, "a")) > 0) {
+ while ((opt = getopt(argc, argv, "aA")) > 0) {
switch (opt) {
+ case 'A':
case 'a':
all = 1;
break;
--
2.30.2
next prev parent reply other threads:[~2023-01-25 9:58 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-25 9:52 [RFC PATCH 1/2] net: ifup: prefer interfaces where the link is already up Ahmad Fatoum
2023-01-25 9:52 ` Ahmad Fatoum [this message]
2023-01-26 8:36 ` [RFC PATCH 2/2] net: ifup: have ifup -a stop at the first interface Sascha Hauer
2023-01-26 8:31 ` [RFC PATCH 1/2] net: ifup: prefer interfaces where the link is already up Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230125095236.2626065-2-a.fatoum@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox