]> err.no Git - linux-2.6/commitdiff
[GFS2] vfree should be kfree
authorSteven Whitehouse <swhiteho@redhat.com>
Fri, 8 Sep 2006 14:13:03 +0000 (10:13 -0400)
committerSteven Whitehouse <swhiteho@redhat.com>
Fri, 8 Sep 2006 14:13:03 +0000 (10:13 -0400)
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>
fs/gfs2/ops_fstype.c

index f4397ce51482e8946bd37349033a9b37181c71f9..e8b7a1ae163b6ffbb8f57fe37f68ac3347555666 100644 (file)
@@ -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;
 }