2008-02-08 17:52:46

by Chuck Lever

[permalink] [raw]
Subject: [PATCH 11/11] NLM: LOCKD fails to load if CONFIG_SYSCTL is not set

By the way, we've got another config-related nit here:

http://bugzilla.linux-nfs.org/show_bug.cgi?id=156

You can build lockd without CONFIG_SYSCTL set, but then the module will
fail to load.

Signed-off-by: Chuck Lever <[email protected]>
---

fs/Kconfig | 1 +
fs/lockd/svc.c | 4 ++++
2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/fs/Kconfig b/fs/Kconfig
index f799964..b7aeed4 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -1734,6 +1734,7 @@ config NFSD_V4

config LOCKD
tristate
+ select SYSCTL

config LOCKD_V4
bool
diff --git a/fs/lockd/svc.c b/fs/lockd/svc.c
index 0822646..adb8e2c 100644
--- a/fs/lockd/svc.c
+++ b/fs/lockd/svc.c
@@ -516,8 +516,12 @@ module_param(nsm_use_hostnames, bool, 0644);

static int __init init_nlm(void)
{
+#if CONFIG_SYSCTL
nlm_sysctl_table = register_sysctl_table(nlm_sysctl_root);
return nlm_sysctl_table ? 0 : -ENOMEM;
+#else
+ return 0;
+#endif
}

static void __exit exit_nlm(void)