aboutsummaryrefslogtreecommitdiffstats
path: root/arch/i386
diff options
context:
space:
mode:
authorJohn M. Calandrino <jmc@jupiter-cs.cs.unc.edu>2007-03-29 11:39:18 -0400
committerJohn M. Calandrino <jmc@jupiter-cs.cs.unc.edu>2007-03-29 11:39:18 -0400
commit8502e3a54384e2411dc17d55573825abfc0726e5 (patch)
treecd3b4627c001e8bac853f15dbf3eec31a92e7f14 /arch/i386
parent0cc29463179562db081b1eaf2849bab61e0e2d5a (diff)
Small fix when resetting zone flags in local timer interrupt handler.
Diffstat (limited to 'arch/i386')
-rw-r--r--arch/i386/kernel/apic.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/i386/kernel/apic.c b/arch/i386/kernel/apic.c
index 30e23970ba..58c6dbc1a6 100644
--- a/arch/i386/kernel/apic.c
+++ b/arch/i386/kernel/apic.c
@@ -1335,8 +1335,7 @@ inline void smp_local_timer_interrupt(void)
1335 * will end immediately after this interrupt handler exits. 1335 * will end immediately after this interrupt handler exits.
1336 */ 1336 */
1337 for_each_process(p) 1337 for_each_process(p)
1338 if (is_realtime(p)) 1338 p->rt_param.waiting_to_exit_zone = 0;
1339 p->rt_param.waiting_to_exit_zone = 0;
1340 1339
1341 /* 1340 /*
1342 * We take the 'long' return path, and there every subsystem 1341 * We take the 'long' return path, and there every subsystem