diff options
Diffstat (limited to 'kernel/sched.c')
-rw-r--r-- | kernel/sched.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index 9a1ddb84e26d..c1bee5fb8154 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -204,11 +204,13 @@ void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime) | |||
204 | rt_b->rt_period_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ; | 204 | rt_b->rt_period_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ; |
205 | } | 205 | } |
206 | 206 | ||
207 | static inline int rt_bandwidth_enabled(void); | ||
208 | |||
207 | static void start_rt_bandwidth(struct rt_bandwidth *rt_b) | 209 | static void start_rt_bandwidth(struct rt_bandwidth *rt_b) |
208 | { | 210 | { |
209 | ktime_t now; | 211 | ktime_t now; |
210 | 212 | ||
211 | if (rt_b->rt_runtime == RUNTIME_INF) | 213 | if (rt_bandwidth_enabled() && rt_b->rt_runtime == RUNTIME_INF) |
212 | return; | 214 | return; |
213 | 215 | ||
214 | if (hrtimer_active(&rt_b->rt_period_timer)) | 216 | if (hrtimer_active(&rt_b->rt_period_timer)) |
@@ -839,6 +841,11 @@ static inline u64 global_rt_runtime(void) | |||
839 | return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC; | 841 | return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC; |
840 | } | 842 | } |
841 | 843 | ||
844 | static inline int rt_bandwidth_enabled(void) | ||
845 | { | ||
846 | return sysctl_sched_rt_runtime >= 0; | ||
847 | } | ||
848 | |||
842 | #ifndef prepare_arch_switch | 849 | #ifndef prepare_arch_switch |
843 | # define prepare_arch_switch(next) do { } while (0) | 850 | # define prepare_arch_switch(next) do { } while (0) |
844 | #endif | 851 | #endif |