From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steven Whitehouse Date: Wed, 16 Jan 2008 15:47:25 +0000 Subject: [Cluster-devel] [GFS2][Patch] Fix typo In-Reply-To: <1200494739.3640.11.camel@technetium.msp.redhat.com> References: <1200494739.3640.11.camel@technetium.msp.redhat.com> Message-ID: <1200498445.22038.145.camel@quoit> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi, This is now in the -nmw git tree. Thanks, Steve. On Wed, 2008-01-16 at 08:45 -0600, Bob Peterson wrote: > Hi, > > This patch fixes a minor typo. Surprisingly, it still compiled. > > Regards, > > Bob Peterson > > Signed-off-by: Bob Peterson > -- > fs/gfs2/meta_io.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/fs/gfs2/meta_io.c b/fs/gfs2/meta_io.c > index bc28bc6..99c7959 100644 > --- a/fs/gfs2/meta_io.c > +++ b/fs/gfs2/meta_io.c > @@ -284,7 +284,7 @@ void gfs2_attach_bufdata(struct gfs2_glock *gl, struct buffer_head *bh, > return; > } > > - bd = kmem_cache_zalloc(gfs2_bufdata_cachep, GFP_NOFS | __GFP_NOFAIL), > + bd = kmem_cache_zalloc(gfs2_bufdata_cachep, GFP_NOFS | __GFP_NOFAIL); > bd->bd_bh = bh; > bd->bd_gl = gl; > > >