Home | History | Annotate | Line # | Download | only in nfs
      1  1.1  dholland This is new nfs code (including nfsv4) imported from FreeBSD. It is
      2  1.1  dholland not even experimental yet - you don't want to be mucking with it.
      3  1.1  dholland 
      4  1.1  dholland The nfs code (both nfs and nfsd) that NetBSD currently uses is in
      5  1.1  dholland sys/nfs.
      6  1.1  dholland 
      7  1.1  dholland 
      8  1.1  dholland The following things are here:
      9  1.1  dholland 
     10  1.1  dholland    client/	- nfs client code, from sys/fs/nfsclient in freebsd
     11  1.1  dholland    server/	- nfsd server code, from sys/fs/nfsserver in freebsd
     12  1.1  dholland    nlm/		- kernel-side nfs lock manager, from sys/nlm in freebsd
     13  1.1  dholland    common/	- shared common code, from
     14  1.1  dholland 			* sys/fs/nfs in freebsd
     15  1.1  dholland 			* sys/nfs in freebsd
     16  1.1  dholland    files.newnfs - config goo
     17  1.1  dholland    nfs2netbsd.sh - script for preparing a cvs import from a freebsd tree
     18  1.1  dholland 
     19  1.1  dholland The FreeBSD shared common code contained two (different) nfsproto.h
     20  1.1  dholland and xdr_subs.h files. This is how they've been imported:
     21  1.1  dholland 
     22  1.1  dholland    sys/fs/nfs/nfsproto.h	->	common/nfsproto.h
     23  1.1  dholland    sys/fs/nfs/xdr_subs.h	->	common/xdr_subs.h
     24  1.1  dholland    sys/nfs/nfsproto.h		->	common/oldnfsproto.h
     25  1.1  dholland    sys/nfs/xdr_subs.h		->	common/old_xdr_subs.h
     26