From cd434f010f302358aa83c47fe80cdd60df66f60b Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Mon, 4 Jan 2016 23:56:01 +0000 Subject: [PATCH] Allow sigreturn syscall This is used on some 32 bit architectures, eg x86 Signed-off-by: Justin Cormack Upstream-commit: d8e06d54cf3f6478ba85f60cca4a9b03bbc68f10 Component: engine --- .../engine/daemon/execdriver/native/seccomp_default.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/engine/daemon/execdriver/native/seccomp_default.go b/components/engine/daemon/execdriver/native/seccomp_default.go index ffcc972bbd..7a03ab527a 100644 --- a/components/engine/daemon/execdriver/native/seccomp_default.go +++ b/components/engine/daemon/execdriver/native/seccomp_default.go @@ -1308,6 +1308,11 @@ var defaultSeccompProfile = &configs.Seccomp{ Action: configs.Allow, Args: []*configs.Arg{}, }, + { + Name: "sigreturn", + Action: configs.Allow, + Args: []*configs.Arg{}, + }, { Name: "socket", Action: configs.Allow,