blob: 0e763576515398be7bcbea3e1d4b50a25201c853 [file] [log] [blame]
Dave Hansend17d8f92014-07-31 08:40:59 -07001#undef TRACE_SYSTEM
2#define TRACE_SYSTEM tlb
3
4#if !defined(_TRACE_TLB_H) || defined(TRACE_HEADER_MULTI_READ)
5#define _TRACE_TLB_H
6
7#include <linux/mm_types.h>
8#include <linux/tracepoint.h>
9
10#define TLB_FLUSH_REASON \
11 { TLB_FLUSH_ON_TASK_SWITCH, "flush on task switch" }, \
12 { TLB_REMOTE_SHOOTDOWN, "remote shootdown" }, \
13 { TLB_LOCAL_SHOOTDOWN, "local shootdown" }, \
14 { TLB_LOCAL_MM_SHOOTDOWN, "local mm shootdown" }
15
Steven Rostedt (Red Hat)6c8465a2015-02-06 14:18:19 -050016TRACE_EVENT_CONDITION(tlb_flush,
Dave Hansend17d8f92014-07-31 08:40:59 -070017
18 TP_PROTO(int reason, unsigned long pages),
19 TP_ARGS(reason, pages),
20
Steven Rostedt (Red Hat)6c8465a2015-02-06 14:18:19 -050021 TP_CONDITION(cpu_online(smp_processor_id())),
22
Dave Hansend17d8f92014-07-31 08:40:59 -070023 TP_STRUCT__entry(
24 __field( int, reason)
25 __field(unsigned long, pages)
26 ),
27
28 TP_fast_assign(
29 __entry->reason = reason;
30 __entry->pages = pages;
31 ),
32
33 TP_printk("pages:%ld reason:%s (%d)",
34 __entry->pages,
35 __print_symbolic(__entry->reason, TLB_FLUSH_REASON),
36 __entry->reason)
37);
38
39#endif /* _TRACE_TLB_H */
40
41/* This part must be outside protection */
42#include <trace/define_trace.h>