2 #define TRACE_SYSTEM sched
4 #if !defined(_TRACE_SCHED_H) || defined(TRACE_HEADER_MULTI_READ)
7 #include <linux/sched.h>
8 #include <linux/tracepoint.h>
11 * Tracepoint for calling kthread_stop, performed to end a kthread:
13 TRACE_EVENT(sched_kthread_stop
,
15 TP_PROTO(struct task_struct
*t
),
20 __array( char, comm
, TASK_COMM_LEN
)
25 memcpy(__entry
->comm
, t
->comm
, TASK_COMM_LEN
);
26 __entry
->pid
= t
->pid
;
29 TP_printk("comm=%s pid=%d", __entry
->comm
, __entry
->pid
)
33 * Tracepoint for the return value of the kthread stopping:
35 TRACE_EVENT(sched_kthread_stop_ret
,
49 TP_printk("ret=%d", __entry
->ret
)
53 * Tracepoint for waking up a task:
55 DECLARE_EVENT_CLASS(sched_wakeup_template
,
57 TP_PROTO(struct task_struct
*p
, int success
),
62 __array( char, comm
, TASK_COMM_LEN
)
65 __field( int, success
)
66 __field( int, target_cpu
)
70 memcpy(__entry
->comm
, p
->comm
, TASK_COMM_LEN
);
71 __entry
->pid
= p
->pid
;
72 __entry
->prio
= p
->prio
;
73 __entry
->success
= success
;
74 __entry
->target_cpu
= task_cpu(p
);
77 TP_printk("comm=%s pid=%d prio=%d success=%d target_cpu=%03d",
78 __entry
->comm
, __entry
->pid
, __entry
->prio
,
79 __entry
->success
, __entry
->target_cpu
)
82 DEFINE_EVENT(sched_wakeup_template
, sched_wakeup
,
83 TP_PROTO(struct task_struct
*p
, int success
),
87 * Tracepoint for waking up a new task:
89 DEFINE_EVENT(sched_wakeup_template
, sched_wakeup_new
,
90 TP_PROTO(struct task_struct
*p
, int success
),
93 #ifdef CREATE_TRACE_POINTS
94 static inline long __trace_sched_switch_state(struct task_struct
*p
)
96 long state
= p
->state
;
100 * For all intents and purposes a preempted task is a running task.
102 if (task_thread_info(p
)->preempt_count
& PREEMPT_ACTIVE
)
103 state
= TASK_RUNNING
| TASK_STATE_MAX
;
111 * Tracepoint for task switches, performed by the scheduler:
113 TRACE_EVENT(sched_switch
,
115 TP_PROTO(struct task_struct
*prev
,
116 struct task_struct
*next
),
121 __array( char, prev_comm
, TASK_COMM_LEN
)
122 __field( pid_t
, prev_pid
)
123 __field( int, prev_prio
)
124 __field( long, prev_state
)
125 __array( char, next_comm
, TASK_COMM_LEN
)
126 __field( pid_t
, next_pid
)
127 __field( int, next_prio
)
131 memcpy(__entry
->next_comm
, next
->comm
, TASK_COMM_LEN
);
132 __entry
->prev_pid
= prev
->pid
;
133 __entry
->prev_prio
= prev
->prio
;
134 __entry
->prev_state
= __trace_sched_switch_state(prev
);
135 memcpy(__entry
->prev_comm
, prev
->comm
, TASK_COMM_LEN
);
136 __entry
->next_pid
= next
->pid
;
137 __entry
->next_prio
= next
->prio
;
140 TP_printk("prev_comm=%s prev_pid=%d prev_prio=%d prev_state=%s%s ==> next_comm=%s next_pid=%d next_prio=%d",
141 __entry
->prev_comm
, __entry
->prev_pid
, __entry
->prev_prio
,
142 __entry
->prev_state
& (TASK_STATE_MAX
-1) ?
143 __print_flags(__entry
->prev_state
& (TASK_STATE_MAX
-1), "|",
144 { 1, "S"} , { 2, "D" }, { 4, "T" }, { 8, "t" },
145 { 16, "Z" }, { 32, "X" }, { 64, "x" },
147 __entry
->prev_state
& TASK_STATE_MAX
? "+" : "",
148 __entry
->next_comm
, __entry
->next_pid
, __entry
->next_prio
)
152 * Tracepoint for a task being migrated:
154 TRACE_EVENT(sched_migrate_task
,
156 TP_PROTO(struct task_struct
*p
, int dest_cpu
),
158 TP_ARGS(p
, dest_cpu
),
161 __array( char, comm
, TASK_COMM_LEN
)
162 __field( pid_t
, pid
)
164 __field( int, orig_cpu
)
165 __field( int, dest_cpu
)
169 memcpy(__entry
->comm
, p
->comm
, TASK_COMM_LEN
);
170 __entry
->pid
= p
->pid
;
171 __entry
->prio
= p
->prio
;
172 __entry
->orig_cpu
= task_cpu(p
);
173 __entry
->dest_cpu
= dest_cpu
;
176 TP_printk("comm=%s pid=%d prio=%d orig_cpu=%d dest_cpu=%d",
177 __entry
->comm
, __entry
->pid
, __entry
->prio
,
178 __entry
->orig_cpu
, __entry
->dest_cpu
)
181 DECLARE_EVENT_CLASS(sched_process_template
,
183 TP_PROTO(struct task_struct
*p
),
188 __array( char, comm
, TASK_COMM_LEN
)
189 __field( pid_t
, pid
)
194 memcpy(__entry
->comm
, p
->comm
, TASK_COMM_LEN
);
195 __entry
->pid
= p
->pid
;
196 __entry
->prio
= p
->prio
;
199 TP_printk("comm=%s pid=%d prio=%d",
200 __entry
->comm
, __entry
->pid
, __entry
->prio
)
204 * Tracepoint for freeing a task:
206 DEFINE_EVENT(sched_process_template
, sched_process_free
,
207 TP_PROTO(struct task_struct
*p
),
212 * Tracepoint for a task exiting:
214 DEFINE_EVENT(sched_process_template
, sched_process_exit
,
215 TP_PROTO(struct task_struct
*p
),
219 * Tracepoint for waiting on task to unschedule:
221 DEFINE_EVENT(sched_process_template
, sched_wait_task
,
222 TP_PROTO(struct task_struct
*p
),
226 * Tracepoint for a waiting task:
228 TRACE_EVENT(sched_process_wait
,
230 TP_PROTO(struct pid
*pid
),
235 __array( char, comm
, TASK_COMM_LEN
)
236 __field( pid_t
, pid
)
241 memcpy(__entry
->comm
, current
->comm
, TASK_COMM_LEN
);
242 __entry
->pid
= pid_nr(pid
);
243 __entry
->prio
= current
->prio
;
246 TP_printk("comm=%s pid=%d prio=%d",
247 __entry
->comm
, __entry
->pid
, __entry
->prio
)
251 * Tracepoint for do_fork:
253 TRACE_EVENT(sched_process_fork
,
255 TP_PROTO(struct task_struct
*parent
, struct task_struct
*child
),
257 TP_ARGS(parent
, child
),
260 __array( char, parent_comm
, TASK_COMM_LEN
)
261 __field( pid_t
, parent_pid
)
262 __array( char, child_comm
, TASK_COMM_LEN
)
263 __field( pid_t
, child_pid
)
267 memcpy(__entry
->parent_comm
, parent
->comm
, TASK_COMM_LEN
);
268 __entry
->parent_pid
= parent
->pid
;
269 memcpy(__entry
->child_comm
, child
->comm
, TASK_COMM_LEN
);
270 __entry
->child_pid
= child
->pid
;
273 TP_printk("comm=%s pid=%d child_comm=%s child_pid=%d",
274 __entry
->parent_comm
, __entry
->parent_pid
,
275 __entry
->child_comm
, __entry
->child_pid
)
279 * XXX the below sched_stat tracepoints only apply to SCHED_OTHER/BATCH/IDLE
280 * adding sched_stat support to SCHED_FIFO/RR would be welcome.
282 DECLARE_EVENT_CLASS(sched_stat_template
,
284 TP_PROTO(struct task_struct
*tsk
, u64 delay
),
289 __array( char, comm
, TASK_COMM_LEN
)
290 __field( pid_t
, pid
)
291 __field( u64
, delay
)
295 memcpy(__entry
->comm
, tsk
->comm
, TASK_COMM_LEN
);
296 __entry
->pid
= tsk
->pid
;
297 __entry
->delay
= delay
;
303 TP_printk("comm=%s pid=%d delay=%Lu [ns]",
304 __entry
->comm
, __entry
->pid
,
305 (unsigned long long)__entry
->delay
)
310 * Tracepoint for accounting wait time (time the task is runnable
311 * but not actually running due to scheduler contention).
313 DEFINE_EVENT(sched_stat_template
, sched_stat_wait
,
314 TP_PROTO(struct task_struct
*tsk
, u64 delay
),
315 TP_ARGS(tsk
, delay
));
318 * Tracepoint for accounting sleep time (time the task is not runnable,
319 * including iowait, see below).
321 DEFINE_EVENT(sched_stat_template
, sched_stat_sleep
,
322 TP_PROTO(struct task_struct
*tsk
, u64 delay
),
323 TP_ARGS(tsk
, delay
));
326 * Tracepoint for accounting iowait time (time the task is not runnable
327 * due to waiting on IO to complete).
329 DEFINE_EVENT(sched_stat_template
, sched_stat_iowait
,
330 TP_PROTO(struct task_struct
*tsk
, u64 delay
),
331 TP_ARGS(tsk
, delay
));
334 * Tracepoint for accounting blocked time (time the task is in uninterruptible).
336 DEFINE_EVENT(sched_stat_template
, sched_stat_blocked
,
337 TP_PROTO(struct task_struct
*tsk
, u64 delay
),
338 TP_ARGS(tsk
, delay
));
341 * Tracepoint for accounting runtime (time the task is executing
344 TRACE_EVENT(sched_stat_runtime
,
346 TP_PROTO(struct task_struct
*tsk
, u64 runtime
, u64 vruntime
),
348 TP_ARGS(tsk
, runtime
, vruntime
),
351 __array( char, comm
, TASK_COMM_LEN
)
352 __field( pid_t
, pid
)
353 __field( u64
, runtime
)
354 __field( u64
, vruntime
)
358 memcpy(__entry
->comm
, tsk
->comm
, TASK_COMM_LEN
);
359 __entry
->pid
= tsk
->pid
;
360 __entry
->runtime
= runtime
;
361 __entry
->vruntime
= vruntime
;
364 __perf_count(runtime
);
367 TP_printk("comm=%s pid=%d runtime=%Lu [ns] vruntime=%Lu [ns]",
368 __entry
->comm
, __entry
->pid
,
369 (unsigned long long)__entry
->runtime
,
370 (unsigned long long)__entry
->vruntime
)
374 * Tracepoint for showing priority inheritance modifying a tasks
377 TRACE_EVENT(sched_pi_setprio
,
379 TP_PROTO(struct task_struct
*tsk
, int newprio
),
381 TP_ARGS(tsk
, newprio
),
384 __array( char, comm
, TASK_COMM_LEN
)
385 __field( pid_t
, pid
)
386 __field( int, oldprio
)
387 __field( int, newprio
)
391 memcpy(__entry
->comm
, tsk
->comm
, TASK_COMM_LEN
);
392 __entry
->pid
= tsk
->pid
;
393 __entry
->oldprio
= tsk
->prio
;
394 __entry
->newprio
= newprio
;
397 TP_printk("comm=%s pid=%d oldprio=%d newprio=%d",
398 __entry
->comm
, __entry
->pid
,
399 __entry
->oldprio
, __entry
->newprio
)
402 #endif /* _TRACE_SCHED_H */
404 /* This part must be outside protection */
405 #include <trace/define_trace.h>