diff options
author | KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> | 2010-08-09 20:19:56 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-09 23:45:03 -0400 |
commit | bdce6d9ebf52c1f6c23163d1a33320ce7c007f73 (patch) | |
tree | 6070de94cdece474e277d8878721421671e212eb /include/trace | |
parent | cf4dcc3e9b374e1b61a7c22faf868707ce78d6a9 (diff) |
memcg, vmscan: add memcg reclaim tracepoint
Memcg also need to trace reclaim progress as direct reclaim. This patch
add it.
Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Reviewed-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Acked-by: Mel Gorman <mel@csn.ul.ie>
Acked-by: Balbir Singh <balbir@linux.vnet.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/trace')
-rw-r--r-- | include/trace/events/vmscan.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/include/trace/events/vmscan.h b/include/trace/events/vmscan.h index f9f2747bc1c1..028733be4f34 100644 --- a/include/trace/events/vmscan.h +++ b/include/trace/events/vmscan.h | |||
@@ -117,6 +117,19 @@ DEFINE_EVENT(mm_vmscan_direct_reclaim_begin_template, mm_vmscan_direct_reclaim_b | |||
117 | TP_ARGS(order, may_writepage, gfp_flags) | 117 | TP_ARGS(order, may_writepage, gfp_flags) |
118 | ); | 118 | ); |
119 | 119 | ||
120 | DEFINE_EVENT(mm_vmscan_direct_reclaim_begin_template, mm_vmscan_memcg_reclaim_begin, | ||
121 | |||
122 | TP_PROTO(int order, int may_writepage, gfp_t gfp_flags), | ||
123 | |||
124 | TP_ARGS(order, may_writepage, gfp_flags) | ||
125 | ); | ||
126 | |||
127 | DEFINE_EVENT(mm_vmscan_direct_reclaim_begin_template, mm_vmscan_memcg_softlimit_reclaim_begin, | ||
128 | |||
129 | TP_PROTO(int order, int may_writepage, gfp_t gfp_flags), | ||
130 | |||
131 | TP_ARGS(order, may_writepage, gfp_flags) | ||
132 | ); | ||
120 | 133 | ||
121 | DECLARE_EVENT_CLASS(mm_vmscan_direct_reclaim_end_template, | 134 | DECLARE_EVENT_CLASS(mm_vmscan_direct_reclaim_end_template, |
122 | 135 | ||
@@ -142,6 +155,21 @@ DEFINE_EVENT(mm_vmscan_direct_reclaim_end_template, mm_vmscan_direct_reclaim_end | |||
142 | TP_ARGS(nr_reclaimed) | 155 | TP_ARGS(nr_reclaimed) |
143 | ); | 156 | ); |
144 | 157 | ||
158 | DEFINE_EVENT(mm_vmscan_direct_reclaim_end_template, mm_vmscan_memcg_reclaim_end, | ||
159 | |||
160 | TP_PROTO(unsigned long nr_reclaimed), | ||
161 | |||
162 | TP_ARGS(nr_reclaimed) | ||
163 | ); | ||
164 | |||
165 | DEFINE_EVENT(mm_vmscan_direct_reclaim_end_template, mm_vmscan_memcg_softlimit_reclaim_end, | ||
166 | |||
167 | TP_PROTO(unsigned long nr_reclaimed), | ||
168 | |||
169 | TP_ARGS(nr_reclaimed) | ||
170 | ); | ||
171 | |||
172 | |||
145 | TRACE_EVENT(mm_vmscan_lru_isolate, | 173 | TRACE_EVENT(mm_vmscan_lru_isolate, |
146 | 174 | ||
147 | TP_PROTO(int order, | 175 | TP_PROTO(int order, |