diff options
author | David S. Miller <davem@davemloft.net> | 2008-11-24 00:55:29 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-04 12:17:02 -0500 |
commit | b4f4372f96e0573d752d9e45beda02fabf716cc8 (patch) | |
tree | 641798dfe78c1407908c68b64427cd55cdc18b34 /arch/sparc/include/asm/irqflags_64.h | |
parent | c6afec5e4d323e7b88a7d6e291a5aa021a8fcb7d (diff) |
sparc64: Make %pil level 15 a pseudo-NMI.
So that we can profile code even in a local_irq_disable() section,
only write 14 (instead of 15) into the %pil register to disable IRQs.
This allows PIL level 15 to serve as a pseudo NMI.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/include/asm/irqflags_64.h')
-rw-r--r-- | arch/sparc/include/asm/irqflags_64.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/sparc/include/asm/irqflags_64.h b/arch/sparc/include/asm/irqflags_64.h index bb42e59162aa..8b49bf920df3 100644 --- a/arch/sparc/include/asm/irqflags_64.h +++ b/arch/sparc/include/asm/irqflags_64.h | |||
@@ -10,6 +10,8 @@ | |||
10 | #ifndef _ASM_IRQFLAGS_H | 10 | #ifndef _ASM_IRQFLAGS_H |
11 | #define _ASM_IRQFLAGS_H | 11 | #define _ASM_IRQFLAGS_H |
12 | 12 | ||
13 | #include <asm/pil.h> | ||
14 | |||
13 | #ifndef __ASSEMBLY__ | 15 | #ifndef __ASSEMBLY__ |
14 | 16 | ||
15 | static inline unsigned long __raw_local_save_flags(void) | 17 | static inline unsigned long __raw_local_save_flags(void) |
@@ -40,9 +42,9 @@ static inline void raw_local_irq_restore(unsigned long flags) | |||
40 | static inline void raw_local_irq_disable(void) | 42 | static inline void raw_local_irq_disable(void) |
41 | { | 43 | { |
42 | __asm__ __volatile__( | 44 | __asm__ __volatile__( |
43 | "wrpr 15, %%pil" | 45 | "wrpr %0, %%pil" |
44 | : /* no outputs */ | 46 | : /* no outputs */ |
45 | : /* no inputs */ | 47 | : "i" (PIL_NORMAL_MAX) |
46 | : "memory" | 48 | : "memory" |
47 | ); | 49 | ); |
48 | } | 50 | } |