xref: /original-bsd/sys/nfs/nfsrtt.h (revision e21485a6)
1 /*
2  * Copyright (c) 1992 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Rick Macklem at The University of Guelph.
7  *
8  * %sccs.include.redist.c%
9  *
10  *	@(#)nfsrtt.h	7.1 (Berkeley) 01/07/92
11  */
12 
13 /*
14  * Definitions for client side performance monitor.
15  */
16 #define	NFSRTTLOGSIZ	128
17 struct nfsrtt {
18 	int pos;
19 	struct rttl {
20 		int	proc;
21 		int	rtt;
22 		int	rto;
23 		int	sent;
24 		int	cwnd;
25 		int	srtt;
26 		int	sdrtt;
27 		fsid_t	fsid;
28 		struct timeval tstamp;
29 	} rttl[NFSRTTLOGSIZ];
30 };
31