btrfs-progs: drop unused parameter from make_btrfs
authorDavid Sterba <dsterba@suse.com>
Wed, 1 Jul 2015 15:54:43 +0000 (17:54 +0200)
committerDavid Sterba <dsterba@suse.com>
Wed, 1 Jul 2015 15:54:43 +0000 (17:54 +0200)
Signed-off-by: David Sterba <dsterba@suse.com>
btrfs-convert.c
mkfs.c
utils.c
utils.h

index 9bdf2be..b89c685 100644 (file)
@@ -2348,7 +2348,7 @@ static int do_convert(const char *devname, int datacsum, int packing, int noxatt
        mkfs_cfg.stripesize = blocksize;
        mkfs_cfg.features = features;
 
-       ret = make_btrfs(fd, devname, &mkfs_cfg);
+       ret = make_btrfs(fd, &mkfs_cfg);
        if (ret) {
                fprintf(stderr, "unable to create initial ctree: %s\n",
                        strerror(-ret));
diff --git a/mkfs.c b/mkfs.c
index 1cddaad..59dd884 100644 (file)
--- a/mkfs.c
+++ b/mkfs.c
@@ -1516,7 +1516,7 @@ int main(int ac, char **av)
        mkfs_cfg.stripesize = stripesize;
        mkfs_cfg.features = features;
 
-       ret = make_btrfs(fd, file, &mkfs_cfg);
+       ret = make_btrfs(fd, &mkfs_cfg);
        if (ret) {
                fprintf(stderr, "error during mkfs: %s\n", strerror(-ret));
                exit(1);
diff --git a/utils.c b/utils.c
index fdb654c..39b295a 100644 (file)
--- a/utils.c
+++ b/utils.c
@@ -177,7 +177,7 @@ int test_uuid_unique(char *fs_uuid)
 /*
  * @fs_uuid - if NULL, generates a UUID, returns back the new filesystem UUID
  */
-int make_btrfs(int fd, const char *device, struct btrfs_mkfs_config *cfg)
+int make_btrfs(int fd, struct btrfs_mkfs_config *cfg)
 {
        struct btrfs_super_block super;
        struct extent_buffer *buf = NULL;
diff --git a/utils.h b/utils.h
index 1c76345..94606ed 100644 (file)
--- a/utils.h
+++ b/utils.h
@@ -116,7 +116,7 @@ struct btrfs_mkfs_config {
        u64 features;
 };
 
-int make_btrfs(int fd, const char *device, struct btrfs_mkfs_config *cfg);
+int make_btrfs(int fd, struct btrfs_mkfs_config *cfg);
 int btrfs_make_root_dir(struct btrfs_trans_handle *trans,
                        struct btrfs_root *root, u64 objectid);
 int btrfs_prepare_device(int fd, char *file, int zero_end, u64 *block_count_ret,