1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Add arm specific syscalls to default seccomp profile

Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
This commit is contained in:
Justin Cormack 2016-01-10 11:40:55 +00:00
parent 274558881a
commit 37d35f3c28

View file

@ -1570,5 +1570,21 @@ var defaultSeccompProfile = &configs.Seccomp{
Action: configs.Allow,
Args: []*configs.Arg{},
},
// arm specific syscalls
{
Name: "breakpoint",
Action: configs.Allow,
Args: []*configs.Arg{},
},
{
Name: "cacheflush",
Action: configs.Allow,
Args: []*configs.Arg{},
},
{
Name: "set_tls",
Action: configs.Allow,
Args: []*configs.Arg{},
},
},
}