From 309e48c0cb504169e415a7f53c694299fbf41959 Mon Sep 17 00:00:00 2001 From: Giacomo Travaglini Date: Wed, 13 Oct 2021 09:22:20 +0100 Subject: [PATCH] arch-arm: Add fchmodat implementation to the Syscall Table Signed-off-by: Giacomo Travaglini Change-Id: I6ce4770aea0456423cf5a37171fbd8e4469b3e98 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/51748 Tested-by: kokoro Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power --- src/arch/arm/linux/se_workload.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arch/arm/linux/se_workload.cc b/src/arch/arm/linux/se_workload.cc index 88f34d6df9..b511e024a7 100644 --- a/src/arch/arm/linux/se_workload.cc +++ b/src/arch/arm/linux/se_workload.cc @@ -455,7 +455,7 @@ class SyscallTable32 : public SyscallDescTable { base + 330, "linkat" }, { base + 331, "symlinkat" }, { base + 332, "readlinkat", readlinkatFunc }, - { base + 333, "fchmodat" }, + { base + 333, "fchmodat", fchmodatFunc }, { base + 334, "faccessat", faccessatFunc }, { base + 335, "pselect6" }, { base + 336, "ppoll" }, @@ -551,7 +551,7 @@ class SyscallTable64 : public SyscallDescTable { base + 50, "fchdir" }, { base + 51, "chroot" }, { base + 52, "fchmod" }, - { base + 53, "fchmodat" }, + { base + 53, "fchmodat", fchmodatFunc }, { base + 54, "fchownat", fchownatFunc }, { base + 55, "fchown", fchownFunc }, { base + 56, "openat", openatFunc },