NFSv4: Fix a slot leak in nfs40_sequence_done
authorTrond Myklebust <trond.myklebust@primarydata.com>
Wed, 29 Jan 2014 17:12:15 +0000 (12:12 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 13 Feb 2014 21:55:34 +0000 (13:55 -0800)
commit59a32b595cd6b8033731e83271fe9a6b463fb290
tree0605bfd20da4f181263b065472c9eaaba571eb66
parent526fe1ef46eea9a8f2ea44635c106f4bbf0a0413
NFSv4: Fix a slot leak in nfs40_sequence_done

commit cab92c19821a814ecf5a5279e2699bf28e66caee upstream.

The check for whether or not we sent an RPC call in nfs40_sequence_done
is insufficient to decide whether or not we are holding a session slot,
and thus should not be used to decide when to free that slot.

This patch replaces the RPC_WAS_SENT() test with the correct test for
whether or not slot == NULL.

Cc: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/nfs/nfs4proc.c