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>
此提交包含在:
Kees Cook
2018-10-10 17:18:23 -07:00
提交者 James Morris
父節點 3ac946d12e
當前提交 3d6e5f6dcf
共有 6 個檔案被更改,包括 17 行新增8 行删除

查看文件

@@ -550,4 +550,6 @@ static int __init tomoyo_init(void)
return 0;
}
security_initcall(tomoyo_init);
DEFINE_LSM(tomoyo) = {
.init = tomoyo_init,
};