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: Mon, 14 Jul 2008 17:03:39 +0100	[thread overview]
Message-ID: <1216051419.4011.267.camel@quoit> (raw)

Hi,

Please consider pulling the following patches. The only difference since the
recent posting is David Howells' patch to fix a warning (a one-liner),

Steve.

The following changes since commit 543cf4cb3fe6f6cae3651ba918b9c56200b257d0:
  Linus Torvalds (1):
        Linux 2.6.26-rc8

are found in the git repository at:

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

Bob Peterson (1):
      [GFS2] kernel panic mounting volume

David Howells (1):
      [GFS2] Fix GFS2's use of do_div() in its quota calculations

Harvey Harrison (1):
      [GFS2] trivial sparse lock annotations

Li Xiaodong (1):
      [GFS2] Remove unused declaration

Miklos Szeredi (1):
      [GFS2] don't call permission()

Steven Whitehouse (14):
      [GFS2] Clean up the glock core
      [GFS2] Fix ordering bug in lock_dlm
      [GFS2] No lock_nolock
      [GFS2] Fix ordering of args for list_add
      [GFS2] Revise readpage locking
      [GFS2] Remove remote lock dropping code
      [GFS2] Remove obsolete conversion deadlock avoidance code
      [GFS2] Remove all_list from lock_dlm
      [GFS2] Glock documentation
      [GFS2] Fix module building
      [GFS2] Fix delayed demote race
      [GFS2] Allow local DF locks when holding a cached EX glock
      [GFS2] Replace rgrp "recent list" with mru list
      [GFS2] Remove support for unused and pointless flag

 Documentation/filesystems/gfs2-glocks.txt |  114 ++
 fs/gfs2/Kconfig                           |   18 +-
 fs/gfs2/Makefile                          |    1 -
 fs/gfs2/gfs2.h                            |    5 -
 fs/gfs2/glock.c                           | 1643 ++++++++++++-----------------
 fs/gfs2/glock.h                           |   11 +-
 fs/gfs2/glops.c                           |   70 +-
 fs/gfs2/incore.h                          |   38 +-
 fs/gfs2/inode.c                           |   11 +-
 fs/gfs2/inode.h                           |    2 +-
 fs/gfs2/locking.c                         |   52 +-
 fs/gfs2/locking/dlm/lock.c                |  368 +++++--
 fs/gfs2/locking/dlm/lock_dlm.h            |   18 +-
 fs/gfs2/locking/dlm/mount.c               |   14 +-
 fs/gfs2/locking/dlm/sysfs.c               |   13 -
 fs/gfs2/locking/dlm/thread.c              |  331 +------
 fs/gfs2/locking/nolock/Makefile           |    3 -
 fs/gfs2/locking/nolock/main.c             |  238 -----
 fs/gfs2/log.c                             |    2 +
 fs/gfs2/log.h                             |    2 +
 fs/gfs2/main.c                            |    2 -
 fs/gfs2/meta_io.c                         |   14 +-
 fs/gfs2/meta_io.h                         |    1 +
 fs/gfs2/ops_address.c                     |   40 +-
 fs/gfs2/ops_file.c                        |   38 +-
 fs/gfs2/ops_fstype.c                      |    8 +-
 fs/gfs2/ops_inode.c                       |   25 +-
 fs/gfs2/ops_super.c                       |    4 +-
 fs/gfs2/quota.c                           |    2 +-
 fs/gfs2/recovery.c                        |    5 +-
 fs/gfs2/rgrp.c                            |  108 +--
 fs/gfs2/super.c                           |    4 +-
 fs/gfs2/sys.c                             |   16 -
 include/linux/lm_interface.h              |    6 -
 34 files changed, 1275 insertions(+), 1952 deletions(-)
 create mode 100644 Documentation/filesystems/gfs2-glocks.txt
 delete mode 100644 fs/gfs2/locking/nolock/Makefile
 delete mode 100644 fs/gfs2/locking/nolock/main.c




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: Mon, 14 Jul 2008 17:03:39 +0100	[thread overview]
Message-ID: <1216051419.4011.267.camel@quoit> (raw)

