All of lore.kernel.org
 help / color / mirror / Atom feed
From: Steven Whitehouse <swhiteho@redhat.com>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] GFS2: Pull request
Date: Thu, 03 Dec 2009 15:01:21 +0000	[thread overview]
Message-ID: <1259852481.6052.980.camel@localhost.localdomain> (raw)

Hi,

Since the patches were posted to lkml, I'd fixed two typos in the git
comments and added one bug fix to the mix (GFS2: Fix glock refcount
issues). Otherwise, this is identical to the patch set I posted last
week. Please consider pulling the following changes:


The following changes since commit 22763c5cf3690a681551162c15d34d935308c8d7:
  Linus Torvalds (1):
        Linux 2.6.32

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git master

Benjamin Marzinski (3):
      GFS2: Improve statfs and quota usability
      GFS2: remove division from new statfs code
      GFS2: drop rindex glock to refresh rindex list

Christoph Hellwig (1):
      GFS2: add barrier/nobarrier mount options

Steven Whitehouse (26):
      GFS2: Fix potential race in glock code
      GFS2: Fix -o meta mounts for subsequent mounts (i.e. all but the first one)
      GFS2: Fix up system xattrs
      VFS: Add forget_all_cached_acls()
      GFS2: Use forget_all_cached_acls()
      GFS2: Use gfs2_set_mode() instead of munge_mode()
      GFS2: Clean up ACLs
      GFS2: Add cached ACLs support
      VFS: Use GFP_NOFS in posix_acl_from_xattr()
      GFS2: Alter arguments of gfs2_quota/statfs_sync
      GFS2: Hook gfs2_quota_sync into VFS via gfs2_quotactl_ops
      GFS2: Remove obsolete code in quota.c
      GFS2: Add get_xstate quota function
      GFS2: Add proper error reporting to quota sync via sysfs
      GFS2: Remove constant argument from qdsb_get()
      GFS2: Remove constant argument from qd_get()
      GFS2: Clean up gfs2_adjust_quota() and do_glock()
      GFS2: Add get_xquota support
      GFS2: Add set_xquota support
      VFS: Export dquot_send_warning
      GFS2: Use dquot_send_warning()
      GFS2: Display nobarrier option in /proc/mounts
      GFS2: Remove dirent_first() function
      GFS2: Locking order fix in gfs2_check_blk_state
      GFS2: Tag all metadata with jid
      GFS2: Fix glock refcount issues

Wu Fengguang (1):
      writeback: remove unused nonblocking and congestion checks (gfs2)

 fs/gfs2/Kconfig             |    2 +
 fs/gfs2/acl.c               |  357 +++++++++++++++++++++++----------------
 fs/gfs2/acl.h               |   24 +--
 fs/gfs2/aops.c              |   20 +--
 fs/gfs2/dir.c               |   34 +----
 fs/gfs2/glock.c             |   31 ++--
 fs/gfs2/glock.h             |    9 -
 fs/gfs2/glops.c             |    5 +-
 fs/gfs2/incore.h            |    5 +
 fs/gfs2/inode.c             |    4 +-
 fs/gfs2/log.c               |    2 +
 fs/gfs2/lops.c              |    4 +
 fs/gfs2/ops_fstype.c        |  154 +++++++++++++++---
 fs/gfs2/quota.c             |  393 +++++++++++++++++++++++++++++++++----------
 fs/gfs2/quota.h             |    5 +-
 fs/gfs2/recovery.c          |    2 +
 fs/gfs2/rgrp.c              |   14 +-
 fs/gfs2/super.c             |  110 +++++++++++--
 fs/gfs2/super.h             |    4 +-
 fs/gfs2/sys.c               |   14 +-
 fs/gfs2/xattr.c             |   74 +++++----
 fs/gfs2/xattr.h             |    8 +-
 fs/quota/Kconfig            |    2 +-
 fs/quota/dquot.c            |   93 +---------
 fs/quota/quota.c            |   93 ++++++++++
 fs/xattr_acl.c              |    2 +-
 include/linux/gfs2_ondisk.h |    6 +-
 include/linux/posix_acl.h   |   14 ++
 include/linux/quota.h       |   11 ++
 29 files changed, 991 insertions(+), 505 deletions(-)




WARNING: multiple messages have this Message-ID (diff)
From: Steven Whitehouse <swhiteho@redhat.com>
To: torvalds@linux-foundation.org
Cc: cluster-devel@redhat.com, linux-kernel@vger.kernel.org
Subject: GFS2: Pull request
Date: Thu, 03 Dec 2009 15:01:21 +0000	[thread overview]
Message-ID: <1259852481.6052.980.camel@localhost.localdomain> (raw)

Hi,

Since the patches were posted to lkml, I'd fixed two typos in the git
comments and added one bug fix to the mix (GFS2: Fix glock refcount
issues). Otherwise, this is identical to the patch set I posted last
week. Please consider pulling the following changes:


The following changes since commit 22763c5cf3690a681551162c15d34d935308c8d7:
  Linus Torvalds (1):
        Linux 2.6.32

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git master

Benjamin Marzinski (3):
      GFS2: Improve statfs and quota usability
      GFS2: remove division from new statfs code
      GFS2: drop rindex glock to refresh rindex list

