projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
83450bb
)
net: CONFIG_DEBUG_NET depends on CONFIG_NET
author
Eric Dumazet
<edumazet@google.com>
Thu, 2 Jun 2022 16:18:57 +0000
(09:18 -0700)
committer
Jakub Kicinski
<kuba@kernel.org>
Thu, 2 Jun 2022 17:15:05 +0000
(10:15 -0700)
It makes little sense to debug networking stacks
if networking is not compiled in.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/Kconfig.debug
patch
|
blob
|
history
diff --git
a/net/Kconfig.debug
b/net/Kconfig.debug
index
a5781cf
..
e6ae11c
100644
(file)
--- a/
net/Kconfig.debug
+++ b/
net/Kconfig.debug
@@
-20,7
+20,7
@@
config NET_NS_REFCNT_TRACKER
config DEBUG_NET
bool "Add generic networking debug"
- depends on DEBUG_KERNEL
+ depends on DEBUG_KERNEL
&& NET
help
Enable extra sanity checks in networking.
This is mostly used by fuzzers, but is safe to select.