| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
|
|
| |
Don't just blindly overwrite the timers if they could
be still in use. The the use-after-free bug was observed
under Qemu.
|
| |
|
|
|
|
| |
The letter 'q' is already taken in 2.6.24.
|
|
|
|
|
| |
Let user space set which CPU should handle releases. It is up
to plugins to make use of this information.
|
|\ |
|
| |\ |
|
| | |
| | |
| | |
| | | |
No plugin uses it anymore.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Don't multiplex one timer among all release heaps.
The hrtimer subsystem can handle many timers and is
heavily optimize; make use of this fact.
This also greatly simplifies the actual callback, which
should help to bring down release overheads.
This also saves memory as we do not need to maintain a separate
heap of (release) heaps.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This fixes a bunch of bugs:
- a memory leak (some heap nodes were never reclaimed)
- a locking rules violation (memory allocation can wake up kswapd,
which causes a circular locking dependency between the release queue lock
and the run queue locks
Also, allocating memory in a hot path was never particularly clever.
This patch pre-allocates memory at task-creation time, but does not change
how the release queue works overall.
|
| | |
| | |
| | |
| | | |
Prepare for centralized allocation of release heaps.
|
| |/
|/|
| |
| | |
Avoid duplication.
|
|\ \ |
|
| | |
| | |
| | |
| | |
| | | |
A simple noop system call to record kernel entry and exit
times.
|
|/ /
| |
| |
| |
| |
| |
| |
| | |
struct x* p = kmalloc(sizeof(struct x), ....)
becomes
struct x* p = kmalloc(sizeof(*p), ...)
for example.
|
|/ |
|
|
|
|
| |
Give plugins a chance to set up state and clean up.
|
| |
|
|
|
|
| |
If we can't allocate heap nodes then we can't admit RT tasks.
|
|
|
|
|
|
|
| |
We already have a heap_node slab in litmus.c. We can reuse it for the
other allocations.
This patch also fixes a misnaming of heap_node_alloc/free.
|
|
|
|
| |
we can disable it to improve performance when it is not needed
|
| |
|
|
|
|
|
|
| |
The list-based priority queues did not perform well on the Niagara T2000.
This heap-based implementation should perform much faster when queues
are long.
|
|
|
|
|
| |
- give TRACE() messages sequence numbers
- remove a some old, unused cruft
|
| |
|
|
|
|
|
|
|
|
| |
The SRP implementation did not correctly address various
suspension-related scenarios correctly. Now the need for
SRP blocking is tested on each scheduling event. This ensures
mutual exclusion under the SRP even in the face of unexpected
suspensions, for example due to IO.
|
|
|
|
| |
This is the first step in cleaning up the SRP implementation.
|
|
This introduces the core changes ported from LITMUS 2007.
The kernel seems to work under QEMU, but many bugs probably remain.
|