Al Viro | b915543 | 2006-07-01 03:56:16 -0400 | [diff] [blame^] | 1 | #include <linux/init.h> |
| 2 | #include <linux/types.h> |
| 3 | #include <linux/audit.h> |
| 4 | #include <asm/unistd.h> |
| 5 | |
| 6 | static unsigned dir_class[] = { |
| 7 | #include <asm-generic/audit_dir_write.h> |
| 8 | ~0U |
| 9 | }; |
| 10 | |
| 11 | static unsigned chattr_class[] = { |
| 12 | #include <asm-generic/audit_change_attr.h> |
| 13 | ~0U |
| 14 | }; |
| 15 | |
| 16 | static int __init audit_classes_init(void) |
| 17 | { |
| 18 | audit_register_class(AUDIT_CLASS_DIR_WRITE, dir_class); |
| 19 | audit_register_class(AUDIT_CLASS_CHATTR, chattr_class); |
| 20 | return 0; |
| 21 | } |
| 22 | |
| 23 | __initcall(audit_classes_init); |