0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-22 09:41:54 +00:00

ROA: Switching off digestor splitting

This commit is contained in:
Maria Matejka 2024-06-20 22:35:53 +02:00
parent 4998ca5554
commit d23db54da0

View File

@ -576,8 +576,11 @@ rt_aggregate_roa(void *_rag)
rte_import(&rag->stream.dst, &nip.n, &r, prev.src ?: src);
#if 0
/* Do not split ROA aggregator, we want this to be finished asap */
MAYBE_DEFER_TASK(rag->src.r.target, rag->src.r.event,
"export to %s", rag->src.name);
#endif
}
}
@ -2993,8 +2996,12 @@ rt_digest_update(void *_d)
if (ni)
rt_digest_update_net(d, ni, net_max_prefix_length[tab->addr_type]);
#if 0
/* Digestor is never splitting, it just digests everything
* because we prefer to generate one big trie instead of a lot of small ones. */
MAYBE_DEFER_TASK(birdloop_event_list(tab->loop), &d->event,
"ROA digestor update in %s", tab->name);
#endif
}
}