All of lore.kernel.org
 help / color / mirror / Atom feed
* [git pull] more VFS stuff
@ 2009-04-03  1:42 Al Viro
  0 siblings, 0 replies; 4+ messages in thread
From: Al Viro @ 2009-04-03  1:42 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel

Mostly fs_struct fixes.  Please, pull from
git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6.git/ for-linus

Shortlog:
Al Viro (12):
      Kill unsharing fs_struct in __set_personality()
      Get rid of bumping fs_struct refcount in pivot_root(2)
      Take fs_struct handling to new file (fs/fs_struct.c)
      New locking/refcounting for fs_struct
      check_unsafe_exec() doesn't care about signal handlers sharing
      New helper - current_umask()
      Get rid of indirect include of fs_struct.h
      Don't mess with descriptor table in load_elf_binary()
      Trim includes in binfmt_elf
      Don't crap into descriptor table in binfmt_som
      Trim includes of fdtable.h
      Cleanup after commit 585d3bc06f4ca57f975a5a1f698f65a45ea66225

Dmitri Vorobiev (1):
      Remove two unneeded exports and make two symbols static in fs/mpage.c

Diffstat:
 arch/cris/kernel/process.c                |    1 -
 arch/powerpc/platforms/cell/spufs/inode.c |    2 +-
 drivers/char/tty_audit.c                  |    2 -
 drivers/char/tty_ldisc.c                  |    1 -
 fs/Makefile                               |    2 +-
 fs/binfmt_elf.c                           |   22 +----
 fs/binfmt_som.c                           |    7 -
 fs/block_dev.c                            |    1 +
 fs/btrfs/acl.c                            |    2 +-
 fs/btrfs/ioctl.c                          |    2 +-
 fs/buffer.c                               |    1 -
 fs/cifs/dir.c                             |    4 +-
 fs/cifs/inode.c                           |    4 +-
 fs/compat.c                               |   16 +++-
 fs/dcache.c                               |    2 +-
 fs/exec.c                                 |   35 +++++--
 fs/ext2/acl.c                             |    2 +-
 fs/ext3/acl.c                             |    2 +-
 fs/ext4/acl.c                             |    2 +-
 fs/fat/inode.c                            |    2 +-
 fs/fs_struct.c                            |  177 +++++++++++++++++++++++++++++
 fs/generic_acl.c                          |    2 +-
 fs/gfs2/acl.c                             |    2 +-
 fs/hfsplus/options.c                      |    2 +-
 fs/hpfs/super.c                           |    2 +-
 fs/internal.h                             |    8 +-
 fs/jffs2/acl.c                            |    2 +-
 fs/jfs/acl.c                              |    2 +-
 fs/mpage.c                                |   13 ++-
 fs/namei.c                                |   14 +--
 fs/namespace.c                            |   61 +----------
 fs/nfs/nfs3proc.c                         |    6 +-
 fs/nfs/nfs4proc.c                         |    2 +-
 fs/nfsd/nfssvc.c                          |    7 +-
 fs/ocfs2/acl.c                            |    2 +-
 fs/omfs/inode.c                           |    2 +-
 fs/open.c                                 |    1 +
 fs/proc/base.c                            |    1 +
 fs/proc/task_nommu.c                      |    3 +-
 fs/reiserfs/xattr_acl.c                   |    2 +-
 fs/xfs/linux-2.6/xfs_iops.c               |    4 +-
 include/linux/buffer_head.h               |   12 --
 include/linux/fs.h                        |   14 +++
 include/linux/fs_struct.h                 |   10 +-
 include/linux/mnt_namespace.h             |    2 +
 include/linux/mpage.h                     |   10 --
 include/linux/nsproxy.h                   |    1 +
 include/linux/sched.h                     |    3 +-
 init/do_mounts.c                          |    1 +
 ipc/mqueue.c                              |    2 +-
 kernel/auditsc.c                          |    1 +
 kernel/exec_domain.c                      |   23 +----
 kernel/exit.c                             |   32 +-----
 kernel/fork.c                             |   63 +++++------
 kernel/sys.c                              |    1 +
 net/unix/af_unix.c                        |    2 +-
 security/tomoyo/realpath.c                |    1 +
 57 files changed, 337 insertions(+), 268 deletions(-)


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

* [git pull] more vfs stuff
@ 2010-08-11  4:55 Al Viro
  0 siblings, 0 replies; 4+ messages in thread
From: Al Viro @ 2010-08-11  4:55 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, linux-fsdevel

	Misc stuff missed in the previous pile (including fixup for 9p
breakage).  The last part in sysvfs series replaced with akpm's version
(with its whitespace fixes) with bogus include _not_ added.  Freeze
stuff still pending; unfortunately, I've found a hole in my variant ;-/
I know how to fix that, but I'd rather not send an untested locking change.
It *is* needed in this cycle, since the current variant is simply broken -
for example, try Alt-Sysrq-Emergency Thaw and it'll reliably deadlock ;-/

