[XFS updates] XFS development tree branch, master, updated. v2.6.38-28506-g2ddb4e9

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "XFS development tree".

The branch, master has been updated
  2ddb4e9 Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux
  1b8e949 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6
  206d440 xfs: Fix build breakage in xfs_iops.c when CONFIG_FS_POSIX_ACL is not set
  d695212 switch posix_acl_equiv_mode() to umode_t *
  d3fb612 switch posix_acl_create() to umode_t *
  a5a7bbc xfs: Fix build breakage in xfs_iops.c when CONFIG_FS_POSIX_ACL is not set
  597a67e Merge branch 'for-linus' of git://oss.sgi.com/xfs/xfs
  510792e xfs: optimize the negative xattr caching
  d1166ec xfs: prevent against ioend livelocks in xfs_file_fsync
  34951f5 xfs: flag all buffers as metadata
  1c4f332 xfs: encapsulate a block of debug code
  0320937 xfs: fix misspelled S_IS...()
  abbede1 xfs: get rid of open-coded S_ISREG(), etc.
  d3ec484 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
  4e34e71 fs: take the ACL checks to common code
  826cae2 kill boilerplates around posix_acl_create_masq()
  bc26ab5 kill boilerplate around posix_acl_chmod_masq()
  6311b10 xfs: cache negative ACLs if there is no attribute fork
  e77819e vfs: move ACL cache lookup into generic code
  340a0a0 xfs: Fix wrong return value of xfs_file_aio_write
  bbd9d6f Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6
  df2e301 fs: Merge split strings
  02c24a8 fs: push i_mutex and filemap_write_and_wait down into ->fsync() handlers
  72c5052 fs: move inode_dio_done to the end_io handler
  8daaa83 xfs: make use of new shrinker callout for the inode cache
  7e40145 ->permission() sanitizing: don't pass flags to ->check_acl()
  9c2c703 ->permission() sanitizing: pass MAY_NOT_BLOCK to ->check_acl()
      from  c35a549c8b9e85bdff7e531a410d10e36b4b4f32 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 2ddb4e94065470828e131351566102274ea9e83f
Merge: c35a549c8b9e85bdff7e531a410d10e36b4b4f32 322a8b034003c0d46d39af85bf24fee27b902f48
Author: Alex Elder <aelder@xxxxxxx>
Date:   Mon Aug 8 07:06:24 2011 -0500

    Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux

commit 1b8e94993c4752d98c33903aa836acc15f7e6d5c
Merge: 12ff47e7f5fb64c566f62e6cf6a3b291c51bd337 206d440f64030b6425841bf7cb38e26a5ea0c382
Author: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx>
Date:   Mon Aug 1 13:48:31 2011 -1000

    Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6
    
    * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6:
      xfs: Fix build breakage in xfs_iops.c when CONFIG_FS_POSIX_ACL is not set
      VFS: Reorganise shrink_dcache_for_umount_subtree() after demise of dcache_lock
      VFS: Remove dentry->d_lock locking from shrink_dcache_for_umount_subtree()
      VFS: Remove detached-dentry counter from shrink_dcache_for_umount_subtree()
      switch posix_acl_chmod() to umode_t
      switch posix_acl_from_mode() to umode_t
      switch posix_acl_equiv_mode() to umode_t *
      switch posix_acl_create() to umode_t *
      block: initialise bd_super in bdget()
      vfs: avoid call to inode_lru_list_del() if possible
      vfs: avoid taking inode_hash_lock on pipes and sockets
      vfs: conditionally call inode_wb_list_del()
      VFS: Fix automount for negative autofs dentries
      Btrfs: load the key from the dir item in readdir into a fake dentry
      devtmpfs: missing initialialization in never-hit case
      hppfs: missing include

commit 206d440f64030b6425841bf7cb38e26a5ea0c382
Author: Markus Trippelsdorf <markus@xxxxxxxxxxxxxxx>
Date:   Tue Jul 26 11:15:20 2011 +0200

    xfs: Fix build breakage in xfs_iops.c when CONFIG_FS_POSIX_ACL is not set
    
    commit 4e34e719e45, that takes the ACL checks to common code,
    accidentely broke the build when CONFIG_FS_POSIX_ACL is not set:
    
      CC      fs/xfs/linux-2.6/xfs_iops.o
    fs/xfs/linux-2.6/xfs_iops.c:1025:14: error: â??xfs_get_aclâ?? undeclared here (not in a function)
    
    Fix this by declaring xfs_get_acl a static inline function.
    
    Signed-off-by: Markus Trippelsdorf <markus@xxxxxxxxxxxxxxx>
    Signed-off-by: Al Viro <viro@xxxxxxxxxxxxxxxxxx>

commit d6952123b53cc8b334df69bba2cd0063b0d88f68
Author: Al Viro <viro@xxxxxxxxxxxxxxxxxx>
Date:   Sat Jul 23 18:56:36 2011 -0400

    switch posix_acl_equiv_mode() to umode_t *
    
    ... so that &inode->i_mode could be passed to it
    
    Signed-off-by: Al Viro <viro@xxxxxxxxxxxxxxxxxx>

commit d3fb612076eebec6f67257db0c7a9666ac7e5892
Author: Al Viro <viro@xxxxxxxxxxxxxxxxxx>
Date:   Sat Jul 23 18:37:50 2011 -0400

    switch posix_acl_create() to umode_t *
    
    so we can pass &inode->i_mode to it
    
    Signed-off-by: Al Viro <viro@xxxxxxxxxxxxxxxxxx>

-----------------------------------------------------------------------

Summary of changes:
 fs/xfs/linux-2.6/xfs_acl.c   |   84 ++++++++++-------------------------------
 fs/xfs/linux-2.6/xfs_aops.c  |    3 +
 fs/xfs/linux-2.6/xfs_buf.c   |    3 +
 fs/xfs/linux-2.6/xfs_file.c  |   18 +++++---
 fs/xfs/linux-2.6/xfs_ioctl.c |    6 +-
 fs/xfs/linux-2.6/xfs_iops.c  |   19 +++++++--
 fs/xfs/linux-2.6/xfs_super.c |   27 ++++++++-----
 fs/xfs/linux-2.6/xfs_sync.c  |   71 +++++++++++++----------------------
 fs/xfs/linux-2.6/xfs_sync.h  |    5 +-
 fs/xfs/linux-2.6/xfs_trace.h |    2 +-
 fs/xfs/xfs_acl.h             |    7 ++-
 fs/xfs/xfs_bmap.c            |    7 +--
 fs/xfs/xfs_da_btree.c        |   32 ++++++++++-----
 fs/xfs/xfs_dir2.c            |   16 ++++----
 fs/xfs/xfs_dir2_node.c       |    2 +-
 fs/xfs/xfs_filestream.c      |   14 +++---
 fs/xfs/xfs_inode.c           |   16 ++++----
 fs/xfs/xfs_inode.h           |    2 +-
 fs/xfs/xfs_log_recover.c     |    4 +-
 fs/xfs/xfs_mount.c           |    2 +-
 fs/xfs/xfs_rename.c          |    4 +-
 fs/xfs/xfs_vnodeops.c        |   10 ++--
 22 files changed, 165 insertions(+), 189 deletions(-)


hooks/post-receive
-- 
XFS development tree

_______________________________________________
xfs mailing list
xfs@xxxxxxxxxxx
http://oss.sgi.com/mailman/listinfo/xfs

[Index of Archives]     [Linux XFS Devel]     [Linux Filesystem Development]     [Filesystem Testing]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux