mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-04 11:51:42 +00:00
Btrfs-progs: mkfs: Remove 'zero_end =1' since it has been set to a value
In utils.c, zero_end is used as a parameter, should not force it to 1. In mkfs.c, zero_end is set to 1 or 0(-b) at the beginning, should not force it to 1 unconditionally. Signed-off-by: Li Yang <liyang.fnst@cn.fujitsu.com> Signed-off-by: David Sterba <dsterba@suse.cz>
This commit is contained in:
parent
cdee9ecc18
commit
dae7456c7f
1
mkfs.c
1
mkfs.c
@ -1543,7 +1543,6 @@ int main(int ac, char **av)
|
||||
|
||||
btrfs_register_one_device(file);
|
||||
|
||||
zero_end = 1;
|
||||
while (dev_cnt-- > 0) {
|
||||
int old_mixed = mixed;
|
||||
|
||||
|
1
utils.c
1
utils.c
@ -613,7 +613,6 @@ int btrfs_prepare_device(int fd, char *file, int zero_end, u64 *block_count_ret,
|
||||
}
|
||||
if (max_block_count)
|
||||
block_count = min(block_count, max_block_count);
|
||||
zero_end = 1;
|
||||
|
||||
if (block_count < 1024 * 1024 * 1024 && !(*mixed)) {
|
||||
printf("SMALL VOLUME: forcing mixed metadata/data groups\n");
|
||||
|
Loading…
Reference in New Issue
Block a user