On Nov. 10, 2008, 22:45 +0200, Benny Halevy <bhalevy@xxxxxxxxxxx> wrote: > From: Marc Eshel <eshel@xxxxxxxxxxxxxxx> > > Mark slot is NFS4_SLOT_AVAILABLE before exiting nfsd4_proc_compound > unless op->status == nfserr_dropit > > FIXME: bhalevy: verify slot gets freed eventually in the dropit case. > > Signed-off-by: Benny Halevy <bhalevy@xxxxxxxxxxx> review 11-12: code replaced by DRC > --- > fs/nfsd/nfs4proc.c | 9 ++++++++- > 1 files changed, 8 insertions(+), 1 deletions(-) > > diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c > index bfebeaa..876f285 100644 > --- a/fs/nfsd/nfs4proc.c > +++ b/fs/nfsd/nfs4proc.c > @@ -979,8 +979,15 @@ out_free: > #if defined(CONFIG_NFSD_V4_1) > if (current_ses) { > struct nfs41_slot *cs_slot = current_ses->cs_slot; > - if (cs_slot) > + if (cs_slot) { > + if (op && op->status != nfserr_dropit) { > + dprintk("%s: SET SLOT STATE TO AVAILABLE\n", > + __func__); > + nfs41_set_slot_state(cs_slot, > + NFS4_SLOT_AVAILABLE); > + } > nfs41_put_session(cs_slot->sl_session); > + } > kfree(current_ses); > } > #endif /* CONFIG_NFSD_V4_1 */ -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html