From 4b54ca8ba44ac7cee29cdf7f75c6ac472cfe59ef Mon Sep 17 00:00:00 2001 From: Gu Jinxiang Date: Fri, 18 Aug 2017 01:32:46 -0700 Subject: [PATCH] btrfs-progs: mkfs: delete un-used parameter fd Parameter fd is not used in function make_image and traverse_directory of mkfs. Delete it. Signed-off-by: Gu Jinxiang Signed-off-by: David Sterba --- mkfs/main.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/mkfs/main.c b/mkfs/main.c index 2b109a5..70a2052 100644 --- a/mkfs/main.c +++ b/mkfs/main.c @@ -801,7 +801,7 @@ static char *make_path(const char *dir, const char *name) static int traverse_directory(struct btrfs_trans_handle *trans, struct btrfs_root *root, const char *dir_name, - struct directory_name_entry *dir_head, int out_fd) + struct directory_name_entry *dir_head) { int ret = 0; @@ -1029,8 +1029,7 @@ static int create_chunks(struct btrfs_trans_handle *trans, return ret; } -static int make_image(const char *source_dir, struct btrfs_root *root, - int out_fd) +static int make_image(const char *source_dir, struct btrfs_root *root) { int ret; struct btrfs_trans_handle *trans; @@ -1048,7 +1047,7 @@ static int make_image(const char *source_dir, struct btrfs_root *root, INIT_LIST_HEAD(&dir_head.list); trans = btrfs_start_transaction(root, 1); - ret = traverse_directory(trans, root, source_dir, &dir_head, out_fd); + ret = traverse_directory(trans, root, source_dir, &dir_head); if (ret) { error("unable to traverse directory %s: %d", source_dir, ret); goto fail; @@ -1876,7 +1875,7 @@ raid_groups: goto out; } - ret = make_image(source_dir, root, fd); + ret = make_image(source_dir, root); if (ret) { error("error wihle filling filesystem: %d", ret); goto out; -- 2.7.4