diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2014-12-17 22:45:05 -0500 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2015-01-09 20:02:24 -0500 |
commit | 63f92ddc8aee18838441179064338702a93326a9 (patch) | |
tree | 42cf7109edcebe2bebb8dca7f4419721a32231db /fs/f2fs/Kconfig | |
parent | cf04e8eb55290c7b836c36f0b4e1a8d0fe8ee275 (diff) |
f2fs: add f2fs_io_tracer support
This patch adds:
o initial trace.c and trace.h with skeleton functions
o Kconfig and Makefile to activate this feature
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/Kconfig')
-rw-r--r-- | fs/f2fs/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/f2fs/Kconfig b/fs/f2fs/Kconfig index 736a348509f7..94e2d2ffabe1 100644 --- a/fs/f2fs/Kconfig +++ b/fs/f2fs/Kconfig | |||
@@ -71,3 +71,13 @@ config F2FS_CHECK_FS | |||
71 | Enables BUG_ONs which check the filesystem consistency in runtime. | 71 | Enables BUG_ONs which check the filesystem consistency in runtime. |
72 | 72 | ||
73 | If you want to improve the performance, say N. | 73 | If you want to improve the performance, say N. |
74 | |||
75 | config F2FS_IO_TRACE | ||
76 | bool "F2FS IO tracer" | ||
77 | depends on F2FS_FS | ||
78 | depends on FUNCTION_TRACER | ||
79 | help | ||
80 | F2FS IO trace is based on a function trace, which gathers process | ||
81 | information and block IO patterns in the filesystem level. | ||
82 | |||
83 | If unsure, say N. | ||