diff options
author | Paul Moore <paul@paul-moore.com> | 2017-09-01 16:44:44 +0300 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2017-11-11 00:07:46 +0300 |
commit | be4104abf25c63ccef36e1e06262c73c0df9fd60 (patch) | |
tree | 157da0081d61dbc94e6f718455fd0e1153536bd7 /kernel/audit.c | |
parent | 173743dd99a49c956b124a74c8aacb0384739a4c (diff) | |
download | linux-be4104abf25c63ccef36e1e06262c73c0df9fd60.tar.xz |
audit: initialize the audit subsystem as early as possible
We can't initialize the audit subsystem until after the network layer
is initialized (core_initcall), but do it soon after.
Reviewed-by: Richard Guy Briggs <rgb@redhat.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'kernel/audit.c')
-rw-r--r-- | kernel/audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/audit.c b/kernel/audit.c index ec3d0802734d..db71c45ea6f8 100644 --- a/kernel/audit.c +++ b/kernel/audit.c @@ -1562,7 +1562,7 @@ static int __init audit_init(void) return 0; } -__initcall(audit_init); +postcore_initcall(audit_init); /* Process kernel command-line parameter at boot time. audit=0 or audit=1. */ static int __init audit_enable(char *str) |