Skip to content

Commit

Permalink
[GFS2] vfree should be kfree
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Steven Whitehouse committed Sep 8, 2006
1 parent 5ce311e commit a2c4580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/gfs2/ops_fstype.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit a2c4580

Please sign in to comment.