]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
net: fix build without CONFIG_SYSCTL definition
authorMahesh Bandewar <maheshb@google.com>
Fri, 18 Sep 2020 05:08:32 +0000 (22:08 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 18 Sep 2020 21:14:05 +0000 (14:14 -0700)
Earlier commit 316cdaa1158a ("net: add option to not create fall-back
tunnels in root-ns as well") removed the CONFIG_SYSCTL to enable the
kernel-commandline to work. However, this variable gets defined only
when CONFIG_SYSCTL option is selected.

With this change the behavior would default to creating fall-back
tunnels in all namespaces when CONFIG_SYSCTL is not selected and
the kernel commandline option will be ignored.

Fixes: 316cdaa1158a ("net: add option to not create fall-back tunnels in root-ns as well")
Signed-off-by: Mahesh Bandewar <maheshb@google.com>
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Reported-by: kernel test robot <lkp@intel.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org> # build-tested
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/netdevice.h

index 909b1fbb0481bced98c2293c15ca7151b07a9945..fef0eb96cf69448d295db5e2dc5958404db10bb8 100644 (file)
@@ -634,8 +634,9 @@ extern int sysctl_devconf_inherit_init_net;
  */
 static inline bool net_has_fallback_tunnels(const struct net *net)
 {
-       return (net == &init_net && sysctl_fb_tunnels_only_for_init_net == 1) ||
-              !sysctl_fb_tunnels_only_for_init_net;
+       return !IS_ENABLED(CONFIG_SYSCTL) ||
+              !sysctl_fb_tunnels_only_for_init_net ||
+              (net == &init_net && sysctl_fb_tunnels_only_for_init_net == 1);
 }
 
 static inline int netdev_queue_numa_node_read(const struct netdev_queue *q)