diff options
Diffstat (limited to 'fs/nfs/callback_proc.c')
| -rw-r--r-- | fs/nfs/callback_proc.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/callback_proc.c b/fs/nfs/callback_proc.c index 43926add945..54cea8ad5a7 100644 --- a/fs/nfs/callback_proc.c +++ b/fs/nfs/callback_proc.c @@ -339,7 +339,7 @@ validate_seqid(struct nfs4_slot_table *tbl, struct cb_sequenceargs * args)  	dprintk("%s enter. slotid %d seqid %d\n",  		__func__, args->csa_slotid, args->csa_sequenceid); -	if (args->csa_slotid > NFS41_BC_MAX_CALLBACKS) +	if (args->csa_slotid >= NFS41_BC_MAX_CALLBACKS)  		return htonl(NFS4ERR_BADSLOT);  	slot = tbl->slots + args->csa_slotid;  |