From: Kyle Roarty Date: Tue, 23 Jun 2020 22:51:29 +0000 (-0500) Subject: sim-se: Ignore chmod syscall X-Git-Tag: v20.1.0.0~537 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c77432a66c6935476a66d81fd08310e6fa670171;p=gem5.git sim-se: Ignore chmod syscall chmod caused crashes in certain MIOpen apps with the newer version of MIOpen used in the Dockerfile. Ignoring it allows those apps to finish. Change-Id: If8d144d64f76ae04f384ebf983024c571b26875e Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/30534 Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power Tested-by: kokoro --- diff --git a/src/arch/x86/linux/process.cc b/src/arch/x86/linux/process.cc index 3a86b7654..b0e87c0ce 100644 --- a/src/arch/x86/linux/process.cc +++ b/src/arch/x86/linux/process.cc @@ -347,7 +347,7 @@ static SyscallDescTable syscallDescs64 = { { 87, "unlink", unlinkFunc }, { 88, "symlink", symlinkFunc }, { 89, "readlink", readlinkFunc }, - { 90, "chmod" }, + { 90, "chmod", ignoreFunc }, { 91, "fchmod" }, { 92, "chown" }, { 93, "fchown" },