Message ID | 20231204-const-sysctl-v2-18-7a5060b11447@weissschuh.net (mailing list archive) |
---|---|
State | In Next |
Commit | 5cfe1d126ae344cde054d11fa1c0507e0f5c3cf4 |
Headers | show |
Series | sysctl: constify sysctl ctl_tables | expand |
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index d60daa4e36fc..e48a60887c7e 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -1615,7 +1615,7 @@ int proc_do_static_key(const struct ctl_table *table, int write, return ret; } -static struct ctl_table kern_table[] = { +static const struct ctl_table kern_table[] = { { .procname = "panic", .data = &panic_timeout,
Recent changes in the sysctl allow sysctl tables to be put into .rodata. Signed-off-by: Thomas Weißschuh <linux@weissschuh.net> --- kernel/sysctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)