nfs_vfree prototype changed for vn_if
[unix-history] / usr / src / sys / nfs / nfsrtt.h
CommitLineData
8cf41015
KM
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) %G%
11 */
12
13/*
14 * Definitions for client side performance monitor.
15 */
16#define NFSRTTLOGSIZ 128
17struct 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};