diff options
Diffstat (limited to 'fs/nfsd/nfscache.c')
| -rw-r--r-- | fs/nfsd/nfscache.c | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/nfsd/nfscache.c b/fs/nfsd/nfscache.c index 2cbac34a55d..da3dbd0f897 100644 --- a/fs/nfsd/nfscache.c +++ b/fs/nfsd/nfscache.c @@ -120,7 +120,6 @@ hash_refile(struct svc_cacherep *rp)  int  nfsd_cache_lookup(struct svc_rqst *rqstp)  { -	struct hlist_node	*hn;  	struct hlist_head 	*rh;  	struct svc_cacherep	*rp;  	__be32			xid = rqstp->rq_xid; @@ -141,7 +140,7 @@ nfsd_cache_lookup(struct svc_rqst *rqstp)  	rtn = RC_DOIT;  	rh = &cache_hash[request_hash(xid)]; -	hlist_for_each_entry(rp, hn, rh, c_hash) { +	hlist_for_each_entry(rp, rh, c_hash) {  		if (rp->c_state != RC_UNUSED &&  		    xid == rp->c_xid && proc == rp->c_proc &&  		    proto == rp->c_prot && vers == rp->c_vers &&  |