diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-19 14:35:30 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-19 14:35:30 -0400 |
commit | ba0234ec35127fe21d373db53cbaf9fe20620cb6 (patch) | |
tree | a2cbef204482512ae9e723f2bf4d22051975ef45 /kernel | |
parent | 537b60d17894b7c19a6060feae40299d7109d6e7 (diff) | |
parent | 939e379e9e183ae6291ac7caa4a5e1dfadae4ccc (diff) |
Merge branch 'for-linus' of git://git390.marist.edu/pub/scm/linux-2.6
* 'for-linus' of git://git390.marist.edu/pub/scm/linux-2.6: (24 commits)
[S390] drivers/s390/char: Use kmemdup
[S390] drivers/s390/char: Use kstrdup
[S390] debug: enable exception-trace debug facility
[S390] s390_hypfs: Add new attributes
[S390] qdio: remove API wrappers
[S390] qdio: set correct bit in dsci
[S390] qdio: dont convert timestamps to microseconds
[S390] qdio: remove memset hack
[S390] qdio: prevent starvation on PCI devices
[S390] qdio: count number of qdio interrupts
[S390] user space fault: report fault before calling do_exit
[S390] topology: expose core identifier
[S390] dasd: remove uid from devmap
[S390] dasd: add dynamic pav toleration
[S390] vdso: add missing vdso_install target
[S390] vdso: remove redundant check for CONFIG_64BIT
[S390] avoid default_llseek in s390 drivers
[S390] vmcp: disallow modular build
[S390] add breaking event address for user space
[S390] virtualization aware cpu measurement
...
Diffstat (limited to 'kernel')
-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 8686b0f5fc12..90f536d84643 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -621,7 +621,7 @@ static struct ctl_table kern_table[] = { | |||
621 | #endif | 621 | #endif |
622 | { | 622 | { |
623 | .procname = "userprocess_debug", | 623 | .procname = "userprocess_debug", |
624 | .data = &sysctl_userprocess_debug, | 624 | .data = &show_unhandled_signals, |
625 | .maxlen = sizeof(int), | 625 | .maxlen = sizeof(int), |
626 | .mode = 0644, | 626 | .mode = 0644, |
627 | .proc_handler = proc_dointvec, | 627 | .proc_handler = proc_dointvec, |
@@ -1431,7 +1431,8 @@ static struct ctl_table fs_table[] = { | |||
1431 | }; | 1431 | }; |
1432 | 1432 | ||
1433 | static struct ctl_table debug_table[] = { | 1433 | static struct ctl_table debug_table[] = { |
1434 | #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_SPARC) | 1434 | #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_SPARC) || \ |
1435 | defined(CONFIG_S390) | ||
1435 | { | 1436 | { |
1436 | .procname = "exception-trace", | 1437 | .procname = "exception-trace", |
1437 | .data = &show_unhandled_signals, | 1438 | .data = &show_unhandled_signals, |