0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-09 12:48:43 +00:00

fixup! IO: Allow to take new loops if the thread is hot, but only one at time

This commit is contained in:
Maria Matejka 2024-06-27 14:25:06 +02:00
parent 5288e22d22
commit 825be30115

View File

@ -706,7 +706,7 @@ birdloop_take(struct birdloop_pickup_group *group)
birdloop_set_thread(loop, NULL, group);
dropped++;
if (dropped * dropped > this_thread->loop_count)
if ((dropped * dropped) / 2 > this_thread->loop_count)
{
birdloop_leave(loop);
@ -764,10 +764,12 @@ birdloop_take(struct birdloop_pickup_group *group)
}
bird_thread_pickup_next(group);
if (assign)
this_thread->meta->last_transition_ns = ns_now();
}
UNLOCK_DOMAIN(attrs, group->domain);
this_thread->meta->last_transition_ns = ns_now();
}
static int