fix: workqueue: add worker function to workqueue_execute_end tracepoint (v5.6)
[lttng-modules.git] / instrumentation / events / lttng-module / workqueue.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #undef TRACE_SYSTEM
3 #define TRACE_SYSTEM workqueue
4
5 #if !defined(LTTNG_TRACE_WORKQUEUE_H) || defined(TRACE_HEADER_MULTI_READ)
6 #define LTTNG_TRACE_WORKQUEUE_H
7
8 #include <probes/lttng-tracepoint-event.h>
9 #include <linux/workqueue.h>
10 #include <linux/version.h>
11
12 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36))
13
14 #ifndef _TRACE_WORKQUEUE_DEF_
15 #define _TRACE_WORKQUEUE_DEF_
16
17 struct worker;
18 struct global_cwq;
19
20 #endif
21
22 LTTNG_TRACEPOINT_EVENT_CLASS(workqueue_work,
23
24 TP_PROTO(struct work_struct *work),
25
26 TP_ARGS(work),
27
28 TP_FIELDS(
29 ctf_integer_hex(void *, work, work)
30 )
31 )
32
33 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37))
34 /**
35 * workqueue_queue_work - called when a work gets queued
36 * @req_cpu: the requested cpu
37 * @cwq: pointer to struct cpu_workqueue_struct
38 * @work: pointer to struct work_struct
39 *
40 * This event occurs when a work is queued immediately or once a
41 * delayed work is actually queued on a workqueue (ie: once the delay
42 * has been reached).
43 */
44 LTTNG_TRACEPOINT_EVENT(workqueue_queue_work,
45
46 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
47 TP_PROTO(unsigned int req_cpu, struct pool_workqueue *pwq,
48 struct work_struct *work),
49
50 TP_ARGS(req_cpu, pwq, work),
51 #else
52 TP_PROTO(unsigned int req_cpu, struct cpu_workqueue_struct *cwq,
53 struct work_struct *work),
54
55 TP_ARGS(req_cpu, cwq, work),
56 #endif
57
58 TP_FIELDS(
59 ctf_integer_hex(void *, work, work)
60 ctf_integer_hex(void *, function, work->func)
61 ctf_integer(unsigned int, req_cpu, req_cpu)
62 )
63 )
64
65 /**
66 * workqueue_activate_work - called when a work gets activated
67 * @work: pointer to struct work_struct
68 *
69 * This event occurs when a queued work is put on the active queue,
70 * which happens immediately after queueing unless @max_active limit
71 * is reached.
72 */
73 LTTNG_TRACEPOINT_EVENT_INSTANCE(workqueue_work, workqueue_activate_work,
74
75 TP_PROTO(struct work_struct *work),
76
77 TP_ARGS(work)
78 )
79 #endif
80
81 /**
82 * workqueue_execute_start - called immediately before the workqueue callback
83 * @work: pointer to struct work_struct
84 *
85 * Allows to track workqueue execution.
86 */
87 LTTNG_TRACEPOINT_EVENT(workqueue_execute_start,
88
89 TP_PROTO(struct work_struct *work),
90
91 TP_ARGS(work),
92
93 TP_FIELDS(
94 ctf_integer_hex(void *, work, work)
95 ctf_integer_hex(void *, function, work->func)
96 )
97 )
98
99 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
100 /**
101 * workqueue_execute_end - called immediately after the workqueue callback
102 * @work: pointer to struct work_struct
103 * @function: pointer to worker function
104 *
105 * Allows to track workqueue execution.
106 */
107 LTTNG_TRACEPOINT_EVENT(workqueue_execute_end,
108
109 TP_PROTO(struct work_struct *work, work_func_t function),
110
111 TP_ARGS(work, function),
112
113 TP_FIELDS(
114 ctf_integer_hex(void *, work, work)
115 ctf_integer_hex(void *, function, function)
116 )
117 )
118 #else
119 /**
120 * workqueue_execute_end - called immediately after the workqueue callback
121 * @work: pointer to struct work_struct
122 *
123 * Allows to track workqueue execution.
124 */
125 LTTNG_TRACEPOINT_EVENT_INSTANCE(workqueue_work, workqueue_execute_end,
126
127 TP_PROTO(struct work_struct *work),
128
129 TP_ARGS(work)
130 )
131 #endif
132
133 #else
134
135 LTTNG_TRACEPOINT_EVENT_CLASS(workqueue,
136
137 TP_PROTO(struct task_struct *wq_thread, struct work_struct *work),
138
139 TP_ARGS(wq_thread, work),
140
141 TP_FIELDS(
142 ctf_array(char, thread_comm, wq_thread->comm, TASK_COMM_LEN)
143 ctf_integer(pid_t, thread_pid, wq_thread->pid)
144 ctf_integer_hex(work_func_t, func, work->func)
145 )
146 )
147
148 LTTNG_TRACEPOINT_EVENT_INSTANCE(workqueue, workqueue_insertion,
149
150 TP_PROTO(struct task_struct *wq_thread, struct work_struct *work),
151
152 TP_ARGS(wq_thread, work)
153 )
154
155 LTTNG_TRACEPOINT_EVENT_INSTANCE(workqueue, workqueue_execution,
156
157 TP_PROTO(struct task_struct *wq_thread, struct work_struct *work),
158
159 TP_ARGS(wq_thread, work)
160 )
161
162 /* Trace the creation of one workqueue thread on a cpu */
163 LTTNG_TRACEPOINT_EVENT(workqueue_creation,
164
165 TP_PROTO(struct task_struct *wq_thread, int cpu),
166
167 TP_ARGS(wq_thread, cpu),
168
169 TP_FIELDS(
170 ctf_array(char, thread_comm, wq_thread->comm, TASK_COMM_LEN)
171 ctf_integer(pid_t, thread_pid, wq_thread->pid)
172 ctf_integer(int, cpu, cpu)
173 )
174 )
175
176 LTTNG_TRACEPOINT_EVENT(workqueue_destruction,
177
178 TP_PROTO(struct task_struct *wq_thread),
179
180 TP_ARGS(wq_thread),
181
182 TP_FIELDS(
183 ctf_array(char, thread_comm, wq_thread->comm, TASK_COMM_LEN)
184 ctf_integer(pid_t, thread_pid, wq_thread->pid)
185 )
186 )
187
188 #endif
189
190 #endif /* LTTNG_TRACE_WORKQUEUE_H */
191
192 /* This part must be outside protection */
193 #include <probes/define_trace.h>
This page took 0.033639 seconds and 4 git commands to generate.