Please, pull from usual place -
git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6.git/ for-linus

More to follow...

Shortlog:

Jan Andres (1):
      isofs: Fix lseek() to position beyond 4 GB

Lubomir Rintel (3):
      Add v7 alias
      V7: Adjust sanity checks for some volumes
      fs/sysv/super.c: add support for non-PDP11 v7 filesystems

Miklos Szeredi (8):
      cachefiles: use path_get instead of lone dget
      vfs: add helpers to get root and pwd
      ia64: perfmon: add d_dname method
      vfs: __d_path: dont prepend the name of the root dentry
      vfs: add prepend_path() helper
      vfs: only add " (deleted)" where necessary
      vfs: show unreachable paths in getcwd and proc
      vfs: remove unused MNT_STRICTATIME

Stephen Rothwell (1):
      v9fs: fixup for inode_setattr being removed

Diffstat:
 arch/ia64/kernel/perfmon.c |   15 ++--
 fs/9p/vfs_inode.c          |   15 +++-
 fs/cachefiles/daemon.c     |   32 +++-----
 fs/dcache.c                |  188 +++++++++++++++++++++++++++++++-------------
 fs/fs_struct.c             |    7 +--
 fs/isofs/inode.c           |    7 ++-
 fs/namei.c                 |   15 +---
 fs/namespace.c             |    6 +-
 fs/proc/base.c             |   24 +++---
 fs/sysv/super.c            |   73 ++++++++++++-----
 include/linux/dcache.h     |    1 +
 include/linux/fs_struct.h  |   27 ++++++
 include/linux/mount.h      |    1 -
 include/linux/path.h       |    5 +
 include/linux/sysv_fs.h    |   11 +++
 kernel/auditsc.c           |    9 +--
 16 files changed, 285 insertions(+), 151 deletions(-)

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

* [git pull] more vfs stuff
@ 2011-03-18 15:54 Al Viro
  0 siblings, 0 replies; 4+ messages in thread
From: Al Viro @ 2011-03-18 15:54 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, linux-fsdevel

	Mostly vfsmount-related stuff; some leftovers from mnt_devname
(not all, BTW - there's more pending cleanups around nfs/super.c) plus
pstore fix plus deadlock fix in pivot_root().  The really neat thing is
that now we have no blocking on fs locks under namespace_sem - the only
blocking stuff under it now is kmalloc(), which makes things much more
robust.  Please, pull from the usual place -
git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6.git/ for-linus

More to follow tonight - I hoped to push assorted patches accumulated
during the last cycle in this pile, but that'll have to wait until the
next push.

Shortlog:
Al Viro (6):
      kill simple_set_mnt()
      vfs: split off vfsmount-related parts of vfs_kern_mount()
      fix deadlock in pivot_root()
      change the locking order for namespace_sem
      don't pass 'mounting_here' flag to follow_down()
      lose 'mounting_here' argument in ->d_manage()

Josef Bacik (1):
      fs: call security_d_instantiate in d_obtain_alias V2

Tony Luck (1):
      Some fixes for pstore

Diffstat:
 Documentation/filesystems/vfs.txt |    6 +-
 fs/autofs4/root.c                 |    6 +-
 fs/dcache.c                       |    3 +
 fs/internal.h                     |    5 +-
 fs/namei.c                        |    9 +-
 fs/namespace.c                    |  292 +++++++++++++++++++++++--------------
 fs/nfsd/vfs.c                     |    2 +-
 fs/pstore/inode.c                 |  116 +++++++--------
 fs/super.c                        |   96 ++----------
 include/linux/dcache.h            |    2 +-
 include/linux/fs.h                |    1 -
 include/linux/namei.h             |    2 +-
 12 files changed, 271 insertions(+), 269 deletions(-)


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

* [git pull] more vfs stuff
@ 2011-08-05  0:41 Al Viro
  0 siblings, 0 replies; 4+ messages in thread
From: Al Viro @ 2011-08-05  0:41 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, linux-fsdevel

	Rafael's fix + RCU freeing of posix_acl.  Please, pull from
git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6.git/ for-linus

Shortlog:
Al Viro (2):
      get rid of boilerplate switches in posix_acl.h
      RCUify freeing acls, let check_acl() go ahead in RCU mode if acl is cached

Rafael J. Wysocki (1):
      fix block device fallout from ->fsync() changes

Diffstat:
 fs/block_dev.c            |    4 ++
 fs/namei.c                |   17 ++++-------
 include/linux/posix_acl.h |   74 ++++++++++++++++-----------------------------
 3 files changed, 36 insertions(+), 59 deletions(-)

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

end of thread, other threads:[~2011-08-05  0:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-18 15:54 [git pull] more vfs stuff Al Viro
  -- strict thread matches above, loose matches on Subject: below --
2011-08-05  0:41 Al Viro
2010-08-11  4:55 Al Viro
2009-04-03  1:42 [git pull] more VFS stuff Al Viro

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.