|
@@ -18,52 +18,55 @@ enum {
|
|
|
|
|
|
DECLARE_EVENT_CLASS(power,
|
|
DECLARE_EVENT_CLASS(power,
|
|
|
|
|
|
- TP_PROTO(unsigned int type, unsigned int state),
|
|
|
|
|
|
+ TP_PROTO(unsigned int type, unsigned int state, unsigned int cpu_id),
|
|
|
|
|
|
- TP_ARGS(type, state),
|
|
|
|
|
|
+ TP_ARGS(type, state, cpu_id),
|
|
|
|
|
|
TP_STRUCT__entry(
|
|
TP_STRUCT__entry(
|
|
__field( u64, type )
|
|
__field( u64, type )
|
|
__field( u64, state )
|
|
__field( u64, state )
|
|
|
|
+ __field( u64, cpu_id )
|
|
),
|
|
),
|
|
|
|
|
|
TP_fast_assign(
|
|
TP_fast_assign(
|
|
__entry->type = type;
|
|
__entry->type = type;
|
|
__entry->state = state;
|
|
__entry->state = state;
|
|
|
|
+ __entry->cpu_id = cpu_id;
|
|
),
|
|
),
|
|
|
|
|
|
- TP_printk("type=%lu state=%lu", (unsigned long)__entry->type, (unsigned long)__entry->state)
|
|
|
|
|
|
+ TP_printk("type=%lu state=%lu cpu_id=%lu", (unsigned long)__entry->type,
|
|
|
|
+ (unsigned long)__entry->state, (unsigned long)__entry->cpu_id)
|
|
);
|
|
);
|
|
|
|
|
|
DEFINE_EVENT(power, power_start,
|
|
DEFINE_EVENT(power, power_start,
|
|
|
|
|
|
- TP_PROTO(unsigned int type, unsigned int state),
|
|
|
|
|
|
+ TP_PROTO(unsigned int type, unsigned int state, unsigned int cpu_id),
|
|
|
|
|
|
- TP_ARGS(type, state)
|
|
|
|
|
|
+ TP_ARGS(type, state, cpu_id)
|
|
);
|
|
);
|
|
|
|
|
|
DEFINE_EVENT(power, power_frequency,
|
|
DEFINE_EVENT(power, power_frequency,
|
|
|
|
|
|
- TP_PROTO(unsigned int type, unsigned int state),
|
|
|
|
|
|
+ TP_PROTO(unsigned int type, unsigned int state, unsigned int cpu_id),
|
|
|
|
|
|
- TP_ARGS(type, state)
|
|
|
|
|
|
+ TP_ARGS(type, state, cpu_id)
|
|
);
|
|
);
|
|
|
|
|
|
TRACE_EVENT(power_end,
|
|
TRACE_EVENT(power_end,
|
|
|
|
|
|
- TP_PROTO(int dummy),
|
|
|
|
|
|
+ TP_PROTO(unsigned int cpu_id),
|
|
|
|
|
|
- TP_ARGS(dummy),
|
|
|
|
|
|
+ TP_ARGS(cpu_id),
|
|
|
|
|
|
TP_STRUCT__entry(
|
|
TP_STRUCT__entry(
|
|
- __field( u64, dummy )
|
|
|
|
|
|
+ __field( u64, cpu_id )
|
|
),
|
|
),
|
|
|
|
|
|
TP_fast_assign(
|
|
TP_fast_assign(
|
|
- __entry->dummy = 0xffff;
|
|
|
|
|
|
+ __entry->cpu_id = cpu_id;
|
|
),
|
|
),
|
|
|
|
|
|
- TP_printk("dummy=%lu", (unsigned long)__entry->dummy)
|
|
|
|
|
|
+ TP_printk("cpu_id=%lu", (unsigned long)__entry->cpu_id)
|
|
|
|
|
|
);
|
|
);
|
|
|
|
|