diff options
Diffstat (limited to 'fs/btrfs/root-tree.c')
| -rw-r--r-- | fs/btrfs/root-tree.c | 22 | 
1 files changed, 10 insertions, 12 deletions
| diff --git a/fs/btrfs/root-tree.c b/fs/btrfs/root-tree.c index c451285976ac..65bda0682928 100644 --- a/fs/btrfs/root-tree.c +++ b/fs/btrfs/root-tree.c @@ -320,9 +320,9 @@ int btrfs_find_orphan_roots(struct btrfs_fs_info *fs_info)  /* drop the root item for 'key' from the tree root */  int btrfs_del_root(struct btrfs_trans_handle *trans, -		   struct btrfs_fs_info *fs_info, const struct btrfs_key *key) +		   const struct btrfs_key *key)  { -	struct btrfs_root *root = fs_info->tree_root; +	struct btrfs_root *root = trans->fs_info->tree_root;  	struct btrfs_path *path;  	int ret; @@ -341,13 +341,12 @@ out:  	return ret;  } -int btrfs_del_root_ref(struct btrfs_trans_handle *trans, -		       struct btrfs_fs_info *fs_info, -		       u64 root_id, u64 ref_id, u64 dirid, u64 *sequence, -		       const char *name, int name_len) +int btrfs_del_root_ref(struct btrfs_trans_handle *trans, u64 root_id, +		       u64 ref_id, u64 dirid, u64 *sequence, const char *name, +		       int name_len)  { -	struct btrfs_root *tree_root = fs_info->tree_root; +	struct btrfs_root *tree_root = trans->fs_info->tree_root;  	struct btrfs_path *path;  	struct btrfs_root_ref *ref;  	struct extent_buffer *leaf; @@ -413,12 +412,11 @@ out:   *   * Will return 0, -ENOMEM, or anything from the CoW path   */ -int btrfs_add_root_ref(struct btrfs_trans_handle *trans, -		       struct btrfs_fs_info *fs_info, -		       u64 root_id, u64 ref_id, u64 dirid, u64 sequence, -		       const char *name, int name_len) +int btrfs_add_root_ref(struct btrfs_trans_handle *trans, u64 root_id, +		       u64 ref_id, u64 dirid, u64 sequence, const char *name, +		       int name_len)  { -	struct btrfs_root *tree_root = fs_info->tree_root; +	struct btrfs_root *tree_root = trans->fs_info->tree_root;  	struct btrfs_key key;  	int ret;  	struct btrfs_path *path; |