Lines Matching defs:nfs_client

26 struct nfs_client {  struct
27 atomic_t cl_count;
28 atomic_t cl_mds_count;
29 int cl_cons_state; /* current construction state (-ve: init error) */
33 unsigned long cl_res_state; /* NFS resources state */
39 unsigned long cl_flags; /* behavior switches */
45 struct sockaddr_storage cl_addr; /* server identifier */
46 size_t cl_addrlen;
47 char * cl_hostname; /* hostname of server */
48 char * cl_acceptor; /* GSSAPI acceptor name */
49 struct list_head cl_share_link; /* link in global client list */
50 struct list_head cl_superblocks; /* List of nfs_server structs */
52 struct rpc_clnt * cl_rpcclient;
53 const struct nfs_rpc_ops *rpc_ops; /* NFS protocol vector */
54 int cl_proto; /* Network transport protocol */
55 struct nfs_subversion * cl_nfs_mod; /* pointer to nfs version module */
57 u32 cl_minorversion;/* NFSv4 minorversion */
58 struct rpc_cred *cl_machine_cred;
61 struct list_head cl_ds_clients; /* auth flavor data servers */
62 u64 cl_clientid; /* constant */
63 nfs4_verifier cl_confirm; /* Clientid verifier */
64 unsigned long cl_state;
66 spinlock_t cl_lock;
68 unsigned long cl_lease_time;
69 unsigned long cl_last_renewal;
70 struct delayed_work cl_renewd;
72 struct rpc_wait_queue cl_rpcwaitq;
75 struct idmap * cl_idmap;
78 const char * cl_owner_id;
80 u32 cl_cb_ident; /* v4.0 callback identifier */
81 const struct nfs4_minor_version_ops *cl_mvops;
82 unsigned long cl_mig_gen;
85 struct nfs4_slot_table *cl_slot_tbl;
88 u32 cl_seqid;
90 u32 cl_exchange_flags;
91 struct nfs4_session *cl_session; /* shared session */
92 bool cl_preserve_clid;
93 struct nfs41_server_owner *cl_serverowner;
94 struct nfs41_server_scope *cl_serverscope;
95 struct nfs41_impl_id *cl_implid;
97 unsigned long cl_sp4_flags;
123 struct nfs_client * nfs_client; /* shared client and NFS4 state */ argument