diff options
author | Tao Ma <boyu.mt@taobao.com> | 2011-05-22 22:36:45 -0400 |
---|---|---|
committer | Joel Becker <jlbec@evilplan.org> | 2011-05-24 02:37:20 -0400 |
commit | 10fca35ff12ad2a7017bce6567cffe9da443d7a2 (patch) | |
tree | 46c8fd9157bde0616798ff1945d16da4c9881d16 /fs/ocfs2/ocfs2_trace.h | |
parent | 55e67872b67ebd30d1326067cdba53a622ab497d (diff) |
ocfs2: Add trace event for trim.
Add the corresponding trace event for trim.
Signed-off-by: Tao Ma <boyu.mt@taobao.com>
Signed-off-by: Joel Becker <jlbec@evilplan.org>
Diffstat (limited to 'fs/ocfs2/ocfs2_trace.h')
-rw-r--r-- | fs/ocfs2/ocfs2_trace.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/fs/ocfs2/ocfs2_trace.h b/fs/ocfs2/ocfs2_trace.h index a1dae5bb54ac..3b481f490633 100644 --- a/fs/ocfs2/ocfs2_trace.h +++ b/fs/ocfs2/ocfs2_trace.h | |||
@@ -688,6 +688,31 @@ TRACE_EVENT(ocfs2_cache_block_dealloc, | |||
688 | __entry->blkno, __entry->bit) | 688 | __entry->blkno, __entry->bit) |
689 | ); | 689 | ); |
690 | 690 | ||
691 | TRACE_EVENT(ocfs2_trim_extent, | ||
692 | TP_PROTO(struct super_block *sb, unsigned long long blk, | ||
693 | unsigned long long count), | ||
694 | TP_ARGS(sb, blk, count), | ||
695 | TP_STRUCT__entry( | ||
696 | __field(int, dev_major) | ||
697 | __field(int, dev_minor) | ||
698 | __field(unsigned long long, blk) | ||
699 | __field(__u64, count) | ||
700 | ), | ||
701 | TP_fast_assign( | ||
702 | __entry->dev_major = MAJOR(sb->s_dev); | ||
703 | __entry->dev_minor = MINOR(sb->s_dev); | ||
704 | __entry->blk = blk; | ||
705 | __entry->count = count; | ||
706 | ), | ||
707 | TP_printk("%d %d %llu %llu", | ||
708 | __entry->dev_major, __entry->dev_minor, | ||
709 | __entry->blk, __entry->count) | ||
710 | ); | ||
711 | |||
712 | DEFINE_OCFS2_ULL_UINT_UINT_UINT_EVENT(ocfs2_trim_group); | ||
713 | |||
714 | DEFINE_OCFS2_ULL_ULL_ULL_EVENT(ocfs2_trim_fs); | ||
715 | |||
691 | /* End of trace events for fs/ocfs2/alloc.c. */ | 716 | /* End of trace events for fs/ocfs2/alloc.c. */ |
692 | 717 | ||
693 | /* Trace events for fs/ocfs2/localalloc.c. */ | 718 | /* Trace events for fs/ocfs2/localalloc.c. */ |