diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-23 12:25:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-23 12:25:52 -0400 |
commit | 19504828b4bee5e471bcd35e214bc6fd0d380692 (patch) | |
tree | 30d4ffb6783daf9fadd47548c035646d3f0f073e /kernel/sysctl.c | |
parent | 57d19e80f459dd845fb3cfeba8e6df8471bac142 (diff) | |
parent | 3cb6d1540880e767d911b79eb49578de2190f428 (diff) |
Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
perf tools: Fix sample size bit operations
perf tools: Fix ommitted mmap data update on remap
watchdog: Change the default timeout and configure nmi watchdog period based on watchdog_thresh
watchdog: Disable watchdog when thresh is zero
watchdog: Only disable/enable watchdog if neccessary
watchdog: Fix rounding bug in get_sample_period()
perf tools: Propagate event parse error handling
perf tools: Robustify dynamic sample content fetch
perf tools: Pre-check sample size before parsing
perf tools: Move evlist sample helpers to evlist area
perf tools: Remove junk code in mmap size handling
perf tools: Check we are able to read the event size on mmap
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r-- | kernel/sysctl.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index c0bb32414b17..3dd0c46fa3bb 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -730,14 +730,16 @@ static struct ctl_table kern_table[] = { | |||
730 | .data = &watchdog_enabled, | 730 | .data = &watchdog_enabled, |
731 | .maxlen = sizeof (int), | 731 | .maxlen = sizeof (int), |
732 | .mode = 0644, | 732 | .mode = 0644, |
733 | .proc_handler = proc_dowatchdog_enabled, | 733 | .proc_handler = proc_dowatchdog, |
734 | .extra1 = &zero, | ||
735 | .extra2 = &one, | ||
734 | }, | 736 | }, |
735 | { | 737 | { |
736 | .procname = "watchdog_thresh", | 738 | .procname = "watchdog_thresh", |
737 | .data = &softlockup_thresh, | 739 | .data = &watchdog_thresh, |
738 | .maxlen = sizeof(int), | 740 | .maxlen = sizeof(int), |
739 | .mode = 0644, | 741 | .mode = 0644, |
740 | .proc_handler = proc_dowatchdog_thresh, | 742 | .proc_handler = proc_dowatchdog, |
741 | .extra1 = &neg_one, | 743 | .extra1 = &neg_one, |
742 | .extra2 = &sixty, | 744 | .extra2 = &sixty, |
743 | }, | 745 | }, |
@@ -755,7 +757,9 @@ static struct ctl_table kern_table[] = { | |||
755 | .data = &watchdog_enabled, | 757 | .data = &watchdog_enabled, |
756 | .maxlen = sizeof (int), | 758 | .maxlen = sizeof (int), |
757 | .mode = 0644, | 759 | .mode = 0644, |
758 | .proc_handler = proc_dowatchdog_enabled, | 760 | .proc_handler = proc_dowatchdog, |
761 | .extra1 = &zero, | ||
762 | .extra2 = &one, | ||
759 | }, | 763 | }, |
760 | #endif | 764 | #endif |
761 | #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86) | 765 | #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86) |