summaryrefslogtreecommitdiffstats
path: root/include/asm-generic/audit_write.h
diff options
context:
space:
mode:
authorAKASHI Takahiro2014-01-17 09:05:03 +0100
committerEric Paris2014-01-17 23:01:46 +0100
commit262fd3aad61100cb4f281efa292374817c25a479 (patch)
tree5d72c0da24d0e8f7fcbb0a64dc4ac10b61db3c9a /include/asm-generic/audit_write.h
parentaudit: Convert int limit uses to u32 (diff)
downloadkernel-qcow2-linux-262fd3aad61100cb4f281efa292374817c25a479.tar.gz
kernel-qcow2-linux-262fd3aad61100cb4f281efa292374817c25a479.tar.xz
kernel-qcow2-linux-262fd3aad61100cb4f281efa292374817c25a479.zip
audit: Modify a set of system calls in audit class definitions
Each asm-generic/audit_xx.h defines a set of system calls for respective audit permission class (read, write, change attribute or exec). This patch changes two entries: 1) fchown in audit_change_attr.h Make fchown included by its own because in asm-generic/unistd.h, for example, fchown always exists while chown is optional. This change is necessary at least for arm64. 2) truncate64 in audit_write.h Add missing truncate64/ftruncate64 as well as truncate/ftruncate Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Acked-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'include/asm-generic/audit_write.h')
-rw-r--r--include/asm-generic/audit_write.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asm-generic/audit_write.h b/include/asm-generic/audit_write.h
index e7020c57b13b..274575d7129f 100644
--- a/include/asm-generic/audit_write.h
+++ b/include/asm-generic/audit_write.h
@@ -10,6 +10,12 @@ __NR_truncate,
#ifdef __NR_truncate64
__NR_truncate64,
#endif
+#ifdef __NR_ftruncate
+__NR_ftruncate,
+#endif
+#ifdef __NR_ftruncate64
+__NR_ftruncate64,
+#endif
#ifdef __NR_bind
__NR_bind, /* bind can affect fs object only in one way... */
#endif