[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>
This commit is contained in:
parent
5ce311ebdb
commit
a2c4580797
@ -769,7 +769,7 @@ static int fill_super(struct super_block *sb, void *data, int silent)
|
|||||||
fail_sys:
|
fail_sys:
|
||||||
gfs2_sys_fs_del(sdp);
|
gfs2_sys_fs_del(sdp);
|
||||||
fail:
|
fail:
|
||||||
vfree(sdp);
|
kfree(sdp);
|
||||||
sb->s_fs_info = NULL;
|
sb->s_fs_info = NULL;
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user