linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/21] vfs: atomic open v6 (part 2)
@ 2012-06-05 13:10 Miklos Szeredi
  2012-06-05 13:10 ` [PATCH 01/21] vfs: do_last(): inline lookup_slow() Miklos Szeredi
                   ` (22 more replies)
  0 siblings, 23 replies; 41+ messages in thread
From: Miklos Szeredi @ 2012-06-05 13:10 UTC (permalink / raw)
  To: viro; +Cc: linux-fsdevel, linux-kernel, hch, torvalds, dhowells, mszeredi

This is part 2 of the atomic open series.  It introduces i_op->atomic_open() and
converts filesystems that abuse ->lookup() and ->create() to use this new
interface instead.

This version has one bugfix and several cleanups, reported by David Howells.
Also updated documentation in Documentation/filesytems/{vfs.txt,Locking}.

Al, please apply.

git tree is here:

  git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git atomic-open.v6

Thanks,
Miklos
---

Miklos Szeredi (21):
      vfs: do_last(): inline lookup_slow()
      vfs: do_last(): separate O_CREAT specific code
      vfs: do_last(): common slow lookup
      vfs: add lookup_open()
      vfs: lookup_open(): expand lookup_hash()
      vfs: add i_op->atomic_open()
      nfs: implement i_op->atomic_open()
      nfs: clean up ->create in nfs_rpc_ops
      nfs: don't use nd->intent.open.flags
      nfs: don't use intents for checking atomic open
      fuse: implement i_op->atomic_open()
      cifs: implement i_op->atomic_open()
      ceph: remove unused arg from ceph_lookup_open()
      ceph: implement i_op->atomic_open()
      9p: implement i_op->atomic_open()
      vfs: remove open intents from nameidata
      vfs: do_last(): clean up error handling
      vfs: do_last(): clean up labels
      vfs: do_last(): clean up bool
      vfs: do_last(): clean up retry
      vfs: move O_DIRECT check to common code

---
 Documentation/filesystems/Locking |    4 +
 Documentation/filesystems/vfs.txt |   11 +
 fs/9p/vfs_inode.c                 |  169 ++++++++-----
 fs/9p/vfs_inode_dotl.c            |   52 +++--
 fs/ceph/dir.c                     |   68 ++++--
 fs/ceph/file.c                    |   22 +-
 fs/ceph/super.h                   |    6 +-
 fs/cifs/cifsfs.c                  |    1 +
 fs/cifs/cifsfs.h                  |    3 +
 fs/cifs/dir.c                     |  437 ++++++++++++++++++---------------
 fs/fuse/dir.c                     |   94 +++++--
 fs/internal.h                     |    8 +-
 fs/namei.c                        |  492 ++++++++++++++++++++++++++-----------
 fs/nfs/dir.c                      |  242 ++++++++-----------
 fs/nfs/nfs3proc.c                 |    2 +-
 fs/nfs/nfs4proc.c                 |   37 +--
 fs/nfs/proc.c                     |    2 +-
 fs/open.c                         |   91 ++-----
 include/linux/fs.h                |    7 +
 include/linux/namei.h             |   11 -
 include/linux/nfs_xdr.h           |    2 +-
 21 files changed, 1023 insertions(+), 738 deletions(-)

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

end of thread, other threads:[~2012-07-02 18:54 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-05 13:10 [PATCH 00/21] vfs: atomic open v6 (part 2) Miklos Szeredi
2012-06-05 13:10 ` [PATCH 01/21] vfs: do_last(): inline lookup_slow() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 02/21] vfs: do_last(): separate O_CREAT specific code Miklos Szeredi
2012-06-05 13:10 ` [PATCH 03/21] vfs: do_last(): common slow lookup Miklos Szeredi
2012-06-05 13:10 ` [PATCH 04/21] vfs: add lookup_open() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 05/21] vfs: lookup_open(): expand lookup_hash() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 06/21] vfs: add i_op->atomic_open() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 07/21] nfs: implement i_op->atomic_open() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 08/21] nfs: clean up ->create in nfs_rpc_ops Miklos Szeredi
2012-06-05 13:10 ` [PATCH 09/21] nfs: don't use nd->intent.open.flags Miklos Szeredi
2012-06-05 13:10 ` [PATCH 10/21] nfs: don't use intents for checking atomic open Miklos Szeredi
2012-06-05 13:10 ` [PATCH 11/21] fuse: implement i_op->atomic_open() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 12/21] cifs: " Miklos Szeredi
     [not found]   ` <1338901832-14049-13-git-send-email-miklos-sUDqSbJrdHQHWmgEVkV9KA@public.gmane.org>
2012-07-02 18:54     ` Jeff Layton
2012-06-05 13:10 ` [PATCH 13/21] ceph: remove unused arg from ceph_lookup_open() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 14/21] ceph: implement i_op->atomic_open() Miklos Szeredi
2012-06-05 13:10 ` [PATCH 15/21] 9p: " Miklos Szeredi
2012-06-05 13:10 ` [PATCH 16/21] vfs: remove open intents from nameidata Miklos Szeredi
2012-06-05 13:10 ` [PATCH 17/21] vfs: do_last(): clean up error handling Miklos Szeredi
2012-06-05 13:10 ` [PATCH 18/21] vfs: do_last(): clean up labels Miklos Szeredi
2012-06-05 13:10 ` [PATCH 19/21] vfs: do_last(): clean up bool Miklos Szeredi
2012-06-05 13:10 ` [PATCH 20/21] vfs: do_last(): clean up retry Miklos Szeredi
2012-06-05 13:10 ` [PATCH 21/21] vfs: move O_DIRECT check to common code Miklos Szeredi
2012-06-05 15:39 ` [PATCH 00/21] vfs: atomic open v6 (part 2) Linus Torvalds
2012-06-05 15:50   ` Miklos Szeredi
2012-06-10  3:49 ` Al Viro
2012-06-10  5:54   ` Al Viro
2012-06-10 11:10   ` Al Viro
2012-06-10 17:56     ` Al Viro
2012-06-10 22:27       ` Al Viro
2012-06-13 11:21         ` Christoph Hellwig
2012-06-14  8:08           ` Al Viro
2012-06-17 20:37         ` Christoph Hellwig
2012-06-18 11:58           ` Christoph Hellwig
2012-06-18 13:12             ` Christoph Hellwig
2012-06-18 14:27               ` Miklos Szeredi
2012-06-22  8:49                 ` Al Viro
2012-06-22 10:07               ` Al Viro
2012-06-11 10:57       ` Boaz Harrosh
2012-06-11 15:18   ` Miklos Szeredi
2012-06-11 16:33   ` Miklos Szeredi

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