Lines Matching defs:nfsmount

52 struct	nfsmount {  struct
53 struct nfsmount_common nm_com; /* Common fields for nlm */ argument
54 int nm_numgrps; /* Max. size of groupslist */
55 u_char nm_fh[NFSX_V4FH]; /* File handle of root dir */
56 int nm_fhsize; /* Size of root file handle */
57 int nm_sotype; /* Type of socket */
58 int nm_soproto; /* and protocol */
59 int nm_soflags; /* pr_flags for socket protocol */
60 struct sockaddr *nm_nam; /* Addr of server */
61 int nm_deadthresh; /* Threshold of timeouts-->dead server*/
62 int nm_rsize; /* Max size of read rpc */
63 int nm_wsize; /* Max size of write rpc */
64 int nm_readdirsize; /* Size of a readdir rpc */
65 int nm_readahead; /* Num. of blocks to readahead */
66 int nm_wcommitsize; /* Max size of commit for write */
67 int nm_acdirmin; /* Directory attr cache min lifetime */
68 int nm_acdirmax; /* Directory attr cache max lifetime */
69 int nm_acregmin; /* Reg file attr cache min lifetime */
70 int nm_acregmax; /* Reg file attr cache max lifetime */
71 u_char nm_verf[NFSX_V3WRITEVERF]; /* V3 write verifier */
73 short nm_bufqlen; /* number of buffers in queue */
74 short nm_bufqwant; /* process wants to add to the queue */
75 int nm_bufqiods; /* number of iods processing queue */
76 u_int64_t nm_maxfilesize; /* maximum file size */
77 struct nfs_rpcops *nm_rpcops;
78 int nm_tprintf_initial_delay; /* initial delay */
79 int nm_tprintf_delay; /* interval for messages */
80 int nm_secflavor; /* auth flavor to use for rpc */
81 struct __rpc_client *nm_client;
82 struct rpc_timers nm_timers[NFS_MAX_TIMER]; /* RTT Timers for rpcs */
83 char nm_principal[MNAMELEN]; /* GSS-API principal of server */
107 * Convert mount ptr to nfsmount ptr. argument