diff options
author | Xiu Jianfeng <xiujianfeng@huawei.com> | 2023-07-21 11:06:07 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2023-10-05 10:26:50 +0200 |
commit | e6814ec3ba1994561db9b1c05a80227d30cc18fa (patch) | |
tree | c4a652327c65502e48f9760e31e5226498126d90 /kernel/sysctl.c | |
parent | perf/x86/rapl: Fix "Using plain integer as NULL pointer" Sparse warning (diff) | |
download | linux-e6814ec3ba1994561db9b1c05a80227d30cc18fa.tar.xz linux-e6814ec3ba1994561db9b1c05a80227d30cc18fa.zip |
perf/core: Rename perf_proc_update_handler() -> perf_event_max_sample_rate_handler(), for readability
Follow the naming pattern of the other sysctl handlers in perf.
Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20230721090607.172002-1-xiujianfeng@huawei.com
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r-- | kernel/sysctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 354a2d294f52..2b6585751891 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -1983,7 +1983,7 @@ static struct ctl_table kern_table[] = { .data = &sysctl_perf_event_sample_rate, .maxlen = sizeof(sysctl_perf_event_sample_rate), .mode = 0644, - .proc_handler = perf_proc_update_handler, + .proc_handler = perf_event_max_sample_rate_handler, .extra1 = SYSCTL_ONE, }, { |