instrumentation: sock: remove compatibility code
[lttng-modules.git] / instrumentation / events / lttng-module / sock.h
index a1032b3390faa4f94591e9d5445c428b48c5a515..43e12f3fabde8a7c46dc0f8470eba316bc2eb0d4 100644 (file)
@@ -1,4 +1,4 @@
-/* SPDX-License-Identifier: GPL-2.0 */
+/* SPDX-License-Identifier: GPL-2.0-only */
 #undef TRACE_SYSTEM
 #define TRACE_SYSTEM sock
 
@@ -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.023503 seconds and 4 git commands to generate.