aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sysctl.c
diff options
context:
space:
mode:
authorPeter Zijlstra <a.p.zijlstra@chello.nl>2009-06-11 05:25:05 -0400
committerIngo Molnar <mingo@elte.hu>2009-06-11 10:48:38 -0400
commitdf58ab24bf26b166874bfb18b3b5a2e0a8e63179 (patch)
tree388b2fb9d94864c9bd6d6ab9329c31760b7366ae /kernel/sysctl.c
parent0764771dab80d7b84b9a271bee7f1b21a04a3f0c (diff)
perf_counter: Rename perf_counter_limit sysctl
Rename perf_counter_limit to perf_counter_max_sample_rate and prohibit creation of counters with a known higher sample frequency. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r--kernel/sysctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index 344a65981dee..9fd4e436b696 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -932,9 +932,9 @@ static struct ctl_table kern_table[] = {
932 }, 932 },
933 { 933 {
934 .ctl_name = CTL_UNNUMBERED, 934 .ctl_name = CTL_UNNUMBERED,
935 .procname = "perf_counter_int_limit", 935 .procname = "perf_counter_max_sample_rate",
936 .data = &sysctl_perf_counter_limit, 936 .data = &sysctl_perf_counter_sample_rate,
937 .maxlen = sizeof(sysctl_perf_counter_limit), 937 .maxlen = sizeof(sysctl_perf_counter_sample_rate),
938 .mode = 0644, 938 .mode = 0644,
939 .proc_handler = &proc_dointvec, 939 .proc_handler = &proc_dointvec,
940 }, 940 },