From: Josef Bacik Date: Fri, 6 Nov 2020 21:27:31 +0000 (-0500) Subject: btrfs: remove btrfs_path::recurse X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2f5239dcb26b5037dc21b58fe8bb0e80243f4f6f;p=linux.git btrfs: remove btrfs_path::recurse With my async free space cache loading patches ("btrfs: load free space cache asynchronously") we no longer have a user of path->recurse and can remove it. Reviewed-by: Filipe Manana Signed-off-by: Josef Bacik Reviewed-by: David Sterba Signed-off-by: David Sterba --- diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c index 7dc3e87828bd2..2a53887a6db75 100644 --- a/fs/btrfs/ctree.c +++ b/fs/btrfs/ctree.c @@ -2533,7 +2533,7 @@ static struct extent_buffer *btrfs_search_slot_get_root(struct btrfs_root *root, * We don't know the level of the root node until we actually * have it read locked */ - b = __btrfs_read_lock_root_node(root, p->recurse); + b = __btrfs_read_lock_root_node(root, 0); level = btrfs_header_level(b); if (level > write_lock_level) goto out; @@ -2802,8 +2802,7 @@ cow_done: btrfs_tree_lock(b); p->locks[level] = BTRFS_WRITE_LOCK; } else { - __btrfs_tree_read_lock(b, BTRFS_NESTING_NORMAL, - p->recurse); + __btrfs_tree_read_lock(b, BTRFS_NESTING_NORMAL, 0); p->locks[level] = BTRFS_READ_LOCK; } p->nodes[level] = b; diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 228c5df4b17fb..f974f37488161 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -374,7 +374,6 @@ struct btrfs_path { unsigned int search_commit_root:1; unsigned int need_commit_sem:1; unsigned int skip_release_on_error:1; - unsigned int recurse:1; }; #define BTRFS_MAX_EXTENT_ITEM_SIZE(r) ((BTRFS_LEAF_DATA_SIZE(r->fs_info) >> 4) - \ sizeof(struct btrfs_item))