Commit a50b3e27 authored by Ralf Baechle's avatar Ralf Baechle

Do the timer interrupt only once on CPU 0 ...

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 8b200ce4
...@@ -107,17 +107,18 @@ void sb1250_timer_interrupt(struct pt_regs *regs) ...@@ -107,17 +107,18 @@ void sb1250_timer_interrupt(struct pt_regs *regs)
____raw_writeq(M_SCD_TIMER_ENABLE | M_SCD_TIMER_MODE_CONTINUOUS, ____raw_writeq(M_SCD_TIMER_ENABLE | M_SCD_TIMER_MODE_CONTINUOUS,
IOADDR(A_SCD_TIMER_REGISTER(cpu, R_SCD_TIMER_CFG))); IOADDR(A_SCD_TIMER_REGISTER(cpu, R_SCD_TIMER_CFG)));
/*
* CPU 0 handles the global timer interrupt job
*/
if (cpu == 0) { if (cpu == 0) {
/*
* CPU 0 handles the global timer interrupt job
*/
ll_timer_interrupt(irq, regs); ll_timer_interrupt(irq, regs);
} }
else {
/* /*
* every CPU should do profiling and process accouting * other CPUs should just do profiling and process accounting
*/ */
ll_local_timer_interrupt(irq, regs); ll_local_timer_interrupt(irq, regs);
}
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment