]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
nfsd/sunrpc: move rq_cachetype into struct nfsd_thread_local_info
authorJeff Layton <jlayton@kernel.org>
Tue, 13 Jan 2026 18:37:40 +0000 (13:37 -0500)
committerChuck Lever <chuck.lever@oracle.com>
Mon, 30 Mar 2026 01:25:09 +0000 (21:25 -0400)
The svc_rqst->rq_cachetype field is only accessed by nfsd. Move it
into the nfsd_thread_local_info instead.

Signed-off-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: Benjamin Coddington <bcodding@hammerspace.com>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
fs/nfsd/nfs4xdr.c
fs/nfsd/nfscache.c
fs/nfsd/nfsd.h
fs/nfsd/nfssvc.c
include/linux/sunrpc/svc.h

index 9d234913100b9b3c5b3f19b307c3d80bcc517b2a..690f7a3122ec51d2e69e4bba7502fdf27a8ca490 100644 (file)
@@ -2598,6 +2598,7 @@ nfsd4_opnum_in_range(struct nfsd4_compoundargs *argp, struct nfsd4_op *op)
 static bool
 nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
 {
+       struct nfsd_thread_local_info *ntli = argp->rqstp->rq_private;
        struct nfsd4_op *op;
        bool cachethis = false;
        int auth_slack= argp->rqstp->rq_auth_slack;
@@ -2690,7 +2691,7 @@ nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
        if (argp->minorversion)
                cachethis = false;
        svc_reserve_auth(argp->rqstp, max_reply + readbytes);
-       argp->rqstp->rq_cachetype = cachethis ? RC_REPLBUFF : RC_NOCACHE;
+       ntli->ntli_cachetype = cachethis ? RC_REPLBUFF : RC_NOCACHE;
 
        argp->splice_ok = nfsd_read_splice_ok(argp->rqstp);
        if (readcount > 1 || max_reply > PAGE_SIZE - auth_slack)
index ab13ee9c7fd8421ce6f66e3dc20d657b6442fbb8..154468ceccdc12dbeab3a1f19086e8ac9d37a223 100644 (file)
@@ -467,10 +467,11 @@ int nfsd_cache_lookup(struct svc_rqst *rqstp, unsigned int start,
                      unsigned int len, struct nfsd_cacherep **cacherep)
 {
        struct nfsd_net         *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
+       struct nfsd_thread_local_info *ntli = rqstp->rq_private;
        struct nfsd_cacherep    *rp, *found;
        __wsum                  csum;
        struct nfsd_drc_bucket  *b;
-       int type = rqstp->rq_cachetype;
+       int type = ntli->ntli_cachetype;
        LIST_HEAD(dispose);
        int rtn = RC_DOIT;
 
index 938906c6d10cd65e7e3a1bc889b4fdcb56918f6f..a2e35a4fa105380c2d99cb0865003e0f7f4a8e8d 100644 (file)
@@ -84,6 +84,7 @@ extern const struct seq_operations nfs_exports_op;
 
 struct nfsd_thread_local_info {
        struct nfs4_client      **ntli_lease_breaker;
+       int                     ntli_cachetype;
 };
 
 /*
index fd979e5392a14d0cc11c154e990b9ec4c79be2d0..4f1ab3222a4d472f93388580bd0f14f0d9f93fd6 100644 (file)
@@ -972,6 +972,7 @@ nfsd(void *vrqstp)
  */
 int nfsd_dispatch(struct svc_rqst *rqstp)
 {
+       struct nfsd_thread_local_info *ntli = rqstp->rq_private;
        const struct svc_procedure *proc = rqstp->rq_procinfo;
        __be32 *statp = rqstp->rq_accept_statp;
        struct nfsd_cacherep *rp;
@@ -982,7 +983,7 @@ int nfsd_dispatch(struct svc_rqst *rqstp)
         * Give the xdr decoder a chance to change this if it wants
         * (necessary in the NFSv4.0 compound case)
         */
-       rqstp->rq_cachetype = proc->pc_cachetype;
+       ntli->ntli_cachetype = proc->pc_cachetype;
 
        /*
         * ->pc_decode advances the argument stream past the NFS
@@ -1027,7 +1028,7 @@ int nfsd_dispatch(struct svc_rqst *rqstp)
         */
        smp_store_release(&rqstp->rq_status_counter, rqstp->rq_status_counter + 1);
 
-       nfsd_cache_update(rqstp, rp, rqstp->rq_cachetype, nfs_reply);
+       nfsd_cache_update(rqstp, rp, ntli->ntli_cachetype, nfs_reply);
 out_cached_reply:
        return 1;
 
index ab8237ba9596e9f31e2c42abedec435a23162b40..62152e4f3bccee3e7d4d99ad08d6a50ca1252c1e 100644 (file)
@@ -218,7 +218,6 @@ struct svc_rqst {
        u32                     rq_vers;        /* program version */
        u32                     rq_proc;        /* procedure number */
        u32                     rq_prot;        /* IP protocol */
-       int                     rq_cachetype;   /* catering to nfsd */
        unsigned long           rq_flags;       /* flags field */
        ktime_t                 rq_qtime;       /* enqueue time */