Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The mbox code contains a race condition in `mbox_put()`: When it waits for a slot in the queue to become available, it is woken up with IRQs enabled. It disables IRQs again as first thing, but by then another thread may already have preempted the running thread and filled the queue back up. In this case, a message in the queue would be silently overwritten. (cherry picked from commit 42b9334)
- Loading branch information