Lines Matching +full:cpu +full:- +full:3
1 /* SPDX-License-Identifier: GPL-2.0 */
12 TP_PROTO(unsigned int cpu,
17 TP_ARGS(cpu, target, idx, fun),
20 __field( unsigned int, cpu )
27 __entry->cpu = cpu;
28 __entry->target = target;
29 __entry->idx = idx;
30 __entry->fun = fun;
33 TP_printk("cpu: %04u target: %3d step: %3d (%ps)",
34 __entry->cpu, __entry->target, __entry->idx, __entry->fun)
39 TP_PROTO(unsigned int cpu,
45 TP_ARGS(cpu, target, idx, fun, node),
48 __field( unsigned int, cpu )
55 __entry->cpu = cpu;
56 __entry->target = target;
57 __entry->idx = idx;
58 __entry->fun = fun;
61 TP_printk("cpu: %04u target: %3d step: %3d (%ps)",
62 __entry->cpu, __entry->target, __entry->idx, __entry->fun)
67 TP_PROTO(unsigned int cpu,
72 TP_ARGS(cpu, state, idx, ret),
75 __field( unsigned int, cpu )
82 __entry->cpu = cpu;
83 __entry->state = state;
84 __entry->idx = idx;
85 __entry->ret = ret;
88 TP_printk(" cpu: %04u state: %3d step: %3d ret: %d",
89 __entry->cpu, __entry->state, __entry->idx, __entry->ret)