diff options
author | Namhyung Kim <namhyung.kim@lge.com> | 2012-08-15 22:15:30 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2012-09-04 08:31:34 -0400 |
commit | d00535db42805e9ae5eadf1b4a86e01e85674b0c (patch) | |
tree | 808a6058e6b27c9ef676ed72590d94c077983bb8 /kernel/sysctl.c | |
parent | 201c373e8e4823700d3160d5c28e1ab18fd1193e (diff) |
sched: Add time unit suffix to sched sysctl knobs
Unlike others, sched_migration_cost, sched_time_avg and
sched_shares_window doesn't have time unit as suffix. Add them.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1345083330-19486-1-git-send-email-namhyung@kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r-- | kernel/sysctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 87174ef59161..81c7b1a1a307 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -307,7 +307,7 @@ static struct ctl_table kern_table[] = { | |||
307 | .extra2 = &max_sched_tunable_scaling, | 307 | .extra2 = &max_sched_tunable_scaling, |
308 | }, | 308 | }, |
309 | { | 309 | { |
310 | .procname = "sched_migration_cost", | 310 | .procname = "sched_migration_cost_ns", |
311 | .data = &sysctl_sched_migration_cost, | 311 | .data = &sysctl_sched_migration_cost, |
312 | .maxlen = sizeof(unsigned int), | 312 | .maxlen = sizeof(unsigned int), |
313 | .mode = 0644, | 313 | .mode = 0644, |
@@ -321,14 +321,14 @@ static struct ctl_table kern_table[] = { | |||
321 | .proc_handler = proc_dointvec, | 321 | .proc_handler = proc_dointvec, |
322 | }, | 322 | }, |
323 | { | 323 | { |
324 | .procname = "sched_time_avg", | 324 | .procname = "sched_time_avg_ms", |
325 | .data = &sysctl_sched_time_avg, | 325 | .data = &sysctl_sched_time_avg, |
326 | .maxlen = sizeof(unsigned int), | 326 | .maxlen = sizeof(unsigned int), |
327 | .mode = 0644, | 327 | .mode = 0644, |
328 | .proc_handler = proc_dointvec, | 328 | .proc_handler = proc_dointvec, |
329 | }, | 329 | }, |
330 | { | 330 | { |
331 | .procname = "sched_shares_window", | 331 | .procname = "sched_shares_window_ns", |
332 | .data = &sysctl_sched_shares_window, | 332 | .data = &sysctl_sched_shares_window, |
333 | .maxlen = sizeof(unsigned int), | 333 | .maxlen = sizeof(unsigned int), |
334 | .mode = 0644, | 334 | .mode = 0644, |