Merge pull request #19217 from justincormack/arm_syscalls

Add arm specific syscalls to default seccomp profile
This commit is contained in:
Jess Frazelle 2016-01-11 15:26:09 -08:00
commit a96a0b3781
1 changed files with 16 additions and 0 deletions

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{},
},
},
}