aboutsummaryrefslogtreecommitdiff
path: root/net/core/.gitignore
diff options
context:
space:
mode:
authorGravatar Menglong Dong <imagedong@tencent.com> 2022-06-06 10:24:35 +0800
committerGravatar Paolo Abeni <pabeni@redhat.com> 2022-06-07 12:51:41 +0200
commitec43908dd556b2292f028c6e412261689405ba6e (patch)
treed9b6e2d99b5bd1ddea7d05531103cac5a67f9dbb /net/core/.gitignore
parentnet: skb: move enum skb_drop_reason to standalone header file (diff)
downloadlinux-ec43908dd556b2292f028c6e412261689405ba6e.tar.gz
linux-ec43908dd556b2292f028c6e412261689405ba6e.tar.bz2
linux-ec43908dd556b2292f028c6e412261689405ba6e.zip
net: skb: use auto-generation to convert skb drop reason to string
It is annoying to add new skb drop reasons to 'enum skb_drop_reason' and TRACE_SKB_DROP_REASON in trace/event/skb.h, and it's easy to forget to add the new reasons we added to TRACE_SKB_DROP_REASON. TRACE_SKB_DROP_REASON is used to convert drop reason of type number to string. For now, the string we passed to user space is exactly the same as the name in 'enum skb_drop_reason' with a 'SKB_DROP_REASON_' prefix. Therefore, we can use 'auto-generation' to generate these drop reasons to string at build time. The new source 'dropreason_str.c' will be auto generated during build time, which contains the string array 'const char * const drop_reasons[]'. Signed-off-by: Menglong Dong <imagedong@tencent.com> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'net/core/.gitignore')
-rw-r--r--net/core/.gitignore1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/core/.gitignore b/net/core/.gitignore
new file mode 100644
index 000000000000..df1e74372cce
--- /dev/null
+++ b/net/core/.gitignore
@@ -0,0 +1 @@
+dropreason_str.c