aboutsummaryrefslogtreecommitdiff
path: root/sys/nfs/nqnfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/nfs/nqnfs.h')
-rw-r--r--sys/nfs/nqnfs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/nfs/nqnfs.h b/sys/nfs/nqnfs.h
index 15b5af510fbf..a76b94be0a2e 100644
--- a/sys/nfs/nqnfs.h
+++ b/sys/nfs/nqnfs.h
@@ -104,8 +104,8 @@ struct nqhost {
#define lph_inetaddr lph_un.un_udp.udp_haddr.had_inetaddr
struct nqlease {
- LIST_ENTRY(nqlease) lc_hash; /* Fhandle hash list */
- CIRCLEQ_ENTRY(nqlease) lc_timer; /* Timer queue list */
+ LIST_ENTRY(struct nqlease) lc_hash; /* Fhandle hash list */
+ CIRCLEQ_ENTRY(struct nqlease) lc_timer; /* Timer queue list */
time_t lc_expiry; /* Expiry time (sec) */
struct nqhost lc_host; /* Host that got lease */
struct nqm *lc_morehosts; /* Other hosts that share read lease */
@@ -173,14 +173,14 @@ struct nqm {
/*
* List head for timer queue.
*/
-extern CIRCLEQ_HEAD(nqtimerhead, nqlease) nqtimerhead;
+extern CIRCLEQ_HEAD(nqtimerhead, struct nqlease) nqtimerhead;
/*
* List head for the file handle hash table.
*/
#define NQFHHASH(f) \
(&nqfhhashtbl[(*((u_int32_t *)(f))) & nqfhhash])
-extern LIST_HEAD(nqfhhashhead, nqlease) *nqfhhashtbl;
+extern LIST_HEAD(nqfhhashhead, struct nqlease) *nqfhhashtbl;
extern u_long nqfhhash;
/*