summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnand Jain <anand.jain@oracle.com>2014-10-15 08:50:38 +0800
committerDavid Sterba <dsterba@suse.cz>2014-11-03 18:35:30 +0100
commit9662864435d23ecd4c9f91dd3ab5af2c062ed01f (patch)
tree7d0238f906ea93f35b1cadb6e1863255a00a4a30
parent39893bb15ef39ee2ed254d931faf9c67d6c47e37 (diff)
btrfs-progs: code optimize cmd_scan_dev() use btrfs_register_one_device()
cmd_scan_dev() has it own code to register device (calling ioctl BTRFS_IOC_SCAN_DEV), apparently it could use btrfs_register_one_device(). Signed-off-by: Anand Jain <anand.jain@oracle.com> Signed-off-by: David Sterba <dsterba@suse.cz>
-rw-r--r--cmds-device.c33
-rw-r--r--utils.c8
-rw-r--r--utils.h2
3 files changed, 12 insertions, 31 deletions
diff --git a/cmds-device.c b/cmds-device.c
index 62f0b85b..8a33634e 100644
--- a/cmds-device.c
+++ b/cmds-device.c
@@ -205,7 +205,7 @@ static const char * const cmd_scan_dev_usage[] = {
static int cmd_scan_dev(int argc, char **argv)
{
- int i, fd, e;
+ int i;
int devstart = 1;
int all = 0;
int ret = 0;
@@ -241,22 +241,14 @@ static int cmd_scan_dev(int argc, char **argv)
goto out;
}
- fd = open("/dev/btrfs-control", O_RDWR);
- if (fd < 0) {
- perror("failed to open /dev/btrfs-control");
- ret = 1;
- goto out;
- }
-
for( i = devstart ; i < argc ; i++ ){
- struct btrfs_ioctl_vol_args args;
char *path;
if (!is_block_device(argv[i])) {
fprintf(stderr,
"ERROR: %s is not a block device\n", argv[i]);
ret = 1;
- goto close_out;
+ goto out;
}
path = canonicalize_path(argv[i]);
if (!path) {
@@ -264,30 +256,17 @@ static int cmd_scan_dev(int argc, char **argv)
"ERROR: Could not canonicalize path '%s': %s\n",
argv[i], strerror(errno));
ret = 1;
- goto close_out;
+ goto out;
}
printf("Scanning for Btrfs filesystems in '%s'\n", path);
-
- strncpy_null(args.name, path);
- /*
- * FIXME: which are the error code returned by this ioctl ?
- * it seems that is impossible to understand if there no is
- * a btrfs filesystem from an I/O error !!!
- */
- ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
- e = errno;
-
- if( ret < 0 ){
- fprintf(stderr, "ERROR: unable to scan the device '%s' - %s\n",
- path, strerror(e));
+ if (btrfs_register_one_device(path) != 0) {
+ ret = 1;
free(path);
- goto close_out;
+ goto out;
}
free(path);
}
-close_out:
- close(fd);
out:
return !!ret;
}
diff --git a/utils.c b/utils.c
index f10c178b..33f3e2af 100644
--- a/utils.c
+++ b/utils.c
@@ -1239,7 +1239,7 @@ struct pending_dir {
char name[PATH_MAX];
};
-void btrfs_register_one_device(char *fname)
+int btrfs_register_one_device(const char *fname)
{
struct btrfs_ioctl_vol_args args;
int fd;
@@ -1251,17 +1251,19 @@ void btrfs_register_one_device(char *fname)
fprintf(stderr, "failed to open /dev/btrfs-control "
"skipping device registration: %s\n",
strerror(errno));
- return;
+ return -errno;
}
strncpy(args.name, fname, BTRFS_PATH_NAME_MAX);
args.name[BTRFS_PATH_NAME_MAX-1] = 0;
ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
e = errno;
- if(ret<0){
+ if (ret < 0) {
fprintf(stderr, "ERROR: device scan failed '%s' - %s\n",
fname, strerror(e));
+ ret = -e;
}
close(fd);
+ return ret;
}
int btrfs_device_already_in_root(struct btrfs_root *root, int fd,
diff --git a/utils.h b/utils.h
index 7accbd20..5efb80c7 100644
--- a/utils.h
+++ b/utils.h
@@ -81,7 +81,7 @@ int btrfs_add_to_fsid(struct btrfs_trans_handle *trans,
u64 block_count, u32 io_width, u32 io_align,
u32 sectorsize);
int btrfs_scan_for_fsid(int run_ioctls);
-void btrfs_register_one_device(char *fname);
+int btrfs_register_one_device(const char *fname);
char *canonicalize_dm_name(const char *ptname);
char *canonicalize_path(const char *path);
int check_mounted(const char *devicename);