| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This fixes a regression introduced by the RTSS'09
improvements.
Just calling unlink() on any task is not safe: it might
reside in a release heap. This was done in the case
that a new blocker increases a lock holder's priority.
To avoid crashing in this case, the FMLP code was changed
to be more careful when propagating an inherited priority.
The code now detects three different scenarios and uses
heap_decrease() to update the position of the lock holder's
heap node. This fixes a simple test case.
|
|
|
|
|
|
|
| |
Used to adjust position of heap node after
the key of the node was decreased
(= made more important). Cannot be used if
key was increased (= made less important).
|
| |
|
| |
|
|
|
|
|
| |
This removes the plugins created for RTSS'09 that
we don't want to track in mainline Linux.
|
|
|
|
|
| |
This fixes a bug that lead to task stacks being used s
simultaneously on two CPUs.
|
|
|
|
| |
Line breaks, ammend comments, etc.
|
|
|
|
|
|
| |
If schedule() was invoked twice in a retry, then the scheduled
task might have not been "picked" properly because it was
still scheduled.
|
| |
|
|
|
|
|
|
|
|
| |
This is a really dirty hack, but works for now since our real-time
tasks do not use hrtimer_wakeup().
The need for this will go away when we port since newer versions of the
Linux kernel allow timers to be activated directly in the scheduler.
|
|\
| |
| |
| | |
ssh://cvs.cs.unc.edu/cvs/proj/litmus/repo/papers/RTSS09/litmus2008 into rtss09
|
| |
| |
| |
| | |
Fixes fa940ad71184dec3d156b7dd673ee38067e7c0f6.
|
|/
|
|
|
|
| |
If a timer happens to go off at the wrong time on the wrong CPU, the old
code could deadlock. This avoided in the new version by dropping the
release_lock before using the hrtimer API.
|
|
|
|
|
| |
Check if an already-linked task must be re-inserted into
the ready queue.
|
|
|
|
|
|
|
|
| |
This fixes a bug observed under G-EDF:
A task with extremely low wcet budget could get scheduled
and re-added to its own release heap while the heap was still
in use in the same timer callback that released the task.
Havoc, predictably, ensued.
|
|
|
|
|
|
| |
Don't just blindly overwrite the timers if they could
be still in use. The the use-after-free bug was observed
under Qemu.
|
| |
|
| |
|
| |
|
|
|
|
| |
Pump stuff from the TRACE() buffer to printk() on demand.
|
|
|
|
|
| |
If the timeout was realy close and the timing unfortunate, the
timer callback got invoked twice, with oopsing consequences.
|
|
|
|
|
|
| |
Those functions are pretty huge, and used in a couple of plugins.
This should save a lot of space, make debugging with objdump much easier,
and maybe it even has some I$ benefit.
|
|
|
|
| |
The letter 'q' is already taken in 2.6.24.
|
| |
|
| |
|
| |
|
|
|
|
| |
seems to run in QEMU
|
|
|
|
| |
Basically same as G-EDF.
|
|
|
|
| |
Don't relink to release master.
|
|
|
|
| |
Factor out ftdev support from overhead tracing.
|
|
|
|
|
|
| |
The current release_master setting is copied when activating
the plugin. Changing it during execution is currently not
supported.
|
| |
|
|
|
|
|
| |
Let user space set which CPU should handle releases. It is up
to plugins to make use of this information.
|
| |
|
|
|
|
|
| |
A release master is a CPU that takes all timer interrupts for
release of a given rt_domain_t. By default off.
|
|
|
|
| |
this was never strictly required, so we might as well avoid it
|
|
|
|
| |
this removes a blatant case of copy&paste reuse
|
| |
|
|
|
|
|
|
| |
Lockdep doesn't like the heap's locking pattern. We'd have
to allocate a locking class for each cheap_node, which is a bit
excessive memory-wise.
|
|
|
|
| |
Variable declarations go first.
|
| |
|
|\ |
|
| |\ |
|
| | |
| | |
| | |
| | | |
No plugin uses it anymore.
|
| | | |
|
| | |
| | |
| | |
| | | |
a good base version for other schedulers
|
| | |
| | |
| | |
| | |
| | |
| | | |
Doing it task-by-task really only makes sense if
we are going to trace every merged task in the debug
trace.
|
| | |
| | |
| | |
| | |
| | | |
Tell Linux how much time each RT task consumed.
This fixes the behavior of CPU timers and tools like top.
|
| | |
| | |
| | |
| | | |
It won't compile with missing prototypes.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|