summaryrefslogtreecommitdiffstats
path: root/fs/nfsd/cache.h
diff options
context:
space:
mode:
authorTrond Myklebust2018-03-28 18:18:01 +0200
committerJ. Bruce Fields2018-05-11 21:48:57 +0200
commit7e5d0e0de0a01d6aa3a4758dc303c2dcc603e49b (patch)
tree5d2e015211af1983e4d0e6c9e6a7297179d58f6d /fs/nfsd/cache.h
parentnfsd: make nfsd4_scsi_identify_device retry with a larger buffer (diff)
downloadkernel-qcow2-linux-7e5d0e0de0a01d6aa3a4758dc303c2dcc603e49b.tar.gz
kernel-qcow2-linux-7e5d0e0de0a01d6aa3a4758dc303c2dcc603e49b.tar.xz
kernel-qcow2-linux-7e5d0e0de0a01d6aa3a4758dc303c2dcc603e49b.zip
nfsd: Do not refuse to serve out of cache
Currently the knfsd replay cache appears to try to refuse replying to retries that come within 200ms of the cache entry being created. That makes limited sense in today's world of high speed TCP. After a TCP disconnection, a client can very easily reconnect and retry an rpc in less than 200ms. If this logic drops that retry, however, the client may be quite slow to retry again. This logic is original to the first reply cache implementation in 2.1, and may have made more sense for UDP clients that retried much more frequently. After this patch we will still drop on finding the original request still in progress. We may want to fix that as well at some point, though it's less likely. Note that svc_check_conn_limits is often the cause of those disconnections. We may want to fix that some day. Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com> Acked-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/cache.h')
-rw-r--r--fs/nfsd/cache.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/nfsd/cache.h b/fs/nfsd/cache.h
index 046b3f048757..b7559c6f2b97 100644
--- a/fs/nfsd/cache.h
+++ b/fs/nfsd/cache.h
@@ -67,11 +67,6 @@ enum {
RC_REPLBUFF,
};
-/*
- * If requests are retransmitted within this interval, they're dropped.
- */
-#define RC_DELAY (HZ/5)
-
/* Cache entries expire after this time period */
#define RC_EXPIRE (120 * HZ)