diff options
| author | Arve Hjønnevåg <arve@android.com> | 2012-04-29 16:53:02 -0400 |
|---|---|---|
| committer | Rafael J. Wysocki <rjw@sisk.pl> | 2012-05-01 15:25:25 -0400 |
| commit | 6791e36c4a40e8930e08669e60077eea6770c429 (patch) | |
| tree | 880d7255cc13a270d513e4fb6c4219f85d9536d0 /include/trace | |
| parent | 30e3ce6dcbe3fc29c343b17e768b07d4a795de21 (diff) | |
PM / Sleep: Add wakeup_source_activate and wakeup_source_deactivate tracepoints
Add tracepoints to wakeup_source_activate and wakeup_source_deactivate.
Useful for checking that specific wakeup sources overlap as expected.
Signed-off-by: Arve Hjønnevåg <arve@android.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'include/trace')
| -rw-r--r-- | include/trace/events/power.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/include/trace/events/power.h b/include/trace/events/power.h index cae9a94f025d..0c9783841a30 100644 --- a/include/trace/events/power.h +++ b/include/trace/events/power.h | |||
| @@ -65,6 +65,40 @@ TRACE_EVENT(machine_suspend, | |||
| 65 | TP_printk("state=%lu", (unsigned long)__entry->state) | 65 | TP_printk("state=%lu", (unsigned long)__entry->state) |
| 66 | ); | 66 | ); |
| 67 | 67 | ||
| 68 | DECLARE_EVENT_CLASS(wakeup_source, | ||
| 69 | |||
| 70 | TP_PROTO(const char *name, unsigned int state), | ||
| 71 | |||
| 72 | TP_ARGS(name, state), | ||
| 73 | |||
| 74 | TP_STRUCT__entry( | ||
| 75 | __string( name, name ) | ||
| 76 | __field( u64, state ) | ||
| 77 | ), | ||
| 78 | |||
| 79 | TP_fast_assign( | ||
| 80 | __assign_str(name, name); | ||
| 81 | __entry->state = state; | ||
| 82 | ), | ||
| 83 | |||
| 84 | TP_printk("%s state=0x%lx", __get_str(name), | ||
| 85 | (unsigned long)__entry->state) | ||
| 86 | ); | ||
| 87 | |||
| 88 | DEFINE_EVENT(wakeup_source, wakeup_source_activate, | ||
| 89 | |||
| 90 | TP_PROTO(const char *name, unsigned int state), | ||
| 91 | |||
| 92 | TP_ARGS(name, state) | ||
| 93 | ); | ||
| 94 | |||
| 95 | DEFINE_EVENT(wakeup_source, wakeup_source_deactivate, | ||
| 96 | |||
| 97 | TP_PROTO(const char *name, unsigned int state), | ||
| 98 | |||
| 99 | TP_ARGS(name, state) | ||
| 100 | ); | ||
| 101 | |||
| 68 | #ifdef CONFIG_EVENT_POWER_TRACING_DEPRECATED | 102 | #ifdef CONFIG_EVENT_POWER_TRACING_DEPRECATED |
| 69 | 103 | ||
| 70 | /* | 104 | /* |
