diff options
Diffstat (limited to 'security/landlock/audit.h')
-rw-r--r-- | security/landlock/audit.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/security/landlock/audit.h b/security/landlock/audit.h index 3a6ec7c8e7c3..40ff230316c4 100644 --- a/security/landlock/audit.h +++ b/security/landlock/audit.h @@ -36,12 +36,19 @@ struct landlock_request { #ifdef CONFIG_AUDIT +void landlock_log_drop_domain(const struct landlock_hierarchy *const hierarchy); + void landlock_log_denial(const struct landlock_cred_security *const subject, const struct landlock_request *const request); #else /* CONFIG_AUDIT */ static inline void +landlock_log_drop_domain(const struct landlock_hierarchy *const hierarchy) +{ +} + +static inline void landlock_log_denial(const struct landlock_cred_security *const subject, const struct landlock_request *const request) { |