Cleanup: Remove toplevel directory from include search path
[lttng-modules.git] / include / instrumentation / events / lttng-module / workqueue.h
... / ...
CommitLineData
1/* SPDX-License-Identifier: GPL-2.0-only */
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 <lttng/tracepoint-event.h>
9#include <linux/workqueue.h>
10#include <linux/version.h>
11
12#ifndef _TRACE_WORKQUEUE_DEF_
13#define _TRACE_WORKQUEUE_DEF_
14
15struct worker;
16struct global_cwq;
17
18#endif
19
20LTTNG_TRACEPOINT_EVENT_CLASS(workqueue_work,
21
22 TP_PROTO(struct work_struct *work),
23
24 TP_ARGS(work),
25
26 TP_FIELDS(
27 ctf_integer_hex(void *, work, work)
28 )
29)
30
31/**
32 * workqueue_queue_work - called when a work gets queued
33 * @req_cpu: the requested cpu
34 * @cwq: pointer to struct cpu_workqueue_struct
35 * @work: pointer to struct work_struct
36 *
37 * This event occurs when a work is queued immediately or once a
38 * delayed work is actually queued on a workqueue (ie: once the delay
39 * has been reached).
40 */
41LTTNG_TRACEPOINT_EVENT(workqueue_queue_work,
42
43#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
44 TP_PROTO(unsigned int req_cpu, struct pool_workqueue *pwq,
45 struct work_struct *work),
46
47 TP_ARGS(req_cpu, pwq, work),
48#else
49 TP_PROTO(unsigned int req_cpu, struct cpu_workqueue_struct *cwq,
50 struct work_struct *work),
51
52 TP_ARGS(req_cpu, cwq, work),
53#endif
54
55 TP_FIELDS(
56 ctf_integer_hex(void *, work, work)
57 ctf_integer_hex(void *, function, work->func)
58 ctf_integer(unsigned int, req_cpu, req_cpu)
59 )
60)
61
62/**
63 * workqueue_activate_work - called when a work gets activated
64 * @work: pointer to struct work_struct
65 *
66 * This event occurs when a queued work is put on the active queue,
67 * which happens immediately after queueing unless @max_active limit
68 * is reached.
69 */
70LTTNG_TRACEPOINT_EVENT_INSTANCE(workqueue_work, workqueue_activate_work,
71
72 TP_PROTO(struct work_struct *work),
73
74 TP_ARGS(work)
75)
76
77/**
78 * workqueue_execute_start - called immediately before the workqueue callback
79 * @work: pointer to struct work_struct
80 *
81 * Allows to track workqueue execution.
82 */
83LTTNG_TRACEPOINT_EVENT(workqueue_execute_start,
84
85 TP_PROTO(struct work_struct *work),
86
87 TP_ARGS(work),
88
89 TP_FIELDS(
90 ctf_integer_hex(void *, work, work)
91 ctf_integer_hex(void *, function, work->func)
92 )
93)
94
95#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
96/**
97 * workqueue_execute_end - called immediately after the workqueue callback
98 * @work: pointer to struct work_struct
99 * @function: pointer to worker function
100 *
101 * Allows to track workqueue execution.
102 */
103LTTNG_TRACEPOINT_EVENT(workqueue_execute_end,
104
105 TP_PROTO(struct work_struct *work, work_func_t function),
106
107 TP_ARGS(work, function),
108
109 TP_FIELDS(
110 ctf_integer_hex(void *, work, work)
111 ctf_integer_hex(void *, function, function)
112 )
113)
114#else
115/**
116 * workqueue_execute_end - called immediately after the workqueue callback
117 * @work: pointer to struct work_struct
118 *
119 * Allows to track workqueue execution.
120 */
121LTTNG_TRACEPOINT_EVENT_INSTANCE(workqueue_work, workqueue_execute_end,
122
123 TP_PROTO(struct work_struct *work),
124
125 TP_ARGS(work)
126)
127#endif
128
129#endif /* LTTNG_TRACE_WORKQUEUE_H */
130
131/* This part must be outside protection */
132#include <lttng/define_trace.h>
This page took 0.023575 seconds and 4 git commands to generate.