From: Steven Whitehouse <swhiteho@redhat.com>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] GFS2: Pull request
Date: Thu, 11 Jun 2009 11:51:29 +0100 [thread overview]
Message-ID: <1244717489.29604.805.camel@localhost.localdomain> (raw)
Hi,
Please consider pulling the following changes. I have one other patch (not
in this tree) for the current merge window and I'll send that once the
tracing code upon which it depends has been merged,
Steve.
--------------------------------------------------------------------------------
The following changes since commit a4d7749be5de4a7261bcbe3c7d96c748792ec455:
Linus Torvalds (1):
Merge git://git.kernel.org/.../gregkh/staging-2.6
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git master
Abhijith Das (2):
GFS2: Fix timestamps on write
GFS2: smbd proccess hangs with flock() call.
Steven Whitehouse (23):
GFS2: Update the rw flags
GFS2: Optimise writepage for metadata
GFS2: Something nonlinear this way comes!
GFS2: Move journal live test at transaction start
GFS2: Add commit= mount option
GFS2: Remove a couple of unused sysfs entries
GFS2: Umount recovery race fix
GFS2: Update docs
GFS2: Don't warn when delete inode fails on ro filesystem
GFS2: Improve resource group error handling
GFS2: Add a rgrp bitmap full flag
GFS2: Be more aggressive in reclaiming unlinked inodes
GFS2: Clean up some file names
GFS2: Merge mount.c and ops_super.c into super.c
GFS2: Move gfs2_rmdiri into ops_inode.c
GFS2: Move gfs2_readlinki into ops_inode.c
GFS2: Move gfs2_unlink_ok into ops_inode.c
GFS2: Remove lockstruct subdir from gfs2 sysfs files
GFS2: Remove args subdir from gfs2 sysfs files
GFS2: Remove unused variable
GFS2: Fix locking issue mounting gfs2meta fs
GFS2: Fix cache coherency between truncate and O_DIRECT read
GFS2: Merge gfs2_get_sb into gfs2_get_sb_meta
Documentation/filesystems/gfs2-glocks.txt | 2 +-
Documentation/filesystems/gfs2.txt | 19 +-
fs/gfs2/Kconfig | 1 +
fs/gfs2/Makefile | 4 +-
fs/gfs2/{ops_address.c => aops.c} | 21 +-
fs/gfs2/bmap.c | 12 +-
fs/gfs2/{ops_dentry.c => dentry.c} | 0
fs/gfs2/dir.c | 11 +-
fs/gfs2/eattr.c | 14 +-
fs/gfs2/{ops_export.c => export.c} | 0
fs/gfs2/{ops_file.c => file.c} | 36 +-
fs/gfs2/glock.c | 21 +-
fs/gfs2/glops.c | 20 +-
fs/gfs2/incore.h | 27 +-
fs/gfs2/inode.c | 150 +-----
fs/gfs2/inode.h | 52 +-
fs/gfs2/log.c | 6 +-
fs/gfs2/lops.c | 14 +-
fs/gfs2/main.c | 8 +
fs/gfs2/meta_io.c | 105 +++-
fs/gfs2/mount.c | 185 ------
fs/gfs2/ops_address.h | 23 -
fs/gfs2/ops_fstype.c | 68 +--
fs/gfs2/ops_inode.c | 146 +++++
fs/gfs2/ops_super.c | 723 -----------------------
fs/gfs2/quota.c | 1 -
fs/gfs2/recovery.c | 102 +---
fs/gfs2/recovery.h | 2 +-
fs/gfs2/rgrp.c | 141 +++--
fs/gfs2/rgrp.h | 47 +-
fs/gfs2/super.c | 903 ++++++++++++++++++++++++++++-
fs/gfs2/sys.c | 245 +++------
fs/gfs2/trans.c | 9 +-
33 files changed, 1534 insertions(+), 1584 deletions(-)
rename fs/gfs2/{ops_address.c => aops.c} (98%)
rename fs/gfs2/{ops_dentry.c => dentry.c} (100%)
rename fs/gfs2/{ops_export.c => export.c} (100%)
rename fs/gfs2/{ops_file.c => file.c} (97%)
delete mode 100644 fs/gfs2/mount.c
delete mode 100644 fs/gfs2/ops_address.h
delete mode 100644 fs/gfs2/ops_super.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: Thu, 11 Jun 2009 11:51:29 +0100 [thread overview]
Message-ID: <1244717489.29604.805.camel@localhost.localdomain> (raw)
Hi,
Please consider pulling the following changes. I have one other patch (not
in this tree) for the current merge window and I'll send that once the
tracing code upon which it depends has been merged,
Steve.
--------------------------------------------------------------------------------
The following changes since commit a4d7749be5de4a7261bcbe3c7d96c748792ec455:
Linus Torvalds (1):
Merge git://git.kernel.org/.../gregkh/staging-2.6
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git master
Abhijith Das (2):
GFS2: Fix timestamps on write
GFS2: smbd proccess hangs with flock() call.
Steven Whitehouse (23):
GFS2: Update the rw flags
GFS2: Optimise writepage for metadata
GFS2: Something nonlinear this way comes!
GFS2: Move journal live test at transaction start
GFS2: Add commit= mount option
GFS2: Remove a couple of unused sysfs entries
GFS2: Umount recovery race fix
GFS2: Update docs
GFS2: Don't warn when delete inode fails on ro filesystem
GFS2: Improve resource group error handling
GFS2: Add a rgrp bitmap full flag
GFS2: Be more aggressive in reclaiming unlinked inodes
GFS2: Clean up some file names
GFS2: Merge mount.c and ops_super.c into super.c
GFS2: Move gfs2_rmdiri into ops_inode.c
GFS2: Move gfs2_readlinki into ops_inode.c
GFS2: Move gfs2_unlink_ok into ops_inode.c
GFS2: Remove lockstruct subdir from gfs2 sysfs files
GFS2: Remove args subdir from gfs2 sysfs files
GFS2: Remove unused variable
GFS2: Fix locking issue mounting gfs2meta fs
GFS2: Fix cache coherency between truncate and O_DIRECT read
GFS2: Merge gfs2_get_sb into gfs2_get_sb_meta
Documentation/filesystems/gfs2-glocks.txt | 2 +-
Documentation/filesystems/gfs2.txt | 19 +-
fs/gfs2/Kconfig | 1 +
fs/gfs2/Makefile | 4 +-
fs/gfs2/{ops_address.c => aops.c} | 21 +-
fs/gfs2/bmap.c | 12 +-
fs/gfs2/{ops_dentry.c => dentry.c} | 0
fs/gfs2/dir.c | 11 +-
fs/gfs2/eattr.c | 14 +-
fs/gfs2/{ops_export.c => export.c} | 0
fs/gfs2/{ops_file.c => file.c} | 36 +-
fs/gfs2/glock.c | 21 +-
fs/gfs2/glops.c | 20 +-
fs/gfs2/incore.h | 27 +-
fs/gfs2/inode.c | 150 +-----
fs/gfs2/inode.h | 52 +-
fs/gfs2/log.c | 6 +-
fs/gfs2/lops.c | 14 +-
fs/gfs2/main.c | 8 +
fs/gfs2/meta_io.c | 105 +++-
fs/gfs2/mount.c | 185 ------
fs/gfs2/ops_address.h | 23 -
fs/gfs2/ops_fstype.c | 68 +--
fs/gfs2/ops_inode.c | 146 +++++
fs/gfs2/ops_super.c | 723 -----------------------
fs/gfs2/quota.c | 1 -
fs/gfs2/recovery.c | 102 +---
fs/gfs2/recovery.h | 2 +-
fs/gfs2/rgrp.c | 141 +++--
fs/gfs2/rgrp.h | 47 +-
fs/gfs2/super.c | 903 ++++++++++++++++++++++++++++-
fs/gfs2/sys.c | 245 +++------
fs/gfs2/trans.c | 9 +-
33 files changed, 1534 insertions(+), 1584 deletions(-)
rename fs/gfs2/{ops_address.c => aops.c} (98%)
rename fs/gfs2/{ops_dentry.c => dentry.c} (100%)
rename fs/gfs2/{ops_export.c => export.c} (100%)
rename fs/gfs2/{ops_file.c => file.c} (97%)
delete mode 100644 fs/gfs2/mount.c
delete mode 100644 fs/gfs2/ops_address.h
delete mode 100644 fs/gfs2/ops_super.c
next reply other threads:[~2009-06-11 10:51 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-11 10:51 Steven Whitehouse [this message]
2009-06-11 10:51 ` 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-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=1244717489.29604.805.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.