diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-09-15 06:18:15 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-09-15 06:18:15 -0400 |
commit | dca2d6ac09d9ef59ff46820d4f0c94b08a671202 (patch) | |
tree | fdec753b842dad09e3a4151954fab3eb5c43500d /kernel/sysctl.c | |
parent | d6a65dffb30d8636b1e5d4c201564ef401a246cf (diff) | |
parent | 18240904960a39e582ced8ba8ececb10b8c22dd3 (diff) |
Merge branch 'linus' into tracing/hw-breakpoints
Conflicts:
arch/x86/kernel/process_64.c
Semantic conflict fixed in:
arch/x86/kvm/x86.c
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r-- | kernel/sysctl.c | 35 |
1 files changed, 25 insertions, 10 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 58be76017fd0..6bb59f707402 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -49,7 +49,6 @@ | |||
49 | #include <linux/acpi.h> | 49 | #include <linux/acpi.h> |
50 | #include <linux/reboot.h> | 50 | #include <linux/reboot.h> |
51 | #include <linux/ftrace.h> | 51 | #include <linux/ftrace.h> |
52 | #include <linux/security.h> | ||
53 | #include <linux/slow-work.h> | 52 | #include <linux/slow-work.h> |
54 | #include <linux/perf_counter.h> | 53 | #include <linux/perf_counter.h> |
55 | 54 | ||
@@ -92,6 +91,7 @@ extern int sysctl_nr_trim_pages; | |||
92 | #ifdef CONFIG_RCU_TORTURE_TEST | 91 | #ifdef CONFIG_RCU_TORTURE_TEST |
93 | extern int rcutorture_runnable; | 92 | extern int rcutorture_runnable; |
94 | #endif /* #ifdef CONFIG_RCU_TORTURE_TEST */ | 93 | #endif /* #ifdef CONFIG_RCU_TORTURE_TEST */ |
94 | extern int blk_iopoll_enabled; | ||
95 | 95 | ||
96 | /* Constants used for minimum and maximum */ | 96 | /* Constants used for minimum and maximum */ |
97 | #ifdef CONFIG_DETECT_SOFTLOCKUP | 97 | #ifdef CONFIG_DETECT_SOFTLOCKUP |
@@ -246,6 +246,14 @@ static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */ | |||
246 | #endif | 246 | #endif |
247 | 247 | ||
248 | static struct ctl_table kern_table[] = { | 248 | static struct ctl_table kern_table[] = { |
249 | { | ||
250 | .ctl_name = CTL_UNNUMBERED, | ||
251 | .procname = "sched_child_runs_first", | ||
252 | .data = &sysctl_sched_child_runs_first, | ||
253 | .maxlen = sizeof(unsigned int), | ||
254 | .mode = 0644, | ||
255 | .proc_handler = &proc_dointvec, | ||
256 | }, | ||
249 | #ifdef CONFIG_SCHED_DEBUG | 257 | #ifdef CONFIG_SCHED_DEBUG |
250 | { | 258 | { |
251 | .ctl_name = CTL_UNNUMBERED, | 259 | .ctl_name = CTL_UNNUMBERED, |
@@ -300,14 +308,6 @@ static struct ctl_table kern_table[] = { | |||
300 | }, | 308 | }, |
301 | { | 309 | { |
302 | .ctl_name = CTL_UNNUMBERED, | 310 | .ctl_name = CTL_UNNUMBERED, |
303 | .procname = "sched_child_runs_first", | ||
304 | .data = &sysctl_sched_child_runs_first, | ||
305 | .maxlen = sizeof(unsigned int), | ||
306 | .mode = 0644, | ||
307 | .proc_handler = &proc_dointvec, | ||
308 | }, | ||
309 | { | ||
310 | .ctl_name = CTL_UNNUMBERED, | ||
311 | .procname = "sched_features", | 311 | .procname = "sched_features", |
312 | .data = &sysctl_sched_features, | 312 | .data = &sysctl_sched_features, |
313 | .maxlen = sizeof(unsigned int), | 313 | .maxlen = sizeof(unsigned int), |
@@ -332,6 +332,14 @@ static struct ctl_table kern_table[] = { | |||
332 | }, | 332 | }, |
333 | { | 333 | { |
334 | .ctl_name = CTL_UNNUMBERED, | 334 | .ctl_name = CTL_UNNUMBERED, |
335 | .procname = "sched_time_avg", | ||
336 | .data = &sysctl_sched_time_avg, | ||
337 | .maxlen = sizeof(unsigned int), | ||
338 | .mode = 0644, | ||
339 | .proc_handler = &proc_dointvec, | ||
340 | }, | ||
341 | { | ||
342 | .ctl_name = CTL_UNNUMBERED, | ||
335 | .procname = "timer_migration", | 343 | .procname = "timer_migration", |
336 | .data = &sysctl_timer_migration, | 344 | .data = &sysctl_timer_migration, |
337 | .maxlen = sizeof(unsigned int), | 345 | .maxlen = sizeof(unsigned int), |
@@ -990,7 +998,14 @@ static struct ctl_table kern_table[] = { | |||
990 | .proc_handler = &proc_dointvec, | 998 | .proc_handler = &proc_dointvec, |
991 | }, | 999 | }, |
992 | #endif | 1000 | #endif |
993 | 1001 | { | |
1002 | .ctl_name = CTL_UNNUMBERED, | ||
1003 | .procname = "blk_iopoll", | ||
1004 | .data = &blk_iopoll_enabled, | ||
1005 | .maxlen = sizeof(int), | ||
1006 | .mode = 0644, | ||
1007 | .proc_handler = &proc_dointvec, | ||
1008 | }, | ||
994 | /* | 1009 | /* |
995 | * NOTE: do not add new entries to this table unless you have read | 1010 | * NOTE: do not add new entries to this table unless you have read |
996 | * Documentation/sysctl/ctl_unnumbered.txt | 1011 | * Documentation/sysctl/ctl_unnumbered.txt |