aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/fmlp.c
Commit message (Collapse)AuthorAge
* Implement the pi semaphore stack.Glenn Elliott2010-08-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch continues the work to implement a generic pi framework. Under this framework, each task_struct maintains a stack of held locks, in the order they are acquired. This stack is mainly used to determine the proper inheritance when a lock is released. On release, the releasing job iterates through its semaphore stack to determine if it blocks a higher priority job and inherits the proper priority as needed. The stack is needed since a blocked job cannot push this information to the lock holder because the inheritance may not take place immediately when the job is blocked. Stack operations include push, pop, update, and peek. The semaphore stack is really only useful to protocols that support traditional nesting. Protocols that do not use traditional nesting, such as FMLP-Long, do not need a stack to track inheritance. So, struct rt_param now also has a task_struct pointer, eff_priority. eff_priority is used in almost the same way was rt_param.inh_task was used in the original FMLP implementation. The slight difference is that eff_priority is set to equal to self when a job acquires a semaphore with no inheritance. This is stylistically similar to FMLP using a semaphore stack. Note that FMLP-Long completely forgoes the use of semaphore stack and only uses eff_priority. Finally, it is intended that eff_priority also be used with nested protocols. A job using a nested protocol would set eff_priority equal to the highest priority received from all held locks. Thus, eff_priority caches the priority a job inherits (the semaphore stack does not need to be iterated through each time the job's priority is required).
* Update FMLP to use revised fmlp_semaphore.Glenn Elliott2010-08-03
| | | | | | | 7ef1e106db5a061682028fdc4d8ffd131729868a refactored pi_semaphore into two structs: pi_semaphore and fmlp_semaphore. fmlp_semaphore encapsulates pi_semaphore as its first field, pi. This patch updates the FMLP-Long implementation to use the refactored structs.
* Bugfix: 1) incorrect FMLP high prio task tracking and 2) race in print statementGlenn Elliott2010-05-29
| | | | | | | | 1) High priority task tied to FMLP semaphore in P-EDF scheduling is incorrectly tracked for tasks acquiring the lock without contention. (HP is always set to CPU 0 instead of proper CPU.) 2) Race in a print statement from P-EDF's pi_block() causes NULL pointer dereference.
* [ported from 2008.3] Add FMLP supportAndrea Bastoni2010-05-29