]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
sched: test runtime rather than period in global_rt_runtime()
authorroel kluin <roel.kluin@gmail.com>
Tue, 22 Jul 2008 20:51:15 +0000 (16:51 -0400)
committerIngo Molnar <mingo@elte.hu>
Mon, 28 Jul 2008 13:57:24 +0000 (15:57 +0200)
Test runtime rather than period

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/sched.c

index 0236958addcbac72ca908c6be8ac74275a512ad7..0d1717b0022549ba69097f31b35093ee4527524c 100644 (file)
@@ -834,7 +834,7 @@ static inline u64 global_rt_period(void)
 
 static inline u64 global_rt_runtime(void)
 {
-       if (sysctl_sched_rt_period < 0)
+       if (sysctl_sched_rt_runtime < 0)
                return RUNTIME_INF;
 
        return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;