From c77432a66c6935476a66d81fd08310e6fa670171 Mon Sep 17 00:00:00 2001 From: Kyle Roarty Date: Tue, 23 Jun 2020 17:51:29 -0500 Subject: [PATCH] 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 --- src/arch/x86/linux/process.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" }, -- 2.30.2