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>
This commit is contained in:
@@ -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,
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user