diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-05-18 17:26:22 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-05-18 17:26:22 +0000 |
commit | d2d0775782a6bde6d3f0614749cbdc262767e911 (patch) | |
tree | a40bccf60371abcc9ea3544a7e40c6724eaef023 /runsc/boot/compat.go | |
parent | 9e04f5c862c22b110fe1788dd02162afea8ef84c (diff) | |
parent | 32ab382c80306d7dab499e983af2bfaea7770d1d (diff) |
Merge release-20200511.0-253-g32ab382 (automated)
Diffstat (limited to 'runsc/boot/compat.go')
-rw-r--r-- | runsc/boot/compat.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/runsc/boot/compat.go b/runsc/boot/compat.go index b7cfb35bf..84c67cbc2 100644 --- a/runsc/boot/compat.go +++ b/runsc/boot/compat.go @@ -119,7 +119,13 @@ func (c *compatEmitter) emitUnimplementedSyscall(us *spb.UnimplementedSyscall) { } if tr.shouldReport(regs) { - c.sink.Infof("Unsupported syscall: %s, regs: %+v", c.nameMap.Name(uintptr(sysnr)), regs) + name := c.nameMap.Name(uintptr(sysnr)) + c.sink.Infof("Unsupported syscall %s(%#x,%#x,%#x,%#x,%#x,%#x). It is "+ + "likely that you can safely ignore this message and that this is not "+ + "the cause of any error. Please, refer to %s/%s for more information.", + name, argVal(0, regs), argVal(1, regs), argVal(2, regs), argVal(3, regs), + argVal(4, regs), argVal(5, regs), syscallLink, name) + tr.onReported(regs) } } |