All of lore.kernel.org
 help / color / mirror / Atom feed
* [ANNOUNCE] xfs-linux: copy-file-range-fixes updated to fe0da9c09b2d
@ 2019-06-10 16:06 Darrick J. Wong
  2019-06-10 17:14 ` Amir Goldstein
  0 siblings, 1 reply; 3+ messages in thread
From: Darrick J. Wong @ 2019-06-10 16:06 UTC (permalink / raw)
  To: xfs
  Cc: linux-fsdevel, olga.kornievskaia, amir73il, Theodore Ts'o,
	Dave Chinner

Hi folks,

The copy-file-range-fixes branch of the xfs-linux repository at:

	git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git

has just been updated.  This is a common branch from which everyone else
can create their own copy-file-range fix branches for 5.3.  When you
send your pull request to Linus please let him know that the fixes
stream out from here like some kind of hydra. :)

FWIW these patches are the fixes for the problems that have been
reported in generic/553 and generic/554.

Patches often get missed, so please check if your outstanding patches
were in this update. If they have not been in this update, please
resubmit them to linux-fsdevel@vger.kernel.org so they can be picked up
in the next update.

The new head of the copy-file-range-fixes branch is commit:

fe0da9c09b2d fuse: copy_file_range needs to strip setuid bits and update timestamps

New Commits:

Amir Goldstein (7):
      [a31713517dac] vfs: introduce generic_file_rw_checks()
      [646955cd5425] vfs: remove redundant checks from generic_remap_checks()
      [96e6e8f4a68d] vfs: add missing checks to copy_file_range
      [e38f7f53c352] vfs: introduce file_modified() helper
      [8c3f406c097b] xfs: use file_modified() helper
      [5dae222a5ff0] vfs: allow copy_file_range to copy across devices
      [fe0da9c09b2d] fuse: copy_file_range needs to strip setuid bits and update timestamps

Dave Chinner (2):
      [f16acc9d9b37] vfs: introduce generic_copy_file_range()
      [64bf5ff58dff] vfs: no fallback for ->copy_file_range


Code Diffstat:

 fs/ceph/file.c     |  23 ++++++++--
 fs/cifs/cifsfs.c   |   4 ++
 fs/fuse/file.c     |  29 +++++++++++--
 fs/inode.c         |  20 +++++++++
 fs/nfs/nfs4file.c  |  23 ++++++++--
 fs/read_write.c    | 124 +++++++++++++++++++++++++++++------------------------
 fs/xfs/xfs_file.c  |  15 +------
 include/linux/fs.h |   9 ++++
 mm/filemap.c       | 110 ++++++++++++++++++++++++++++++++++++++---------
 9 files changed, 257 insertions(+), 100 deletions(-)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [ANNOUNCE] xfs-linux: copy-file-range-fixes updated to fe0da9c09b2d
  2019-06-10 16:06 [ANNOUNCE] xfs-linux: copy-file-range-fixes updated to fe0da9c09b2d Darrick J. Wong
@ 2019-06-10 17:14 ` Amir Goldstein
  2019-06-11  1:11   ` Darrick J. Wong
  0 siblings, 1 reply; 3+ messages in thread
From: Amir Goldstein @ 2019-06-10 17:14 UTC (permalink / raw)
  To: Darrick J. Wong, Miklos Szeredi, Anna Schumaker, Steve French,
	Ilya Dryomov
  Cc: xfs, linux-fsdevel, Olga Kornievskaia, Theodore Ts'o,
	Dave Chinner, Linux NFS Mailing List, CIFS, ceph-devel

+CC affected maintainers

On Mon, Jun 10, 2019 at 7:06 PM Darrick J. Wong <darrick.wong@oracle.com> wrote:
>
> Hi folks,
>
> The copy-file-range-fixes branch of the xfs-linux repository at:
>
>         git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
>
> has just been updated.  This is a common branch from which everyone else
> can create their own copy-file-range fix branches for 5.3.  When you
> send your pull request to Linus please let him know that the fixes
> stream out from here like some kind of hydra. :)

Thanks Darrick!
Should we also request to include this branch in linux-next?

Attention nfs/cifs/fuse/ceph maintainers!
This branch includes changes to your filesystems.
At lease nfs/cifs/ceph have been tested with these changes and the
new xfstests.

I think it would be preferred if you merge Darrick's branch into your
5.3 branch as soon as you have one ready to reduce chances of
conflicts down the road.

I will be sending out 2 more patches to cifs/ceph, which depend on
this branch directly to maintainers.

Thanks,
Amir.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [ANNOUNCE] xfs-linux: copy-file-range-fixes updated to fe0da9c09b2d
  2019-06-10 17:14 ` Amir Goldstein
@ 2019-06-11  1:11   ` Darrick J. Wong
  0 siblings, 0 replies; 3+ messages in thread
From: Darrick J. Wong @ 2019-06-11  1:11 UTC (permalink / raw)
  To: Amir Goldstein
  Cc: Miklos Szeredi, Anna Schumaker, Steve French, Ilya Dryomov, xfs,
	linux-fsdevel, Olga Kornievskaia, Theodore Ts'o,
	Dave Chinner, Linux NFS Mailing List, CIFS, ceph-devel

On Mon, Jun 10, 2019 at 08:14:08PM +0300, Amir Goldstein wrote:
> +CC affected maintainers
> 
> On Mon, Jun 10, 2019 at 7:06 PM Darrick J. Wong <darrick.wong@oracle.com> wrote:
> >
> > Hi folks,
> >
> > The copy-file-range-fixes branch of the xfs-linux repository at:
> >
> >         git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
> >
> > has just been updated.  This is a common branch from which everyone else
> > can create their own copy-file-range fix branches for 5.3.  When you
> > send your pull request to Linus please let him know that the fixes
> > stream out from here like some kind of hydra. :)
> 
> Thanks Darrick!
> Should we also request to include this branch in linux-next?

Yeah, I was going to do that after 24h (i.e. it'll be in Wednesday's
-next) to see if anyone had any last minute "ZOMG this patch has to be
changed" screaming.

> Attention nfs/cifs/fuse/ceph maintainers!
> This branch includes changes to your filesystems.
> At lease nfs/cifs/ceph have been tested with these changes and the
> new xfstests.
> 
> I think it would be preferred if you merge Darrick's branch into your
> 5.3 branch as soon as you have one ready to reduce chances of
> conflicts down the road.
> 
> I will be sending out 2 more patches to cifs/ceph, which depend on
> this branch directly to maintainers.

Noted.

--D

> Thanks,
> Amir.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-06-11  1:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-10 16:06 [ANNOUNCE] xfs-linux: copy-file-range-fixes updated to fe0da9c09b2d Darrick J. Wong
2019-06-10 17:14 ` Amir Goldstein
2019-06-11  1:11   ` Darrick J. Wong

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.