diff options
author | Namjae Jeon <namjae.jeon@samsung.com> | 2013-04-23 05:26:54 -0400 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2013-04-23 06:16:37 -0400 |
commit | 2af4bd6ca556d690ee166200abd16fdbe749782e (patch) | |
tree | bcbdbe6a0251350f5d7e6eef942f7411960d3886 /fs/f2fs | |
parent | 6ec178dac6768204a6edf70f4a53d40b691c12b4 (diff) |
f2fs: add tracepoints to debug checkpoint request
Add tracepoints to debug checkpoint request.
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Pankaj Kumar <pankaj.km@samsung.com>
Acked-by: Steven Rostedt <rostedt@goodmis.org>
[Jaegeuk: change expressions]
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs')
-rw-r--r-- | fs/f2fs/checkpoint.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index be6aa2eef894..f54b83b4d90b 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include "f2fs.h" | 20 | #include "f2fs.h" |
21 | #include "node.h" | 21 | #include "node.h" |
22 | #include "segment.h" | 22 | #include "segment.h" |
23 | #include <trace/events/f2fs.h> | ||
23 | 24 | ||
24 | static struct kmem_cache *orphan_entry_slab; | 25 | static struct kmem_cache *orphan_entry_slab; |
25 | static struct kmem_cache *inode_entry_slab; | 26 | static struct kmem_cache *inode_entry_slab; |
@@ -714,9 +715,13 @@ void write_checkpoint(struct f2fs_sb_info *sbi, bool is_umount) | |||
714 | struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi); | 715 | struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi); |
715 | unsigned long long ckpt_ver; | 716 | unsigned long long ckpt_ver; |
716 | 717 | ||
718 | trace_f2fs_write_checkpoint(sbi->sb, is_umount, "start block_ops"); | ||
719 | |||
717 | mutex_lock(&sbi->cp_mutex); | 720 | mutex_lock(&sbi->cp_mutex); |
718 | block_operations(sbi); | 721 | block_operations(sbi); |
719 | 722 | ||
723 | trace_f2fs_write_checkpoint(sbi->sb, is_umount, "finish block_ops"); | ||
724 | |||
720 | f2fs_submit_bio(sbi, DATA, true); | 725 | f2fs_submit_bio(sbi, DATA, true); |
721 | f2fs_submit_bio(sbi, NODE, true); | 726 | f2fs_submit_bio(sbi, NODE, true); |
722 | f2fs_submit_bio(sbi, META, true); | 727 | f2fs_submit_bio(sbi, META, true); |
@@ -738,6 +743,8 @@ void write_checkpoint(struct f2fs_sb_info *sbi, bool is_umount) | |||
738 | 743 | ||
739 | unblock_operations(sbi); | 744 | unblock_operations(sbi); |
740 | mutex_unlock(&sbi->cp_mutex); | 745 | mutex_unlock(&sbi->cp_mutex); |
746 | |||
747 | trace_f2fs_write_checkpoint(sbi->sb, is_umount, "finish checkpoint"); | ||
741 | } | 748 | } |
742 | 749 | ||
743 | void init_orphan_info(struct f2fs_sb_info *sbi) | 750 | void init_orphan_info(struct f2fs_sb_info *sbi) |