Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/nfs/nfs_srvcache.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- src/sys/nfs/nfs_srvcache.c 1993/09/07 15:41:44 1.5 +++ src/sys/nfs/nfs_srvcache.c 1993/12/18 00:45:20 1.6 @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)nfs_srvcache.c 7.11 (Berkeley) 4/16/91 - * $Id: nfs_srvcache.c,v 1.5 1993/09/07 15:41:44 ws Exp $ + * $Id: nfs_srvcache.c,v 1.6 1993/12/18 00:45:20 mycroft Exp $ */ /* @@ -43,22 +43,22 @@ * pages 53-63. San Diego, February 1989. */ -#include "param.h" -#include "namei.h" -#include "vnode.h" -#include "mount.h" -#include "kernel.h" -#include "systm.h" -#include "mbuf.h" -#include "socket.h" -#include "socketvar.h" - -#include "../netinet/in.h" - -#include "nfsm_subs.h" -#include "nfsv2.h" -#include "nfsrvcache.h" -#include "nfs.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include +#include +#include +#include #if ((NFSRCHSZ&(NFSRCHSZ-1)) == 0) #define NFSRCHASH(xid) (((xid)+((xid)>>16))&(NFSRCHSZ-1))