Commit 95b757c1 authored by David Sterba's avatar David Sterba

btrfs: drop fs_info parameter from tree_mod_log_free_eb

It's provided by the extent_buffer.
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent db7279a2
...@@ -654,12 +654,10 @@ __tree_mod_log_free_eb(struct btrfs_fs_info *fs_info, ...@@ -654,12 +654,10 @@ __tree_mod_log_free_eb(struct btrfs_fs_info *fs_info,
return 0; return 0;
} }
static noinline int static noinline int tree_mod_log_insert_root(struct extent_buffer *old_root,
tree_mod_log_insert_root(struct btrfs_fs_info *fs_info, struct extent_buffer *new_root, int log_removal)
struct extent_buffer *old_root,
struct extent_buffer *new_root,
int log_removal)
{ {
struct btrfs_fs_info *fs_info = old_root->fs_info;
struct tree_mod_elem *tm = NULL; struct tree_mod_elem *tm = NULL;
struct tree_mod_elem **tm_list = NULL; struct tree_mod_elem **tm_list = NULL;
int nritems = 0; int nritems = 0;
...@@ -932,8 +930,7 @@ tree_mod_log_set_root_pointer(struct btrfs_root *root, ...@@ -932,8 +930,7 @@ tree_mod_log_set_root_pointer(struct btrfs_root *root,
int log_removal) int log_removal)
{ {
int ret; int ret;
ret = tree_mod_log_insert_root(root->fs_info, root->node, ret = tree_mod_log_insert_root(root->node, new_root_node, log_removal);
new_root_node, log_removal);
BUG_ON(ret < 0); BUG_ON(ret < 0);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment