Deleted Added
full compact
nfsmount.h (25663) nfsmount.h (28270)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. 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 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)nfsmount.h 8.3 (Berkeley) 3/30/95
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. 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 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)nfsmount.h 8.3 (Berkeley) 3/30/95
37 * $Id: nfsmount.h,v 1.11 1997/02/22 09:42:48 peter Exp $
37 * $Id: nfsmount.h,v 1.12 1997/05/10 16:12:03 dfr Exp $
38 */
39
40
41#ifndef _NFS_NFSMOUNT_H_
42#define _NFS_NFSMOUNT_H_
43
44/*
45 * Mount structure.

--- 5 unchanged lines hidden (view full) ---

51 struct mount *nm_mountp; /* Vfs structure for this filesystem */
52 int nm_numgrps; /* Max. size of groupslist */
53 u_char nm_fh[NFSX_V3FHMAX]; /* File handle of root dir */
54 int nm_fhsize; /* Size of root file handle */
55 struct socket *nm_so; /* Rpc socket */
56 int nm_sotype; /* Type of socket */
57 int nm_soproto; /* and protocol */
58 int nm_soflags; /* pr_flags for socket protocol */
38 */
39
40
41#ifndef _NFS_NFSMOUNT_H_
42#define _NFS_NFSMOUNT_H_
43
44/*
45 * Mount structure.

--- 5 unchanged lines hidden (view full) ---

51 struct mount *nm_mountp; /* Vfs structure for this filesystem */
52 int nm_numgrps; /* Max. size of groupslist */
53 u_char nm_fh[NFSX_V3FHMAX]; /* File handle of root dir */
54 int nm_fhsize; /* Size of root file handle */
55 struct socket *nm_so; /* Rpc socket */
56 int nm_sotype; /* Type of socket */
57 int nm_soproto; /* and protocol */
58 int nm_soflags; /* pr_flags for socket protocol */
59 struct mbuf *nm_nam; /* Addr of server */
59 struct sockaddr *nm_nam; /* Addr of server */
60 int nm_timeo; /* Init timer for NFSMNT_DUMBTIMR */
61 int nm_retry; /* Max retries */
62 int nm_srtt[4]; /* Timers for rpcs */
63 int nm_sdrtt[4];
64 int nm_sent; /* Request send count */
65 int nm_cwnd; /* Request send window */
66 int nm_timeouts; /* Request timeouts */
67 int nm_deadthresh; /* Threshold of timeouts-->dead server*/

--- 33 unchanged lines hidden ---
60 int nm_timeo; /* Init timer for NFSMNT_DUMBTIMR */
61 int nm_retry; /* Max retries */
62 int nm_srtt[4]; /* Timers for rpcs */
63 int nm_sdrtt[4];
64 int nm_sent; /* Request send count */
65 int nm_cwnd; /* Request send window */
66 int nm_timeouts; /* Request timeouts */
67 int nm_deadthresh; /* Threshold of timeouts-->dead server*/

--- 33 unchanged lines hidden ---