diff options
| author | Kees Cook <[email protected]> | 2018-10-11 00:18:23 +0000 |
|---|---|---|
| committer | James Morris <[email protected]> | 2018-10-11 03:40:21 +0000 |
| commit | 3d6e5f6dcf6561e57b6466e43e14029fb196028d (patch) | |
| tree | 829be56c4ecc3bf4bc9b4c9726977c6ad83fe010 /security/selinux/hooks.c | |
| parent | vmlinux.lds.h: Move LSM_TABLE into INIT_DATA (diff) | |
| download | kernel-3d6e5f6dcf6561e57b6466e43e14029fb196028d.tar.gz kernel-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 <[email protected]>
Reviewed-by: Casey Schaufler <[email protected]>
Reviewed-by: James Morris <[email protected]>
Signed-off-by: James Morris <[email protected]>
Diffstat (limited to 'security/selinux/hooks.c')
| -rw-r--r-- | security/selinux/hooks.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index ad9a9b8e9979..6ca2e89ddbd6 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -7202,7 +7202,9 @@ void selinux_complete_init(void) /* SELinux requires early initialization in order to label all processes and objects when they are created. */ -security_initcall(selinux_init); +DEFINE_LSM(selinux) = { + .init = selinux_init, +}; #if defined(CONFIG_NETFILTER) |
