1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:38:11 +00:00

Kernel: Thread::wait_on() must always leave interrupts enabled on exit

The short-circuit path added for waiting on a queue that already had a
pending wake was able to return with interrupts disabled, which breaks
the API contract of wait_on() always returning with IF=1.

Fix this by adding a way to override the restored IF in ScopedCritical.
This commit is contained in:
Andreas Kling 2020-07-06 11:31:21 +02:00
parent 3e0020e67d
commit 163c9d5f8f
2 changed files with 13 additions and 0 deletions

View file

@ -876,6 +876,11 @@ Thread::BlockResult Thread::wait_on(WaitQueue& queue, const char* reason, timeva
// The WaitQueue was already requested to wake someone when
// nobody was waiting. So return right away as we shouldn't
// be waiting
// The API contract guarantees we return with interrupts enabled,
// regardless of how we got called
critical.set_interrupt_flag_on_destruction(true);
return BlockResult::NotBlocked;
}