mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-07 17:18:56 +00:00
[bgpd] reduce the process queue hold time to something more sensible
2006-09-14 Paul Jakma <paul.jakma@sun.com> * bgp_route.c: (bgp_process_queue_init) process queue hold time too high, adds extra memory load. Change to be much lower, until such time as it's made configurable.
This commit is contained in:
parent
8383a9bd27
commit
09dd561eb4
@ -4,6 +4,9 @@
|
|||||||
should only count top-level unaggregateable prefixes, to
|
should only count top-level unaggregateable prefixes, to
|
||||||
avoid falling afoul of anti-dodgy-accounting regulations
|
avoid falling afoul of anti-dodgy-accounting regulations
|
||||||
in various jurisdictions.. ;)
|
in various jurisdictions.. ;)
|
||||||
|
(bgp_process_queue_init) process queue hold time too high,
|
||||||
|
adds extra memory load. Change to be much lower, until such
|
||||||
|
time as it's made configurable.
|
||||||
|
|
||||||
2006-09-14 Paul Jakma <paul.jakma@sun.com>
|
2006-09-14 Paul Jakma <paul.jakma@sun.com>
|
||||||
|
|
||||||
|
@ -1474,7 +1474,7 @@ bgp_process_queue_init (void)
|
|||||||
bm->process_main_queue->spec.max_retries
|
bm->process_main_queue->spec.max_retries
|
||||||
= bm->process_main_queue->spec.max_retries = 0;
|
= bm->process_main_queue->spec.max_retries = 0;
|
||||||
bm->process_rsclient_queue->spec.hold
|
bm->process_rsclient_queue->spec.hold
|
||||||
= bm->process_main_queue->spec.hold = 500;
|
= bm->process_main_queue->spec.hold = 50;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user