diff options
author | Bob Peterson <rpeterso@redhat.com> | 2008-01-16 09:45:39 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2008-01-25 03:19:51 -0500 |
commit | 3e5cd0877e6d2f059dc36b8206cb7e93938151db (patch) | |
tree | ac4de94b84c94d06864c7256bbc50dd264a62998 /fs/gfs2 | |
parent | 1af535727bbf68e1da7ac232de47315da4c66ade (diff) |
[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, | |||
284 | return; | 284 | return; |
285 | } | 285 | } |
286 | 286 | ||
287 | bd = kmem_cache_zalloc(gfs2_bufdata_cachep, GFP_NOFS | __GFP_NOFAIL), | 287 | bd = kmem_cache_zalloc(gfs2_bufdata_cachep, GFP_NOFS | __GFP_NOFAIL); |
288 | bd->bd_bh = bh; | 288 | bd->bd_bh = bh; |
289 | bd->bd_gl = gl; | 289 | bd->bd_gl = gl; |
290 | 290 | ||