Deleted Added
full compact
nfsmount.h (68711) nfsmount.h (83651)
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 * $FreeBSD: head/sys/nfsclient/nfsmount.h 68711 2000-11-14 08:00:39Z mckusick $
37 * $FreeBSD: head/sys/nfsclient/nfsmount.h 83651 2001-09-18 23:32:09Z peter $
38 */
39
38 */
39
40#ifndef _NFSCLIENT_NFSMOUNT_H_
41#define _NFSCLIENT_NFSMOUNT_H_
40
42
41#ifndef _NFS_NFSMOUNT_H_
42#define _NFS_NFSMOUNT_H_
43
44/*
45 * Mount structure.
46 * One allocated on every NFS mount.
47 * Holds NFS specific information for mount.
48 */
49struct nfsmount {
50 int nm_flag; /* Flags for soft/hard... */
51 int nm_state; /* Internal state flags */

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

65 int nm_sent; /* Request send count */
66 int nm_cwnd; /* Request send window */
67 int nm_timeouts; /* Request timeouts */
68 int nm_deadthresh; /* Threshold of timeouts-->dead server*/
69 int nm_rsize; /* Max size of read rpc */
70 int nm_wsize; /* Max size of write rpc */
71 int nm_readdirsize; /* Size of a readdir rpc */
72 int nm_readahead; /* Num. of blocks to readahead */
43/*
44 * Mount structure.
45 * One allocated on every NFS mount.
46 * Holds NFS specific information for mount.
47 */
48struct nfsmount {
49 int nm_flag; /* Flags for soft/hard... */
50 int nm_state; /* Internal state flags */

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

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*/
68 int nm_rsize; /* Max size of read rpc */
69 int nm_wsize; /* Max size of write rpc */
70 int nm_readdirsize; /* Size of a readdir rpc */
71 int nm_readahead; /* Num. of blocks to readahead */
73 int nm_leaseterm; /* Term (sec) for NQNFS lease */
74 int nm_acdirmin; /* Directory attr cache min lifetime */
75 int nm_acdirmax; /* Directory attr cache max lifetime */
76 int nm_acregmin; /* Reg file attr cache min lifetime */
77 int nm_acregmax; /* Reg file attr cache max lifetime */
72 int nm_acdirmin; /* Directory attr cache min lifetime */
73 int nm_acdirmax; /* Directory attr cache max lifetime */
74 int nm_acregmin; /* Reg file attr cache min lifetime */
75 int nm_acregmax; /* Reg file attr cache max lifetime */
78 TAILQ_HEAD(timhd, nfsnode) nm_timerhead; /* Head of lease timer queue */
79 struct vnode *nm_inprog; /* Vnode in prog by nqnfs_clientd() */
80 uid_t nm_authuid; /* Uid for authenticator */
81 int nm_authtype; /* Authenticator type */
82 int nm_authlen; /* and length */
83 char *nm_authstr; /* Authenticator string */
84 char *nm_verfstr; /* and the verifier */
85 int nm_verflen;
86 u_char nm_verf[NFSX_V3WRITEVERF]; /* V3 write verifier */
76 u_char nm_verf[NFSX_V3WRITEVERF]; /* V3 write verifier */
87 NFSKERBKEY_T nm_key; /* and the session key */
88 int nm_numuids; /* Number of nfsuid mappings */
89 TAILQ_HEAD(, nfsuid) nm_uidlruhead; /* Lists of nfsuid mappings */
90 LIST_HEAD(, nfsuid) nm_uidhashtbl[NFS_MUIDHASHSIZ];
91 TAILQ_HEAD(, buf) nm_bufq; /* async io buffer queue */
92 short nm_bufqlen; /* number of buffers in queue */
93 short nm_bufqwant; /* process wants to add to the queue */
94 int nm_bufqiods; /* number of iods processing queue */
95 u_int64_t nm_maxfilesize; /* maximum file size */
96};
97
98#if defined(_KERNEL)
99/*
100 * Convert mount ptr to nfsmount ptr.
101 */
102#define VFSTONFS(mp) ((struct nfsmount *)((mp)->mnt_data))
103
104#endif
105
106#endif
77 TAILQ_HEAD(, buf) nm_bufq; /* async io buffer queue */
78 short nm_bufqlen; /* number of buffers in queue */
79 short nm_bufqwant; /* process wants to add to the queue */
80 int nm_bufqiods; /* number of iods processing queue */
81 u_int64_t nm_maxfilesize; /* maximum file size */
82};
83
84#if defined(_KERNEL)
85/*
86 * Convert mount ptr to nfsmount ptr.
87 */
88#define VFSTONFS(mp) ((struct nfsmount *)((mp)->mnt_data))
89
90#endif
91
92#endif