diff options
author | Eric Paris <eparis@redhat.com> | 2014-04-02 20:00:58 (GMT) |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2014-09-23 20:19:59 (GMT) |
commit | 7e51aa4486bcf72daeb5d30227c4c01563f37044 (patch) | |
tree | 885de35c7de35cd571bdd2ba7a74f4080660a754 | |
parent | 19583ca584d6f574384e17fe7613dfaeadcdc4a6 (diff) | |
download | linux-7e51aa4486bcf72daeb5d30227c4c01563f37044.tar.xz |
audit: drop unused struct audit_rule definition
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>
-rw-r--r-- | include/uapi/linux/audit.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/uapi/linux/audit.h b/include/uapi/linux/audit.h index cf67147..df71b1d 100644 --- a/include/uapi/linux/audit.h +++ b/include/uapi/linux/audit.h @@ -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_ */ |