Merge pull request #19218 from justincormack/i386_syscalls
Add i386 specific modify_ldt syscall to default seccomp filter
This commit is contained in:
commit
274558881a
1 changed files with 6 additions and 0 deletions
|
@ -1564,5 +1564,11 @@ var defaultSeccompProfile = &configs.Seccomp{
|
|||
Action: configs.Allow,
|
||||
Args: []*configs.Arg{},
|
||||
},
|
||||
// i386 specific syscalls
|
||||
{
|
||||
Name: "modify_ldt",
|
||||
Action: configs.Allow,
|
||||
Args: []*configs.Arg{},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue