aboutsummaryrefslogtreecommitdiffstats
path: root/security/tomoyo/tomoyo.c
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2018-10-10 17:18:23 -0700
committerJames Morris <james.morris@microsoft.com>2018-10-10 20:40:21 -0700
commit3d6e5f6dcf6561e57b6466e43e14029fb196028d (patch)
tree829be56c4ecc3bf4bc9b4c9726977c6ad83fe010 /security/tomoyo/tomoyo.c
parentvmlinux.lds.h: Move LSM_TABLE into INIT_DATA (diff)
downloadlinux-dev-3d6e5f6dcf6561e57b6466e43e14029fb196028d.tar.xz
linux-dev-3d6e5f6dcf6561e57b6466e43e14029fb196028d.zip
LSM: Convert security_initcall() into DEFINE_LSM()
Instead of using argument-based initializers, switch to defining the contents of struct lsm_info on a per-LSM basis. This also drops the final use of the now inaccurate "initcall" naming. Signed-off-by: Kees Cook <keescook@chromium.org> Reviewed-by: Casey Schaufler <casey@schaufler-ca.com> Reviewed-by: James Morris <james.morris@microsoft.com> Signed-off-by: James Morris <james.morris@microsoft.com>
Diffstat (limited to '')
-rw-r--r--security/tomoyo/tomoyo.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/security/tomoyo/tomoyo.c b/security/tomoyo/tomoyo.c
index 9f932e2d6852..b2d833999910 100644
--- a/security/tomoyo/tomoyo.c
+++ b/security/tomoyo/tomoyo.c
@@ -550,4 +550,6 @@ static int __init tomoyo_init(void)
return 0;
}
-security_initcall(tomoyo_init);
+DEFINE_LSM(tomoyo) = {
+ .init = tomoyo_init,
+};