diff options
| author | David Sharp <[email protected]> | 2010-12-04 00:13:23 +0000 |
|---|---|---|
| committer | Steven Rostedt <[email protected]> | 2011-03-10 15:34:31 +0000 |
| commit | ca9da2dd63b0b32de1b693953dff66cadeb6400b (patch) | |
| tree | 0a2fe573eb42e0eefe78c3fc4c52fee896969ce9 | |
| parent | tracing: Fix event alignment: mce:mce_record (diff) | |
| download | kernel-ca9da2dd63b0b32de1b693953dff66cadeb6400b.tar.gz kernel-ca9da2dd63b0b32de1b693953dff66cadeb6400b.zip | |
tracing: Fix event alignment: skb:kfree_skb
Acked-by: Neil Horman <[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/skb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/trace/events/skb.h b/include/trace/events/skb.h index f10293c41b1e..0c68ae22da22 100644 --- a/include/trace/events/skb.h +++ b/include/trace/events/skb.h @@ -19,14 +19,14 @@ TRACE_EVENT(kfree_skb, TP_STRUCT__entry( __field( void *, skbaddr ) - __field( unsigned short, protocol ) __field( void *, location ) + __field( unsigned short, protocol ) ), TP_fast_assign( __entry->skbaddr = skb; - __entry->protocol = ntohs(skb->protocol); __entry->location = location; + __entry->protocol = ntohs(skb->protocol); ), TP_printk("skbaddr=%p protocol=%u location=%p", |
