dect
/
linux-2.6
Archived
13
0
Fork 0

[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:
Steven Whitehouse 2006-09-08 10:13:03 -04:00
parent 5ce311ebdb
commit a2c4580797
1 changed files with 1 additions and 1 deletions

View 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;
}