diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-08 16:13:03 +0200 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-08 16:13:03 +0200 |
commit | a2c4580797f62b0dd9a48f1e0ce3fe8b8fd76262 (patch) | |
tree | 41c0ec77d50c074228d95fd99e067b980561aab2 /fs | |
parent | [GFS2] Remove unused sync_lvb code from lock modules (diff) | |
download | linux-a2c4580797f62b0dd9a48f1e0ce3fe8b8fd76262.tar.xz linux-a2c4580797f62b0dd9a48f1e0ce3fe8b8fd76262.zip |
[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>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/gfs2/ops_fstype.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index f4397ce51482..e8b7a1ae163b 100644 --- a/fs/gfs2/ops_fstype.c +++ b/fs/gfs2/ops_fstype.c @@ -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; } |