Message ID | 3f8bfd048583e3c93e834305b46152b05c76b70a.1486977712.git.dsterba@suse.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
On Mon, Feb 13, 2017 at 10:34:38AM +0100, David Sterba wrote: > Never used. > Reviewed-by: Liu Bo <bo.li.liu@oracle.com> Thanks, -liubo > Signed-off-by: David Sterba <dsterba@suse.com> > --- > fs/btrfs/ioctl.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c > index 1f13f8416d29..b9e6f8a4f760 100644 > --- a/fs/btrfs/ioctl.c > +++ b/fs/btrfs/ioctl.c > @@ -3383,8 +3383,7 @@ static void clone_update_extent_map(struct inode *inode, > * data into the destination inode's inline extent if the later is greater then > * the former. > */ > -static int clone_copy_inline_extent(struct inode *src, > - struct inode *dst, > +static int clone_copy_inline_extent(struct inode *dst, > struct btrfs_trans_handle *trans, > struct btrfs_path *path, > struct btrfs_key *new_key, > @@ -3763,7 +3762,7 @@ static int btrfs_clone(struct inode *src, struct inode *inode, > size -= skip + trim; > datal -= skip + trim; > > - ret = clone_copy_inline_extent(src, inode, > + ret = clone_copy_inline_extent(inode, > trans, path, > &new_key, > drop_start, > -- > 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/ioctl.c b/fs/btrfs/ioctl.c index 1f13f8416d29..b9e6f8a4f760 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c @@ -3383,8 +3383,7 @@ static void clone_update_extent_map(struct inode *inode, * data into the destination inode's inline extent if the later is greater then * the former. */ -static int clone_copy_inline_extent(struct inode *src, - struct inode *dst, +static int clone_copy_inline_extent(struct inode *dst, struct btrfs_trans_handle *trans, struct btrfs_path *path, struct btrfs_key *new_key, @@ -3763,7 +3762,7 @@ static int btrfs_clone(struct inode *src, struct inode *inode, size -= skip + trim; datal -= skip + trim; - ret = clone_copy_inline_extent(src, inode, + ret = clone_copy_inline_extent(inode, trans, path, &new_key, drop_start,
Never used. Signed-off-by: David Sterba <dsterba@suse.com> --- fs/btrfs/ioctl.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)