Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
client/ | H | - | - | 23,195 | 17,428 | |
common/ | H | - | - | 17,746 | 12,737 | |
nlm/ | H | - | - | 6,710 | 4,840 | |
server/ | H | - | - | 18,886 | 14,429 | |
README.newnfs | H A D | 30-Sep-2013 | 941 | 26 | 19 | |
files.newnfs | H A D | 13-Dec-2016 | 2.5 KiB | 54 | 51 | |
nfs2netbsd.sh | H A D | 30-Sep-2013 | 5.9 KiB | 268 | 189 |
README.newnfs
1This is new nfs code (including nfsv4) imported from FreeBSD. It is 2not even experimental yet - you don't want to be mucking with it. 3 4The nfs code (both nfs and nfsd) that NetBSD currently uses is in 5sys/nfs. 6 7 8The following things are here: 9 10 client/ - nfs client code, from sys/fs/nfsclient in freebsd 11 server/ - nfsd server code, from sys/fs/nfsserver in freebsd 12 nlm/ - kernel-side nfs lock manager, from sys/nlm in freebsd 13 common/ - shared common code, from 14 * sys/fs/nfs in freebsd 15 * sys/nfs in freebsd 16 files.newnfs - config goo 17 nfs2netbsd.sh - script for preparing a cvs import from a freebsd tree 18 19The FreeBSD shared common code contained two (different) nfsproto.h 20and xdr_subs.h files. This is how they've been imported: 21 22 sys/fs/nfs/nfsproto.h -> common/nfsproto.h 23 sys/fs/nfs/xdr_subs.h -> common/xdr_subs.h 24 sys/nfs/nfsproto.h -> common/oldnfsproto.h 25 sys/nfs/xdr_subs.h -> common/old_xdr_subs.h 26