mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
btrfs: fix warning on uninit variable in btrfs_finish_chunk_alloc
map->num_stripes really can't be zero, but just in case. Signed-off-by: Chris Mason <clm@fb.com>
This commit is contained in:
parent
f0f76413d3
commit
140e639f1a
@ -4794,7 +4794,7 @@ int btrfs_finish_chunk_alloc(struct btrfs_trans_handle *trans,
|
||||
u64 dev_offset;
|
||||
u64 stripe_size;
|
||||
int i = 0;
|
||||
int ret;
|
||||
int ret = 0;
|
||||
|
||||
em_tree = &extent_root->fs_info->mapping_tree.map_tree;
|
||||
read_lock(&em_tree->lock);
|
||||
|
Loading…
Reference in New Issue
Block a user