Received: by 2002:a05:6a10:8c0a:0:0:0:0 with SMTP id go10csp479384pxb; Thu, 21 Jan 2021 11:38:19 -0800 (PST) X-Google-Smtp-Source: ABdhPJxblA2iYnb37EnTtu74kjsBdp5gUKdEChCfKPev+CDMOGBTU/7QzUicJFYYY4p6Y0NTNaNJ X-Received: by 2002:a50:a684:: with SMTP id e4mr582185edc.148.1611257899463; Thu, 21 Jan 2021 11:38:19 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1611257899; cv=none; d=google.com; s=arc-20160816; b=BvjQ+T69TrzTxhv+7+gnrTuwACP8ckaMN8iUK5pbLJ9CTxr3x1rBrb95pFS7P8D/uT P+d233jG1LebkzpzhemOC+HzxK8KC0s3hz8RWoQn3ZsVLLiImEY7SkyFHDKhIqstZ+Y3 qoGq+MWDParlZgev2AG0BwWHQCjeFKEEkk1ntbnhZMcatVqyMMvrZzJyZirn0p1w66VO lCgJQHCgEeJR5FSvtQ6xL7mkTswmpvISOaM5kS9p+p47R36CmWAz3duLh2kJBz5aMund 3+QLbu5K1SEx9Oa74w8hDEyTTZI91OQkETPoWegrMjY3qkHmMNisoxxtq3iW0gowN3// 2ksA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:references:in-reply-to:message-id:date:subject :cc:to:from:dkim-filter; bh=Dhgz4LSmEQT7eG0+TEBtwS1XRyW0k6JPcq+ea7NntKM=; b=GBChA7On2du71H1II88jn0BN5ovGAJQ+/nx7/awND6EokiObKzKIas1ztXoa/hwz5j b4Aj02Bq1loLoZSG6Rnd1Zo1JdfGD2xNRFBhMYftMmwXu9AQJ79R4i47wkz2eWWLoxBJ iTLYAmDqr3laqoSfmay4WXqzvZ/s/z04mAhqziL1OAJMAw8gJrwo9uZV1eCELGEd4xPj mcqKs32O0/8cz3IBqAIgw59HFKQm0F6H4aoTCd07ekbYe8vmKNrTCmySCbvSSehD/hrD w1OP5U21Kz/woa92FhTfXPaxDVs1vihndinyoeA3T8VEdyiY/Mbj2Bkz5tihL79d0FFm 1VZA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-nfs-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-nfs-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=redhat.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id k14si2664061edj.608.2021.01.21.11.37.55; Thu, 21 Jan 2021 11:38:19 -0800 (PST) Received-SPF: pass (google.com: domain of linux-nfs-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-nfs-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-nfs-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=redhat.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727434AbhAUTda (ORCPT + 99 others); Thu, 21 Jan 2021 14:33:30 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52784 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726769AbhAUSve (ORCPT ); Thu, 21 Jan 2021 13:51:34 -0500 Received: from fieldses.org (fieldses.org [IPv6:2600:3c00:e000:2f7::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4B9B5C0617AA for ; Thu, 21 Jan 2021 10:50:00 -0800 (PST) Received: by fieldses.org (Postfix, from userid 2815) id CFFE06F0A; Thu, 21 Jan 2021 13:49:58 -0500 (EST) DKIM-Filter: OpenDKIM Filter v2.11.0 fieldses.org CFFE06F0A From: "J. Bruce Fields" To: Chuck Lever Cc: linux-nfs@vger.kernel.org, "J. Bruce Fields" Subject: [PATCH 9/9] nfsd: cstate->session->se_client -> cstate->clp Date: Thu, 21 Jan 2021 13:49:55 -0500 Message-Id: <1611254995-23131-9-git-send-email-bfields@redhat.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1611254995-23131-1-git-send-email-bfields@redhat.com> References: <6D288689-85E5-4E3E-9117-B71FB45FFABB@oracle.com> <1611254995-23131-1-git-send-email-bfields@redhat.com> Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org From: "J. Bruce Fields" I'm not sure why we're writing this out the hard way in so many places. Signed-off-by: J. Bruce Fields --- fs/nfsd/nfs4proc.c | 5 ++--- fs/nfsd/nfs4state.c | 16 ++++++++-------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c index 567af1f10d2c..f63a12a5278a 100644 --- a/fs/nfsd/nfs4proc.c +++ b/fs/nfsd/nfs4proc.c @@ -373,8 +373,7 @@ nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, * Before RECLAIM_COMPLETE done, server should deny new lock */ if (nfsd4_has_session(cstate) && - !test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, - &cstate->session->se_client->cl_flags) && + !test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, &cstate->clp->cl_flags) && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS) return nfserr_grace; @@ -1882,7 +1881,7 @@ nfsd4_getdeviceinfo(struct svc_rqst *rqstp, nfserr = nfs_ok; if (gdp->gd_maxcount != 0) { nfserr = ops->proc_getdeviceinfo(exp->ex_path.mnt->mnt_sb, - rqstp, cstate->session->se_client, gdp); + rqstp, cstate->clp, gdp); } gdp->gd_notify_types &= ops->notify_types; diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index 860805ffde1a..7b865ed7c9d7 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c @@ -3891,6 +3891,7 @@ nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, union nfsd4_op_u *u) { struct nfsd4_reclaim_complete *rc = &u->reclaim_complete; + struct nfs4_client *clp = cstate->clp; __be32 status = 0; if (rc->rca_one_fs) { @@ -3904,12 +3905,11 @@ nfsd4_reclaim_complete(struct svc_rqst *rqstp, } status = nfserr_complete_already; - if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, - &cstate->session->se_client->cl_flags)) + if (test_and_set_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, &clp->cl_flags)) goto out; status = nfserr_stale_clientid; - if (is_client_expired(cstate->session->se_client)) + if (is_client_expired(clp)) /* * The following error isn't really legal. * But we only get here if the client just explicitly @@ -3920,8 +3920,8 @@ nfsd4_reclaim_complete(struct svc_rqst *rqstp, goto out; status = nfs_ok; - nfsd4_client_record_create(cstate->session->se_client); - inc_reclaim_complete(cstate->session->se_client); + nfsd4_client_record_create(clp); + inc_reclaim_complete(clp); out: return status; } @@ -5917,7 +5917,7 @@ nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, { struct nfsd4_test_stateid *test_stateid = &u->test_stateid; struct nfsd4_test_stateid_id *stateid; - struct nfs4_client *cl = cstate->session->se_client; + struct nfs4_client *cl = cstate->clp; list_for_each_entry(stateid, &test_stateid->ts_stateid_list, ts_id_list) stateid->ts_id_status = @@ -5963,7 +5963,7 @@ nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, stateid_t *stateid = &free_stateid->fr_stateid; struct nfs4_stid *s; struct nfs4_delegation *dp; - struct nfs4_client *cl = cstate->session->se_client; + struct nfs4_client *cl = cstate->clp; __be32 ret = nfserr_bad_stateid; spin_lock(&cl->cl_lock); @@ -6692,7 +6692,7 @@ nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, if (nfsd4_has_session(cstate)) /* See rfc 5661 18.10.3: given clientid is ignored: */ memcpy(&lock->lk_new_clientid, - &cstate->session->se_client->cl_clientid, + &cstate->clp->cl_clientid, sizeof(clientid_t)); /* validate and update open stateid and open seqid */ -- 2.29.2