]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
fs/proc/namespaces: make ns_entries const
authorMax Kellermann <max.kellermann@ionos.com>
Tue, 9 Sep 2025 07:55:06 +0000 (09:55 +0200)
committerChristian Brauner <brauner@kernel.org>
Mon, 15 Sep 2025 12:28:37 +0000 (14:28 +0200)
commit796667c9dc94ef9431d4ac620021527b273080e1
tree6b65cf2fc0832cee53fcff4f984a3e85b306b853
parentc593b9d6c446510684da400833f9d632651942f0
fs/proc/namespaces: make ns_entries const

Global variables that are never modified should be "const" so so that
they live in the .rodata section instead of the .data section of the
kernel, gaining the protection of the kernel's strict memory
permissions as described in Documentation/security/self-protection.rst

Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
Signed-off-by: Christian Brauner <brauner@kernel.org>
fs/proc/namespaces.c