mirror of
https://git.openafs.org/openafs.git
synced 2025-01-20 07:51:00 +00:00
h-enumerate-less-heavyhanded-check-20080201
LICENSE IPL10 if hostCount is too small this is fine or at least not fatal
This commit is contained in:
parent
4ad35bd5aa
commit
4fe2978f69
@ -1087,7 +1087,10 @@ h_Enumerate(int (*proc) (), char *param)
|
||||
if (!(held[count] = h_Held_r(host)))
|
||||
h_Hold_r(host);
|
||||
}
|
||||
assert(count == hostCount);
|
||||
if (count != hostCount) {
|
||||
ViceLog(0, ("h_Enumerate found %d of %d hosts\n", count, hostCount));
|
||||
}
|
||||
assert(count <= hostCount);
|
||||
H_UNLOCK;
|
||||
for (i = 0; i < count; i++) {
|
||||
held[i] = (*proc) (list[i], held[i], param);
|
||||
|
Loading…
Reference in New Issue
Block a user