From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Amir Goldstein <amir73il@gmail.com>
Cc: Miklos Szeredi <miklos@szeredi.hu>,
Dave Chinner <david@fromorbit.com>,
linux-unionfs@vger.kernel.org, Christoph Hellwig <hch@lst.de>,
linux-xfs@vger.kernel.org,
linux-fsdevel <linux-fsdevel@vger.kernel.org>
Subject: Re: [PATCH v3 3/4] vfs: allow vfs_copy_file_range() across file systems
Date: Mon, 26 Sep 2016 11:16:17 -0700 [thread overview]
Message-ID: <20160926181617.GB14092@birch.djwong.org> (raw)
In-Reply-To: <CAOQ4uxhJ16BpJUQjNLY_m2Fjr1=jiKGfn3vfR=rPxP-GwmB-dg@mail.gmail.com>
On Mon, Sep 26, 2016 at 09:12:13PM +0300, Amir Goldstein wrote:
> On Mon, Sep 26, 2016 at 7:33 PM, Darrick J. Wong
> <darrick.wong@oracle.com> wrote:
> > On Fri, Sep 23, 2016 at 09:52:42PM +0300, Amir Goldstein wrote:
> >> On Fri, Sep 23, 2016 at 7:13 PM, Darrick J. Wong
> >> <darrick.wong@oracle.com> wrote:
> >> > On Fri, Sep 23, 2016 at 10:57:56AM +0300, Amir Goldstein wrote:
> >> >> On Wed, Sep 14, 2016 at 3:43 PM, Amir Goldstein <amir73il@gmail.com> wrote:
> >> >> > copy_file_range syscall returns -EXDEV if src and dest
> >> >> > file are not on the same file system.
> >> >> > The vfs_copy_file_range() helper, however, knows how to copy
> >> >> > across file systems with do_splice_direct().
> >> >> >
> >> >> > Move the enforcement of same file system from the vfs helper
> >> >> > to the syscall code.
> >> >> >
> >> >> > A following patch is going to use the vfs_copy_file_range()
> >> >> > helper in overlayfs to copy up between lower and upper
> >> >> > not on the same file system.
> >> >> >
> >> >> > Signed-off-by: Amir Goldstein <amir73il@gmail.com>
> >> >> > ---
> >> >> > fs/read_write.c | 16 +++++++++++-----
> >> >> > 1 file changed, 11 insertions(+), 5 deletions(-)
> >> >> >
> >> >> > diff --git a/fs/read_write.c b/fs/read_write.c
> >> >> > index 9dc6e52..6975fe8 100644
> >> >> > --- a/fs/read_write.c
> >> >> > +++ b/fs/read_write.c
> >> >> > @@ -1502,10 +1502,6 @@ ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
> >> >> > (file_out->f_flags & O_APPEND))
> >> >> > return -EBADF;
> >> >> >
> >> >> > - /* this could be relaxed once a method supports cross-fs copies */
> >> >> > - if (inode_in->i_sb != inode_out->i_sb)
> >> >> > - return -EXDEV;
> >> >> > -
> >> >> > if (len == 0)
> >> >> > return 0;
> >> >> >
> >> >> > @@ -1514,7 +1510,9 @@ ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
> >> >> > return ret;
> >> >> >
> >> >> > ret = -EOPNOTSUPP;
> >> >> > - if (file_out->f_op->copy_file_range)
> >> >> > + /* copy_file_range() method does not support cross-fs copies */
> >> >> > + if (inode_in->i_sb == inode_out->i_sb &&
> >> >> > + file_out->f_op->copy_file_range)
> >> >> > ret = file_out->f_op->copy_file_range(file_in, pos_in, file_out,
> >> >> > pos_out, len, flags);
> >> >> > if (ret == -EOPNOTSUPP)
> >> >> > @@ -1569,6 +1567,14 @@ SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
> >> >> > pos_out = f_out.file->f_pos;
> >> >> > }
> >> >> >
> >> >> > + /*
> >> >> > + * vfs_copy_file_range() can do cross-fs copy, but we want to
> >> >> > + * fulfill the guaranty to userland that copy_file_range syscall
> >> >> > + * does not allow cross-fs copy
> >> >> > + */
> >> >> > + if (file_inode(f_in.file)->i_sb != file_inode(f_out.file)->i_sb)
> >> >> > + return -EXDEV;
> >> >>
> >> >> Oops, that was supposed to be goto out;
> >> >> Anyway, I am holding back on the vfs_copy_file_range() patches sub set
> >> >> until I have a reliable test on xfs to fall back from clone to copy range
> >> >
> >> > Ok, attached are two rough patches -- one to add the error injection point
> >> > into the kernel, and a second one to add it to the xfs_io 'inject' command.
> >> > Note that you'll have to format the XFS filesystem with rmapbt=1 since we
> >> > can't otherwise avoid per-AG ENOSPC if rmap is enabled.
> >> >
> >> > The relevant xfstests commands are:
> >> >
> >> > _require_xfs_io_error_injection "ag_resv_critical"
> >> > _scratch_inject_error "ag_resv_critical"
> >> >
> >> > See the xfs/325 test for a rough framework. I'll work on cleaning up the
> >> > patches and trying to get them into 4.9.
> >> >
> >>
> >> Thanks, Darrick, but I'm not sure that's enough. does the framework allow
> >> to inject an error for a specific AG? otherwise, the code will not
> >> fall back from
> >> failing full reflink to partial copy partial reflink.
> >
> > The error injector (as far as I know) cannot inject errors only for a
> > specific AG. However, since your goal is to have the reflink partially
> > succeed, I could set up the injector to fail only a fraction of the
> > time. The difficulty here is that what we /probably/ need is to have it
> > ENOSPC after N extents, where 0 < N <= nr_file_extents. Tricky since
> > the probabilistic nature means that it could inject during the first
> > XFS_TEST_ERROR call.
> >
> > Or change the function such that the error injector function only gets
> > called if the file offset > 0. Then you can prepare a specially crafted
> > file such that you'll always get at least a partial reflink before
> > ENOSPC. Note that the reflink functions won't return where an error
> > happened, so you'll end up recopying the entire range regardless.
> >
>
> All right. How about the realtime AG. Does it support reflink?
Not at this time, and probably never.
> Can a file have extents both in realtime AG and other AGs?
Yes -- data extents on the rt device and extended attr extents on the
regular data device. The only thing you can reflink are file data
extents on the data device. Everything else (attr blocks, directories,
metadata) cannot be shared, just like in pre-reflink XFS.
--D
next prev parent reply other threads:[~2016-09-26 18:16 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-14 12:43 [PATCH v3 0/4] ovl: efficient copy up by reflink Amir Goldstein
2016-09-14 12:43 ` [PATCH v3 1/4] vfs: allow vfs_clone_file_range() across mount points Amir Goldstein
2016-09-14 12:43 ` [PATCH v3 2/4] ovl: use vfs_clone_file_range() for copy up if possible Amir Goldstein
2016-09-21 15:09 ` Miklos Szeredi
2016-09-21 17:01 ` Amir Goldstein
2016-09-21 18:29 ` Miklos Szeredi
2016-09-29 9:00 ` Amir Goldstein
2016-09-30 11:14 ` Miklos Szeredi
2016-09-21 21:48 ` Dave Chinner
2016-09-21 21:57 ` Al Viro
2016-09-21 22:33 ` Dave Chinner
2016-09-22 2:25 ` Darrick J. Wong
2016-09-22 2:52 ` Amir Goldstein
2016-09-14 12:43 ` [PATCH v3 3/4] vfs: allow vfs_copy_file_range() across file systems Amir Goldstein
2016-09-23 7:57 ` Amir Goldstein
2016-09-23 15:19 ` Darrick J. Wong
2016-09-23 16:13 ` Darrick J. Wong
2016-09-23 18:52 ` Amir Goldstein
2016-09-24 15:06 ` Darrick J. Wong
2016-09-26 16:33 ` Darrick J. Wong
2016-09-26 18:12 ` Amir Goldstein
2016-09-26 18:16 ` Darrick J. Wong [this message]
2016-09-14 12:43 ` [PATCH v3 4/4] ovl: use vfs_copy_file_range() to copy up file data Amir Goldstein
2016-09-22 8:49 ` Amir Goldstein
2016-09-22 14:49 ` Miklos Szeredi
2016-09-22 15:44 ` Amir Goldstein
2016-09-22 17:21 ` Amir Goldstein
2016-09-19 18:55 ` [PATCH v3 0/4] ovl: efficient copy up by reflink Amir Goldstein
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160926181617.GB14092@birch.djwong.org \
--to=darrick.wong@oracle.com \
--cc=amir73il@gmail.com \
--cc=david@fromorbit.com \
--cc=hch@lst.de \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-unionfs@vger.kernel.org \
--cc=linux-xfs@vger.kernel.org \
--cc=miklos@szeredi.hu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).