- add command line option to override is running check. - don't use proc fs for is running check. - fix fail on included browse map not found. - fix incorrect multi source messages. - clear stale flag on map read. - fix proximity other rpc ping timeout. - refactor mount request vars code. - make handle_mounts startup condition distinct. - fix submount shutdown handling. - try not to block on expire. - add configuration paramter UMOUNT_WAIT. - fix multi mount race. - fix nfs4 colon escape handling. - check replicated list after probe. - add replicated server selection debug logging. - update replicated server selection documentation. - use /dev/urandom instead of /dev/random. - check for mtab pointing to /proc/mounts. - fix interface config buffer size. - fix percent hack heap corruption.
37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
autofs-5.0.3 - fix proximity other rpc ping timeout
|
|
|
|
From: Ian Kent <raven@themaw.net>
|
|
|
|
The timeout for the RCP ping for hosts that are on a network other
|
|
than the local subnet or network is mistakenly set quite short. This
|
|
can lead to unexplained intermittent failures for hosts on remote
|
|
networks.
|
|
---
|
|
|
|
modules/replicated.c | 4 ++--
|
|
1 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
|
|
diff --git a/modules/replicated.c b/modules/replicated.c
|
|
index efbe6b4..925f641 100644
|
|
--- a/modules/replicated.c
|
|
+++ b/modules/replicated.c
|
|
@@ -552,7 +552,7 @@ static int get_vers_and_cost(unsigned logopt, struct host *host,
|
|
|
|
if (host->proximity == PROXIMITY_NET)
|
|
timeout = RPC_TIMEOUT * 2;
|
|
- else if (host->proximity == PROXIMITY_NET)
|
|
+ else if (host->proximity == PROXIMITY_OTHER)
|
|
timeout = RPC_TIMEOUT * 8;
|
|
|
|
rpc_info.host = host->name;
|
|
@@ -609,7 +609,7 @@ static int get_supported_ver_and_cost(unsigned logopt, struct host *host,
|
|
|
|
if (host->proximity == PROXIMITY_NET)
|
|
timeout = RPC_TIMEOUT * 2;
|
|
- else if (host->proximity == PROXIMITY_NET)
|
|
+ else if (host->proximity == PROXIMITY_OTHER)
|
|
timeout = RPC_TIMEOUT * 8;
|
|
|
|
rpc_info.host = host->name;
|