diff options
author | Filipe Manana <fdmanana@suse.com> | 2021-10-25 17:31:52 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2021-10-29 12:39:13 +0200 |
commit | d1ed82f3559e151804743df0594f45d7ff6e55fa (patch) | |
tree | 533e2a0fab0ce059b562802fd2502fe0e3b6dab5 /fs/btrfs | |
parent | 6d9cc07215c7f09e215dd2a19233996845040ae7 (diff) | |
download | linux-d1ed82f3559e151804743df0594f45d7ff6e55fa.tar.bz2 |
btrfs: remove root argument from check_item_in_log()
The root argument passed to check_item_in_log() always matches the root
of the given directory, so it can be eliminated.
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs')
-rw-r--r-- | fs/btrfs/tree-log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index b753b3c87e14..8ab33caf016f 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c @@ -2280,13 +2280,13 @@ out: * to is unlinked */ static noinline int check_item_in_log(struct btrfs_trans_handle *trans, - struct btrfs_root *root, struct btrfs_root *log, struct btrfs_path *path, struct btrfs_path *log_path, struct inode *dir, struct btrfs_key *dir_key) { + struct btrfs_root *root = BTRFS_I(dir)->root; int ret; struct extent_buffer *eb; int slot; @@ -2560,7 +2560,7 @@ again: if (found_key.offset > range_end) break; - ret = check_item_in_log(trans, root, log, path, + ret = check_item_in_log(trans, log, path, log_path, dir, &found_key); if (ret) |