summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/super.c
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk@kernel.org>2015-01-07 23:09:48 +0100
committerJaegeuk Kim <jaegeuk@kernel.org>2015-01-10 02:02:28 +0100
commit351f4fba843db3303a92897b21a3d4dff4b6c717 (patch)
treec7f729d8f998e10a861a3e4bbf2aa200df012309 /fs/f2fs/super.c
parentf2fs: add spin_lock to cover radix operations in IO tracer (diff)
downloadlinux-351f4fba843db3303a92897b21a3d4dff4b6c717.tar.xz
linux-351f4fba843db3303a92897b21a3d4dff4b6c717.zip
f2fs: add f2fs_destroy_trace_ios to free radix tree
This patch removes radix tree after finishing tracing IOs. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/super.c')
-rw-r--r--fs/f2fs/super.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index e6f035c868d3..0e97974bbbbd 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -1272,6 +1272,7 @@ static void __exit exit_f2fs_fs(void)
destroy_node_manager_caches();
destroy_inodecache();
kset_unregister(f2fs_kset);
+ f2fs_destroy_trace_ios();
}
module_init(init_f2fs_fs)