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 */
48 struct sockaddr_storage cl_addr; /* server identifier */
49 size_t cl_addrlen;
50 char * cl_hostname; /* hostname of server */
51 char * cl_acceptor; /* GSSAPI acceptor name */
52 struct list_head cl_share_link; /* link in global client list */
53 struct list_head cl_superblocks; /* List of nfs_server structs */
55 struct rpc_clnt * cl_rpcclient;
56 const struct nfs_rpc_ops *rpc_ops; /* NFS protocol vector */
57 int cl_proto; /* Network transport protocol */
58 struct nfs_subversion * cl_nfs_mod; /* pointer to nfs version module */
60 u32 cl_minorversion;/* NFSv4 minorversion */
61 struct rpc_cred *cl_machine_cred;
64 struct list_head cl_ds_clients; /* auth flavor data servers */
65 u64 cl_clientid; /* constant */
66 nfs4_verifier cl_confirm; /* Clientid verifier */
67 unsigned long cl_state;
69 spinlock_t cl_lock;
71 unsigned long cl_lease_time;
72 unsigned long cl_last_renewal;
73 struct delayed_work cl_renewd;
75 struct rpc_wait_queue cl_rpcwaitq;
78 struct idmap * cl_idmap;
81 const char * cl_owner_id;
83 u32 cl_cb_ident; /* v4.0 callback identifier */
84 const struct nfs4_minor_version_ops *cl_mvops;
85 unsigned long cl_mig_gen;
88 struct nfs4_slot_table *cl_slot_tbl;
91 u32 cl_seqid;
93 u32 cl_exchange_flags;
94 struct nfs4_session *cl_session; /* shared session */
95 bool cl_preserve_clid;
96 struct nfs41_server_owner *cl_serverowner;
97 struct nfs41_server_scope *cl_serverscope;
98 struct nfs41_impl_id *cl_implid;
100 unsigned long cl_sp4_flags;
131 struct nfs_client * nfs_client; /* shared client and NFS4 state */ argument