Christoph Hellwig (1):
      GFS2: add barrier/nobarrier mount options

Steven Whitehouse (26):
      GFS2: Fix potential race in glock code
      GFS2: Fix -o meta mounts for subsequent mounts (i.e. all but the first one)
      GFS2: Fix up system xattrs
      VFS: Add forget_all_cached_acls()
      GFS2: Use forget_all_cached_acls()
      GFS2: Use gfs2_set_mode() instead of munge_mode()
      GFS2: Clean up ACLs
      GFS2: Add cached ACLs support
      VFS: Use GFP_NOFS in posix_acl_from_xattr()
      GFS2: Alter arguments of gfs2_quota/statfs_sync
      GFS2: Hook gfs2_quota_sync into VFS via gfs2_quotactl_ops
      GFS2: Remove obsolete code in quota.c
      GFS2: Add get_xstate quota function
      GFS2: Add proper error reporting to quota sync via sysfs
      GFS2: Remove constant argument from qdsb_get()
      GFS2: Remove constant argument from qd_get()
      GFS2: Clean up gfs2_adjust_quota() and do_glock()
      GFS2: Add get_xquota support
      GFS2: Add set_xquota support
      VFS: Export dquot_send_warning
      GFS2: Use dquot_send_warning()
      GFS2: Display nobarrier option in /proc/mounts
      GFS2: Remove dirent_first() function
      GFS2: Locking order fix in gfs2_check_blk_state
      GFS2: Tag all metadata with jid
      GFS2: Fix glock refcount issues

Wu Fengguang (1):
      writeback: remove unused nonblocking and congestion checks (gfs2)

 fs/gfs2/Kconfig             |    2 +
 fs/gfs2/acl.c               |  357 +++++++++++++++++++++++----------------
 fs/gfs2/acl.h               |   24 +--
 fs/gfs2/aops.c              |   20 +--
 fs/gfs2/dir.c               |   34 +----
 fs/gfs2/glock.c             |   31 ++--
 fs/gfs2/glock.h             |    9 -
 fs/gfs2/glops.c             |    5 +-
 fs/gfs2/incore.h            |    5 +
 fs/gfs2/inode.c             |    4 +-
 fs/gfs2/log.c               |    2 +
 fs/gfs2/lops.c              |    4 +
 fs/gfs2/ops_fstype.c        |  154 +++++++++++++++---
 fs/gfs2/quota.c             |  393 +++++++++++++++++++++++++++++++++----------
 fs/gfs2/quota.h             |    5 +-
 fs/gfs2/recovery.c          |    2 +
 fs/gfs2/rgrp.c              |   14 +-
 fs/gfs2/super.c             |  110 +++++++++++--
 fs/gfs2/super.h             |    4 +-
 fs/gfs2/sys.c               |   14 +-
 fs/gfs2/xattr.c             |   74 +++++----
 fs/gfs2/xattr.h             |    8 +-
 fs/quota/Kconfig            |    2 +-
 fs/quota/dquot.c            |   93 +---------
 fs/quota/quota.c            |   93 ++++++++++
 fs/xattr_acl.c              |    2 +-
 include/linux/gfs2_ondisk.h |    6 +-
 include/linux/posix_acl.h   |   14 ++
 include/linux/quota.h       |   11 ++
 29 files changed, 991 insertions(+), 505 deletions(-)



             reply	other threads:[~2009-12-03 15:01 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-03 15:01 Steven Whitehouse [this message]
2009-12-03 15:01 ` GFS2: Pull request Steven Whitehouse
  -- strict thread matches above, loose matches on Subject: below --
2019-05-08 11:48 [Cluster-devel] GFS2: Pull Request Andreas Gruenbacher
2019-05-08 17:55 ` Linus Torvalds
2019-05-08 18:06   ` Linus Torvalds
2019-05-08 20:17     ` Andreas Gruenbacher
2019-05-08 20:21       ` Linus Torvalds
2019-05-08 20:58       ` Jonathan Corbet
2019-05-08 21:05         ` Linus Torvalds
2019-05-08 21:50           ` Jonathan Corbet
2010-05-18  8:38 [Cluster-devel] GFS2: Pull request Steven Whitehouse
2010-03-02 11:03 Steven Whitehouse
2009-09-14  8:08 Steven Whitehouse
2009-06-11 10:51 Steven Whitehouse
2009-04-15 11:26 Steven Whitehouse
2009-03-24 12:20 Steven Whitehouse
2009-01-05  9:34 Steven Whitehouse
2008-10-10  8:05 [Cluster-devel] [GFS2] " Steven Whitehouse
2008-07-14 16:03 Steven Whitehouse
2008-06-24 21:12 Steven Whitehouse
2008-05-20  9:12 [Cluster-devel] [GFS2] Pre-pull patch posting (bug fixes) swhiteho
2008-05-20 10:05 ` [Cluster-devel] [GFS2] Pull request Steven Whitehouse
2008-04-18 16:53 Steven Whitehouse

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=1259852481.6052.980.camel@localhost.localdomain \
    --to=swhiteho@redhat.com \
    /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 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.