audit: drop unused struct audit_rule definition
authorEric Paris <eparis@redhat.com>
Wed, 2 Apr 2014 20:00:58 +0000 (16:00 -0400)
committerEric Paris <eparis@redhat.com>
Tue, 23 Sep 2014 20:19:59 +0000 (16:19 -0400)
The kernel only uses struct audit_rule_data.  We dropped support for
struct audit_rule a long time ago.  Drop the definition in the header
file.

Signed-off-by: Eric Paris <eparis@redhat.com>
include/uapi/linux/audit.h

index cf6714752b69ab12b5adc92461bb793aad39a431..df71b1d2cbb8009a01de79434179f10749a478ba 100644 (file)
@@ -444,17 +444,4 @@ struct audit_rule_data {
        char            buf[0]; /* string fields buffer */
 };
 
-/* audit_rule is supported to maintain backward compatibility with
- * userspace.  It supports integer fields only and corresponds to
- * AUDIT_ADD, AUDIT_DEL and AUDIT_LIST requests.
- */
-struct audit_rule {            /* for AUDIT_LIST, AUDIT_ADD, and AUDIT_DEL */
-       __u32           flags;  /* AUDIT_PER_{TASK,CALL}, AUDIT_PREPEND */
-       __u32           action; /* AUDIT_NEVER, AUDIT_POSSIBLE, AUDIT_ALWAYS */
-       __u32           field_count;
-       __u32           mask[AUDIT_BITMASK_SIZE];
-       __u32           fields[AUDIT_MAX_FIELDS];
-       __u32           values[AUDIT_MAX_FIELDS];
-};
-
 #endif /* _UAPI_LINUX_AUDIT_H_ */