]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
bpf: Constify ctl_table argument of filter function
authorThomas Weißschuh <linux@weissschuh.net>
Mon, 5 Aug 2024 09:39:36 +0000 (11:39 +0200)
committerJoel Granados <joel.granados@kernel.org>
Wed, 9 Oct 2024 11:39:11 +0000 (13:39 +0200)
commit57e3707eb5e3d9a45eef9151f0378313b1d39a17
treed9b5bedcf605f773a1756f6e8cc5ebb192ddaa9a
parent8cf0b93919e13d1e8d4466eb4080a4c4d9d66d7b
bpf: Constify ctl_table argument of filter function

The sysctl core is moving to allow "struct ctl_table" in read-only memory.
As a preparation for that all functions handling "struct ctl_table" need
to be able to work with "const struct ctl_table".
As __cgroup_bpf_run_filter_sysctl() does not modify its table, it can be
adapted trivially.

Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Signed-off-by: Joel Granados <joel.granados@kernel.org>
include/linux/bpf-cgroup.h
kernel/bpf/cgroup.c