]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
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 0f12cf01070e34581c6f1a8d519d777304a649d9..b02aea291b7e8ea22468d6a6ecb3e0c188dff026 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;