diff options
author | Richard Guy Briggs <rgb@redhat.com> | 2018-06-05 11:45:07 -0400 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2018-06-19 10:39:54 -0400 |
commit | d904ac0320d3c4ff4e9d80e4294ca5dde803696f (patch) | |
tree | 3f504b3d96ce50dd4c9aa6724aa784c6f4c852a9 /kernel/audit.c | |
parent | af85d1772e31fed34165a1b3decef340cf4080c0 (diff) | |
download | linux-stable-d904ac0320d3c4ff4e9d80e4294ca5dde803696f.tar.gz linux-stable-d904ac0320d3c4ff4e9d80e4294ca5dde803696f.tar.bz2 linux-stable-d904ac0320d3c4ff4e9d80e4294ca5dde803696f.zip |
audit: rename FILTER_TYPE to FILTER_EXCLUDE
The AUDIT_FILTER_TYPE name is vague and misleading due to not describing
where or when the filter is applied and obsolete due to its available
filter fields having been expanded.
Userspace has already renamed it from AUDIT_FILTER_TYPE to
AUDIT_FILTER_EXCLUDE without checking if it already exists. The
userspace maintainer assures that as long as it is set to the same value
it will not be a problem since the userspace code does not treat
compiler warnings as errors. If this policy changes then checks if it
already exists can be added at the same time.
See: https://github.com/linux-audit/audit-kernel/issues/89
Signed-off-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 e7478cb58079..5c0a1d7b0c7b 100644 --- a/kernel/audit.c +++ b/kernel/audit.c @@ -1754,7 +1754,7 @@ struct audit_buffer *audit_log_start(struct audit_context *ctx, gfp_t gfp_mask, if (audit_initialized != AUDIT_INITIALIZED) return NULL; - if (unlikely(!audit_filter(type, AUDIT_FILTER_TYPE))) + if (unlikely(!audit_filter(type, AUDIT_FILTER_EXCLUDE))) return NULL; /* NOTE: don't ever fail/sleep on these two conditions: |