diff options
author | Jaegeuk Kim | 2014-12-17 20:04:08 -0800 |
---|---|---|
committer | Jaegeuk Kim | 2015-01-09 17:02:24 -0800 |
commit | db9f7c1a9561e998d6227bcc1c19bc4c1fbbca1b (patch) | |
tree | 92c76e9042c1d909129f50b28a5b9c942318a63d /fs/f2fs/file.c | |
parent | 9e4ded3f309eb5b5a9be0ca2acd26e5ea7f00914 (diff) |
f2fs: activate f2fs_trace_ios
This patch activates f2fs_trace_ios.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/file.c')
-rw-r--r-- | fs/f2fs/file.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c index 5139f90e92c1..f172ddc4ecdd 100644 --- a/fs/f2fs/file.c +++ b/fs/f2fs/file.c @@ -26,6 +26,7 @@ #include "segment.h" #include "xattr.h" #include "acl.h" +#include "trace.h" #include <trace/events/f2fs.h> static int f2fs_vm_page_mkwrite(struct vm_area_struct *vma, @@ -265,6 +266,7 @@ flush_out: ret = f2fs_issue_flush(sbi); out: trace_f2fs_sync_file_exit(inode, need_cp, datasync, ret); + f2fs_trace_ios(NULL, NULL, 1); return ret; } |