diff options
Diffstat (limited to 'arch/i386/kernel/audit.c')
| -rw-r--r-- | arch/i386/kernel/audit.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/i386/kernel/audit.c b/arch/i386/kernel/audit.c index 5a53c6f371ff..28bbc46f75c2 100644 --- a/arch/i386/kernel/audit.c +++ b/arch/i386/kernel/audit.c | |||
| @@ -8,6 +8,16 @@ static unsigned dir_class[] = { | |||
| 8 | ~0U | 8 | ~0U |
| 9 | }; | 9 | }; |
| 10 | 10 | ||
| 11 | static unsigned read_class[] = { | ||
| 12 | #include <asm-generic/audit_read.h> | ||
| 13 | ~0U | ||
| 14 | }; | ||
| 15 | |||
| 16 | static unsigned write_class[] = { | ||
| 17 | #include <asm-generic/audit_write.h> | ||
| 18 | ~0U | ||
| 19 | }; | ||
| 20 | |||
| 11 | static unsigned chattr_class[] = { | 21 | static unsigned chattr_class[] = { |
| 12 | #include <asm-generic/audit_change_attr.h> | 22 | #include <asm-generic/audit_change_attr.h> |
| 13 | ~0U | 23 | ~0U |
| @@ -15,6 +25,8 @@ static unsigned chattr_class[] = { | |||
| 15 | 25 | ||
| 16 | static int __init audit_classes_init(void) | 26 | static int __init audit_classes_init(void) |
| 17 | { | 27 | { |
| 28 | audit_register_class(AUDIT_CLASS_WRITE, write_class); | ||
| 29 | audit_register_class(AUDIT_CLASS_READ, read_class); | ||
| 18 | audit_register_class(AUDIT_CLASS_DIR_WRITE, dir_class); | 30 | audit_register_class(AUDIT_CLASS_DIR_WRITE, dir_class); |
| 19 | audit_register_class(AUDIT_CLASS_CHATTR, chattr_class); | 31 | audit_register_class(AUDIT_CLASS_CHATTR, chattr_class); |
| 20 | return 0; | 32 | return 0; |
