0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-22 17:51:53 +00:00

Table: too fast export validity check replaced with just a retry

This commit is contained in:
Maria Matejka 2024-06-08 20:19:51 +02:00
parent 661193cf98
commit d7cf378003

View File

@ -2196,8 +2196,6 @@ rt_net_feed_validate_first(
if (!first) if (!first)
return first_in_net; return first_in_net;
for (uint i = 1; i < 4096; i++)
{
/* Export item validity check: we must find it between first_in_net and last_in_net */ /* Export item validity check: we must find it between first_in_net and last_in_net */
const struct rt_pending_export *rpe = first_in_net; const struct rt_pending_export *rpe = first_in_net;
while (rpe) while (rpe)
@ -2209,10 +2207,7 @@ rt_net_feed_validate_first(
else else
rpe = atomic_load_explicit(&rpe->next, memory_order_acquire); rpe = atomic_load_explicit(&rpe->next, memory_order_acquire);
birdloop_yield(); /* Not found, inconsistent export, retry */
}
log(L_WARN "Waiting too long for table announcement to finish");
RT_READ_RETRY(tr); RT_READ_RETRY(tr);
} }