From 923609179b18fb5fc9d4ad7820646af7e09786a2 Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Mon, 4 Jan 2016 18:21:51 +0000 Subject: [PATCH] Add _llseek syscall This is the newer verion of lseek on many 32 bit platforms Signed-off-by: Justin Cormack --- daemon/execdriver/native/seccomp_default.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/daemon/execdriver/native/seccomp_default.go b/daemon/execdriver/native/seccomp_default.go index 5f52b9f2f8..ffcc972bbd 100644 --- a/daemon/execdriver/native/seccomp_default.go +++ b/daemon/execdriver/native/seccomp_default.go @@ -643,6 +643,11 @@ var defaultSeccompProfile = &configs.Seccomp{ Action: configs.Allow, Args: []*configs.Arg{}, }, + { + Name: "_llseek", + Action: configs.Allow, + Args: []*configs.Arg{}, + }, { Name: "lremovexattr", Action: configs.Allow,