Cleanup: move to kernel style SPDX license identifiers
[lttng-modules.git] / instrumentation / events / lttng-module / workqueue.h
CommitLineData
9f36eaed 1/* SPDX-License-Identifier: GPL-2.0 */
b87700e3
AG
2#undef TRACE_SYSTEM
3#define TRACE_SYSTEM workqueue
4
3bc29f0a
MD
5#if !defined(LTTNG_TRACE_WORKQUEUE_H) || defined(TRACE_HEADER_MULTI_READ)
6#define LTTNG_TRACE_WORKQUEUE_H
b87700e3 7
6ec43db8 8#include <probes/lttng-tracepoint-event.h>
b87700e3
AG
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
17struct worker;
18struct global_cwq;
19
b87700e3
AG
20#endif
21
3bc29f0a 22LTTNG_TRACEPOINT_EVENT_CLASS(workqueue_work,
b87700e3
AG
23
24 TP_PROTO(struct work_struct *work),
25
26 TP_ARGS(work),
27
f127e61e 28 TP_FIELDS(
fa91fcac 29 ctf_integer_hex(void *, work, work)
f127e61e 30 )
b87700e3
AG
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 */
3bc29f0a 44LTTNG_TRACEPOINT_EVENT(workqueue_queue_work,
b87700e3 45
20008d8c
MD
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
b87700e3
AG
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),
20008d8c 56#endif
b87700e3 57
f127e61e 58 TP_FIELDS(
fa91fcac
MD
59 ctf_integer_hex(void *, work, work)
60 ctf_integer_hex(void *, function, work->func)
f127e61e
MD
61 ctf_integer(unsigned int, req_cpu, req_cpu)
62 )
b87700e3
AG
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 */
3bc29f0a 73LTTNG_TRACEPOINT_EVENT_INSTANCE(workqueue_work, workqueue_activate_work,
b87700e3
AG
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 */
3bc29f0a 87LTTNG_TRACEPOINT_EVENT(workqueue_execute_start,
b87700e3
AG
88
89 TP_PROTO(struct work_struct *work),
90
91 TP_ARGS(work),
92
f127e61e 93 TP_FIELDS(
fa91fcac
MD
94 ctf_integer_hex(void *, work, work)
95 ctf_integer_hex(void *, function, work->func)
f127e61e 96 )
b87700e3
AG
97)
98
99/**
100 * workqueue_execute_end - called immediately after the workqueue callback
101 * @work: pointer to struct work_struct
102 *
103 * Allows to track workqueue execution.
104 */
3bc29f0a 105LTTNG_TRACEPOINT_EVENT_INSTANCE(workqueue_work, workqueue_execute_end,
b87700e3
AG
106
107 TP_PROTO(struct work_struct *work),
108
109 TP_ARGS(work)
110)
111
112#else
113
3bc29f0a 114LTTNG_TRACEPOINT_EVENT_CLASS(workqueue,
b87700e3
AG
115
116 TP_PROTO(struct task_struct *wq_thread, struct work_struct *work),
117
118 TP_ARGS(wq_thread, work),
119
f127e61e
MD
120 TP_FIELDS(
121 ctf_array(char, thread_comm, wq_thread->comm, TASK_COMM_LEN)
122 ctf_integer(pid_t, thread_pid, wq_thread->pid)
fa91fcac 123 ctf_integer_hex(work_func_t, func, work->func)
f127e61e 124 )
b87700e3
AG
125)
126
3bc29f0a 127LTTNG_TRACEPOINT_EVENT_INSTANCE(workqueue, workqueue_insertion,
b87700e3
AG
128
129 TP_PROTO(struct task_struct *wq_thread, struct work_struct *work),
130
131 TP_ARGS(wq_thread, work)
132)
133
3bc29f0a 134LTTNG_TRACEPOINT_EVENT_INSTANCE(workqueue, workqueue_execution,
b87700e3
AG
135
136 TP_PROTO(struct task_struct *wq_thread, struct work_struct *work),
137
138 TP_ARGS(wq_thread, work)
139)
140
141/* Trace the creation of one workqueue thread on a cpu */
3bc29f0a 142LTTNG_TRACEPOINT_EVENT(workqueue_creation,
b87700e3
AG
143
144 TP_PROTO(struct task_struct *wq_thread, int cpu),
145
146 TP_ARGS(wq_thread, cpu),
147
f127e61e
MD
148 TP_FIELDS(
149 ctf_array(char, thread_comm, wq_thread->comm, TASK_COMM_LEN)
150 ctf_integer(pid_t, thread_pid, wq_thread->pid)
151 ctf_integer(int, cpu, cpu)
152 )
b87700e3
AG
153)
154
3bc29f0a 155LTTNG_TRACEPOINT_EVENT(workqueue_destruction,
b87700e3
AG
156
157 TP_PROTO(struct task_struct *wq_thread),
158
159 TP_ARGS(wq_thread),
160
f127e61e
MD
161 TP_FIELDS(
162 ctf_array(char, thread_comm, wq_thread->comm, TASK_COMM_LEN)
163 ctf_integer(pid_t, thread_pid, wq_thread->pid)
164 )
b87700e3
AG
165)
166
167#endif
168
3bc29f0a 169#endif /* LTTNG_TRACE_WORKQUEUE_H */
b87700e3
AG
170
171/* This part must be outside protection */
6ec43db8 172#include <probes/define_trace.h>
This page took 0.042702 seconds and 4 git commands to generate.