LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH 11/11] NLM: LOCKD fails to load if CONFIG_SYSCTL is not set
@ 2008-02-08 17:52 Chuck Lever
0 siblings, 0 replies; only message in thread
From: Chuck Lever @ 2008-02-08 17:52 UTC (permalink / raw)
To: linux-kernel; +Cc: linux-nfs
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@oracle.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)
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-02-08 18:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-08 17:52 [PATCH 11/11] NLM: LOCKD fails to load if CONFIG_SYSCTL is not set Chuck Lever
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).