diff options
author | Helge Deller <deller@gmx.de> | 2013-05-10 21:24:01 (GMT) |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2013-05-11 19:10:15 (GMT) |
commit | 416821d3d68164909b2cbcf398e4ba0797f5f8a2 (patch) | |
tree | c7ba229007acf58d5b04763177aa04b5ddca98d9 /arch/parisc/Kconfig | |
parent | 2dbd3cac87250a0d44e07acc86c4224a08522709 (diff) | |
download | linux-416821d3d68164909b2cbcf398e4ba0797f5f8a2.tar.xz |
parisc: implement irq stacks - part 2 (v2)
This patch fixes few build issues which were introduced with the last
irq stack patch, e.g. the combination of stack overflow check and irq
stack.
Furthermore we now do proper locking and change the irq bh handler
to use the irq stack as well.
In /proc/interrupts one now can monitor how huge the irq stack has grown
and how often it was preferred over the kernel stack.
IRQ stacks are now enabled by default just to make sure that we not
overflow the kernel stack by accident.
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc/Kconfig')
-rw-r--r-- | arch/parisc/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/Kconfig b/arch/parisc/Kconfig index cad060f..6507dab 100644 --- a/arch/parisc/Kconfig +++ b/arch/parisc/Kconfig @@ -245,7 +245,7 @@ config SMP config IRQSTACKS bool "Use separate kernel stacks when processing interrupts" - default n + default y help If you say Y here the kernel will use separate kernel stacks for handling hard and soft interrupts. This can help avoid |