> On Sep 25, 2020, at 4:48 PM, J. Bruce Fields <bfields@xxxxxxxxxxxx> wrote: > > On Fri, Sep 25, 2020 at 03:03:42PM -0400, Chuck Lever wrote: >> From: J. Bruce Fields <bfields@xxxxxxxxxx> >> >> Since only the v4 code cares about it, maybe it's better to leave >> rq_lease_breaker out of the common dispatch code? >> >> Signed-off-by: J. Bruce Fields <bfields@xxxxxxxxxx> >> Signed-off-by: Chuck Lever <chuck.lever@xxxxxxxxxx> >> --- >> fs/nfsd/nfs4state.c | 3 +++ >> fs/nfsd/nfs4xdr.c | 1 + >> fs/nfsd/nfssvc.c | 2 -- >> 3 files changed, 4 insertions(+), 2 deletions(-) >> >> Hey Bruce- >> >> This seems to work a little better than the patch you sent me >> this morning. > > Oops, right, I should have warned that was untested! I don't know how > it got past me that I was trying to read rqst before it was set.... > > The other two lines aren't needed, though. > > (The only place we read rq_lease_breaker is in nfsd_breaker_owns_lease(), > and only after we've checked that we're running as an nfsd thread > processing an NFSv4 rpc. > > Such a thread shouldn't touch the filesystem and trigger this callback > until it's in nfsd4_proc_compound. Which sets rq_lease_breaker at the > start.) > > --b. > > commit 4abef2c530f7 > Author: J. Bruce Fields <bfields@xxxxxxxxxx> > Date: Fri Sep 25 10:12:39 2020 -0400 > > nfsd: rq_lease_breaker cleanup > > Since only the v4 code cares about it, maybe it's better to leave > rq_lease_breaker out of the common dispatch code? > > Signed-off-by: J. Bruce Fields <bfields@xxxxxxxxxx> > > diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c > index 62afcae18e17..c13b04718a3f 100644 > --- a/fs/nfsd/nfs4state.c > +++ b/fs/nfsd/nfs4state.c > @@ -4598,6 +4598,9 @@ static bool nfsd_breaker_owns_lease(struct file_lock *fl) > if (!i_am_nfsd()) > return NULL; > rqst = kthread_data(current); > + /* Note rq_prog == NFS_ACL_PROGRAM is also possible: */ > + if (rqst->rq_prog != NFS_PROGRAM || rqst->rq_vers < 4) > + return NULL; Am I missing a patch that removes if (!rqst->rq_lease_breaker) return NULL; > clp = *(rqst->rq_lease_breaker); > return dl->dl_stid.sc_client == clp; > } > diff --git a/fs/nfsd/nfssvc.c b/fs/nfsd/nfssvc.c > index b603dfcdd361..8d6f6f4c8b28 100644 > --- a/fs/nfsd/nfssvc.c > +++ b/fs/nfsd/nfssvc.c > @@ -1016,7 +1016,6 @@ nfsd_dispatch(struct svc_rqst *rqstp, __be32 *statp) > *statp = rpc_garbage_args; > return 1; > } > - rqstp->rq_lease_breaker = NULL; > /* > * Give the xdr decoder a chance to change this if it wants > * (necessary in the NFSv4.0 compound case) -- Chuck Lever