MIPS: die() does not call die notifier chain
authorYury Polyanskiy <ypolyans@princeton.edu>
Mon, 26 Apr 2010 04:53:10 +0000 (00:53 -0400)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 30 Apr 2010 19:52:45 +0000 (20:52 +0100)
commitce384d83d00ee457c3931d3fdb9fa2c38e345a3c
tree9f2a8a21236f0a270118d393e893cdc4986d229b
parentfcf3ca4c3d6d911df8ee2b8f010ffe504d3aef71
MIPS: die() does not call die notifier chain

The MIPS implementation of die() forgets to call notify_die() and thus notifiers
registered via register_die_notifier() are not called.  This results in kgdb not
being activated on exceptions.

The only subtlety is that notify_die declares its regs argument w/o const, so
the const had to be removed from mips die() as well.

[Ralf: Fixed build error for SGI IP22 and IP28 platforms.]

Signed-off-by: Yury Polyanskiy <ypolyans@princeton.edu>
Cc: linux-mips@linux-mips.org
Patchworks: http://patchwork.linux-mips.org/patch/1142/
Acked-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
---
arch/mips/include/asm/ptrace.h
arch/mips/kernel/traps.c
arch/mips/sgi-ip22/ip22-berr.c
arch/mips/sgi-ip22/ip28-berr.c