git://git.openafs.org
/
openafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
56c9c9d
)
try-harder-to-notice-down-server-20010608
author
Derrick Brashear
<shadow@dementia.org>
Fri, 8 Jun 2001 23:23:07 +0000 (23:23 +0000)
committer
Derrick Brashear
<shadow@dementia.org>
Fri, 8 Jun 2001 23:23:07 +0000 (23:23 +0000)
try harder to notice something is down otherwise we can end up looping forever
src/afs/afs_server.c
patch
|
blob
|
history
diff --git
a/src/afs/afs_server.c
b/src/afs/afs_server.c
index
e8dfc7f
..
561e4c9
100644
(file)
--- a/
src/afs/afs_server.c
+++ b/
src/afs/afs_server.c
@@
-282,7
+282,7
@@
static void CheckVLServer(sa, areq)
AFS_STATCNT(CheckVLServer);
/* Ping dead servers to see if they're back */
- if (!(aserver->flags & SRVR_ISDOWN) || (aserver->flags & SRVR_ISGONE))
+ if (!((aserver->flags & SRVR_ISDOWN) || (sa->sa_flags & SRVADDR_ISDOWN)) || (aserver->flags & SRVR_ISGONE))
return;
if (!aserver->cell)
return; /* can't do much */