1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_SCHED_RT_H
3 #define _LINUX_SCHED_RT_H
5 #include <linux/sched.h>
9 static inline int rt_prio(int prio
)
11 if (unlikely(prio
< MAX_RT_PRIO
))
16 static inline int rt_task(struct task_struct
*p
)
18 return rt_prio(p
->prio
);
21 static inline bool task_is_realtime(struct task_struct
*tsk
)
23 int policy
= tsk
->policy
;
25 if (policy
== SCHED_FIFO
|| policy
== SCHED_RR
)
27 if (policy
== SCHED_DEADLINE
)
32 #ifdef CONFIG_RT_MUTEXES
34 * Must hold either p->pi_lock or task_rq(p)->lock.
36 static inline struct task_struct
*rt_mutex_get_top_task(struct task_struct
*p
)
38 return p
->pi_top_task
;
40 extern void rt_mutex_setprio(struct task_struct
*p
, struct task_struct
*pi_task
);
41 extern void rt_mutex_adjust_pi(struct task_struct
*p
);
42 static inline bool tsk_is_pi_blocked(struct task_struct
*tsk
)
44 return tsk
->pi_blocked_on
!= NULL
;
47 static inline struct task_struct
*rt_mutex_get_top_task(struct task_struct
*task
)
51 # define rt_mutex_adjust_pi(p) do { } while (0)
52 static inline bool tsk_is_pi_blocked(struct task_struct
*tsk
)
58 extern void normalize_rt_tasks(void);
62 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
63 * Timeslices get refilled after they expire.
65 #define RR_TIMESLICE (100 * HZ / 1000)
67 #endif /* _LINUX_SCHED_RT_H */