btrfs-progs: "device ready" accepts just one device
authorSatoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>
Mon, 14 Mar 2016 00:27:22 +0000 (09:27 +0900)
committerDavid Sterba <dsterba@suse.com>
Mon, 2 May 2016 12:42:09 +0000 (14:42 +0200)
* actual result

  =======================================
  # ./btrfs device ready /dev/sdb foo
  #
  =======================================

* expecting result

  =======================================
  # ./btrfs device ready /dev/sdb foo
  btrfs device ready: too many arguments
  usage: btrfs device ready <device>

      Check device to see if it has all of its devices in cache for mounting

  #
  =======================================

Signed-off-by: Satoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
cmds-device.c

index 7616c43..5c0040c 100644 (file)
@@ -333,7 +333,7 @@ static int cmd_device_ready(int argc, char **argv)
 
        clean_args_no_options(argc, argv, cmd_device_ready_usage);
 
-       if (check_argc_min(argc - optind, 1))
+       if (check_argc_exact(argc - optind, 1))
                usage(cmd_device_ready_usage);
 
        fd = open("/dev/btrfs-control", O_RDWR);