mirror of https://gitee.com/openkylin/linux.git
btrfs: remove unused parameter from split_item
Never used. Reviewed-by: Liu Bo <bo.li.liu@oracle.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
7c302b49dd
commit
4961e2930f
|
@ -4413,8 +4413,7 @@ static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
|
|||
return ret;
|
||||
}
|
||||
|
||||
static noinline int split_item(struct btrfs_trans_handle *trans,
|
||||
struct btrfs_fs_info *fs_info,
|
||||
static noinline int split_item(struct btrfs_fs_info *fs_info,
|
||||
struct btrfs_path *path,
|
||||
const struct btrfs_key *new_key,
|
||||
unsigned long split_offset)
|
||||
|
@ -4511,7 +4510,7 @@ int btrfs_split_item(struct btrfs_trans_handle *trans,
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = split_item(trans, root->fs_info, path, new_key, split_offset);
|
||||
ret = split_item(root->fs_info, path, new_key, split_offset);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue