Lines Matching defs:conf
3081 struct nfs4_client *conf, *new;
3151 conf = find_confirmed_client_by_name(&exid->clname, nn);
3152 if (conf) {
3153 bool creds_match = same_creds(&conf->cl_cred, &rqstp->rq_cred);
3154 bool verfs_match = same_verf(&verf, &conf->cl_verifier);
3157 if (!clp_used_exchangeid(conf)) { /* buggy client */
3161 if (!nfsd4_mach_creds_match(conf, rqstp)) {
3178 if (client_has_state(conf)) {
3185 conf->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
3189 conf = NULL;
3204 if (conf) {
3205 status = mark_client_expired_locked(conf);
3214 swap(new, conf);
3216 exid->clientid.cl_boot = conf->cl_clientid.cl_boot;
3217 exid->clientid.cl_id = conf->cl_clientid.cl_id;
3219 exid->seqid = conf->cl_cs_slot.sl_seqid + 1;
3220 nfsd4_set_ex_flags(conf, exid);
3223 conf->cl_cs_slot.sl_seqid, conf->cl_exchange_flags);
3380 struct nfs4_client *conf, *unconf;
3409 conf = find_confirmed_client(&cr_ses->clientid, true, nn);
3410 WARN_ON_ONCE(conf && unconf);
3412 if (conf) {
3414 if (!nfsd4_mach_creds_match(conf, rqstp))
3416 cs_slot = &conf->cl_cs_slot;
3448 conf = unconf;
3459 init_session(rqstp, new, conf, cr_ses);
3883 struct nfs4_client *conf, *unconf;
3890 conf = find_confirmed_client(&dc->clientid, true, nn);
3891 WARN_ON_ONCE(conf && unconf);
3893 if (conf) {
3894 if (client_has_state(conf)) {
3898 status = mark_client_expired_locked(conf);
3901 clp = conf;
3968 struct nfs4_client *conf, *new;
3978 conf = find_confirmed_client_by_name(&clname, nn);
3979 if (conf && client_has_state(conf)) {
3982 if (clp_used_exchangeid(conf))
3984 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
3985 trace_nfsd_clid_inuse_err(conf);
3993 if (conf && same_verf(&conf->cl_verifier, &clverifier)) {
3994 copy_clid(new, conf);
4022 struct nfs4_client *conf, *unconf;
4033 conf = find_confirmed_client(clid, false, nn);
4045 if (conf && !same_creds(&conf->cl_cred, &rqstp->rq_cred))
4049 if (conf && same_verf(&confirm, &conf->cl_confirm)) {
4057 if (conf) { /* case 1: callback update */
4060 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
4078 conf = unconf;
4080 get_client_locked(conf);
4082 nfsd4_probe_callback(conf);
4084 put_client_renew_locked(conf);