summaryrefslogtreecommitdiff
path: root/include/net/net_debug.h
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2022-05-10 06:57:38 +0300
committerDavid S. Miller <davem@davemloft.net>2022-05-11 14:43:10 +0300
commitd268c1f5cfc92eb5bb605f7365769aacd93be234 (patch)
tree42771345e642844fb0dc5fb55e2a3e755994112c /include/net/net_debug.h
parent5b87be9e4978fe507c7e14c0bdff147d10d39aec (diff)
downloadlinux-d268c1f5cfc92eb5bb605f7365769aacd93be234.tar.xz
net: add CONFIG_DEBUG_NET
This config option enables network debugging checks. This patch adds DEBUG_NET_WARN_ON_ONCE(cond) Note that this is not a replacement for WARN_ON_ONCE(cond) as (cond) is not evaluated if CONFIG_DEBUG_NET is not set. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/net_debug.h')
-rw-r--r--include/net/net_debug.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/net/net_debug.h b/include/net/net_debug.h
index 19cd2700c20e..1e74684cbbdb 100644
--- a/include/net/net_debug.h
+++ b/include/net/net_debug.h
@@ -148,4 +148,10 @@ do { \
#endif
+#if defined(CONFIG_DEBUG_NET)
+#define DEBUG_NET_WARN_ON_ONCE(cond) (void)WARN_ON_ONCE(cond)
+#else
+#define DEBUG_NET_WARN_ON_ONCE(cond) BUILD_BUG_ON_INVALID(cond)
+#endif
+
#endif /* _LINUX_NET_DEBUG_H */