bpf: constify member bpf_sysctl_kern:: Table
authorThomas Weißschuh <linux@weissschuh.net>
Sat, 18 May 2024 14:58:47 +0000 (16:58 +0200)
committerDaniel Borkmann <daniel@iogearbox.net>
Fri, 24 May 2024 15:44:32 +0000 (17:44 +0200)
commit2c1713a8f1c94033a6e00aae4693ab03e8a3b9f1
treea532036e561cc47497039c481b72c69d848a9968
parent99fa63d9ca60c4c1cc843fde205e4bc6e86b218f
bpf: constify member bpf_sysctl_kern:: Table

The sysctl core is preparing to only expose instances of struct ctl_table
as "const". This will also affect the ctl_table argument of sysctl handlers,
for which bpf_sysctl_kern::table is also used.

As the function prototype of all sysctl handlers throughout the tree
needs to stay consistent that change will be done in one commit.

To reduce the size of that final commit, switch this utility type which
is not bound by "typedef proc_handler" to "const struct ctl_table".

No functional change.

Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Reviewed-by: Joel Granados <j.granados@samsung.com>
Link: https://lore.kernel.org/bpf/20240518-sysctl-const-handler-bpf-v1-1-f0d7186743c1@weissschuh.net
include/linux/filter.h