]> git.baikalelectronics.ru Git - kernel.git/commit
mptcp: support SYSCTL only if enabled
authorMatthieu Baerts <matthieu.baerts@tessares.net>
Thu, 27 May 2021 23:54:29 +0000 (16:54 -0700)
committerJakub Kicinski <kuba@kernel.org>
Fri, 28 May 2021 20:59:16 +0000 (13:59 -0700)
commit53431e3df810213033464969fb0d6261bc39a216
tree20fd7d39deaebf9a3830ef666dec6d10fea88735
parentc47583645a2ef923c89e5800490ee196a869a0b9
mptcp: support SYSCTL only if enabled

Since the introduction of the sysctl support in MPTCP with
commit ea8331d9be65 ("mptcp: new sysctl to control the activation per NS"),
we don't check CONFIG_SYSCTL.

Until now, that was not an issue: the register and unregister functions
were replaced by NO-OP one if SYSCTL was not enabled in the config. The
only thing we could have avoid is not to reserve memory for the table
but that's for the moment only a small table per net-ns.

But the following commit is going to use SYSCTL_ZERO and SYSCTL_ONE
which are not be defined if SYSCTL is not enabled in the config. This
causes 'undefined reference' errors from the linker.

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Matthieu Baerts <matthieu.baerts@tessares.net>
Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/mptcp/ctrl.c