diff options
author | Kees Cook <[email protected]> | 2018-10-10 17:18:17 -0700 |
---|---|---|
committer | James Morris <[email protected]> | 2018-10-10 20:40:21 -0700 |
commit | 98d291708cbaab06efec195d0810a7ef60f7603a (patch) | |
tree | 2bf31e4f0b4c1d37c74b9915f107d1518d99d08a | |
parent | e6123c524064a571616ec978b1317f1696eff0ae (diff) |
LSM: Correctly announce start of LSM initialization
For a while now, the LSM core has said it was "initializED", rather than
"initializING". This adjust the report to be more accurate (i.e. before
this was reported before any LSMs had been initialized.)
Signed-off-by: Kees Cook <[email protected]>
Reviewed-by: Casey Schaufler <[email protected]>
Reviewed-by: James Morris <[email protected]>
Reviewed-by: John Johansen <[email protected]>
Signed-off-by: James Morris <[email protected]>
-rw-r--r-- | security/security.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/security/security.c b/security/security.c index 736e78da1ab9..4cbcf244a965 100644 --- a/security/security.c +++ b/security/security.c @@ -72,10 +72,11 @@ int __init security_init(void) int i; struct hlist_head *list = (struct hlist_head *) &security_hook_heads; + pr_info("Security Framework initializing\n"); + for (i = 0; i < sizeof(security_hook_heads) / sizeof(struct hlist_head); i++) INIT_HLIST_HEAD(&list[i]); - pr_info("Security Framework initialized\n"); /* * Load minor LSMs, with the capability module always first. |