From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH] commands: mount: simplify positional argument handling
Date: Mon, 22 Jul 2024 19:06:12 +0200 [thread overview]
Message-ID: <20240722170612.3867075-1-a.fatoum@pengutronix.de> (raw)
Once getopt has concluded, all of argv[0] up to argv[optind - 1] will
have been consumed. Therefore let's advance argv by optind and reduce
argc by the same to simplify the code handling the positional arguments.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
commands/mount.c | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/commands/mount.c b/commands/mount.c
index fddd770dc9eb..81a40e951076 100644
--- a/commands/mount.c
+++ b/commands/mount.c
@@ -35,7 +35,10 @@ static int do_mount(int argc, char *argv[])
}
}
- if (argc == optind) {
+ argv += optind;
+ argc -= optind;
+
+ if (argc == 0) {
struct fs_device *fsdev;
for_each_fs_device(fsdev) {
@@ -56,9 +59,9 @@ static int do_mount(int argc, char *argv[])
return 0;
}
- devstr = argv[optind];
+ devstr = argv[0];
- if (argc == optind + 1) {
+ if (argc == 1) {
struct cdev *cdev;
const char *path;
@@ -79,17 +82,17 @@ static int do_mount(int argc, char *argv[])
return 0;
}
- if (argc < optind + 2)
+ if (argc < 2)
return COMMAND_ERROR_USAGE;
- if (argc == optind + 3) {
+ if (argc == 3) {
/*
* Old behaviour: mount <dev> <type> <mountpoint>
*/
- type = argv[optind + 1];
- mountpoint = argv[optind + 2];
+ type = argv[1];
+ mountpoint = argv[2];
} else {
- mountpoint = argv[optind + 1];
+ mountpoint = argv[1];
}
return mount(devstr, type, mountpoint, fsoptions);
--
2.39.2
next reply other threads:[~2024-07-22 17:06 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-22 17:06 Ahmad Fatoum [this message]
2024-07-24 8:09 ` 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=20240722170612.3867075-1-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