diff options
author | Marcos Paulo de Souza <mpdesouza@suse.com> | 2021-07-20 15:02:47 -0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2021-08-23 13:19:00 +0200 |
commit | 6534c0c99dddafc47bd4152949751ccd6a5681fc (patch) | |
tree | 0d1ed1dacd98fbc2e12a3e34dd5a60f2eeb9cda7 /fs/btrfs/backref.c | |
parent | 069a2e37789a9adb236d8f7a5f65a1390b51f184 (diff) |
btrfs: pass NULL as trans to btrfs_search_slot if we only want to search
Using a transaction in btrfs_search_slot is only useful when we are
searching to add or modify the tree. When the function is used for
searching, insert length and mod arguments are 0, there is no need to
use a transaction.
No functional changes, changing for consistency.
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Signed-off-by: Marcos Paulo de Souza <mpdesouza@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 78b202d198b8..728c728d03f3 100644 --- a/fs/btrfs/backref.c +++ b/fs/btrfs/backref.c @@ -1211,7 +1211,7 @@ static int find_parent_nodes(struct btrfs_trans_handle *trans, again: head = NULL; - ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0); + ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0); if (ret < 0) goto out; BUG_ON(ret == 0); |