Commit a2c45807 authored by Steven Whitehouse's avatar Steven Whitehouse
Browse files

[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: default avatarSteven Whitehouse <swhiteho@redhat.com>
parent 5ce311eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -769,7 +769,7 @@ static int fill_super(struct super_block *sb, void *data, int silent)
fail_sys:
	gfs2_sys_fs_del(sdp);
fail:
	vfree(sdp);
	kfree(sdp);
	sb->s_fs_info = NULL;
	return error;
}