5 * Priority of a process goes from 0..MAX_PRIO-1, valid RT
6 * priority is 0..MAX_RT_PRIO-1, and SCHED_NORMAL/SCHED_BATCH
7 * tasks are in the range MAX_RT_PRIO..MAX_PRIO-1. Priority
8 * values are inverted: lower p->prio value means higher priority.
10 * The MAX_USER_RT_PRIO value allows the actual maximum
11 * RT priority to be separate from the value exported to
12 * user-space. This allows kernel threads to set their
13 * priority to a value higher than any user task. Note:
14 * MAX_RT_PRIO must not be smaller than MAX_USER_RT_PRIO.
17 #define MAX_USER_RT_PRIO 100
18 #define MAX_RT_PRIO MAX_USER_RT_PRIO
20 #define MAX_PRIO (MAX_RT_PRIO + 40)
21 #define DEFAULT_PRIO (MAX_RT_PRIO + 20)
23 static inline int rt_prio(int prio)
25 if (unlikely(prio < MAX_RT_PRIO))
30 static inline int rt_task(struct task_struct *p)
32 return rt_prio(p->prio);
35 #ifdef CONFIG_RT_MUTEXES
36 extern int rt_mutex_getprio(struct task_struct *p);
37 extern void rt_mutex_setprio(struct task_struct *p, int prio);
38 extern void rt_mutex_adjust_pi(struct task_struct *p);
39 static inline bool tsk_is_pi_blocked(struct task_struct *tsk)
41 return tsk->pi_blocked_on != NULL;
44 static inline int rt_mutex_getprio(struct task_struct *p)
46 return p->normal_prio;
48 # define rt_mutex_adjust_pi(p) do { } while (0)
49 static inline bool tsk_is_pi_blocked(struct task_struct *tsk)
55 extern void normalize_rt_tasks(void);
58 #endif /* _SCHED_RT_H */