summaryrefslogtreecommitdiff
path: root/cmds-device.c
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@redhat.com>2014-08-20 17:22:13 -0500
committerDavid Sterba <dsterba@suse.cz>2014-10-10 09:32:11 +0200
commit4e85e481887abba8141ff43597c09b5f91d70ee4 (patch)
tree87ba73c818ff1749fcc403474bf96c7c7b0bbd81 /cmds-device.c
parent6420192e870cedb3f43dac2095ce9fd7729a63e3 (diff)
downloadbtrfs-progs-4e85e481887abba8141ff43597c09b5f91d70ee4.tar.gz
btrfs-progs: scan /proc/partitions not all of /dev with "-d"
We can scan for btrfs devices in a few ways. By default libblkid is used for "device scan" and "filesystem show"; with the -m option only mounted filesystems are scanned, and with -d we physically read every system device. But there's no reason for the complexity of a descent through /dev; /proc/partitions has every device known to the kernel, so just use that when -d is specified. Signed-off-by: Eric Sandeen <sandeen@redhat.com> Reviewed-by: Anand Jain <anand.jain@oracle.com> Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'cmds-device.c')
-rw-r--r--cmds-device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds-device.c b/cmds-device.c
index 0475bf6..b647024 100644
--- a/cmds-device.c
+++ b/cmds-device.c
@@ -223,7 +223,7 @@ static int cmd_scan_dev(int argc, char **argv)
break;
switch (c) {
case 'd':
- where = BTRFS_SCAN_DEV;
+ where = BTRFS_SCAN_PROC;
all = 1;
break;
default: