diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1994-10-17 17:47:45 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1994-10-17 17:47:45 +0000 |
commit | 6ae324074ae50984e852f8b7b7f5c944120eb110 (patch) | |
tree | c5905f4096b68df87a3f00435bec4fcc08408b18 /sys/nfsclient/nfsmount.h | |
parent | 5ffce483b4c357f2a6fb32d7c603ffce7ac9c331 (diff) |
This is a bunch of changes from NetBSD. There are a couple of bug-fixes.
But mostly it is changes to use the list-maintenance macros instead of
doing the pointer-gymnastics by hand.
Obtained from: NetBSD
Notes
Notes:
svn path=/head/; revision=3664
Diffstat (limited to 'sys/nfsclient/nfsmount.h')
-rw-r--r-- | sys/nfsclient/nfsmount.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/nfsclient/nfsmount.h b/sys/nfsclient/nfsmount.h index 78ba00b63efb..99a1b48795f4 100644 --- a/sys/nfsclient/nfsmount.h +++ b/sys/nfsclient/nfsmount.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsmount.h 8.1 (Berkeley) 6/10/93 - * $Id: nfsmount.h,v 1.2 1994/08/02 07:52:21 davidg Exp $ + * $Id: nfsmount.h,v 1.3 1994/08/21 06:50:10 paul Exp $ */ #ifndef _NFS_NFSMOUNT_H_ @@ -67,8 +67,7 @@ struct nfsmount { int nm_wsize; /* Max size of write rpc */ int nm_readahead; /* Num. of blocks to readahead */ int nm_leaseterm; /* Term (sec) for NQNFS lease */ - struct nfsnode *nm_tnext; /* Head of lease timer queue */ - struct nfsnode *nm_tprev; + CIRCLEQ_HEAD(, nfsnode) nm_timerhead; /* Head of lease timer queue */ struct vnode *nm_inprog; /* Vnode in prog by nqnfs_clientd() */ uid_t nm_authuid; /* Uid for authenticator */ int nm_authtype; /* Authenticator type */ |