aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/gfs2/ops_super.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/gfs2/ops_super.c b/fs/gfs2/ops_super.c
index addcf1334b3c..975e93b7992e 100644
--- a/fs/gfs2/ops_super.c
+++ b/fs/gfs2/ops_super.c
@@ -13,7 +13,6 @@
13#include <linux/completion.h> 13#include <linux/completion.h>
14#include <linux/buffer_head.h> 14#include <linux/buffer_head.h>
15#include <linux/statfs.h> 15#include <linux/statfs.h>
16#include <linux/vmalloc.h>
17#include <linux/seq_file.h> 16#include <linux/seq_file.h>
18#include <linux/mount.h> 17#include <linux/mount.h>
19#include <linux/kthread.h> 18#include <linux/kthread.h>
@@ -135,7 +134,7 @@ static void gfs2_put_super(struct super_block *sb)
135 134
136 /* At this point, we're through participating in the lockspace */ 135 /* At this point, we're through participating in the lockspace */
137 gfs2_sys_fs_del(sdp); 136 gfs2_sys_fs_del(sdp);
138 vfree(sdp); 137 kfree(sdp);
139} 138}
140 139
141/** 140/**