An RPC retransmit timeout should start out the same for each new RPC request. Don't increase the retransmit timeout after receiving the reply to the rpcbind query. Signed-off-by: Chuck Lever <chuck.lever@xxxxxxxxxx> --- utils/statd/sm-notify.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/utils/statd/sm-notify.c b/utils/statd/sm-notify.c index 46447e8..aa202d3 100644 --- a/utils/statd/sm-notify.c +++ b/utils/statd/sm-notify.c @@ -701,8 +701,7 @@ smn_schedule(struct nsm_host *host) { host->xid = 0; host->send_next = time(NULL); - if (host->timeout >= NSM_MAX_TIMEOUT / 4) - host->timeout = NSM_MAX_TIMEOUT / 4; + host->timeout = NSM_TIMEOUT; insert_host(host); } -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html