diff options
author | Bob Peterson <rpeterso@redhat.com> | 2008-01-16 08:45:39 -0600 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2008-01-25 08:19:51 +0000 |
commit | 3e5cd0877e6d2f059dc36b8206cb7e93938151db (patch) | |
tree | ac4de94b84c94d06864c7256bbc50dd264a62998 /fs/gfs2 | |
parent | 1af535727bbf68e1da7ac232de47315da4c66ade (diff) | |
download | linux-3e5cd0877e6d2f059dc36b8206cb7e93938151db.tar.bz2 |
[GFS2] Fix typo
This patch fixes a minor typo. Surprisingly, it still compiled.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | 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 3144d35a6261..85aea27b4a86 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; |