aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2010-04-13 04:50:43 -0400
committerDavid S. Miller <davem@davemloft.net>2010-04-13 04:50:43 -0400
commitc011f80ba0912486fe51dd2b3f71d9b33a151188 (patch)
treef133e1b698f5a0eaca251bcdcc5a4f6397aa59d7 /arch/sparc
parent9343af084c7e8911897b0883042ee690cee3aaef (diff)
sparc64: Add some more commentary to __raw_local_irq_save()
Suggested by Peter Zijlstra Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc')
-rw-r--r--arch/sparc/include/asm/irqflags_64.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/sparc/include/asm/irqflags_64.h b/arch/sparc/include/asm/irqflags_64.h
index a16e94c4b149..bfa1ea45b4cd 100644
--- a/arch/sparc/include/asm/irqflags_64.h
+++ b/arch/sparc/include/asm/irqflags_64.h
@@ -80,6 +80,13 @@ static inline unsigned long __raw_local_irq_save(void)
80 80
81 /* Disable interrupts to PIL_NORMAL_MAX unless we already 81 /* Disable interrupts to PIL_NORMAL_MAX unless we already
82 * are using PIL_NMI, in which case PIL_NMI is retained. 82 * are using PIL_NMI, in which case PIL_NMI is retained.
83 *
84 * The only values we ever program into the %pil are 0,
85 * PIL_NORMAL_MAX and PIL_NMI.
86 *
87 * Since PIL_NMI is the largest %pil value and all bits are
88 * set in it (0xf), it doesn't matter what PIL_NORMAL_MAX
89 * actually is.
83 */ 90 */
84 __asm__ __volatile__( 91 __asm__ __volatile__(
85 "rdpr %%pil, %0\n\t" 92 "rdpr %%pil, %0\n\t"