diff options
| author | Ingo Molnar <mingo@elte.hu> | 2006-06-27 02:54:51 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-27 17:32:46 -0700 | 
| commit | b29739f902ee76a05493fb7d2303490fc75364f4 (patch) | |
| tree | 1bf48dfb74752a7ef24a2a4a74c45da0aaec754b /include/linux/init_task.h | |
| parent | 77ba89c5cf28d5d98a3cae17f67a3e42b102cc25 (diff) | |
| download | olio-linux-3.10-b29739f902ee76a05493fb7d2303490fc75364f4.tar.xz olio-linux-3.10-b29739f902ee76a05493fb7d2303490fc75364f4.zip  | |
[PATCH] pi-futex: scheduler support for pi
Add framework to boost/unboost the priority of RT tasks.
This consists of:
 - caching the 'normal' priority in ->normal_prio
 - providing a functions to set/get the priority of the task
 - make sched_setscheduler() aware of boosting
The effective_prio() cleanups also fix a priority-calculation bug pointed out
by Andrey Gelman, in set_user_nice().
has_rt_policy() fix: Peter Williams <pwil3058@bigpond.net.au>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Cc: Andrey Gelman <agelman@012.net.il>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/init_task.h')
| -rw-r--r-- | include/linux/init_task.h | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index e127ef7e8da..678c1a90380 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h @@ -87,6 +87,7 @@ extern struct group_info init_groups;  	.lock_depth	= -1,						\  	.prio		= MAX_PRIO-20,					\  	.static_prio	= MAX_PRIO-20,					\ +	.normal_prio	= MAX_PRIO-20,					\  	.policy		= SCHED_NORMAL,					\  	.cpus_allowed	= CPU_MASK_ALL,					\  	.mm		= NULL,						\ @@ -122,6 +123,7 @@ extern struct group_info init_groups;  	.journal_info	= NULL,						\  	.cpu_timers	= INIT_CPU_TIMERS(tsk.cpu_timers),		\  	.fs_excl	= ATOMIC_INIT(0),				\ +	.pi_lock	= SPIN_LOCK_UNLOCKED,				\  }  |