Hi,

Please consider pulling the following patches. The only difference since the
recent posting is David Howells' patch to fix a warning (a one-liner),

Steve.

The following changes since commit 543cf4cb3fe6f6cae3651ba918b9c56200b257d0:
  Linus Torvalds (1):
        Linux 2.6.26-rc8

are found in the git repository at:

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

Bob Peterson (1):
      [GFS2] kernel panic mounting volume

David Howells (1):
      [GFS2] Fix GFS2's use of do_div() in its quota calculations

Harvey Harrison (1):
      [GFS2] trivial sparse lock annotations

Li Xiaodong (1):
      [GFS2] Remove unused declaration

Miklos Szeredi (1):
      [GFS2] don't call permission()

Steven Whitehouse (14):
      [GFS2] Clean up the glock core
      [GFS2] Fix ordering bug in lock_dlm
      [GFS2] No lock_nolock
      [GFS2] Fix ordering of args for list_add
      [GFS2] Revise readpage locking
      [GFS2] Remove remote lock dropping code
      [GFS2] Remove obsolete conversion deadlock avoidance code
      [GFS2] Remove all_list from lock_dlm
      [GFS2] Glock documentation
      [GFS2] Fix module building
      [GFS2] Fix delayed demote race
      [GFS2] Allow local DF locks when holding a cached EX glock
      [GFS2] Replace rgrp "recent list" with mru list
      [GFS2] Remove support for unused and pointless flag

 Documentation/filesystems/gfs2-glocks.txt |  114 ++
 fs/gfs2/Kconfig                           |   18 +-
 fs/gfs2/Makefile                          |    1 -
 fs/gfs2/gfs2.h                            |    5 -
 fs/gfs2/glock.c                           | 1643 ++++++++++++-----------------
 fs/gfs2/glock.h                           |   11 +-
 fs/gfs2/glops.c                           |   70 +-
 fs/gfs2/incore.h                          |   38 +-
 fs/gfs2/inode.c                           |   11 +-
 fs/gfs2/inode.h                           |    2 +-
 fs/gfs2/locking.c                         |   52 +-
 fs/gfs2/locking/dlm/lock.c                |  368 +++++--
 fs/gfs2/locking/dlm/lock_dlm.h            |   18 +-
 fs/gfs2/locking/dlm/mount.c               |   14 +-
 fs/gfs2/locking/dlm/sysfs.c               |   13 -
 fs/gfs2/locking/dlm/thread.c              |  331 +------
 fs/gfs2/locking/nolock/Makefile           |    3 -
 fs/gfs2/locking/nolock/main.c             |  238 -----
 fs/gfs2/log.c                             |    2 +
 fs/gfs2/log.h                             |    2 +
 fs/gfs2/main.c                            |    2 -
 fs/gfs2/meta_io.c                         |   14 +-
 fs/gfs2/meta_io.h                         |    1 +
 fs/gfs2/ops_address.c                     |   40 +-
 fs/gfs2/ops_file.c                        |   38 +-
 fs/gfs2/ops_fstype.c                      |    8 +-
 fs/gfs2/ops_inode.c                       |   25 +-
 fs/gfs2/ops_super.c                       |    4 +-
 fs/gfs2/quota.c                           |    2 +-
 fs/gfs2/recovery.c                        |    5 +-
 fs/gfs2/rgrp.c                            |  108 +--
 fs/gfs2/super.c                           |    4 +-
 fs/gfs2/sys.c                             |   16 -
 include/linux/lm_interface.h              |    6 -
 34 files changed, 1275 insertions(+), 1952 deletions(-)
 create mode 100644 Documentation/filesystems/gfs2-glocks.txt
 delete mode 100644 fs/gfs2/locking/nolock/Makefile
 delete mode 100644 fs/gfs2/locking/nolock/main.c



             reply	other threads:[~2008-07-14 16:03 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-07-14 16:03 Steven Whitehouse [this message]
2008-07-14 16:03 ` [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-12-03 15:01 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-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=1216051419.4011.267.camel@quoit \
    --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.