[Cluster-devel] Cluster 3.0.13 stable release

2010-06-07 Thread Fabio M. Di Nitto
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 The cluster team and its community are proud to announce the 3.0.13 stable release from the STABLE3 branch. This release contains a few major bug fixes. We strongly recommend people to update their clusters. In order to build/run the 3.0.13 releas

Re: [Cluster-devel] GFS2: Wait for journal id on mount if not specified on mount command line

2010-06-07 Thread David Teigland
On Mon, Jun 07, 2010 at 04:39:09PM +0100, Steven Whitehouse wrote: > > This patch implements a wait for the journal id in the case that it has > not been specified on the command line. This is to allow the future > removal of the mount.gfs2 helper. The journal id would instead be > directly commun

Re: [Cluster-devel] [PATCH] gfs2: stop using mpage_writepage

2010-06-07 Thread Steven Whitehouse
Use nobh_writepage rather than calling mpage_writepage directly. Signed-off-by: Steven Whitehouse Cc: Christoph Hellwig diff --git a/fs/gfs2/aops.c b/fs/gfs2/aops.c index 9f8b525..9485a88 100644 --- a/fs/gfs2/aops.c +++ b/fs/gfs2/aops.c @@ -136,10 +136,7 @@ static int gfs2_writeback_writepage(

[Cluster-devel] GFS2: Wait for journal id on mount if not specified on mount command line

2010-06-07 Thread Steven Whitehouse
This patch implements a wait for the journal id in the case that it has not been specified on the command line. This is to allow the future removal of the mount.gfs2 helper. The journal id would instead be directly communicated by gfs_controld to the file system. Here is a comparison of the two sy

Re: [Cluster-devel] [PATCH] gfs2: stop using mpage_writepage

2010-06-07 Thread Steven Whitehouse
Hi, On Mon, 2010-06-07 at 12:03 +0200, Christoph Hellwig wrote: > GFS2 always creates buffer_heads during ->write_begin or ->page_mkwrite, > which means mpage_writepage always falls back to block_write_full_page. > > So stop calling mpage_writepage and always call block_write_full_page > directly

[Cluster-devel] [PATCH] gfs2: stop using mpage_writepage

2010-06-07 Thread Christoph Hellwig
GFS2 always creates buffer_heads during ->write_begin or ->page_mkwrite, which means mpage_writepage always falls back to block_write_full_page. So stop calling mpage_writepage and always call block_write_full_page directly. Signed-off-by: Christoph Hellwig Index: linux-2.6/fs/gfs2/aops.c =