From: Michael Jeanson Date: Mon, 31 Jan 2022 15:47:53 +0000 (-0500) Subject: fix: net: socket: rename SKB_DROP_REASON_SOCKET_FILTER (v5.17) X-Git-Tag: v2.12.8~2 X-Git-Url: http://git.liburcu.org/?p=lttng-modules.git;a=commitdiff_plain;h=d310ab4ec52daa0356a1d2a6d92ec202ffedcfb5 fix: net: socket: rename SKB_DROP_REASON_SOCKET_FILTER (v5.17) No version check needed since this change is between two RCs, see upstream commit : commit 364df53c081d93fcfd6b91085ff2650c7f17b3c7 Author: Menglong Dong Date: Thu Jan 27 17:13:01 2022 +0800 net: socket: rename SKB_DROP_REASON_SOCKET_FILTER Rename SKB_DROP_REASON_SOCKET_FILTER, which is used as the reason of skb drop out of socket filter before it's part of a released kernel. It will be used for more protocols than just TCP in future series. Link: https://lore.kernel.org/all/20220127091308.91401-2-imagedong@tencent.com/ Change-Id: I666461a5b541fe9e0bf53ad996ce33237af4bfbb Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- diff --git a/instrumentation/events/lttng-module/skb.h b/instrumentation/events/lttng-module/skb.h index 86729dae..00495e75 100644 --- a/instrumentation/events/lttng-module/skb.h +++ b/instrumentation/events/lttng-module/skb.h @@ -20,7 +20,7 @@ LTTNG_TRACEPOINT_ENUM(skb_drop_reason, ctf_enum_value("NO_SOCKET", SKB_DROP_REASON_NO_SOCKET) ctf_enum_value("PKT_TOO_SMALL", SKB_DROP_REASON_PKT_TOO_SMALL) ctf_enum_value("TCP_CSUM", SKB_DROP_REASON_TCP_CSUM) - ctf_enum_value("TCP_FILTER", SKB_DROP_REASON_TCP_FILTER) + ctf_enum_value("SOCKET_FILTER", SKB_DROP_REASON_SOCKET_FILTER) ctf_enum_value("UDP_CSUM", SKB_DROP_REASON_UDP_CSUM) ctf_enum_value("MAX", SKB_DROP_REASON_MAX) )