diff options
Diffstat (limited to 'kernel/sysctl.c')
| -rw-r--r-- | kernel/sysctl.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 8686b0f5fc1..90f536d8464 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -621,7 +621,7 @@ static struct ctl_table kern_table[] = {  #endif  	{  		.procname	= "userprocess_debug", -		.data		= &sysctl_userprocess_debug, +		.data		= &show_unhandled_signals,  		.maxlen		= sizeof(int),  		.mode		= 0644,  		.proc_handler	= proc_dointvec, @@ -1431,7 +1431,8 @@ static struct ctl_table fs_table[] = {  };  static struct ctl_table debug_table[] = { -#if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_SPARC) +#if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_SPARC) || \ +    defined(CONFIG_S390)  	{  		.procname	= "exception-trace",  		.data		= &show_unhandled_signals,  |