From: Jeff Layton Date: Mon, 28 Jan 2013 19:41:09 +0000 (-0500) Subject: nfsd: get rid of RC_INTR X-Git-Tag: v3.9-rc1~40^2~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=09662d58d5a2d75c8c29558dda4fc5134ef14b25;p=profile%2Fivi%2Fkernel-x86-ivi.git nfsd: get rid of RC_INTR The reply cache code never returns this status. Signed-off-by: Jeff Layton Signed-off-by: J. Bruce Fields --- diff --git a/fs/nfsd/cache.h b/fs/nfsd/cache.h index 2cac76c..f8c6df8 100644 --- a/fs/nfsd/cache.h +++ b/fs/nfsd/cache.h @@ -50,8 +50,7 @@ enum { enum { RC_DROPIT, RC_REPLY, - RC_DOIT, - RC_INTR + RC_DOIT }; /* diff --git a/fs/nfsd/nfssvc.c b/fs/nfsd/nfssvc.c index cee62ab..40cb1cb 100644 --- a/fs/nfsd/nfssvc.c +++ b/fs/nfsd/nfssvc.c @@ -652,7 +652,6 @@ nfsd_dispatch(struct svc_rqst *rqstp, __be32 *statp) /* Check whether we have this call in the cache. */ switch (nfsd_cache_lookup(rqstp)) { - case RC_INTR: case RC_DROPIT: return 0; case RC_REPLY: