diff options
author | David Sharp <[email protected]> | 2010-12-03 16:13:20 -0800 |
---|---|---|
committer | Steven Rostedt <[email protected]> | 2011-03-10 10:34:20 -0500 |
commit | b5e3008e489f5a00c6d5db914a4c4338c9ef5e8b (patch) | |
tree | 94d4798d5d1dec33ae6d4b6b159e42be8c8c0e7f | |
parent | 140e4f2d1cd816aed196705c036763313c0e4bd3 (diff) |
tracing: Fix event alignment: module:module_request
Acked-by: Li Zefan <[email protected]>
Signed-off-by: David Sharp <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: Steven Rostedt <[email protected]>
-rw-r--r-- | include/trace/events/module.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/trace/events/module.h b/include/trace/events/module.h index c6bae36547e5..21a546d27c0c 100644 --- a/include/trace/events/module.h +++ b/include/trace/events/module.h @@ -108,14 +108,14 @@ TRACE_EVENT(module_request, TP_ARGS(name, wait, ip), TP_STRUCT__entry( - __field( bool, wait ) __field( unsigned long, ip ) + __field( bool, wait ) __string( name, name ) ), TP_fast_assign( - __entry->wait = wait; __entry->ip = ip; + __entry->wait = wait; __assign_str(name, name); ), @@ -129,4 +129,3 @@ TRACE_EVENT(module_request, /* This part must be outside protection */ #include <trace/define_trace.h> - |