btrfs-progs: drop unused parameter from make_btrfs

Signed-off-by: David Sterba <dsterba@suse.com>
master
David Sterba 2015-07-01 17:54:43 +02:00
parent df4de2c089
commit 00d07721ec
4 changed files with 4 additions and 4 deletions

View 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));

2
mkfs.c
View File

@ -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);

View File

@ -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;

View File

@ -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,