tracing: add sched_update_prio
[deliverable/linux.git] / include / trace / events / sched.h
CommitLineData
d0b6e04a
LZ
1#undef TRACE_SYSTEM
2#define TRACE_SYSTEM sched
3
ea20d929 4#if !defined(_TRACE_SCHED_H) || defined(TRACE_HEADER_MULTI_READ)
0a16b607
MD
5#define _TRACE_SCHED_H
6
7#include <linux/sched.h>
8#include <linux/tracepoint.h>
4ff16c25 9#include <linux/binfmts.h>
0a16b607 10
90db6ecb
JD
11#define SCHEDULING_POLICY \
12 EM( SCHED_NORMAL, "SCHED_NORMAL") \
13 EM( SCHED_FIFO, "SCHED_FIFO") \
14 EM( SCHED_RR, "SCHED_RR") \
15 EM( SCHED_BATCH, "SCHED_BATCH") \
16 EM( SCHED_IDLE, "SCHED_IDLE") \
17 EMe(SCHED_DEADLINE, "SCHED_DEADLINE")
18
19/*
20 * First define the enums in the above macros to be exported to userspace
21 * via TRACE_DEFINE_ENUM().
22 */
23#undef EM
24#undef EMe
25#define EM(a, b) TRACE_DEFINE_ENUM(a);
26#define EMe(a, b) TRACE_DEFINE_ENUM(a);
27
28SCHEDULING_POLICY
29
30/*
31 * Now redefine the EM() and EMe() macros to map the enums to the strings
32 * that will be printed in the output.
33 */
34#undef EM
35#undef EMe
36#define EM(a, b) {a, b},
37#define EMe(a, b) {a, b}
38
ea20d929
SR
39/*
40 * Tracepoint for calling kthread_stop, performed to end a kthread:
41 */
42TRACE_EVENT(sched_kthread_stop,
43
44 TP_PROTO(struct task_struct *t),
45
46 TP_ARGS(t),
47
48 TP_STRUCT__entry(
49 __array( char, comm, TASK_COMM_LEN )
50 __field( pid_t, pid )
51 ),
52
53 TP_fast_assign(
54 memcpy(__entry->comm, t->comm, TASK_COMM_LEN);
55 __entry->pid = t->pid;
56 ),
57
434a83c3 58 TP_printk("comm=%s pid=%d", __entry->comm, __entry->pid)
ea20d929
SR
59);
60
61/*
62 * Tracepoint for the return value of the kthread stopping:
63 */
64TRACE_EVENT(sched_kthread_stop_ret,
65
66 TP_PROTO(int ret),
67
68 TP_ARGS(ret),
69
70 TP_STRUCT__entry(
71 __field( int, ret )
72 ),
73
74 TP_fast_assign(
75 __entry->ret = ret;
76 ),
77
434a83c3 78 TP_printk("ret=%d", __entry->ret)
ea20d929
SR
79);
80
ea20d929
SR
81/*
82 * Tracepoint for waking up a task:
ea20d929 83 */
091ad365 84DECLARE_EVENT_CLASS(sched_wakeup_template,
ea20d929 85
fbd705a0 86 TP_PROTO(struct task_struct *p),
ea20d929 87
fbd705a0 88 TP_ARGS(__perf_task(p)),
ea20d929
SR
89
90 TP_STRUCT__entry(
91 __array( char, comm, TASK_COMM_LEN )
92 __field( pid_t, pid )
93 __field( int, prio )
94 __field( int, success )
434a83c3 95 __field( int, target_cpu )
ea20d929
SR
96 ),
97
98 TP_fast_assign(
99 memcpy(__entry->comm, p->comm, TASK_COMM_LEN);
100 __entry->pid = p->pid;
101 __entry->prio = p->prio;
fbd705a0 102 __entry->success = 1; /* rudiment, kill when possible */
434a83c3 103 __entry->target_cpu = task_cpu(p);
ea20d929
SR
104 ),
105
fbd705a0 106 TP_printk("comm=%s pid=%d prio=%d target_cpu=%03d",
ea20d929 107 __entry->comm, __entry->pid, __entry->prio,
fbd705a0 108 __entry->target_cpu)
ea20d929
SR
109);
110
fbd705a0
PZ
111/*
112 * Tracepoint called when waking a task; this tracepoint is guaranteed to be
113 * called from the waking context.
114 */
115DEFINE_EVENT(sched_wakeup_template, sched_waking,
116 TP_PROTO(struct task_struct *p),
117 TP_ARGS(p));
118
119/*
120 * Tracepoint called when the task is actually woken; p->state == TASK_RUNNNG.
121 * It it not always called from the waking context.
122 */
75ec29ab 123DEFINE_EVENT(sched_wakeup_template, sched_wakeup,
fbd705a0
PZ
124 TP_PROTO(struct task_struct *p),
125 TP_ARGS(p));
75ec29ab 126
ea20d929
SR
127/*
128 * Tracepoint for waking up a new task:
ea20d929 129 */
75ec29ab 130DEFINE_EVENT(sched_wakeup_template, sched_wakeup_new,
fbd705a0
PZ
131 TP_PROTO(struct task_struct *p),
132 TP_ARGS(p));
ea20d929 133
02f72694 134#ifdef CREATE_TRACE_POINTS
c73464b1 135static inline long __trace_sched_switch_state(bool preempt, struct task_struct *p)
02f72694 136{
8f9fbf09
ON
137#ifdef CONFIG_SCHED_DEBUG
138 BUG_ON(p != current);
139#endif /* CONFIG_SCHED_DEBUG */
c73464b1 140
02f72694 141 /*
c73464b1
PZ
142 * Preemption ignores task state, therefore preempted tasks are always
143 * RUNNING (we will not have dequeued if state != RUNNING).
02f72694 144 */
c73464b1 145 return preempt ? TASK_RUNNING | TASK_STATE_MAX : p->state;
02f72694 146}
8f9fbf09 147#endif /* CREATE_TRACE_POINTS */
02f72694 148
ea20d929
SR
149/*
150 * Tracepoint for task switches, performed by the scheduler:
ea20d929
SR
151 */
152TRACE_EVENT(sched_switch,
153
c73464b1
PZ
154 TP_PROTO(bool preempt,
155 struct task_struct *prev,
ea20d929
SR
156 struct task_struct *next),
157
c73464b1 158 TP_ARGS(preempt, prev, next),
ea20d929
SR
159
160 TP_STRUCT__entry(
161 __array( char, prev_comm, TASK_COMM_LEN )
162 __field( pid_t, prev_pid )
163 __field( int, prev_prio )
937cdb9d 164 __field( long, prev_state )
ea20d929
SR
165 __array( char, next_comm, TASK_COMM_LEN )
166 __field( pid_t, next_pid )
167 __field( int, next_prio )
168 ),
169
170 TP_fast_assign(
171 memcpy(__entry->next_comm, next->comm, TASK_COMM_LEN);
172 __entry->prev_pid = prev->pid;
173 __entry->prev_prio = prev->prio;
c73464b1 174 __entry->prev_state = __trace_sched_switch_state(preempt, prev);
ea20d929
SR
175 memcpy(__entry->prev_comm, prev->comm, TASK_COMM_LEN);
176 __entry->next_pid = next->pid;
177 __entry->next_prio = next->prio;
178 ),
179
557ab425 180 TP_printk("prev_comm=%s prev_pid=%d prev_prio=%d prev_state=%s%s ==> next_comm=%s next_pid=%d next_prio=%d",
ea20d929 181 __entry->prev_comm, __entry->prev_pid, __entry->prev_prio,
557ab425
PZ
182 __entry->prev_state & (TASK_STATE_MAX-1) ?
183 __print_flags(__entry->prev_state & (TASK_STATE_MAX-1), "|",
937cdb9d
SR
184 { 1, "S"} , { 2, "D" }, { 4, "T" }, { 8, "t" },
185 { 16, "Z" }, { 32, "X" }, { 64, "x" },
80ed87c8
PZ
186 { 128, "K" }, { 256, "W" }, { 512, "P" },
187 { 1024, "N" }) : "R",
557ab425 188 __entry->prev_state & TASK_STATE_MAX ? "+" : "",
ea20d929
SR
189 __entry->next_comm, __entry->next_pid, __entry->next_prio)
190);
191
192/*
193 * Tracepoint for a task being migrated:
194 */
195TRACE_EVENT(sched_migrate_task,
196
de1d7286 197 TP_PROTO(struct task_struct *p, int dest_cpu),
ea20d929 198
de1d7286 199 TP_ARGS(p, dest_cpu),
ea20d929
SR
200
201 TP_STRUCT__entry(
202 __array( char, comm, TASK_COMM_LEN )
203 __field( pid_t, pid )
204 __field( int, prio )
205 __field( int, orig_cpu )
206 __field( int, dest_cpu )
207 ),
208
209 TP_fast_assign(
210 memcpy(__entry->comm, p->comm, TASK_COMM_LEN);
211 __entry->pid = p->pid;
212 __entry->prio = p->prio;
de1d7286 213 __entry->orig_cpu = task_cpu(p);
ea20d929
SR
214 __entry->dest_cpu = dest_cpu;
215 ),
216
434a83c3 217 TP_printk("comm=%s pid=%d prio=%d orig_cpu=%d dest_cpu=%d",
ea20d929
SR
218 __entry->comm, __entry->pid, __entry->prio,
219 __entry->orig_cpu, __entry->dest_cpu)
220);
221
091ad365 222DECLARE_EVENT_CLASS(sched_process_template,
ea20d929
SR
223
224 TP_PROTO(struct task_struct *p),
225
226 TP_ARGS(p),
227
228 TP_STRUCT__entry(
229 __array( char, comm, TASK_COMM_LEN )
230 __field( pid_t, pid )
231 __field( int, prio )
232 ),
233
234 TP_fast_assign(
235 memcpy(__entry->comm, p->comm, TASK_COMM_LEN);
236 __entry->pid = p->pid;
237 __entry->prio = p->prio;
238 ),
239
434a83c3 240 TP_printk("comm=%s pid=%d prio=%d",
ea20d929
SR
241 __entry->comm, __entry->pid, __entry->prio)
242);
243
244/*
75ec29ab 245 * Tracepoint for freeing a task:
ea20d929 246 */
75ec29ab
SR
247DEFINE_EVENT(sched_process_template, sched_process_free,
248 TP_PROTO(struct task_struct *p),
249 TP_ARGS(p));
250
ea20d929 251
75ec29ab
SR
252/*
253 * Tracepoint for a task exiting:
254 */
255DEFINE_EVENT(sched_process_template, sched_process_exit,
256 TP_PROTO(struct task_struct *p),
257 TP_ARGS(p));
ea20d929 258
210f7669
LZ
259/*
260 * Tracepoint for waiting on task to unschedule:
261 */
262DEFINE_EVENT(sched_process_template, sched_wait_task,
263 TP_PROTO(struct task_struct *p),
264 TP_ARGS(p));
265
ea20d929
SR
266/*
267 * Tracepoint for a waiting task:
268 */
269TRACE_EVENT(sched_process_wait,
270
271 TP_PROTO(struct pid *pid),
272
273 TP_ARGS(pid),
274
275 TP_STRUCT__entry(
276 __array( char, comm, TASK_COMM_LEN )
277 __field( pid_t, pid )
278 __field( int, prio )
279 ),
280
281 TP_fast_assign(
282 memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
283 __entry->pid = pid_nr(pid);
284 __entry->prio = current->prio;
285 ),
286
434a83c3 287 TP_printk("comm=%s pid=%d prio=%d",
ea20d929
SR
288 __entry->comm, __entry->pid, __entry->prio)
289);
290
291/*
292 * Tracepoint for do_fork:
293 */
294TRACE_EVENT(sched_process_fork,
295
296 TP_PROTO(struct task_struct *parent, struct task_struct *child),
297
298 TP_ARGS(parent, child),
299
300 TP_STRUCT__entry(
301 __array( char, parent_comm, TASK_COMM_LEN )
302 __field( pid_t, parent_pid )
303 __array( char, child_comm, TASK_COMM_LEN )
304 __field( pid_t, child_pid )
305 ),
306
307 TP_fast_assign(
308 memcpy(__entry->parent_comm, parent->comm, TASK_COMM_LEN);
309 __entry->parent_pid = parent->pid;
310 memcpy(__entry->child_comm, child->comm, TASK_COMM_LEN);
311 __entry->child_pid = child->pid;
312 ),
313
434a83c3 314 TP_printk("comm=%s pid=%d child_comm=%s child_pid=%d",
ea20d929
SR
315 __entry->parent_comm, __entry->parent_pid,
316 __entry->child_comm, __entry->child_pid)
317);
318
4ff16c25
DS
319/*
320 * Tracepoint for exec:
321 */
322TRACE_EVENT(sched_process_exec,
323
324 TP_PROTO(struct task_struct *p, pid_t old_pid,
325 struct linux_binprm *bprm),
326
327 TP_ARGS(p, old_pid, bprm),
328
329 TP_STRUCT__entry(
330 __string( filename, bprm->filename )
331 __field( pid_t, pid )
332 __field( pid_t, old_pid )
333 ),
334
335 TP_fast_assign(
336 __assign_str(filename, bprm->filename);
337 __entry->pid = p->pid;
6308191f 338 __entry->old_pid = old_pid;
4ff16c25
DS
339 ),
340
341 TP_printk("filename=%s pid=%d old_pid=%d", __get_str(filename),
342 __entry->pid, __entry->old_pid)
343);
344
768d0c27
PZ
345/*
346 * XXX the below sched_stat tracepoints only apply to SCHED_OTHER/BATCH/IDLE
347 * adding sched_stat support to SCHED_FIFO/RR would be welcome.
348 */
091ad365 349DECLARE_EVENT_CLASS(sched_stat_template,
768d0c27
PZ
350
351 TP_PROTO(struct task_struct *tsk, u64 delay),
352
12473965 353 TP_ARGS(__perf_task(tsk), __perf_count(delay)),
768d0c27
PZ
354
355 TP_STRUCT__entry(
356 __array( char, comm, TASK_COMM_LEN )
357 __field( pid_t, pid )
358 __field( u64, delay )
359 ),
360
361 TP_fast_assign(
362 memcpy(__entry->comm, tsk->comm, TASK_COMM_LEN);
363 __entry->pid = tsk->pid;
364 __entry->delay = delay;
768d0c27
PZ
365 ),
366
434a83c3 367 TP_printk("comm=%s pid=%d delay=%Lu [ns]",
768d0c27
PZ
368 __entry->comm, __entry->pid,
369 (unsigned long long)__entry->delay)
370);
371
75ec29ab
SR
372
373/*
374 * Tracepoint for accounting wait time (time the task is runnable
375 * but not actually running due to scheduler contention).
376 */
377DEFINE_EVENT(sched_stat_template, sched_stat_wait,
378 TP_PROTO(struct task_struct *tsk, u64 delay),
379 TP_ARGS(tsk, delay));
380
381/*
382 * Tracepoint for accounting sleep time (time the task is not runnable,
383 * including iowait, see below).
384 */
470dda74
LZ
385DEFINE_EVENT(sched_stat_template, sched_stat_sleep,
386 TP_PROTO(struct task_struct *tsk, u64 delay),
387 TP_ARGS(tsk, delay));
75ec29ab
SR
388
389/*
390 * Tracepoint for accounting iowait time (time the task is not runnable
391 * due to waiting on IO to complete).
392 */
470dda74
LZ
393DEFINE_EVENT(sched_stat_template, sched_stat_iowait,
394 TP_PROTO(struct task_struct *tsk, u64 delay),
395 TP_ARGS(tsk, delay));
75ec29ab 396
b781a602
AV
397/*
398 * Tracepoint for accounting blocked time (time the task is in uninterruptible).
399 */
400DEFINE_EVENT(sched_stat_template, sched_stat_blocked,
401 TP_PROTO(struct task_struct *tsk, u64 delay),
402 TP_ARGS(tsk, delay));
403
f977bb49
IM
404/*
405 * Tracepoint for accounting runtime (time the task is executing
406 * on a CPU).
407 */
36009d07 408DECLARE_EVENT_CLASS(sched_stat_runtime,
f977bb49
IM
409
410 TP_PROTO(struct task_struct *tsk, u64 runtime, u64 vruntime),
411
12473965 412 TP_ARGS(tsk, __perf_count(runtime), vruntime),
f977bb49
IM
413
414 TP_STRUCT__entry(
415 __array( char, comm, TASK_COMM_LEN )
416 __field( pid_t, pid )
417 __field( u64, runtime )
418 __field( u64, vruntime )
419 ),
420
421 TP_fast_assign(
422 memcpy(__entry->comm, tsk->comm, TASK_COMM_LEN);
423 __entry->pid = tsk->pid;
424 __entry->runtime = runtime;
425 __entry->vruntime = vruntime;
f977bb49
IM
426 ),
427
434a83c3 428 TP_printk("comm=%s pid=%d runtime=%Lu [ns] vruntime=%Lu [ns]",
f977bb49
IM
429 __entry->comm, __entry->pid,
430 (unsigned long long)__entry->runtime,
431 (unsigned long long)__entry->vruntime)
432);
433
36009d07
ON
434DEFINE_EVENT(sched_stat_runtime, sched_stat_runtime,
435 TP_PROTO(struct task_struct *tsk, u64 runtime, u64 vruntime),
436 TP_ARGS(tsk, runtime, vruntime));
437
a8027073
SR
438/*
439 * Tracepoint for showing priority inheritance modifying a tasks
440 * priority.
441 */
442TRACE_EVENT(sched_pi_setprio,
443
444 TP_PROTO(struct task_struct *tsk, int newprio),
445
446 TP_ARGS(tsk, newprio),
447
448 TP_STRUCT__entry(
449 __array( char, comm, TASK_COMM_LEN )
450 __field( pid_t, pid )
451 __field( int, oldprio )
452 __field( int, newprio )
453 ),
454
455 TP_fast_assign(
456 memcpy(__entry->comm, tsk->comm, TASK_COMM_LEN);
457 __entry->pid = tsk->pid;
458 __entry->oldprio = tsk->prio;
459 __entry->newprio = newprio;
460 ),
461
462 TP_printk("comm=%s pid=%d oldprio=%d newprio=%d",
463 __entry->comm, __entry->pid,
464 __entry->oldprio, __entry->newprio)
465);
466
6a716c90
ON
467#ifdef CONFIG_DETECT_HUNG_TASK
468TRACE_EVENT(sched_process_hang,
469 TP_PROTO(struct task_struct *tsk),
470 TP_ARGS(tsk),
471
472 TP_STRUCT__entry(
473 __array( char, comm, TASK_COMM_LEN )
474 __field( pid_t, pid )
475 ),
476
477 TP_fast_assign(
478 memcpy(__entry->comm, tsk->comm, TASK_COMM_LEN);
479 __entry->pid = tsk->pid;
480 ),
481
482 TP_printk("comm=%s pid=%d", __entry->comm, __entry->pid)
483);
484#endif /* CONFIG_DETECT_HUNG_TASK */
485
286549dc
MG
486DECLARE_EVENT_CLASS(sched_move_task_template,
487
488 TP_PROTO(struct task_struct *tsk, int src_cpu, int dst_cpu),
489
490 TP_ARGS(tsk, src_cpu, dst_cpu),
491
492 TP_STRUCT__entry(
493 __field( pid_t, pid )
494 __field( pid_t, tgid )
495 __field( pid_t, ngid )
496 __field( int, src_cpu )
497 __field( int, src_nid )
498 __field( int, dst_cpu )
499 __field( int, dst_nid )
500 ),
501
502 TP_fast_assign(
503 __entry->pid = task_pid_nr(tsk);
504 __entry->tgid = task_tgid_nr(tsk);
505 __entry->ngid = task_numa_group_id(tsk);
506 __entry->src_cpu = src_cpu;
507 __entry->src_nid = cpu_to_node(src_cpu);
508 __entry->dst_cpu = dst_cpu;
509 __entry->dst_nid = cpu_to_node(dst_cpu);
510 ),
511
512 TP_printk("pid=%d tgid=%d ngid=%d src_cpu=%d src_nid=%d dst_cpu=%d dst_nid=%d",
513 __entry->pid, __entry->tgid, __entry->ngid,
514 __entry->src_cpu, __entry->src_nid,
515 __entry->dst_cpu, __entry->dst_nid)
516);
517
518/*
519 * Tracks migration of tasks from one runqueue to another. Can be used to
520 * detect if automatic NUMA balancing is bouncing between nodes
521 */
522DEFINE_EVENT(sched_move_task_template, sched_move_numa,
523 TP_PROTO(struct task_struct *tsk, int src_cpu, int dst_cpu),
524
525 TP_ARGS(tsk, src_cpu, dst_cpu)
526);
527
528DEFINE_EVENT(sched_move_task_template, sched_stick_numa,
529 TP_PROTO(struct task_struct *tsk, int src_cpu, int dst_cpu),
530
531 TP_ARGS(tsk, src_cpu, dst_cpu)
532);
533
534TRACE_EVENT(sched_swap_numa,
535
536 TP_PROTO(struct task_struct *src_tsk, int src_cpu,
537 struct task_struct *dst_tsk, int dst_cpu),
538
539 TP_ARGS(src_tsk, src_cpu, dst_tsk, dst_cpu),
540
541 TP_STRUCT__entry(
542 __field( pid_t, src_pid )
543 __field( pid_t, src_tgid )
544 __field( pid_t, src_ngid )
545 __field( int, src_cpu )
546 __field( int, src_nid )
547 __field( pid_t, dst_pid )
548 __field( pid_t, dst_tgid )
549 __field( pid_t, dst_ngid )
550 __field( int, dst_cpu )
551 __field( int, dst_nid )
552 ),
553
554 TP_fast_assign(
555 __entry->src_pid = task_pid_nr(src_tsk);
556 __entry->src_tgid = task_tgid_nr(src_tsk);
557 __entry->src_ngid = task_numa_group_id(src_tsk);
558 __entry->src_cpu = src_cpu;
559 __entry->src_nid = cpu_to_node(src_cpu);
560 __entry->dst_pid = task_pid_nr(dst_tsk);
561 __entry->dst_tgid = task_tgid_nr(dst_tsk);
562 __entry->dst_ngid = task_numa_group_id(dst_tsk);
563 __entry->dst_cpu = dst_cpu;
564 __entry->dst_nid = cpu_to_node(dst_cpu);
565 ),
566
567 TP_printk("src_pid=%d src_tgid=%d src_ngid=%d src_cpu=%d src_nid=%d dst_pid=%d dst_tgid=%d dst_ngid=%d dst_cpu=%d dst_nid=%d",
568 __entry->src_pid, __entry->src_tgid, __entry->src_ngid,
569 __entry->src_cpu, __entry->src_nid,
570 __entry->dst_pid, __entry->dst_tgid, __entry->dst_ngid,
571 __entry->dst_cpu, __entry->dst_nid)
572);
dfc68f29
AL
573
574/*
575 * Tracepoint for waking a polling cpu without an IPI.
576 */
577TRACE_EVENT(sched_wake_idle_without_ipi,
578
579 TP_PROTO(int cpu),
580
581 TP_ARGS(cpu),
582
583 TP_STRUCT__entry(
584 __field( int, cpu )
585 ),
586
587 TP_fast_assign(
588 __entry->cpu = cpu;
589 ),
590
591 TP_printk("cpu=%d", __entry->cpu)
592);
90db6ecb
JD
593
594/*
595 * Tracepoint for showing scheduling priority changes.
596 */
597TRACE_EVENT(sched_update_prio,
598
599 TP_PROTO(struct task_struct *tsk),
600
601 TP_ARGS(tsk),
602
603 TP_STRUCT__entry(
604 __array( char, comm, TASK_COMM_LEN )
605 __field( pid_t, pid )
606 __field( unsigned int, policy )
607 __field( int, nice )
608 __field( unsigned int, rt_priority )
609 __field( u64, dl_runtime )
610 __field( u64, dl_deadline )
611 __field( u64, dl_period )
612 ),
613
614 TP_fast_assign(
615 memcpy(__entry->comm, tsk->comm, TASK_COMM_LEN);
616 __entry->pid = tsk->pid;
617 __entry->policy = tsk->policy;
618 __entry->nice = task_nice(tsk);
619 __entry->rt_priority = tsk->rt_priority;
620 __entry->dl_runtime = tsk->dl.dl_runtime;
621 __entry->dl_deadline = tsk->dl.dl_deadline;
622 __entry->dl_period = tsk->dl.dl_period;
623 ),
624
625 TP_printk("comm=%s pid=%d, policy=%s, nice=%d, rt_priority=%u, "
626 "dl_runtime=%Lu, dl_deadline=%Lu, dl_period=%Lu",
627 __entry->comm, __entry->pid,
628 __print_symbolic(__entry->policy, SCHEDULING_POLICY),
629 __entry->nice, __entry->rt_priority,
630 __entry->dl_runtime, __entry->dl_deadline,
631 __entry->dl_period)
632);
ea20d929 633#endif /* _TRACE_SCHED_H */
a8d154b0
SR
634
635/* This part must be outside protection */
636#include <trace/define_trace.h>
This page took 0.38239 seconds and 5 git commands to generate.