diff options
author | Li Zefan <lizf@cn.fujitsu.com> | 2009-05-19 02:43:15 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-05-19 04:29:21 -0400 |
commit | 143c145e3a475065a4be661468d0df1bd0b25f74 (patch) | |
tree | d3454be19499a5bee54d61dc38912926e620b2c4 /Documentation/trace | |
parent | 24ed0c4bfc7d2d7507bb9d50f7f3bbdcd85d76dd (diff) |
tracing/events: Documentation updates
- fix some typos
- document the difference between '>' and '>>'
- document the 'enable' toggle
- remove section "Defining an event-enabled tracepoint", since it's
out-dated and sample/trace_events/ already serves this purpose.
v2: add "Updated by Li Zefan"
[ Impact: make documentation up-to-date ]
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: "Theodore Ts'o" <tytso@mit.edu>
LKML-Reference: <4A125503.5060406@cn.fujitsu.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'Documentation/trace')
-rw-r--r-- | Documentation/trace/events.txt | 159 |
1 files changed, 57 insertions, 102 deletions
diff --git a/Documentation/trace/events.txt b/Documentation/trace/events.txt index abdee664c0f6..f157d7594ea7 100644 --- a/Documentation/trace/events.txt +++ b/Documentation/trace/events.txt | |||
@@ -1,9 +1,10 @@ | |||
1 | Event Tracing | 1 | Event Tracing |
2 | 2 | ||
3 | Documentation written by Theodore Ts'o | 3 | Documentation written by Theodore Ts'o |
4 | Updated by Li Zefan | ||
4 | 5 | ||
5 | Introduction | 6 | 1. Introduction |
6 | ============ | 7 | =============== |
7 | 8 | ||
8 | Tracepoints (see Documentation/trace/tracepoints.txt) can be used | 9 | Tracepoints (see Documentation/trace/tracepoints.txt) can be used |
9 | without creating custom kernel modules to register probe functions | 10 | without creating custom kernel modules to register probe functions |
@@ -12,30 +13,37 @@ using the event tracing infrastructure. | |||
12 | Not all tracepoints can be traced using the event tracing system; | 13 | Not all tracepoints can be traced using the event tracing system; |
13 | the kernel developer must provide code snippets which define how the | 14 | the kernel developer must provide code snippets which define how the |
14 | tracing information is saved into the tracing buffer, and how the | 15 | tracing information is saved into the tracing buffer, and how the |
15 | the tracing information should be printed. | 16 | tracing information should be printed. |
16 | 17 | ||
17 | Using Event Tracing | 18 | 2. Using Event Tracing |
18 | =================== | 19 | ====================== |
20 | |||
21 | 2.1 Via the 'set_event' interface | ||
22 | --------------------------------- | ||
19 | 23 | ||
20 | The events which are available for tracing can be found in the file | 24 | The events which are available for tracing can be found in the file |
21 | /sys/kernel/debug/tracing/available_events. | 25 | /debug/tracing/available_events. |
22 | 26 | ||
23 | To enable a particular event, such as 'sched_wakeup', simply echo it | 27 | To enable a particular event, such as 'sched_wakeup', simply echo it |
24 | to /sys/debug/tracing/set_event. For example: | 28 | to /debug/tracing/set_event. For example: |
25 | 29 | ||
26 | # echo sched_wakeup > /sys/kernel/debug/tracing/set_event | 30 | # echo sched_wakeup >> /debug/tracing/set_event |
27 | 31 | ||
28 | [ Note: events can also be enabled/disabled via the 'enabled' toggle | 32 | [ Note: '>>' is necessary, otherwise it will firstly disable |
29 | found in the /sys/kernel/tracing/events/ hierarchy of directories. ] | 33 | all the events. ] |
30 | 34 | ||
31 | To disable an event, echo the event name to the set_event file prefixed | 35 | To disable an event, echo the event name to the set_event file prefixed |
32 | with an exclamation point: | 36 | with an exclamation point: |
33 | 37 | ||
34 | # echo '!sched_wakeup' >> /sys/kernel/debug/tracing/set_event | 38 | # echo '!sched_wakeup' >> /debug/tracing/set_event |
39 | |||
40 | To disable all events, echo an empty line to the set_event file: | ||
41 | |||
42 | # echo > /debug/tracing/set_event | ||
35 | 43 | ||
36 | To disable events, echo an empty line to the set_event file: | 44 | To enable all events, echo '*:*' or '*:' to the set_event file: |
37 | 45 | ||
38 | # echo > /sys/kernel/debug/tracing/set_event | 46 | # echo *:* > /debug/tracing/set_event |
39 | 47 | ||
40 | The events are organized into subsystems, such as ext4, irq, sched, | 48 | The events are organized into subsystems, such as ext4, irq, sched, |
41 | etc., and a full event name looks like this: <subsystem>:<event>. The | 49 | etc., and a full event name looks like this: <subsystem>:<event>. The |
@@ -44,92 +52,39 @@ file. All of the events in a subsystem can be specified via the syntax | |||
44 | "<subsystem>:*"; for example, to enable all irq events, you can use the | 52 | "<subsystem>:*"; for example, to enable all irq events, you can use the |
45 | command: | 53 | command: |
46 | 54 | ||
47 | # echo 'irq:*' > /sys/kernel/debug/tracing/set_event | 55 | # echo 'irq:*' > /debug/tracing/set_event |
48 | 56 | ||
49 | Defining an event-enabled tracepoint | 57 | 2.2 Via the 'enable' toggle |
50 | ------------------------------------ | 58 | --------------------------- |
51 | 59 | ||
52 | A kernel developer which wishes to define an event-enabled tracepoint | 60 | The events available are also listed in /debug/tracing/events/ hierarchy |
53 | must declare the tracepoint using TRACE_EVENT instead of DECLARE_TRACE. | 61 | of directories. |
54 | This is done via two header files in include/trace. For example, to | 62 | |
55 | event-enable the jbd2 subsystem, we must create two files, | 63 | To enable event 'sched_wakeup': |
56 | include/trace/jbd2.h and include/trace/jbd2_event_types.h. The | 64 | |
57 | include/trace/jbd2.h file should be included by kernel source files that | 65 | # echo 1 > /debug/tracing/events/sched/sched_wakeup/enable |
58 | will have a tracepoint inserted, and might look like this: | 66 | |
59 | 67 | To disable it: | |
60 | #ifndef _TRACE_JBD2_H | 68 | |
61 | #define _TRACE_JBD2_H | 69 | # echo 0 > /debug/tracing/events/sched/sched_wakeup/enable |
62 | 70 | ||
63 | #include <linux/jbd2.h> | 71 | To enable all events in sched subsystem: |
64 | #include <linux/tracepoint.h> | 72 | |
65 | 73 | # echo 1 > /debug/tracing/events/sched/enable | |
66 | #include <trace/jbd2_event_types.h> | 74 | |
67 | 75 | To eanble all events: | |
68 | #endif | 76 | |
69 | 77 | # echo 1 > /debug/tracing/events/enable | |
70 | In a file that utilizes a jbd2 tracepoint, this header file would be | 78 | |
71 | included. Note that you still have to use DEFINE_TRACE(). So for | 79 | When reading one of these enable files, there are four results: |
72 | example, if fs/jbd2/commit.c planned to use the jbd2_start_commit | 80 | |
73 | tracepoint, it would have the following near the beginning of the file: | 81 | 0 - all events this file affects are disabled |
74 | 82 | 1 - all events this file affects are enabled | |
75 | #include <trace/jbd2.h> | 83 | X - there is a mixture of events enabled and disabled |
76 | 84 | ? - this file does not affect any event | |
77 | DEFINE_TRACE(jbd2_start_commit); | 85 | |
78 | 86 | 3. Defining an event-enabled tracepoint | |
79 | Then in the function that would call the tracepoint, it would call the | 87 | ======================================= |
80 | tracepoint function. (For more information, please see the tracepoint | 88 | |
81 | documentation in Documentation/trace/tracepoints.txt): | 89 | See The example provided in samples/trace_events |
82 | 90 | ||
83 | trace_jbd2_start_commit(journal, commit_transaction); | ||
84 | |||
85 | The code snippets which allow jbd2_start_commit to be an event-enabled | ||
86 | tracepoint are placed in the file include/trace/jbd2_event_types.h: | ||
87 | |||
88 | /* use <trace/jbd2.h> instead */ | ||
89 | #ifndef TRACE_EVENT | ||
90 | # error Do not include this file directly. | ||
91 | # error Unless you know what you are doing. | ||
92 | #endif | ||
93 | |||
94 | #undef TRACE_SYSTEM | ||
95 | #define TRACE_SYSTEM jbd2 | ||
96 | |||
97 | #include <linux/jbd2.h> | ||
98 | |||
99 | TRACE_EVENT(jbd2_start_commit, | ||
100 | TP_PROTO(journal_t *journal, transaction_t *commit_transaction), | ||
101 | TP_ARGS(journal, commit_transaction), | ||
102 | TP_STRUCT__entry( | ||
103 | __array( char, devname, BDEVNAME_SIZE+24 ) | ||
104 | __field( int, transaction ) | ||
105 | ), | ||
106 | TP_fast_assign( | ||
107 | memcpy(__entry->devname, journal->j_devname, BDEVNAME_SIZE+24); | ||
108 | __entry->transaction = commit_transaction->t_tid; | ||
109 | ), | ||
110 | TP_printk("dev %s transaction %d", | ||
111 | __entry->devname, __entry->transaction) | ||
112 | ); | ||
113 | |||
114 | The TP_PROTO and TP_ARGS are unchanged from DECLARE_TRACE. The new | ||
115 | arguments to TRACE_EVENT are TP_STRUCT__entry, TP_fast_assign, and | ||
116 | TP_printk. | ||
117 | |||
118 | TP_STRUCT__entry defines the data structure which will be stored in the | ||
119 | trace buffer. Normally, fields in __entry will be arrays or simple | ||
120 | types. It is possible to place data structures in __entry --- however, | ||
121 | pointers in the data structure can not be trusted, since they will be | ||
122 | accessed sometime later by TP_printk, and if the data structure contains | ||
123 | fields that will not or cannot be used by TP_printk, this will waste | ||
124 | space in the trace buffer. In general, data structures should be | ||
125 | avoided, unless they do only contain non-pointer types and all of the | ||
126 | fields will be used by TP_printk. | ||
127 | |||
128 | TP_fast_assign defines the code snippet which saves information into the | ||
129 | __entry data structure, using the passed-in arguments defined in | ||
130 | TP_PROTO and TP_ARGS. | ||
131 | |||
132 | Finally, TP_printk will print the __entry data structure. At the time | ||
133 | when the code snippet defined by TP_printk is executed, it will not have | ||
134 | access to the TP_ARGS arguments; it can only use the information saved | ||
135 | in the __entry data structure. | ||