Message ID | 18a2895c6859246d061ada47912e18283d19bbb6.1486977712.git.dsterba@suse.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
On Mon, Feb 13, 2017 at 10:33:42AM +0100, David Sterba wrote: > Unused since long ago. Reviewed-by: Liu Bo <bo.li.liu@oracle.com> Thanks, -liubo > > Signed-off-by: David Sterba <dsterba@suse.com> > --- > fs/btrfs/ctree.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c > index 4c5d7c40c8bf..2283f92b5484 100644 > --- a/fs/btrfs/ctree.c > +++ b/fs/btrfs/ctree.c > @@ -3595,8 +3595,7 @@ noinline int btrfs_leaf_free_space(struct btrfs_fs_info *fs_info, > * min slot controls the lowest index we're willing to push to the > * right. We'll push up to and including min_slot, but no lower > */ > -static noinline int __push_leaf_right(struct btrfs_trans_handle *trans, > - struct btrfs_fs_info *fs_info, > +static noinline int __push_leaf_right(struct btrfs_fs_info *fs_info, > struct btrfs_path *path, > int data_size, int empty, > struct extent_buffer *right, > @@ -3810,7 +3809,7 @@ static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root > return 0; > } > > - return __push_leaf_right(trans, fs_info, path, min_data_size, empty, > + return __push_leaf_right(fs_info, path, min_data_size, empty, > right, free_space, left_nritems, min_slot); > out_unlock: > btrfs_tree_unlock(right); > -- > 2.10.1 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c index 4c5d7c40c8bf..2283f92b5484 100644 --- a/fs/btrfs/ctree.c +++ b/fs/btrfs/ctree.c @@ -3595,8 +3595,7 @@ noinline int btrfs_leaf_free_space(struct btrfs_fs_info *fs_info, * min slot controls the lowest index we're willing to push to the * right. We'll push up to and including min_slot, but no lower */ -static noinline int __push_leaf_right(struct btrfs_trans_handle *trans, - struct btrfs_fs_info *fs_info, +static noinline int __push_leaf_right(struct btrfs_fs_info *fs_info, struct btrfs_path *path, int data_size, int empty, struct extent_buffer *right, @@ -3810,7 +3809,7 @@ static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root return 0; } - return __push_leaf_right(trans, fs_info, path, min_data_size, empty, + return __push_leaf_right(fs_info, path, min_data_size, empty, right, free_space, left_nritems, min_slot); out_unlock: btrfs_tree_unlock(right);
Unused since long ago. Signed-off-by: David Sterba <dsterba@suse.com> --- fs/btrfs/ctree.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)