All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix broken 'device scan' arguments parsing
@ 2016-03-09  1:19 Yauhen Kharuzhy
  2016-03-09  8:24 ` Satoru Takeuchi
  2016-03-09 13:35 ` David Sterba
  0 siblings, 2 replies; 4+ messages in thread
From: Yauhen Kharuzhy @ 2016-03-09  1:19 UTC (permalink / raw)
  To: linux-btrfs; +Cc: Yauhen Kharuzhy

commit 52179e4fea41e55f31c92cd033a0b53a5107b4f4 'btrfs-progs: unify argc
min/max checking' brokes 'btrfs device scan' command when no argument
was given. Fix this.

Signed-off-by: Yauhen Kharuzhy <yauhen.kharuzhy@zavadatar.com>
---
 cmds-device.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmds-device.c b/cmds-device.c
index cb470af..94ffdc5 100644
--- a/cmds-device.c
+++ b/cmds-device.c
@@ -273,7 +273,7 @@ static int cmd_device_scan(int argc, char **argv)
 	if (all && check_argc_max(argc - optind, 1))
 		usage(cmd_device_scan_usage);
 
-	if (all || argc - optind == 1) {
+	if (all || argc - optind == 0) {
 		printf("Scanning for Btrfs filesystems\n");
 		ret = btrfs_scan_lblkid();
 		error_on(ret, "error %d while scanning", ret);
-- 
2.5.0


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

* Re: [PATCH] Fix broken 'device scan' arguments parsing
  2016-03-09  1:19 [PATCH] Fix broken 'device scan' arguments parsing Yauhen Kharuzhy
@ 2016-03-09  8:24 ` Satoru Takeuchi
  2016-03-09 13:19   ` David Sterba
  2016-03-09 13:35 ` David Sterba
  1 sibling, 1 reply; 4+ messages in thread
From: Satoru Takeuchi @ 2016-03-09  8:24 UTC (permalink / raw)
  To: Yauhen Kharuzhy, linux-btrfs

On 2016/03/09 10:19, Yauhen Kharuzhy wrote:
> commit 52179e4fea41e55f31c92cd033a0b53a5107b4f4 'btrfs-progs: unify argc
> min/max checking' brokes 'btrfs device scan' command when no argument
> was given. Fix this.
> 
> Signed-off-by: Yauhen Kharuzhy <yauhen.kharuzhy@zavadatar.com>
> ---
>   cmds-device.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/cmds-device.c b/cmds-device.c
> index cb470af..94ffdc5 100644
> --- a/cmds-device.c
> +++ b/cmds-device.c
> @@ -273,7 +273,7 @@ static int cmd_device_scan(int argc, char **argv)
>   	if (all && check_argc_max(argc - optind, 1))

It's better to the above line as follows.

========
	if (all && check_argc_exact(argc - optind, 0))
========

>   		usage(cmd_device_scan_usage);
>   
> -	if (all || argc - optind == 1) {
> +	if (all || argc - optind == 0) {
>   		printf("Scanning for Btrfs filesystems\n");
>   		ret = btrfs_scan_lblkid();
>   		error_on(ret, "error %d while scanning", ret);
> 

Here is the test result.

* v4.4.1

======================
# ./btrfs device scan
Scanning for Btrfs filesystems
# ./btrfs device scan -d
Scanning for Btrfs filesystems
# ./btrfs device scan -d foo
btrfs device scan: too many arguments
usage: btrfs device scan [(-d|--all-devices)|<device> [<device>...]]

    Scan devices for a btrfs filesystem

     -d|--all-devices (deprecated)

==========================

* devel branch with this patch.

==========================
# ./btrfs device scan
Scanning for Btrfs filesystems
# ./btrfs device scan -d
Scanning for Btrfs filesystems
# ./btrfs device scan -d foo
Scanning for Btrfs filesystems
===========================

* devel branch without this patch.

==================
# ./btrfs device scan
# ./btrfs device scan -d
Scanning for Btrfs filesystems
# ./btrfs device scan -d foo
Scanning for Btrfs filesystems
===================

* devel branch with this patch and my patch.

=========================
# ./btrfs device scan
Scanning for Btrfs filesystems
# ./btrfs device scan -d
Scanning for Btrfs filesystems
# ./btrfs device scan -d foo
btrfs device scan: too many arguments
usage: btrfs device scan [(-d|--all-devices)|<device> [<device>...]]

    Scan devices for a btrfs filesystem

     -d|--all-devices (deprecated)

===========================

Thanks,
Satoru

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

* Re: [PATCH] Fix broken 'device scan' arguments parsing
  2016-03-09  8:24 ` Satoru Takeuchi
@ 2016-03-09 13:19   ` David Sterba
  0 siblings, 0 replies; 4+ messages in thread
From: David Sterba @ 2016-03-09 13:19 UTC (permalink / raw)
  To: Satoru Takeuchi; +Cc: Yauhen Kharuzhy, linux-btrfs

On Wed, Mar 09, 2016 at 05:24:16PM +0900, Satoru Takeuchi wrote:
> > --- a/cmds-device.c
> > +++ b/cmds-device.c
> > @@ -273,7 +273,7 @@ static int cmd_device_scan(int argc, char **argv)
> >   	if (all && check_argc_max(argc - optind, 1))
> 
> It's better to the above line as follows.
> 
> ========
> 	if (all && check_argc_exact(argc - optind, 0))

check_argc_exact prints error messages, and is usually followed by
the usage() call that exits. In the condition it's supposed to check if
there are no arguments (ie. scan all) or if the -d option was given
(scan all). The validity of the option combinations should be done
before that, so the patch is IMO correct.

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

* Re: [PATCH] Fix broken 'device scan' arguments parsing
  2016-03-09  1:19 [PATCH] Fix broken 'device scan' arguments parsing Yauhen Kharuzhy
  2016-03-09  8:24 ` Satoru Takeuchi
@ 2016-03-09 13:35 ` David Sterba
  1 sibling, 0 replies; 4+ messages in thread
From: David Sterba @ 2016-03-09 13:35 UTC (permalink / raw)
  To: Yauhen Kharuzhy; +Cc: linux-btrfs

On Tue, Mar 08, 2016 at 05:19:40PM -0800, Yauhen Kharuzhy wrote:
> commit 52179e4fea41e55f31c92cd033a0b53a5107b4f4 'btrfs-progs: unify argc
> min/max checking' brokes 'btrfs device scan' command when no argument
> was given. Fix this.
> 
> Signed-off-by: Yauhen Kharuzhy <yauhen.kharuzhy@zavadatar.com>

Applied, thanks.

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

end of thread, other threads:[~2016-03-09 13:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-09  1:19 [PATCH] Fix broken 'device scan' arguments parsing Yauhen Kharuzhy
2016-03-09  8:24 ` Satoru Takeuchi
2016-03-09 13:19   ` David Sterba
2016-03-09 13:35 ` David Sterba

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.