All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] XFS update (#2) for 3.11-rc1
@ 2013-07-12 19:08 ` Ben Myers
  0 siblings, 0 replies; 2+ messages in thread
From: Ben Myers @ 2013-07-12 19:08 UTC (permalink / raw)
  To: torvalds; +Cc: akpm, linux-kernel, xfs

Hi Linus,

   Please pull a few more XFS updates for 3.11-rc1.

   Here are a fix for xfs_fsr, a cleanup in bulkstat, a cleanup in
   xfs_open_by_handle, updated mount options documentation, a cleanup in
   xfs_bmapi_write, a fix for the size of dquot log reservations, a fix
   for sgid inheritance when acls are in use, a fix for cleaning up
   quotainfo structures, and some more of the work which allows group
   and project quotas to be used together.

   We had a few more in this last quota category that we might have
   liked to get in, but it looks there are still a few items that need
   to be addressed.

Thanks,
       Ben

The following changes since commit 83e782e1a1cc0159888e58e14dfc8f3289663338:

  xfs: Remove incore use of XFS_OQUOTA_ENFD and XFS_OQUOTA_CHKD (2013-06-28 17:39:22 -0500)

are available in the git repository at:

  git://oss.sgi.com/xfs/xfs.git tags/for-linus-v3.11-rc1-2

for you to fetch changes up to c31ad439e8d111bf911c9cc80619cebde411a44d:

  xfs: Fix the logic check for all quotas being turned off (2013-07-11 16:49:10 -0500)

----------------------------------------------------------------
xfs: update (#2) for 3.11-rc1

- fix for xfs_fsr returning -EINVAL
- cleanup in xfs_bulkstat
- cleanup in xfs_open_by_handle
- update mount options documentation
- clean up local format handling in xfs_bmapi_write
- fix dquot log reservations which were too small
- fix sgid inheritance for subdirectories when default acls are in use
- add project quota fields to various structures
- fix teardown of quotainfo structures when quotas are turned off

----------------------------------------------------------------
Carlos Maiolino (1):
      xfs: fix sgid inheritance for subdirectories inheriting default acls [V3]

Chandra Seetharaman (2):
      xfs: Add pquota fields where gquota is used.
      xfs: Fix the logic check for all quotas being turned off

Dave Chinner (3):
      xfs: update mount options documentation
      xfs: remove local fork format handling from xfs_bmapi_write()
      xfs: dquot log reservations are too small

Eric Sandeen (1):
      xfs: use XFS_BMAP_BMDR_SPACE vs. XFS_BROOT_SIZE_ADJ

Jie Liu (1):
      xfs: clean up unused codes at xfs_bulkstat()

Yann Droneaud (1):
      xfs: use get_unused_fd_flags(0) instead of get_unused_fd()

 Documentation/filesystems/xfs.txt | 317 +++++++++++++++++++++++++-------------
 fs/xfs/xfs_attr_leaf.c            |   2 +
 fs/xfs/xfs_bmap.c                 | 199 ++++++++++--------------
 fs/xfs/xfs_bmap.h                 |   1 +
 fs/xfs/xfs_dinode.h               |   3 -
 fs/xfs/xfs_dir2_block.c           |  20 ++-
 fs/xfs/xfs_dquot.c                |  15 +-
 fs/xfs/xfs_dquot.h                |   7 +-
 fs/xfs/xfs_icache.c               |   1 +
 fs/xfs/xfs_inode.c                |  14 +-
 fs/xfs/xfs_inode.h                |   1 +
 fs/xfs/xfs_ioctl.c                |  16 +-
 fs/xfs/xfs_iops.c                 |  24 +--
 fs/xfs/xfs_itable.c               |  28 +---
 fs/xfs/xfs_qm.c                   | 243 ++++++++++++++++++++---------
 fs/xfs/xfs_qm.h                   |  20 ++-
 fs/xfs/xfs_qm_bhv.c               |  10 +-
 fs/xfs/xfs_qm_syscalls.c          |  24 ++-
 fs/xfs/xfs_quota.h                |  65 ++++----
 fs/xfs/xfs_symlink.c              |  10 +-
 fs/xfs/xfs_trans_dquot.c          |  35 +++--
 fs/xfs/xfs_vnodeops.c             |  13 +-
 22 files changed, 644 insertions(+), 424 deletions(-)

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

* [GIT PULL] XFS update (#2) for 3.11-rc1
@ 2013-07-12 19:08 ` Ben Myers
  0 siblings, 0 replies; 2+ messages in thread
From: Ben Myers @ 2013-07-12 19:08 UTC (permalink / raw)
  To: torvalds; +Cc: akpm, linux-kernel, xfs

Hi Linus,

   Please pull a few more XFS updates for 3.11-rc1.

   Here are a fix for xfs_fsr, a cleanup in bulkstat, a cleanup in
   xfs_open_by_handle, updated mount options documentation, a cleanup in
   xfs_bmapi_write, a fix for the size of dquot log reservations, a fix
   for sgid inheritance when acls are in use, a fix for cleaning up
   quotainfo structures, and some more of the work which allows group
   and project quotas to be used together.

   We had a few more in this last quota category that we might have
   liked to get in, but it looks there are still a few items that need
   to be addressed.

Thanks,
       Ben

The following changes since commit 83e782e1a1cc0159888e58e14dfc8f3289663338:

  xfs: Remove incore use of XFS_OQUOTA_ENFD and XFS_OQUOTA_CHKD (2013-06-28 17:39:22 -0500)

are available in the git repository at:

  git://oss.sgi.com/xfs/xfs.git tags/for-linus-v3.11-rc1-2

for you to fetch changes up to c31ad439e8d111bf911c9cc80619cebde411a44d:

  xfs: Fix the logic check for all quotas being turned off (2013-07-11 16:49:10 -0500)

----------------------------------------------------------------
xfs: update (#2) for 3.11-rc1

- fix for xfs_fsr returning -EINVAL
- cleanup in xfs_bulkstat
- cleanup in xfs_open_by_handle
- update mount options documentation
- clean up local format handling in xfs_bmapi_write
- fix dquot log reservations which were too small
- fix sgid inheritance for subdirectories when default acls are in use
- add project quota fields to various structures
- fix teardown of quotainfo structures when quotas are turned off

----------------------------------------------------------------
Carlos Maiolino (1):
      xfs: fix sgid inheritance for subdirectories inheriting default acls [V3]

Chandra Seetharaman (2):
      xfs: Add pquota fields where gquota is used.
      xfs: Fix the logic check for all quotas being turned off

Dave Chinner (3):
      xfs: update mount options documentation
      xfs: remove local fork format handling from xfs_bmapi_write()
      xfs: dquot log reservations are too small

Eric Sandeen (1):
      xfs: use XFS_BMAP_BMDR_SPACE vs. XFS_BROOT_SIZE_ADJ

Jie Liu (1):
      xfs: clean up unused codes at xfs_bulkstat()

Yann Droneaud (1):
      xfs: use get_unused_fd_flags(0) instead of get_unused_fd()

 Documentation/filesystems/xfs.txt | 317 +++++++++++++++++++++++++-------------
 fs/xfs/xfs_attr_leaf.c            |   2 +
 fs/xfs/xfs_bmap.c                 | 199 ++++++++++--------------
 fs/xfs/xfs_bmap.h                 |   1 +
 fs/xfs/xfs_dinode.h               |   3 -
 fs/xfs/xfs_dir2_block.c           |  20 ++-
 fs/xfs/xfs_dquot.c                |  15 +-
 fs/xfs/xfs_dquot.h                |   7 +-
 fs/xfs/xfs_icache.c               |   1 +
 fs/xfs/xfs_inode.c                |  14 +-
 fs/xfs/xfs_inode.h                |   1 +
 fs/xfs/xfs_ioctl.c                |  16 +-
 fs/xfs/xfs_iops.c                 |  24 +--
 fs/xfs/xfs_itable.c               |  28 +---
 fs/xfs/xfs_qm.c                   | 243 ++++++++++++++++++++---------
 fs/xfs/xfs_qm.h                   |  20 ++-
 fs/xfs/xfs_qm_bhv.c               |  10 +-
 fs/xfs/xfs_qm_syscalls.c          |  24 ++-
 fs/xfs/xfs_quota.h                |  65 ++++----
 fs/xfs/xfs_symlink.c              |  10 +-
 fs/xfs/xfs_trans_dquot.c          |  35 +++--
 fs/xfs/xfs_vnodeops.c             |  13 +-
 22 files changed, 644 insertions(+), 424 deletions(-)

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

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

end of thread, other threads:[~2013-07-12 19:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-12 19:08 [GIT PULL] XFS update (#2) for 3.11-rc1 Ben Myers
2013-07-12 19:08 ` Ben Myers

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.