diff options
author | bde <bde@FreeBSD.org> | 1995-07-29 11:44:31 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-07-29 11:44:31 +0000 |
commit | 38a74a7bc23af4d5ed5deeff2f4ab6329b0a26cc (patch) | |
tree | b89d1e0366b685acdcb1eb8c959a65e2e330cb0c /sys/nfs/nfs_common.c | |
parent | 795b455aacbca36da42882b1290f5d37f1618bfe (diff) | |
download | FreeBSD-src-38a74a7bc23af4d5ed5deeff2f4ab6329b0a26cc.zip FreeBSD-src-38a74a7bc23af4d5ed5deeff2f4ab6329b0a26cc.tar.gz |
Eliminate sloppy common-style declarations. There should be none left for
the LINT configuation.
Diffstat (limited to 'sys/nfs/nfs_common.c')
-rw-r--r-- | sys/nfs/nfs_common.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/sys/nfs/nfs_common.c b/sys/nfs/nfs_common.c index f01e1b0..4c6d4bb 100644 --- a/sys/nfs/nfs_common.c +++ b/sys/nfs/nfs_common.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_subs.c 8.3 (Berkeley) 1/4/94 - * $Id: nfs_subs.c,v 1.20 1995/07/13 08:47:53 davidg Exp $ + * $Id: nfs_subs.c,v 1.21 1995/07/20 09:43:12 davidg Exp $ */ /* @@ -94,6 +94,16 @@ enum vtype nv2tov_type[8] = { VNON, VREG, VDIR, VBLK, VCHR, VLNK, VNON, VNON }; enum vtype nv3tov_type[8]={ VNON, VREG, VDIR, VBLK, VCHR, VLNK, VSOCK, VFIFO }; int nfs_ticks; +struct nfs_reqq nfs_reqq; +struct nfssvc_sockhead nfssvc_sockhead; +int nfssvc_sockhead_flag; +struct nfsd_head nfsd_head; +int nfsd_head_flag; +struct nfs_bufq nfs_bufq; +struct nqtimerhead nqtimerhead; +struct nqfhhashhead *nqfhhashtbl; +u_long nqfhhash; + /* * Mapping of old NFS Version 2 RPC numbers to generic numbers. */ |