Skip to content

Commit

Permalink
tracing: Fix event alignment: ftrace:context_switch and ftrace:wakeup
Browse files Browse the repository at this point in the history
Signed-off-by: David Sharp <dhsharp@google.com>
LKML-Reference: <1291421609-14665-6-git-send-email-dhsharp@google.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
  • Loading branch information
David Sharp authored and Steven Rostedt committed Mar 10, 2011
1 parent e6e1e25 commit 140e4f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kernel/trace/trace_entries.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,12 @@ FTRACE_ENTRY(funcgraph_exit, ftrace_graph_ret_entry,
*/
#define FTRACE_CTX_FIELDS \
__field( unsigned int, prev_pid ) \
__field( unsigned int, next_pid ) \
__field( unsigned int, next_cpu ) \
__field( unsigned char, prev_prio ) \
__field( unsigned char, prev_state ) \
__field( unsigned int, next_pid ) \
__field( unsigned char, next_prio ) \
__field( unsigned char, next_state ) \
__field( unsigned int, next_cpu )
__field( unsigned char, next_state )

FTRACE_ENTRY(context_switch, ctx_switch_entry,

Expand Down

0 comments on commit 140e4f2

Please sign in to comment.