diff options
author | Sven Eckelmann <sven@narfation.org> | 2018-03-18 10:34:29 +0100 |
---|---|---|
committer | Simon Wunderlich <sw@simonwunderlich.de> | 2018-04-22 09:29:14 +0200 |
commit | 1ba93211e2042bdbecc54971929a97f2fb0ed25e (patch) | |
tree | d1aa34e3f0ddf4f9c63c3173d84cb70a0f6f7018 /net/batman-adv | |
parent | f546a99d62e5d4550a73c2ca0af51212a4fd46df (diff) | |
download | linux-rpi3-1ba93211e2042bdbecc54971929a97f2fb0ed25e.tar.gz linux-rpi3-1ba93211e2042bdbecc54971929a97f2fb0ed25e.tar.bz2 linux-rpi3-1ba93211e2042bdbecc54971929a97f2fb0ed25e.zip |
batman-adv: Disable CONFIG_BATMAN_ADV_DEBUGFS by default
All tools which were known to the batman-adv development team are
supporting the batman-adv netlink interface since a while. Also debugfs is
not supported for batman-adv interfaces in any non-default netns. Thus
disabling CONFIG_BATMAN_ADV_DEBUGFS by default should not cause problems on
most systems. It is still possible to enable it in case it is still
required in a specific setup.
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
Diffstat (limited to 'net/batman-adv')
-rw-r--r-- | net/batman-adv/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/batman-adv/Kconfig b/net/batman-adv/Kconfig index e4e2e02b7380..bee034a95208 100644 --- a/net/batman-adv/Kconfig +++ b/net/batman-adv/Kconfig @@ -94,13 +94,13 @@ config BATMAN_ADV_DEBUGFS bool "batman-adv debugfs entries" depends on BATMAN_ADV depends on DEBUG_FS - default y + default n help Enable this to export routing related debug tables via debugfs. The information for each soft-interface and used hard-interface can be found under batman_adv/ - If unsure, say Y. + If unsure, say N. config BATMAN_ADV_DEBUG bool "B.A.T.M.A.N. debugging" |