projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ce311e
)
[GFS2] vfree should be kfree
author
Steven Whitehouse
<swhiteho@redhat.com>
Fri, 8 Sep 2006 14:13:03 +0000
(10:13 -0400)
committer
Steven Whitehouse
<swhiteho@redhat.com>
Fri, 8 Sep 2006 14:13:03 +0000
(10:13 -0400)
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>
fs/gfs2/ops_fstype.c
patch
|
blob
|
history
diff --git
a/fs/gfs2/ops_fstype.c
b/fs/gfs2/ops_fstype.c
index f4397ce51482e8946bd37349033a9b37181c71f9..e8b7a1ae163b6ffbb8f57fe37f68ac3347555666 100644
(file)
--- 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:
-
v
free(sdp);
+
k
free(sdp);
sb->s_fs_info = NULL;
return error;
}