diff options
| author | Li Zefan <lizf@cn.fujitsu.com> | 2009-08-17 04:56:28 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-08-17 05:25:08 -0400 |
| commit | 7ead8b8313d92b3a69a1a61b0dcbc4cd66c960dc (patch) | |
| tree | 614759ec1b24ea9f6d1409b866c80df0611e5d6b /include/trace/events/module.h | |
| parent | 60d970c254b95ec7a0fc4c590b510253987b64a0 (diff) | |
tracing/events: Add module tracepoints
Add trace points to trace module_load, module_free, module_get,
module_put and module_request, and use trace_event facility to
get the trace output.
Here's the sample output:
TASK-PID CPU# TIMESTAMP FUNCTION
| | | | |
<...>-42 [000] 1.758380: module_request: fb0 wait=1 call_site=fb_open
...
<...>-60 [000] 3.269403: module_load: scsi_wait_scan
<...>-60 [000] 3.269432: module_put: scsi_wait_scan call_site=sys_init_module refcnt=0
<...>-61 [001] 3.273168: module_free: scsi_wait_scan
...
<...>-1021 [000] 13.836081: module_load: sunrpc
<...>-1021 [000] 13.840589: module_put: sunrpc call_site=sys_init_module refcnt=-1
<...>-1027 [000] 13.848098: module_get: sunrpc call_site=try_module_get refcnt=0
<...>-1027 [000] 13.848308: module_get: sunrpc call_site=get_filesystem refcnt=1
<...>-1027 [000] 13.848692: module_put: sunrpc call_site=put_filesystem refcnt=0
...
modprobe-2587 [001] 1088.437213: module_load: trace_events_sample F
modprobe-2587 [001] 1088.437786: module_put: trace_events_sample call_site=sys_init_module refcnt=0
Note:
- the taints flag can be 'F', 'C' and/or 'P' if mod->taints != 0
- the module refcnt is percpu, so it can be negative in a
specific cpu
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Acked-by: Rusty Russell <rusty@rustcorp.com.au>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
LKML-Reference: <4A891B3C.5030608@cn.fujitsu.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/trace/events/module.h')
| -rw-r--r-- | include/trace/events/module.h | 126 |
1 files changed, 126 insertions, 0 deletions
diff --git a/include/trace/events/module.h b/include/trace/events/module.h new file mode 100644 index 000000000000..84160fb18478 --- /dev/null +++ b/include/trace/events/module.h | |||
| @@ -0,0 +1,126 @@ | |||
| 1 | #undef TRACE_SYSTEM | ||
| 2 | #define TRACE_SYSTEM module | ||
| 3 | |||
| 4 | #if !defined(_TRACE_MODULE_H) || defined(TRACE_HEADER_MULTI_READ) | ||
| 5 | #define _TRACE_MODULE_H | ||
| 6 | |||
| 7 | #include <linux/tracepoint.h> | ||
| 8 | |||
| 9 | #ifdef CONFIG_MODULES | ||
| 10 | |||
| 11 | struct module; | ||
| 12 | |||
| 13 | #define show_module_flags(flags) __print_flags(flags, "", \ | ||
| 14 | { (1UL << TAINT_PROPRIETARY_MODULE), "P" }, \ | ||
| 15 | { (1UL << TAINT_FORCED_MODULE), "F" }, \ | ||
| 16 | { (1UL << TAINT_CRAP), "C" }) | ||
| 17 | |||
| 18 | TRACE_EVENT(module_load, | ||
| 19 | |||
| 20 | TP_PROTO(struct module *mod), | ||
| 21 | |||
| 22 | TP_ARGS(mod), | ||
| 23 | |||
| 24 | TP_STRUCT__entry( | ||
| 25 | __field( unsigned int, taints ) | ||
| 26 | __string( name, mod->name ) | ||
| 27 | ), | ||
| 28 | |||
| 29 | TP_fast_assign( | ||
| 30 | __entry->taints = mod->taints; | ||
| 31 | __assign_str(name, mod->name); | ||
| 32 | ), | ||
| 33 | |||
| 34 | TP_printk("%s %s", __get_str(name), show_module_flags(__entry->taints)) | ||
| 35 | ); | ||
| 36 | |||
| 37 | TRACE_EVENT(module_free, | ||
| 38 | |||
| 39 | TP_PROTO(struct module *mod), | ||
| 40 | |||
| 41 | TP_ARGS(mod), | ||
| 42 | |||
| 43 | TP_STRUCT__entry( | ||
| 44 | __string( name, mod->name ) | ||
| 45 | ), | ||
| 46 | |||
| 47 | TP_fast_assign( | ||
| 48 | __assign_str(name, mod->name); | ||
| 49 | ), | ||
| 50 | |||
| 51 | TP_printk("%s", __get_str(name)) | ||
| 52 | ); | ||
| 53 | |||
| 54 | TRACE_EVENT(module_get, | ||
| 55 | |||
| 56 | TP_PROTO(struct module *mod, unsigned long ip, int refcnt), | ||
| 57 | |||
| 58 | TP_ARGS(mod, ip, refcnt), | ||
| 59 | |||
| 60 | TP_STRUCT__entry( | ||
| 61 | __field( unsigned long, ip ) | ||
| 62 | __field( int, refcnt ) | ||
| 63 | __string( name, mod->name ) | ||
| 64 | ), | ||
| 65 | |||
| 66 | TP_fast_assign( | ||
| 67 | __entry->ip = ip; | ||
| 68 | __entry->refcnt = refcnt; | ||
| 69 | __assign_str(name, mod->name); | ||
| 70 | ), | ||
| 71 | |||
| 72 | TP_printk("%s call_site=%pf refcnt=%d", | ||
| 73 | __get_str(name), (void *)__entry->ip, __entry->refcnt) | ||
| 74 | ); | ||
| 75 | |||
| 76 | TRACE_EVENT(module_put, | ||
| 77 | |||
| 78 | TP_PROTO(struct module *mod, unsigned long ip, int refcnt), | ||
| 79 | |||
| 80 | TP_ARGS(mod, ip, refcnt), | ||
| 81 | |||
| 82 | TP_STRUCT__entry( | ||
| 83 | __field( unsigned long, ip ) | ||
| 84 | __field( int, refcnt ) | ||
| 85 | __string( name, mod->name ) | ||
| 86 | ), | ||
| 87 | |||
| 88 | TP_fast_assign( | ||
| 89 | __entry->ip = ip; | ||
| 90 | __entry->refcnt = refcnt; | ||
| 91 | __assign_str(name, mod->name); | ||
| 92 | ), | ||
| 93 | |||
| 94 | TP_printk("%s call_site=%pf refcnt=%d", | ||
| 95 | __get_str(name), (void *)__entry->ip, __entry->refcnt) | ||
| 96 | ); | ||
| 97 | |||
| 98 | TRACE_EVENT(module_request, | ||
| 99 | |||
| 100 | TP_PROTO(char *name, bool wait, unsigned long ip), | ||
| 101 | |||
| 102 | TP_ARGS(name, wait, ip), | ||
| 103 | |||
| 104 | TP_STRUCT__entry( | ||
| 105 | __field( bool, wait ) | ||
| 106 | __field( unsigned long, ip ) | ||
| 107 | __string( name, name ) | ||
| 108 | ), | ||
| 109 | |||
| 110 | TP_fast_assign( | ||
| 111 | __entry->wait = wait; | ||
| 112 | __entry->ip = ip; | ||
| 113 | __assign_str(name, name); | ||
| 114 | ), | ||
| 115 | |||
| 116 | TP_printk("%s wait=%d call_site=%pf", | ||
| 117 | __get_str(name), (int)__entry->wait, (void *)__entry->ip) | ||
| 118 | ); | ||
| 119 | |||
| 120 | #endif /* CONFIG_MODULES */ | ||
| 121 | |||
| 122 | #endif /* _TRACE_MODULE_H */ | ||
| 123 | |||
| 124 | /* This part must be outside protection */ | ||
| 125 | #include <trace/define_trace.h> | ||
| 126 | |||
