From: Maria Matejka Date: Fri, 31 May 2024 11:02:27 +0000 (+0200) Subject: IO loop: fixed unassigned count X-Git-Tag: v3.0.0~183 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ffab25f01b14f6ea48e9636a9739a562115c16a;p=thirdparty%2Fbird.git IO loop: fixed unassigned count --- diff --git a/sysdep/unix/io-loop.c b/sysdep/unix/io-loop.c index ad4bbbe26..aa73865e3 100644 --- a/sysdep/unix/io-loop.c +++ b/sysdep/unix/io-loop.c @@ -1546,6 +1546,7 @@ birdloop_vnew_internal(pool *pp, uint order, struct birdloop_pickup_group *group { LOCK_DOMAIN(attrs, group->domain); group->loop_count++; + group->loop_unassigned_count++; add_tail(&group->loops, &loop->n); if (EMPTY_LIST(group->threads)) ev_send(&global_event_list, &group->start_threads);