0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-08 12:18:42 +00:00

IO loop: fixed local hot page cache flushing condition

This commit is contained in:
Maria Matejka 2024-04-01 15:03:24 +02:00
parent a3daf69cd1
commit 23bad456cb

View File

@ -857,7 +857,7 @@ bird_thread_main(void *arg)
ASSERT_DIE(pfd.loop.used == pfd.pfd.used);
}
/* Nothing to do in at least 5 seconds, flush local hot page cache */
else if ((timeout > 5000) && (timeout < 0))
else if ((timeout > 5000) || (timeout < 0))
flush_local_pages();
bird_thread_busy_update(thr, timeout);