instrumentation: sock: remove compatibility code
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Mon, 13 Apr 2020 20:34:55 +0000 (16:34 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Mon, 13 Apr 2020 20:34:55 +0000 (16:34 -0400)
instrumentation/events/lttng-module/sock.h

index dd34bb81a45f4b8e4690fccc25b71600a7b10bb3..43e12f3fabde8a7c46dc0f8470eba316bc2eb0d4 100644 (file)
@@ -6,7 +6,6 @@
 #define LTTNG_TRACE_SOCK_H
 
 #include <probes/lttng-tracepoint-event.h>
-#include <linux/version.h>
 #include <net/sock.h>
 
 LTTNG_TRACEPOINT_EVENT(sock_rcvqueue_full,
@@ -22,8 +21,6 @@ LTTNG_TRACEPOINT_EVENT(sock_rcvqueue_full,
        )
 )
 
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,19,0))
-
 LTTNG_TRACEPOINT_EVENT(sock_exceed_buf_limit,
 
        TP_PROTO(struct sock *sk, struct proto *prot, long allocated, int kind),
@@ -43,42 +40,6 @@ LTTNG_TRACEPOINT_EVENT(sock_exceed_buf_limit,
        )
 )
 
-#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0))
-
-LTTNG_TRACEPOINT_EVENT(sock_exceed_buf_limit,
-
-       TP_PROTO(struct sock *sk, struct proto *prot, long allocated),
-
-       TP_ARGS(sk, prot, allocated),
-
-       TP_FIELDS(
-               ctf_string(name, prot->name)
-               ctf_array(long, sysctl_mem, prot->sysctl_mem, 3)
-               ctf_integer(long, allocated, allocated)
-               ctf_integer(int, sysctl_rmem, sk_get_rmem0(sk, prot))
-               ctf_integer(int, rmem_alloc, atomic_read(&sk->sk_rmem_alloc))
-       )
-)
-
-#else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0)) */
-
-LTTNG_TRACEPOINT_EVENT(sock_exceed_buf_limit,
-
-       TP_PROTO(struct sock *sk, struct proto *prot, long allocated),
-
-       TP_ARGS(sk, prot, allocated),
-
-       TP_FIELDS(
-               ctf_string(name, prot->name)
-               ctf_array(long, sysctl_mem, prot->sysctl_mem, 3)
-               ctf_integer(long, allocated, allocated)
-               ctf_integer(int, sysctl_rmem, prot->sysctl_rmem[0])
-               ctf_integer(int, rmem_alloc, atomic_read(&sk->sk_rmem_alloc))
-       )
-)
-
-#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0)) */
-
 #endif /* LTTNG_TRACE_SOCK_H */
 
 /* This part must be outside protection */
This page took 0.026835 seconds and 4 git commands to generate.