svn commit: r229802 - in head/sys/fs: nfs nfsclient

Rick Macklem rmacklem at FreeBSD.org
Sun Jan 8 01:54:47 UTC 2012


Author: rmacklem
Date: Sun Jan  8 01:54:46 2012
New Revision: 229802
URL: http://svn.freebsd.org/changeset/base/229802

Log:
  opt_inet6.h was missing from some files in the new NFS subsystem.
  The effect of this was, for clients mounted via inet6 addresses,
  that the DRC cache would never have a hit in the server. It also
  broke NFSv4 callbacks when an inet6 address was the only one available
  in the client. This patch fixes the above, plus deletes opt_inet6.h
  from a couple of files it is not needed for.
  
  MFC after:	2 weeks

Modified:
  head/sys/fs/nfs/nfs_commonkrpc.c
  head/sys/fs/nfs/nfs_commonsubs.c
  head/sys/fs/nfsclient/nfs_clkrpc.c
  head/sys/fs/nfsclient/nfs_clport.c
  head/sys/fs/nfsclient/nfs_clrpcops.c

Modified: head/sys/fs/nfs/nfs_commonkrpc.c
==============================================================================
--- head/sys/fs/nfs/nfs_commonkrpc.c	Sun Jan  8 01:09:00 2012	(r229801)
+++ head/sys/fs/nfs/nfs_commonkrpc.c	Sun Jan  8 01:54:46 2012	(r229802)
@@ -38,7 +38,6 @@ __FBSDID("$FreeBSD$");
  * Socket operations for use by nfs
  */
 
-#include "opt_inet6.h"
 #include "opt_kdtrace.h"
 #include "opt_kgssapi.h"
 #include "opt_nfs.h"

Modified: head/sys/fs/nfs/nfs_commonsubs.c
==============================================================================
--- head/sys/fs/nfs/nfs_commonsubs.c	Sun Jan  8 01:09:00 2012	(r229801)
+++ head/sys/fs/nfs/nfs_commonsubs.c	Sun Jan  8 01:54:46 2012	(r229802)
@@ -40,6 +40,8 @@ __FBSDID("$FreeBSD$");
  * copy data between mbuf chains and uio lists.
  */
 #ifndef APPLEKEXT
+#include "opt_inet6.h"
+
 #include <fs/nfs/nfsport.h>
 
 /*

Modified: head/sys/fs/nfsclient/nfs_clkrpc.c
==============================================================================
--- head/sys/fs/nfsclient/nfs_clkrpc.c	Sun Jan  8 01:09:00 2012	(r229801)
+++ head/sys/fs/nfsclient/nfs_clkrpc.c	Sun Jan  8 01:54:46 2012	(r229802)
@@ -34,7 +34,6 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
-#include "opt_inet6.h"
 #include "opt_kgssapi.h"
 
 #include <fs/nfs/nfsport.h>

Modified: head/sys/fs/nfsclient/nfs_clport.c
==============================================================================
--- head/sys/fs/nfsclient/nfs_clport.c	Sun Jan  8 01:09:00 2012	(r229801)
+++ head/sys/fs/nfsclient/nfs_clport.c	Sun Jan  8 01:54:46 2012	(r229802)
@@ -34,6 +34,7 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
+#include "opt_inet6.h"
 #include "opt_kdtrace.h"
 
 #include <sys/capability.h>

Modified: head/sys/fs/nfsclient/nfs_clrpcops.c
==============================================================================
--- head/sys/fs/nfsclient/nfs_clrpcops.c	Sun Jan  8 01:09:00 2012	(r229801)
+++ head/sys/fs/nfsclient/nfs_clrpcops.c	Sun Jan  8 01:54:46 2012	(r229802)
@@ -43,6 +43,8 @@ __FBSDID("$FreeBSD$");
  */
 
 #ifndef APPLEKEXT
+#include "opt_inet6.h"
+
 #include <fs/nfs/nfsport.h>
 
 /*


More information about the svn-src-all mailing list