summaryrefslogtreecommitdiff
path: root/disk-io.c
diff options
context:
space:
mode:
authorGoldwyn Rodrigues <rgoldwyn@suse.com>2016-12-20 06:08:54 -0600
committerDavid Sterba <dsterba@suse.com>2017-01-25 09:47:19 +0100
commite325c74bb8af9efa150cb16429a94f291209604f (patch)
treed8546595c992ec3cfd39418d11ca670ecc7d903c /disk-io.c
parent6ab6f69be3e9eef90d0da12e1362b0dd7c1315eb (diff)
btrfs-progs: check: get the highest inode for lost+found
root->highest_inode is not accurate at the time of creating a lost+found and it fails because the highest_inode+1 is already present. This could be because of fixes after highest_inode is set. Instead, search for the highest inode in the tree and use it for lost+found. This makes root->highest_inode unnecessary and hence deleted. Signed-off-by: Goldwyn Rodrigues <rgoldwyn@suse.com> Reviewed-by: Qu Wenruo <quwenruo@cn.fujitsu.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'disk-io.c')
-rw-r--r--disk-io.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/disk-io.c b/disk-io.c
index 9140a81b..2a94d4fc 100644
--- a/disk-io.c
+++ b/disk-io.c
@@ -494,7 +494,6 @@ void btrfs_setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
root->fs_info = fs_info;
root->objectid = objectid;
root->last_trans = 0;
- root->highest_inode = 0;
root->last_inode_alloc = 0;
INIT_LIST_HEAD(&root->dirty_list);