diff options
author | Salvatore Mesoraca <s.mesoraca16@gmail.com> | 2015-08-03 12:40:51 +0200 |
---|---|---|
committer | James Morris <james.l.morris@oracle.com> | 2015-08-04 01:36:18 +1000 |
commit | 5413fcdbe9e7ca32ce3f00fd5251dfa560b7484b (patch) | |
tree | 8cd7967bdd3f62d7f7827fe511574b6e093480af /security | |
parent | 74d33293e467df61de1b1d8b2fbe29e550dec33b (diff) | |
download | op-kernel-dev-5413fcdbe9e7ca32ce3f00fd5251dfa560b7484b.zip op-kernel-dev-5413fcdbe9e7ca32ce3f00fd5251dfa560b7484b.tar.gz |
Adding YAMA hooks also when YAMA is not stacked.
Without this patch YAMA will not work at all if it is chosen
as the primary LSM instead of being "stacked".
Signed-off-by: Salvatore Mesoraca <s.mesoraca16@gmail.com>
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: James Morris <james.l.morris@oracle.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/yama/yama_lsm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/yama/yama_lsm.c b/security/yama/yama_lsm.c index 9ed3250..5ebb896 100644 --- a/security/yama/yama_lsm.c +++ b/security/yama/yama_lsm.c @@ -406,6 +406,7 @@ static __init int yama_init(void) */ if (!security_module_enable("yama")) return 0; + yama_add_hooks(); #endif pr_info("Yama: becoming mindful.\n"); |