aboutsummaryrefslogtreecommitdiff
path: root/fs/gfs2/ops_fstype.c
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2006-09-08 10:13:03 -0400
committerSteven Whitehouse <swhiteho@redhat.com>2006-09-08 10:13:03 -0400
commita2c4580797f62b0dd9a48f1e0ce3fe8b8fd76262 (patch)
tree41c0ec77d50c074228d95fd99e067b980561aab2 /fs/gfs2/ops_fstype.c
parent5ce311ebdb90429519f7c6d2092e4ae6ca8cba74 (diff)
[GFS2] vfree should be kfree
This was missed in an earlier patch when changing over from vmalloc to kmalloc for the superblock. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/ops_fstype.c')
-rw-r--r--fs/gfs2/ops_fstype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c
index f4397ce5148..e8b7a1ae163 100644
--- a/fs/gfs2/ops_fstype.c
+++ b/fs/gfs2/ops_fstype.c
@@ -769,7 +769,7 @@ fail_lm:
fail_sys:
gfs2_sys_fs_del(sdp);
fail:
- vfree(sdp);
+ kfree(sdp);
sb->s_fs_info = NULL;
return error;
}