linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Miklos Szeredi <miklos@szeredi.hu>
To: akpm@linux-foundation.org
Cc: hch@infradead.org, viro@ZenIV.linux.org.uk,
	linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [patch 00/24] vfs: fixes and cleanups + add helpers to check r/o bind mounts
Date: Wed, 07 May 2008 13:57:17 +0200	[thread overview]
Message-ID: <E1JtiGr-0004Ot-Dc@pomaz-ex.szeredi.hu> (raw)
In-Reply-To: <20080506091327.259950960@szeredi.hu> (message from Miklos Szeredi on Tue, 06 May 2008 11:13:27 +0200)

> Here it is again as a single series (without the ecryptfs one already
> merged).
> 
> I've addressed Christoph's comments.

And here is the same (well, with some cosmetic fixes) as a git tree,
in case it's more convenient for somebody to review/test.

git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git vfs-cleanups


 fs/attr.c                   |   26 +++++-
 fs/compat.c                 |    4 +-
 fs/ecryptfs/inode.c         |  137 +++++++++++++-------------
 fs/exec.c                   |    2 +-
 fs/fat/file.c               |    5 +-
 fs/hpfs/namei.c             |    3 +-
 fs/namei.c                  |  230 +++++++++++++++++++++++++++----------------
 fs/nfsd/nfs4recover.c       |   12 +--
 fs/nfsd/vfs.c               |  148 ++++++++++++----------------
 fs/open.c                   |  106 ++++++--------------
 fs/reiserfs/namei.c         |    2 +-
 fs/reiserfs/xattr.c         |   32 +++++-
 fs/splice.c                 |   29 +++---
 fs/sysfs/file.c             |    5 +-
 fs/utimes.c                 |  197 ++++++++++++++++++++++---------------
 fs/xattr.c                  |   85 ++++++++--------
 include/linux/fs.h          |   21 +++--
 include/linux/reiserfs_fs.h |    1 +
 include/linux/time.h        |    5 +-
 include/linux/xattr.h       |    5 +-
 ipc/mqueue.c                |   16 ++-
 kernel/cgroup.c             |    5 +-
 mm/filemap.c                |    2 +-
 mm/tiny-shmem.c             |    2 +-
 net/unix/af_unix.c          |    6 +-
 25 files changed, 587 insertions(+), 499 deletions(-)

Miklos Szeredi (25):
      ecryptfs: clean up (un)lock_parent
      nfsd: clean up mnt_want_write calls
      cgroup: don't call vfs_mkdir
      reiserfs: don't call vfs_rmdir
      reiserfs: don't call notify_change
      sysfs: don't call notify_change
      hpfs: don't call notify_change
      fat: don't call notify_change
      vfs: immutable inode checking cleanup
      vfs: truncate: don't check immutable twice
      vfs: truncate: append-only checking cleanup
      vfs: create file_truncate() helper
      vfs: utimes immutable fix
      vfs: utimes cleanup
      vfs: splice remove_suid() cleanup
      vfs: add path_create() and path_mknod()
      vfs: add path_mkdir()
      vfs: add path_rmdir()
      vfs: add path_unlink()
      vfs: add path_symlink()
      vfs: add path_link()
      vfs: add path_rename()
      vfs: add path_setattr()
      vfs: add path_setxattr()
      vfs: add path_removexattr()


      parent reply	other threads:[~2008-05-07 11:57 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-05-06  9:13 [patch 00/24] vfs: fixes and cleanups + add helpers to check r/o bind mounts Miklos Szeredi
2008-05-06  9:13 ` [patch 01/24] nfsd: clean up mnt_want_write calls Miklos Szeredi
2008-05-06  9:13 ` [patch 02/24] cgroup: dont call vfs_mkdir Miklos Szeredi
2008-05-06  9:13 ` [patch 03/24] reiserfs: dont call vfs_rmdir Miklos Szeredi
2008-05-06  9:13 ` [patch 04/24] reiserfs: dont call notify_change Miklos Szeredi
2008-05-08 16:49   ` Christoph Hellwig
2008-05-06  9:13 ` [patch 05/24] sysfs: " Miklos Szeredi
2008-05-08 16:50   ` Christoph Hellwig
2008-05-06  9:13 ` [patch 06/24] hpfs: " Miklos Szeredi
2008-05-08  0:41   ` Mikulas Patocka
2008-05-08 16:52   ` Christoph Hellwig
2008-05-09  1:59     ` Mikulas Patocka
2008-05-06  9:13 ` [patch 07/24] fat: " Miklos Szeredi
2008-05-08 16:57   ` Christoph Hellwig
2008-05-08 18:51     ` Miklos Szeredi
2008-05-08 19:42     ` OGAWA Hirofumi
2008-05-08 23:45     ` James Morris
2008-05-06  9:13 ` [patch 08/24] vfs: immutable inode checking cleanup Miklos Szeredi
2008-05-15  7:23   ` Al Viro
2008-05-15  7:39     ` Miklos Szeredi
2008-05-06  9:13 ` [patch 09/24] vfs: truncate: dont check immutable twice Miklos Szeredi
2008-05-06  9:13 ` [patch 10/24] vfs: truncate: append-only checking cleanup Miklos Szeredi
2008-05-15  7:49   ` Al Viro
2008-05-15  7:58     ` Miklos Szeredi
2008-05-06  9:13 ` [patch 11/24] vfs: create file_truncate() helper Miklos Szeredi
2008-05-06  9:13 ` [patch 12/24] vfs: utimes immutable fix Miklos Szeredi
2008-05-06  9:13 ` [patch 13/24] vfs: utimes cleanup Miklos Szeredi
2008-05-06 10:03   ` Miklos Szeredi
2008-05-15  7:39     ` Al Viro
2008-05-15  7:45       ` Miklos Szeredi
2008-05-06  9:13 ` [patch 14/24] vfs: splice remove_suid() cleanup Miklos Szeredi
2008-05-06  9:13 ` [patch 15/24] vfs: add path_create() and path_mknod() Miklos Szeredi
2008-05-06  9:13 ` [patch 16/24] vfs: add path_mkdir() Miklos Szeredi
2008-05-06  9:13 ` [patch 17/24] vfs: add path_rmdir() Miklos Szeredi
2008-05-06  9:13 ` [patch 18/24] vfs: add path_unlink() Miklos Szeredi
2008-05-06  9:13 ` [patch 19/24] vfs: add path_symlink() Miklos Szeredi
2008-05-06  9:13 ` [patch 20/24] vfs: add path_link() Miklos Szeredi
2008-05-06  9:13 ` [patch 21/24] vfs: add path_rename() Miklos Szeredi
2008-05-06  9:13 ` [patch 22/24] vfs: add path_setattr() Miklos Szeredi
2008-05-06  9:13 ` [patch 23/24] vfs: add path_setxattr() Miklos Szeredi
2008-05-06  9:13 ` [patch 24/24] vfs: add path_removexattr() Miklos Szeredi
2008-05-06  9:16 ` [patch 00/24] vfs: fixes and cleanups + add helpers to check r/o bind mounts Christoph Hellwig
2008-05-06 10:33   ` Miklos Szeredi
2008-05-14 14:55     ` Pavel Machek
2008-05-07 11:57 ` Miklos Szeredi [this message]

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=E1JtiGr-0004Ot-Dc@pomaz-ex.szeredi.hu \
    --to=miklos@szeredi.hu \
    --cc=akpm@linux-foundation.org \
    --cc=hch@infradead.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=viro@ZenIV.linux.org.uk \
    /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).