From: Andy Adamson Date: Fri, 17 Feb 2012 18:05:23 +0000 (-0500) Subject: NFSv4.1 set highest_used_slotid to NFS4_NO_SLOT X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=b6bf6e7d6f6fae1ddcae9e02dfe676bdc8fe892c;p=deliverable%2Flinux.git NFSv4.1 set highest_used_slotid to NFS4_NO_SLOT Signed-off-by: Andy Adamson Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c index 4e37818a34ef..c1111a37dc14 100644 --- a/fs/nfs/nfs4state.c +++ b/fs/nfs/nfs4state.c @@ -212,7 +212,7 @@ static void nfs4_end_drain_session(struct nfs_client *clp) static int nfs4_wait_on_slot_tbl(struct nfs4_slot_table *tbl) { spin_lock(&tbl->slot_tbl_lock); - if (tbl->highest_used_slotid != -1) { + if (tbl->highest_used_slotid != NFS4_NO_SLOT) { INIT_COMPLETION(tbl->complete); spin_unlock(&tbl->slot_tbl_lock); return wait_for_completion_interruptible(&tbl->complete);