Keep track of interface up/down for ipv4. Allows to keep track of interface address changes in a trace. Those tracepoints are used by LTTng. About the performance impact of tracepoints (which is comparable to markers), even without immediate values optimizations, tests done by Hideo Aoki on ia64 show no regression. His test case was using hackbench on a kernel where scheduler instrumentation (about 5 events in code scheduler code) was added. See the "Tracepoints" patch header for performance result detail. Signed-off-by: Mathieu Desnoyers CC: netdev@vger.kernel.org CC: David S. Miller CC: Alexey Kuznetsov CC: CC: Masami Hiramatsu CC: 'Peter Zijlstra' CC: "Frank Ch. Eigler" CC: 'Ingo Molnar' CC: 'Hideo AOKI' CC: Takashi Nishiie CC: 'Steven Rostedt' CC: Eduard - Gabriel Munteanu --- net/ipv4/devinet.c | 3 +++ net/ipv4/ipv4-trace.h | 14 ++++++++++++++ 2 files changed, 17 insertions(+) Index: linux-2.6-lttng/net/ipv4/devinet.c =================================================================== --- linux-2.6-lttng.orig/net/ipv4/devinet.c 2008-07-09 10:55:46.000000000 -0400 +++ linux-2.6-lttng/net/ipv4/devinet.c 2008-07-09 10:58:41.000000000 -0400 @@ -61,6 +61,7 @@ #include #include #include +#include "ipv4-trace.h" static struct ipv4_devconf ipv4_devconf = { .data = { @@ -257,6 +258,7 @@ static void __inet_del_ifa(struct in_dev struct in_ifaddr **ifap1 = &ifa1->ifa_next; while ((ifa = *ifap1) != NULL) { + trace_ipv4_addr_del(ifa); if (!(ifa->ifa_flags & IFA_F_SECONDARY) && ifa1->ifa_scope <= ifa->ifa_scope) last_prim = ifa; @@ -363,6 +365,7 @@ static int __inet_insert_ifa(struct in_i } ifa->ifa_flags |= IFA_F_SECONDARY; } + trace_ipv4_addr_add(ifa); } if (!(ifa->ifa_flags & IFA_F_SECONDARY)) { Index: linux-2.6-lttng/net/ipv4/ipv4-trace.h =================================================================== --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ linux-2.6-lttng/net/ipv4/ipv4-trace.h 2008-07-09 10:58:41.000000000 -0400 @@ -0,0 +1,14 @@ +#ifndef _IPV4_TRACE_H +#define _IPV4_TRACE_H + +#include +#include + +DEFINE_TRACE(ipv4_addr_add, + TPPROTO(struct in_ifaddr *ifa), + TPARGS(ifa)); +DEFINE_TRACE(ipv4_addr_del, + TPPROTO(struct in_ifaddr *ifa), + TPARGS(ifa)); + +#endif -- Mathieu Desnoyers Computer Engineering Ph.D. Student, Ecole Polytechnique de Montreal OpenPGP key fingerprint: 8CD5 52C3 8E3C 4140 715F BA06 3F25 A8FE 3BAE 9A68 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html