Re: [PATCH v2 05/18] seccomp: constify ctl_table arguments of utility functions

2023-12-04 Thread Kees Cook
On Mon, Dec 04, 2023 at 08:52:18AM +0100, Thomas Weißschuh wrote: > In a future commit the proc_handlers themselves will change to > "const struct ctl_table". As a preparation for that adapt the internal > helpers. > > Signed-off-by: Thomas Weißschuh Acked-by: Kees Cook -- Kees Cook

[PATCH v2 05/18] seccomp: constify ctl_table arguments of utility functions

2023-12-03 Thread Thomas Weißschuh
In a future commit the proc_handlers themselves will change to "const struct ctl_table". As a preparation for that adapt the internal helpers. Signed-off-by: Thomas Weißschuh --- kernel/seccomp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/seccomp.c