diff options
author | James Morris <jmorris@namei.org> | 2017-02-15 00:18:51 +1100 |
---|---|---|
committer | James Morris <james.l.morris@oracle.com> | 2017-03-06 11:00:15 +1100 |
commit | ca97d939db114c8d1619e10a3b82af8615372dae (patch) | |
tree | cb16c707c4015b2dcbfc1f783071b5980ddd9145 /security/commoncap.c | |
parent | dd0859dccbe291cf8179a96390f5c0e45cb9af1d (diff) | |
download | linux-ca97d939db114c8d1619e10a3b82af8615372dae.tar.gz linux-ca97d939db114c8d1619e10a3b82af8615372dae.tar.bz2 linux-ca97d939db114c8d1619e10a3b82af8615372dae.zip |
security: mark LSM hooks as __ro_after_init
Mark all of the registration hooks as __ro_after_init (via the
__lsm_ro_after_init macro).
Signed-off-by: James Morris <james.l.morris@oracle.com>
Acked-by: Stephen Smalley <sds@tycho.nsa.gov>
Acked-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'security/commoncap.c')
-rw-r--r-- | security/commoncap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/commoncap.c b/security/commoncap.c index 78b37838a2d3..7abebd782d5e 100644 --- a/security/commoncap.c +++ b/security/commoncap.c @@ -1071,7 +1071,7 @@ int cap_mmap_file(struct file *file, unsigned long reqprot, #ifdef CONFIG_SECURITY -struct security_hook_list capability_hooks[] = { +struct security_hook_list capability_hooks[] __lsm_ro_after_init = { LSM_HOOK_INIT(capable, cap_capable), LSM_HOOK_INIT(settime, cap_settime), LSM_HOOK_INIT(ptrace_access_check, cap_ptrace_access_check), |