diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-09-22 23:10:18 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-23 00:48:56 (GMT) |
commit | a83fbf635992442edf6aa3252e4008d4a08edf12 (patch) | |
tree | dd31c01247cea278a77dcb88732d19c92b9bca77 /include/asm-generic/audit_change_attr.h | |
parent | db392219c5f572610645696e3672f6ea38783a65 (diff) | |
download | linux-a83fbf635992442edf6aa3252e4008d4a08edf12.tar.xz |
[PATCH] fix missing ifdefs in syscall classes hookup for generic targets
several targets have no ....at() family and m32r calls its only chown variant
chown32(), with __NR_chown being undefined. creat(2) is also absent in some
targets.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-generic/audit_change_attr.h')
-rw-r--r-- | include/asm-generic/audit_change_attr.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-generic/audit_change_attr.h b/include/asm-generic/audit_change_attr.h index cb05bf6..5076455 100644 --- a/include/asm-generic/audit_change_attr.h +++ b/include/asm-generic/audit_change_attr.h @@ -1,16 +1,20 @@ __NR_chmod, __NR_fchmod, +#ifdef __NR_chown __NR_chown, __NR_fchown, __NR_lchown, +#endif __NR_setxattr, __NR_lsetxattr, __NR_fsetxattr, __NR_removexattr, __NR_lremovexattr, __NR_fremovexattr, +#ifdef __NR_fchownat __NR_fchownat, __NR_fchmodat, +#endif #ifdef __NR_chown32 __NR_chown32, __NR_fchown32, |