|
@@ -4413,8 +4413,7 @@ err:
|
|
return ret;
|
|
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,
|
|
struct btrfs_path *path,
|
|
const struct btrfs_key *new_key,
|
|
const struct btrfs_key *new_key,
|
|
unsigned long split_offset)
|
|
unsigned long split_offset)
|
|
@@ -4511,7 +4510,7 @@ int btrfs_split_item(struct btrfs_trans_handle *trans,
|
|
if (ret)
|
|
if (ret)
|
|
return 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;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|