Lines Matching defs:nfs_client
28 struct nfs_client { struct
29 refcount_t cl_count;
30 atomic_t cl_mds_count;
31 int cl_cons_state; /* current construction state (-ve: init error) */
35 unsigned long cl_res_state; /* NFS resources state */
41 unsigned long cl_flags; /* behavior switches */
52 struct sockaddr_storage cl_addr; /* server identifier */
53 size_t cl_addrlen;
54 char * cl_hostname; /* hostname of server */
55 char * cl_acceptor; /* GSSAPI acceptor name */
56 struct list_head cl_share_link; /* link in global client list */
57 struct list_head cl_superblocks; /* List of nfs_server structs */
59 struct rpc_clnt * cl_rpcclient;
60 const struct nfs_rpc_ops *rpc_ops; /* NFS protocol vector */
61 int cl_proto; /* Network transport protocol */
62 struct nfs_subversion * cl_nfs_mod; /* pointer to nfs version module */
64 u32 cl_minorversion;/* NFSv4 minorversion */
65 unsigned int cl_nconnect; /* Number of connections */
66 unsigned int cl_max_connect; /* max number of xprts allowed */
67 const char * cl_principal; /* used for machine cred */
68 struct xprtsec_parms cl_xprtsec; /* xprt security policy */
71 struct list_head cl_ds_clients; /* auth flavor data servers */
72 u64 cl_clientid; /* constant */
73 nfs4_verifier cl_confirm; /* Clientid verifier */
74 unsigned long cl_state;
76 spinlock_t cl_lock;
78 unsigned long cl_lease_time;
79 unsigned long cl_last_renewal;
80 struct delayed_work cl_renewd;
82 struct rpc_wait_queue cl_rpcwaitq;
85 struct idmap * cl_idmap;
88 const char * cl_owner_id;
90 u32 cl_cb_ident; /* v4.0 callback identifier */
91 const struct nfs4_minor_version_ops *cl_mvops;
92 unsigned long cl_mig_gen;
95 struct nfs4_slot_table *cl_slot_tbl;
98 u32 cl_seqid;
100 u32 cl_exchange_flags;
101 struct nfs4_session *cl_session; /* shared session */
102 bool cl_preserve_clid;
103 struct nfs41_server_owner *cl_serverowner;
104 struct nfs41_server_scope *cl_serverscope;
105 struct nfs41_impl_id *cl_implid;
107 unsigned long cl_sp4_flags;
133 struct nfs_client * nfs_client; /* shared client and NFS4 state */ argument