diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2021-03-12 15:35:56 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2021-03-12 15:35:56 +0100 |
commit | 7be3af7fa662958782d2e23989d79cc2c652b6bf (patch) | |
tree | aeecb3e36af55eb4367f0b5218e3301d6383808e /lib/event.c | |
parent | 9cf3d533110313d55b60d47c134f1b7050d6be78 (diff) |
Rate-limit scheduling of work-events
In general, events are code handling some some condition, which is
scheduled when such condition happened and executed independently from
I/O loop. Work-events are a subgroup of events that are scheduled
repeatedly until some (often significant) work is done (e.g. feeding
routes to protocol). All scheduled events are executed during each
I/O loop iteration.
Separate work-events from regular events to a separate queue and
rate limit their execution to a fixed number per I/O loop iteration.
That should prevent excess latency when many work-events are
scheduled at one time (e.g. simultaneous reload of many BGP sessions).
Diffstat (limited to 'lib/event.c')
-rw-r--r-- | lib/event.c | 56 |
1 files changed, 55 insertions, 1 deletions
diff --git a/lib/event.c b/lib/event.c index c33e0ffc..273447e0 100644 --- a/lib/event.c +++ b/lib/event.c @@ -23,6 +23,7 @@ #include "lib/event.h" event_list global_event_list; +event_list global_work_list; inline void ev_postpone(event *e) @@ -114,6 +115,22 @@ ev_schedule(event *e) ev_enqueue(&global_event_list, e); } +/** + * ev_schedule_work - schedule a work-event. + * @e: an event + * + * This function schedules an event by enqueueing it to a system-wide work-event + * list which is run by the platform dependent code whenever appropriate. This + * is designated for work-events instead of regular events. They are executed + * less often in order to not clog I/O loop. + */ +void +ev_schedule_work(event *e) +{ + if (!ev_active(e)) + add_tail(&global_work_list, &e->n); +} + void io_log_event(void *hook, void *data); /** @@ -136,10 +153,47 @@ ev_run_list(event_list *l) event *e = SKIP_BACK(event, n, n); /* This is ugly hack, we want to log just events executed from the main I/O loop */ - if (l == &global_event_list) + if ((l == &global_event_list) || (l == &global_work_list)) io_log_event(e->hook, e->data); ev_run(e); } + + return !EMPTY_LIST(*l); +} + +int +ev_run_list_limited(event_list *l, uint limit) +{ + node *n; + list tmp_list; + + init_list(&tmp_list); + add_tail_list(&tmp_list, l); + init_list(l); + + WALK_LIST_FIRST(n, tmp_list) + { + event *e = SKIP_BACK(event, n, n); + + if (!limit) + break; + + /* This is ugly hack, we want to log just events executed from the main I/O loop */ + if ((l == &global_event_list) || (l == &global_work_list)) + io_log_event(e->hook, e->data); + + ev_run(e); + limit--; + } + + if (!EMPTY_LIST(tmp_list)) + { + /* Attach new items after the unprocessed old items */ + add_tail_list(&tmp_list, l); + init_list(l); + add_tail_list(l, &tmp_list); + } + return !EMPTY_LIST(*l); } |