diff options
author | Eric Paris <eparis@redhat.com> | 2012-01-03 14:23:06 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-17 16:16:57 -0500 |
commit | 997f5b6444f4608692ec807fb802fd9767c80e76 (patch) | |
tree | 3f523cd7aa1a8ab836ad2d494752364dde5b5eac /kernel/audit.h | |
parent | b05d8447e7821695bc2fa3359431f7a664232743 (diff) | |
download | linux-997f5b6444f4608692ec807fb802fd9767c80e76.tar.gz linux-997f5b6444f4608692ec807fb802fd9767c80e76.tar.bz2 linux-997f5b6444f4608692ec807fb802fd9767c80e76.zip |
audit: remove AUDIT_SETUP_CONTEXT as it isn't used
Audit contexts have 3 states. Disabled, which doesn't collect anything,
build, which collects info but might not emit it, and record, which
collects and emits. There is a 4th state, setup, which isn't used. Get
rid of it.
Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'kernel/audit.h')
-rw-r--r-- | kernel/audit.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/kernel/audit.h b/kernel/audit.h index 91e7071c4d2c..816766803371 100644 --- a/kernel/audit.h +++ b/kernel/audit.h @@ -36,12 +36,8 @@ enum audit_state { AUDIT_DISABLED, /* Do not create per-task audit_context. * No syscall-specific audit records can * be generated. */ - AUDIT_SETUP_CONTEXT, /* Create the per-task audit_context, - * but don't necessarily fill it in at - * syscall entry time (i.e., filter - * instead). */ AUDIT_BUILD_CONTEXT, /* Create the per-task audit_context, - * and always fill it in at syscall + * and fill it in at syscall * entry time. This makes a full * syscall record available if some * other part of the kernel decides it |