0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-22 09:41:54 +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 24a6336acf
commit 418578bc6b

View File

@ -885,7 +885,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);