From 7c9074422aedb10d56b3db74041f06fd43951577 Mon Sep 17 00:00:00 2001 From: chandan Date: Thu, 5 Sep 2013 11:21:30 +0530 Subject: btrfs-progs: btrfs_setup_chunk_tree_and_device_map: Return -EIO on error. As a result of a successful call to btrfs_read_sys_array(), the 'ret' variable is already set to 0. Hence the function would return 0 even if the call to read_tree_block() fails. Signed-off-by: chandan Signed-off-by: David Sterba Signed-off-by: Chris Mason --- disk-io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'disk-io.c') diff --git a/disk-io.c b/disk-io.c index fec77002..0f69f0f9 100644 --- a/disk-io.c +++ b/disk-io.c @@ -966,7 +966,7 @@ int btrfs_setup_chunk_tree_and_device_map(struct btrfs_fs_info *fs_info) if (!fs_info->chunk_root->node || !extent_buffer_uptodate(fs_info->chunk_root->node)) { fprintf(stderr, "Couldn't read chunk root\n"); - return ret; + return -EIO; } if (!(btrfs_super_flags(sb) & BTRFS_SUPER_FLAG_METADUMP)) { -- cgit v1.2.3