diff options
author | Neil Horman <nhorman@tuxdriver.com> | 2009-03-11 05:48:26 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-13 15:09:27 -0400 |
commit | 4893d39e865b2897bf9fcd329697d37032d853a1 (patch) | |
tree | 04ba3529c2142651c6974a13f0f6c5654059b471 | |
parent | 26ccfc37da21e6f02d5e805c38ca7551c16b2fe0 (diff) |
Network Drop Monitor: Add trace declaration for skb frees
Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
include/trace/skb.h | 8 ++++++++
net/core/Makefile | 2 ++
net/core/net-traces.c | 29 +++++++++++++++++++++++++++++
3 files changed, 39 insertions(+)
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/trace/skb.h | 8 | ||||
-rw-r--r-- | net/core/Makefile | 2 | ||||
-rw-r--r-- | net/core/net-traces.c | 29 |
3 files changed, 39 insertions, 0 deletions
diff --git a/include/trace/skb.h b/include/trace/skb.h new file mode 100644 index 000000000000..3aa864697c09 --- /dev/null +++ b/include/trace/skb.h | |||
@@ -0,0 +1,8 @@ | |||
1 | #ifndef _TRACE_SKB_H_ | ||
2 | #define _TRACE_SKB_H_ | ||
3 | |||
4 | DECLARE_TRACE(kfree_skb, | ||
5 | TPPROTO(struct sk_buff *skb, void *location), | ||
6 | TPARGS(skb, location)); | ||
7 | |||
8 | #endif | ||
diff --git a/net/core/Makefile b/net/core/Makefile index 26a37cb31923..d47092bc525c 100644 --- a/net/core/Makefile +++ b/net/core/Makefile | |||
@@ -17,3 +17,5 @@ obj-$(CONFIG_NET_PKTGEN) += pktgen.o | |||
17 | obj-$(CONFIG_NETPOLL) += netpoll.o | 17 | obj-$(CONFIG_NETPOLL) += netpoll.o |
18 | obj-$(CONFIG_NET_DMA) += user_dma.o | 18 | obj-$(CONFIG_NET_DMA) += user_dma.o |
19 | obj-$(CONFIG_FIB_RULES) += fib_rules.o | 19 | obj-$(CONFIG_FIB_RULES) += fib_rules.o |
20 | obj-$(CONFIG_TRACEPOINTS) += net-traces.o | ||
21 | |||
diff --git a/net/core/net-traces.c b/net/core/net-traces.c new file mode 100644 index 000000000000..c8fb45665e4f --- /dev/null +++ b/net/core/net-traces.c | |||
@@ -0,0 +1,29 @@ | |||
1 | /* | ||
2 | * consolidates trace point definitions | ||
3 | * | ||
4 | * Copyright (C) 2009 Neil Horman <nhorman@tuxdriver.com> | ||
5 | */ | ||
6 | |||
7 | #include <linux/netdevice.h> | ||
8 | #include <linux/etherdevice.h> | ||
9 | #include <linux/string.h> | ||
10 | #include <linux/if_arp.h> | ||
11 | #include <linux/inetdevice.h> | ||
12 | #include <linux/inet.h> | ||
13 | #include <linux/interrupt.h> | ||
14 | #include <linux/netpoll.h> | ||
15 | #include <linux/sched.h> | ||
16 | #include <linux/delay.h> | ||
17 | #include <linux/rcupdate.h> | ||
18 | #include <linux/types.h> | ||
19 | #include <linux/workqueue.h> | ||
20 | #include <linux/netlink.h> | ||
21 | #include <linux/net_dropmon.h> | ||
22 | #include <trace/skb.h> | ||
23 | |||
24 | #include <asm/unaligned.h> | ||
25 | #include <asm/bitops.h> | ||
26 | |||
27 | |||
28 | DEFINE_TRACE(kfree_skb); | ||
29 | EXPORT_TRACEPOINT_SYMBOL_GPL(kfree_skb); | ||