Commit 09662d58 authored by Jeff Layton's avatar Jeff Layton Committed by J. Bruce Fields

nfsd: get rid of RC_INTR

The reply cache code never returns this status.
Signed-off-by: default avatarJeff Layton <jlayton@redhat.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent 6dc88895
...@@ -50,8 +50,7 @@ enum { ...@@ -50,8 +50,7 @@ enum {
enum { enum {
RC_DROPIT, RC_DROPIT,
RC_REPLY, RC_REPLY,
RC_DOIT, RC_DOIT
RC_INTR
}; };
/* /*
......
...@@ -652,7 +652,6 @@ nfsd_dispatch(struct svc_rqst *rqstp, __be32 *statp) ...@@ -652,7 +652,6 @@ nfsd_dispatch(struct svc_rqst *rqstp, __be32 *statp)
/* Check whether we have this call in the cache. */ /* Check whether we have this call in the cache. */
switch (nfsd_cache_lookup(rqstp)) { switch (nfsd_cache_lookup(rqstp)) {
case RC_INTR:
case RC_DROPIT: case RC_DROPIT:
return 0; return 0;
case RC_REPLY: case RC_REPLY:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment