645dae969c
Today's linux-next build (powerpc ppc64_defconfig) failed like this: In file included from net/core/skbuff.c:69: include/trace/skb.h:4: error: expected ')' before '(' token include/trace/skb.h:4: error: expected ')' before '(' token [...] Caused by commit2939b0469d
("tracing: replace TP<var> with TP_<var>") from the tracing tree interacting with commit4893d39e86
("Network Drop Monitor: Add trace declaration for skb frees") from the net tree. Acked-by: David S. Miller <davem@davemloft.net> Signed-off-by: Ingo Molnar <mingo@elte.hu>
12 lines
209 B
C
12 lines
209 B
C
#ifndef _TRACE_SKB_H_
|
|
#define _TRACE_SKB_H_
|
|
|
|
#include <linux/skbuff.h>
|
|
#include <linux/tracepoint.h>
|
|
|
|
DECLARE_TRACE(kfree_skb,
|
|
TP_PROTO(struct sk_buff *skb, void *location),
|
|
TP_ARGS(skb, location));
|
|
|
|
#endif
|