[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20080208175244.16261.56686.stgit@manray.1015granger.net>
Date: Fri, 08 Feb 2008 12:52:44 -0500
From: Chuck Lever <chuck.lever@...cle.com>
To: linux-kernel@...r.kernel.org
Cc: linux-nfs@...r.kernel.org
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 <chuck.lever@...cle.com>
---
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)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists