linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [git pull] vfs.git part 3
@ 2017-07-05  7:14 Al Viro
  2017-07-05 21:51 ` Linus Torvalds
  0 siblings, 1 reply; 21+ messages in thread
From: Al Viro @ 2017-07-05  7:14 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, linux-fsdevel

	Christoph's fs/read_write.c series - consolidation and
cleanups.

The following changes since commit 20223f0f39ea9d31ece08f04ac79f8c4e8d98246:

  fs: pass on flags in compat_writev (2017-06-16 18:40:51 +0900)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git work.read_write

for you to fetch changes up to a4058c5bce8aded1a12a59990e84e481a96fb490:

  nfsd: remove nfsd_vfs_read (2017-06-29 17:49:24 -0400)

----------------------------------------------------------------
Christoph Hellwig (8):
      fs: remove do_readv_writev
      fs: remove do_compat_readv_writev
      fs: remove __do_readv_writev
      fs: move more code into do_iter_read/do_iter_write
      fs: implement vfs_iter_read using do_iter_read
      fs: implement vfs_iter_write using do_iter_write
      nfsd: use vfs_iter_read/write
      nfsd: remove nfsd_vfs_read

 drivers/block/loop.c              |   6 +-
 drivers/target/target_core_file.c |   6 +-
 fs/coda/file.c                    |   4 +-
 fs/nfsd/vfs.c                     |  34 +++---
 fs/read_write.c                   | 220 ++++++++++++++++----------------------
 fs/splice.c                       |   2 +-
 include/linux/fs.h                |   6 +-
 7 files changed, 117 insertions(+), 161 deletions(-)

^ permalink raw reply	[flat|nested] 21+ messages in thread
* [git pull] vfs.git, part 3
@ 2013-07-08 10:07 Al Viro
  0 siblings, 0 replies; 21+ messages in thread
From: Al Viro @ 2013-07-08 10:07 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, linux-fsdevel

Misc stuff all over the place.  Please, pull from
git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git for-linus
There will be one more pile in a couple of days.

Shortlog:
Al Viro (3):
      helper for reading ->d_count
      lustre: kill the pointless wrapper
      mode_t whack-a-mole...

Jaegeuk Kim (1):
      f2fs: fix readdir incorrectness

Jeff Layton (2):
      seq_file: add seq_list_*_percpu helpers
      locks: move file_lock_list to a set of percpu hlist_heads and convert file_lock_lock to an lglock

Wei Yongjun (1):
      ncpfs: fix error return code in ncp_parse_options()

Diffstat:
 .../lustre/include/linux/lustre_patchless_compat.h |    2 -
 drivers/staging/lustre/lustre/include/linux/lvfs.h |    2 +-
 .../staging/lustre/lustre/include/lprocfs_status.h |    6 +-
 drivers/staging/lustre/lustre/llite/dcache.c       |    8 +-
 .../staging/lustre/lustre/llite/llite_internal.h   |    4 +-
 drivers/staging/lustre/lustre/llite/llite_lib.c    |    2 +-
 drivers/staging/lustre/lustre/llite/namei.c        |    4 +-
 drivers/staging/lustre/lustre/lvfs/lvfs_linux.c    |    4 +-
 .../lustre/lustre/obdclass/lprocfs_status.c        |    8 +-
 fs/autofs4/expire.c                                |    8 +-
 fs/autofs4/root.c                                  |    2 +-
 fs/ceph/inode.c                                    |    4 +-
 fs/ceph/mds_client.c                               |    2 +-
 fs/coda/dir.c                                      |    2 +-
 fs/ecryptfs/inode.c                                |    2 +-
 fs/f2fs/dir.c                                      |   20 +++---
 fs/locks.c                                         |   71 ++++++++++++++------
 fs/ncpfs/inode.c                                   |   12 +++-
 fs/nfs/dir.c                                       |    6 +-
 fs/nfs/unlink.c                                    |    2 +-
 fs/nilfs2/super.c                                  |    2 +-
 fs/seq_file.c                                      |   54 +++++++++++++++
 include/linux/dcache.h                             |    5 ++
 include/linux/fs.h                                 |    1 +
 include/linux/seq_file.h                           |    6 ++
 25 files changed, 168 insertions(+), 71 deletions(-)

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

end of thread, other threads:[~2017-07-18  1:36 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-05  7:14 [git pull] vfs.git part 3 Al Viro
2017-07-05 21:51 ` Linus Torvalds
2017-07-05 22:38   ` Al Viro
2017-07-05 22:52     ` Christoph Hellwig
2017-07-05 23:29       ` Al Viro
2017-07-06 14:48         ` Christoph Hellwig
2017-07-06 15:03           ` Al Viro
2017-07-06 15:06             ` Christoph Hellwig
2017-07-06 15:10             ` Christoph Hellwig
2017-07-06 15:46               ` Al Viro
2017-07-06 15:51                 ` Al Viro
2017-07-06 16:58                   ` Christoph Hellwig
2017-07-06 19:11                     ` Al Viro
2017-07-06 21:44                       ` Christoph Hellwig
2017-07-06 23:27                         ` Al Viro
2017-07-07 14:00                           ` Christoph Hellwig
2017-07-07 15:48                             ` Linus Torvalds
2017-07-07 19:42                               ` Christopher Li
2017-07-08 16:24                             ` Al Viro
2017-07-18  1:36     ` [RFC] ->poll() sparse annotations Al Viro
  -- strict thread matches above, loose matches on Subject: below --
2013-07-08 10:07 [git pull] vfs.git, part 3 Al Viro

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).