]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
IPv6 support for nfsd was finished before some of the other daemons
authorJeff Layton <jlayton@redhat.com>
Mon, 14 Sep 2009 17:24:00 +0000 (13:24 -0400)
committerSteve Dickson <steved@redhat.com>
Mon, 14 Sep 2009 17:24:00 +0000 (13:24 -0400)
(mountd and statd in particular). That could be a problem in the future
if someone were to boot a kernel that supports IPv6 serving with an
older nfs-utils. For now, hardcode the IPv6 switch into the off position
until the other daemons are functional.

Signed-off-by: Steve Dickson <steved@redhat.com>
utils/nfsd/nfsd.c
utils/nfsd/nfssvc.c

index 650c59351722a7998d55116267ca17c830da0241..1cda1e59ca0521b4b6203de8b5d33edb94dc1559 100644 (file)
 #include "nfssvc.h"
 #include "xlog.h"
 
+/*
+ * IPv6 support for nfsd was finished before some of the other daemons (mountd
+ * and statd in particular). That could be a problem in the future if someone
+ * were to boot a kernel that supports IPv6 serving with  an older nfs-utils. For
+ * now, hardcode the IPv6 switch into the off position until the other daemons
+ * are functional.
+ */
+#undef IPV6_SUPPORTED
+
 static void    usage(const char *);
 
 static struct option longopts[] =
index ee862b28eb251631cd42b9ac6d12c24c7cf70311..12d3253228fadb0e074590b83d6e08808c2ec59e 100644 (file)
 #include "nfslib.h"
 #include "xlog.h"
 
+/*
+ * IPv6 support for nfsd was finished before some of the other daemons (mountd
+ * and statd in particular). That could be a problem in the future if someone
+ * were to boot a kernel that supports IPv6 serving with an older nfs-utils. For
+ * now, hardcode the IPv6 switch into the off position until the other daemons
+ * are functional.
+ */
+#undef IPV6_SUPPORTED
+
 #define NFSD_PORTS_FILE     "/proc/fs/nfsd/portlist"
 #define NFSD_VERS_FILE    "/proc/fs/nfsd/versions"
 #define NFSD_THREAD_FILE  "/proc/fs/nfsd/threads"