diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-06-15 17:28:20 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-06-15 17:28:20 -0700 |
commit | 1043e3becfbae0bee618f9b4f9598b145c4774e1 (patch) | |
tree | c2bd20373bc709cc00288fd8fd21dbece8d5247d /arch | |
parent | 93dd048dbde493fb1eb11cdc844be5fa9cd1c925 (diff) | |
parent | f948501b36c6b3d9352ce212a197098a7e958971 (diff) | |
download | linux-3.10-1043e3becfbae0bee618f9b4f9598b145c4774e1.tar.gz linux-3.10-1043e3becfbae0bee618f9b4f9598b145c4774e1.tar.bz2 linux-3.10-1043e3becfbae0bee618f9b4f9598b145c4774e1.zip |
Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc
Pull PowerPC fix from Paul Mackerras:
"Just one commit, and a one-liner at that, but an important one;
without it hard_irq_disable() does nothing on powerpc."
* tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc:
Make hard_irq_disable() actually hard-disable interrupts
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/include/asm/hw_irq.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/hw_irq.h b/arch/powerpc/include/asm/hw_irq.h index c9aac24b02e..32b394f3b85 100644 --- a/arch/powerpc/include/asm/hw_irq.h +++ b/arch/powerpc/include/asm/hw_irq.h @@ -100,6 +100,9 @@ static inline void hard_irq_disable(void) get_paca()->irq_happened |= PACA_IRQ_HARD_DIS; } +/* include/linux/interrupt.h needs hard_irq_disable to be a macro */ +#define hard_irq_disable hard_irq_disable + /* * This is called by asynchronous interrupts to conditionally * re-enable hard interrupts when soft-disabled after having |