mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
aaeb012fe4
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>
14 lines
202 B
C
14 lines
202 B
C
#ifdef __NR_readlink
|
|
__NR_readlink,
|
|
#endif
|
|
__NR_quotactl,
|
|
__NR_listxattr,
|
|
__NR_llistxattr,
|
|
__NR_flistxattr,
|
|
__NR_getxattr,
|
|
__NR_lgetxattr,
|
|
__NR_fgetxattr,
|
|
#ifdef __NR_readlinkat
|
|
__NR_readlinkat,
|
|
#endif
|