diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2012-08-14 12:08:45 -0400 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2012-09-17 08:42:16 -0400 |
commit | 5c4233697c3f5cb14eb7a969332e2d60f357f952 (patch) | |
tree | 9708b02810a1007b6ba9c54eddd2f62eb9924c14 /kernel | |
parent | 478fcb2cdb2351dcfc3fb23f42d76f4436ee4149 (diff) |
arm64: Add support for /proc/sys/debug/exception-trace
This patch allows setting of the show_unhandled_signals variable via
/proc/sys/debug/exception-trace. The default value is currently 1
showing unhandled user faults (undefined instructions, data aborts) and
invalid signal stack frames.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Nicolas Pitre <nico@linaro.org>
Acked-by: Olof Johansson <olof@lixom.net>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sysctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 87174ef59161..79dcb0063182 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -1544,7 +1544,7 @@ static struct ctl_table fs_table[] = { | |||
1544 | 1544 | ||
1545 | static struct ctl_table debug_table[] = { | 1545 | static struct ctl_table debug_table[] = { |
1546 | #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_SPARC) || \ | 1546 | #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_SPARC) || \ |
1547 | defined(CONFIG_S390) || defined(CONFIG_TILE) | 1547 | defined(CONFIG_S390) || defined(CONFIG_TILE) || defined(CONFIG_ARM64) |
1548 | { | 1548 | { |
1549 | .procname = "exception-trace", | 1549 | .procname = "exception-trace", |
1550 | .data = &show_unhandled_signals, | 1550 | .data = &show_unhandled_signals, |