diff options
| author | Peter Zijlstra <[email protected]> | 2011-06-27 17:22:43 +0200 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2011-07-01 11:02:22 +0200 |
| commit | 4f8b50bbbe63ae4ec6bea28a90a9a603c745ea71 (patch) | |
| tree | 7eab2f9679823e78a8e0e32d2eee57b70f64935b | |
| parent | 10e6962765f8213941eaa1cbb9de425ff0689e2e (diff) | |
irq_work, ppc: Fix up arch hooks
Commit e360adbe29 ("irq_work: Add generic hardirq context
callbacks") fouled up the ppc bit, not properly naming the
arch specific function that raises the 'self-IPI'.
Cc: Huang Ying <[email protected]>
Cc: Benjamin Herrenschmidt <[email protected]>
Cc: Anton Blanchard <[email protected]>
Cc: Eric B Munson <[email protected]>
Cc: [email protected] # 37+
Signed-off-by: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/n/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
| -rw-r--r-- | arch/powerpc/kernel/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/time.c b/arch/powerpc/kernel/time.c index f33acfd872ad..03b29a6759ab 100644 --- a/arch/powerpc/kernel/time.c +++ b/arch/powerpc/kernel/time.c @@ -544,7 +544,7 @@ DEFINE_PER_CPU(u8, irq_work_pending); #endif /* 32 vs 64 bit */ -void set_irq_work_pending(void) +void arch_irq_work_raise(void) { preempt_disable(); set_irq_work_pending_flag(); |