sched: fix checks
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
112f53f5d7
commit
ea736ed5d3
1 changed files with 6 additions and 4 deletions
|
@ -163,10 +163,11 @@ struct rt_prio_array {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct rt_bandwidth {
|
struct rt_bandwidth {
|
||||||
ktime_t rt_period;
|
/* nests inside the rq lock: */
|
||||||
u64 rt_runtime;
|
spinlock_t rt_runtime_lock;
|
||||||
spinlock_t rt_runtime_lock;
|
ktime_t rt_period;
|
||||||
struct hrtimer rt_period_timer;
|
u64 rt_runtime;
|
||||||
|
struct hrtimer rt_period_timer;
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct rt_bandwidth def_rt_bandwidth;
|
static struct rt_bandwidth def_rt_bandwidth;
|
||||||
|
@ -403,6 +404,7 @@ struct rt_rq {
|
||||||
int rt_throttled;
|
int rt_throttled;
|
||||||
u64 rt_time;
|
u64 rt_time;
|
||||||
u64 rt_runtime;
|
u64 rt_runtime;
|
||||||
|
/* Nests inside the rq lock: */
|
||||||
spinlock_t rt_runtime_lock;
|
spinlock_t rt_runtime_lock;
|
||||||
|
|
||||||
#ifdef CONFIG_RT_GROUP_SCHED
|
#ifdef CONFIG_RT_GROUP_SCHED
|
||||||
|
|
Loading…
Add table
Reference in a new issue