-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
netdev: Add tracepoints to netdev layer
This patch adds tracepoint to dev_queue_xmit, dev_hard_start_xmit, netif_rx and netif_receive_skb. These tracepoints help you to monitor network driver's input/output. <idle>-0 [001] 112447.902030: netif_rx: dev=eth1 skbaddr=f3ef0900 len=84 <idle>-0 [001] 112447.902039: netif_receive_skb: dev=eth1 skbaddr=f3ef0900 len=84 sshd-6828 [000] 112447.903257: net_dev_queue: dev=eth4 skbaddr=f3fca538 len=226 sshd-6828 [000] 112447.903260: net_dev_xmit: dev=eth4 skbaddr=f3fca538 len=226 rc=0 Signed-off-by: Koki Sanagi <sanagi.koki@jp.fujitsu.com> Acked-by: David S. Miller <davem@davemloft.net> Acked-by: Neil Horman <nhorman@tuxdriver.com> Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Cc: Kaneshige Kenji <kaneshige.kenji@jp.fujitsu.com> Cc: Izumo Taku <izumi.taku@jp.fujitsu.com> Cc: Kosaki Motohiro <kosaki.motohiro@jp.fujitsu.com> Cc: Lai Jiangshan <laijs@cn.fujitsu.com> Cc: Scott Mcmillan <scott.a.mcmillan@intel.com> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Eric Dumazet <eric.dumazet@gmail.com> LKML-Reference: <4C72431E.3000901@jp.fujitsu.com> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
- Loading branch information
Koki Sanagi
authored and
Frederic Weisbecker
committed
Sep 7, 2010
1 parent
3e4b10d
commit cf66ba5
Showing
3 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
#undef TRACE_SYSTEM | ||
#define TRACE_SYSTEM net | ||
|
||
#if !defined(_TRACE_NET_H) || defined(TRACE_HEADER_MULTI_READ) | ||
#define _TRACE_NET_H | ||
|
||
#include <linux/skbuff.h> | ||
#include <linux/netdevice.h> | ||
#include <linux/ip.h> | ||
#include <linux/tracepoint.h> | ||
|
||
TRACE_EVENT(net_dev_xmit, | ||
|
||
TP_PROTO(struct sk_buff *skb, | ||
int rc), | ||
|
||
TP_ARGS(skb, rc), | ||
|
||
TP_STRUCT__entry( | ||
__field( void *, skbaddr ) | ||
__field( unsigned int, len ) | ||
__field( int, rc ) | ||
__string( name, skb->dev->name ) | ||
), | ||
|
||
TP_fast_assign( | ||
__entry->skbaddr = skb; | ||
__entry->len = skb->len; | ||
__entry->rc = rc; | ||
__assign_str(name, skb->dev->name); | ||
), | ||
|
||
TP_printk("dev=%s skbaddr=%p len=%u rc=%d", | ||
__get_str(name), __entry->skbaddr, __entry->len, __entry->rc) | ||
); | ||
|
||
DECLARE_EVENT_CLASS(net_dev_template, | ||
|
||
TP_PROTO(struct sk_buff *skb), | ||
|
||
TP_ARGS(skb), | ||
|
||
TP_STRUCT__entry( | ||
__field( void *, skbaddr ) | ||
__field( unsigned int, len ) | ||
__string( name, skb->dev->name ) | ||
), | ||
|
||
TP_fast_assign( | ||
__entry->skbaddr = skb; | ||
__entry->len = skb->len; | ||
__assign_str(name, skb->dev->name); | ||
), | ||
|
||
TP_printk("dev=%s skbaddr=%p len=%u", | ||
__get_str(name), __entry->skbaddr, __entry->len) | ||
) | ||
|
||
DEFINE_EVENT(net_dev_template, net_dev_queue, | ||
|
||
TP_PROTO(struct sk_buff *skb), | ||
|
||
TP_ARGS(skb) | ||
); | ||
|
||
DEFINE_EVENT(net_dev_template, netif_receive_skb, | ||
|
||
TP_PROTO(struct sk_buff *skb), | ||
|
||
TP_ARGS(skb) | ||
); | ||
|
||
DEFINE_EVENT(net_dev_template, netif_rx, | ||
|
||
TP_PROTO(struct sk_buff *skb), | ||
|
||
TP_ARGS(skb) | ||
); | ||
#endif /* _TRACE_NET_H */ | ||
|
||
/* This part must be outside protection */ | ||
#include <trace/define_trace.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters