aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-generic/audit_read.h
diff options
context:
space:
mode:
authorChris Metcalf <cmetcalf@tilera.com>2011-05-02 16:52:19 -0400
committerChris Metcalf <cmetcalf@tilera.com>2011-05-04 14:41:28 -0400
commitaaeb012fe4700cb808562c2daf7ccc464e7f18cf (patch)
treec46c547b8cc287acad328c2c937485349a0df456 /include/asm-generic/audit_read.h
parentarch/tile: clarify flush_buffer()/finv_buffer() function names (diff)
downloadlinux-dev-aaeb012fe4700cb808562c2daf7ccc464e7f18cf.tar.xz
linux-dev-aaeb012fe4700cb808562c2daf7ccc464e7f18cf.zip
audit: support the "standard" <asm-generic/unistd.h>
Many of the syscalls mentioned in the audit code are not present for architectures that implement only the "standard" set of Linux syscalls (e.g. openat, but not open, etc.). This change adds proper #ifdefs for all those syscalls. Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'include/asm-generic/audit_read.h')
-rw-r--r--include/asm-generic/audit_read.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asm-generic/audit_read.h b/include/asm-generic/audit_read.h
index 0e87464d9847..3b249cb857dc 100644
--- a/include/asm-generic/audit_read.h
+++ b/include/asm-generic/audit_read.h
@@ -1,4 +1,6 @@
+#ifdef __NR_readlink
__NR_readlink,
+#endif
__NR_quotactl,
__NR_listxattr,
__NR_llistxattr,
@@ -6,3 +8,6 @@ __NR_flistxattr,
__NR_getxattr,
__NR_lgetxattr,
__NR_fgetxattr,
+#ifdef __NR_readlinkat
+__NR_readlinkat,
+#endif