diff options
author | Kees Cook <keescook@chromium.org> | 2018-10-10 17:18:23 -0700 |
---|---|---|
committer | James Morris <james.morris@microsoft.com> | 2018-10-10 20:40:21 -0700 |
commit | 3d6e5f6dcf6561e57b6466e43e14029fb196028d (patch) | |
tree | 829be56c4ecc3bf4bc9b4c9726977c6ad83fe010 /security/integrity | |
parent | 3ac946d12e344a48c1192ef8910c6095a0d6a8ac (diff) | |
download | linux-3d6e5f6dcf6561e57b6466e43e14029fb196028d.tar.bz2 |
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 'security/integrity')
-rw-r--r-- | security/integrity/iint.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/security/integrity/iint.c b/security/integrity/iint.c index 70d21b566955..94e8e1820748 100644 --- a/security/integrity/iint.c +++ b/security/integrity/iint.c @@ -175,7 +175,9 @@ static int __init integrity_iintcache_init(void) 0, SLAB_PANIC, init_once); return 0; } -security_initcall(integrity_iintcache_init); +DEFINE_LSM(integrity) = { + .init = integrity_iintcache_init, +}; /* |