diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2014-12-18 05:04:08 +0100 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2015-01-10 02:02:24 +0100 |
commit | db9f7c1a9561e998d6227bcc1c19bc4c1fbbca1b (patch) | |
tree | 92c76e9042c1d909129f50b28a5b9c942318a63d /fs/f2fs/file.c | |
parent | f2fs: activate f2fs_trace_pid (diff) | |
download | linux-db9f7c1a9561e998d6227bcc1c19bc4c1fbbca1b.tar.xz linux-db9f7c1a9561e998d6227bcc1c19bc4c1fbbca1b.zip |
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; } |