diff options
author | Josef Bacik <josef@toxicpanda.com> | 2021-11-05 16:45:42 -0400 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2022-01-03 15:09:48 +0100 |
commit | 30a9da5d8d494dda15d4b79a8596445140d3aac9 (patch) | |
tree | 77030b2487931c34db1ba8b57324034823c86f08 /fs/btrfs/backref.c | |
parent | fd51eb2f07c7deb8af97ab699e6239e03aa7c5f6 (diff) | |
download | lwn-30a9da5d8d494dda15d4b79a8596445140d3aac9.tar.gz lwn-30a9da5d8d494dda15d4b79a8596445140d3aac9.zip |
btrfs: don't use extent_root in iterate_extent_inodes
We are going to have many extent_roots soon, and we don't need a root
here necessarily as we're not modifying anything, we're just getting the
trans handle so we can have an accurate view of references, so use the
tree_root here.
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/backref.c')
-rw-r--r-- | fs/btrfs/backref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/backref.c b/fs/btrfs/backref.c index c6320c43319a..b51f8f90f226 100644 --- a/fs/btrfs/backref.c +++ b/fs/btrfs/backref.c @@ -1969,7 +1969,7 @@ int iterate_extent_inodes(struct btrfs_fs_info *fs_info, extent_item_objectid); if (!search_commit_root) { - trans = btrfs_attach_transaction(fs_info->extent_root); + trans = btrfs_attach_transaction(fs_info->tree_root); if (IS_ERR(trans)) { if (PTR_ERR(trans) != -ENOENT && PTR_ERR(trans) != -EROFS) |