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)
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

index 0f12cf0..b02aea2 100644 (file)
@@ -1406,7 +1406,7 @@ struct bpf_sock_ops_kern {
 
 struct bpf_sysctl_kern {
        struct ctl_table_header *head;
-       struct ctl_table *table;
+       const struct ctl_table *table;
        void *cur_val;
        size_t cur_len;
        void *new_val;