From: Steven Whitehouse Date: Fri, 8 Sep 2006 14:13:03 +0000 (-0400) Subject: [GFS2] vfree should be kfree X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=a2c4580797f62b0dd9a48f1e0ce3fe8b8fd76262;p=deliverable%2Flinux.git [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 --- diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index f4397ce51482..e8b7a1ae163b 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; }