diff --git a/daemon/execdriver/native/seccomp_default.go b/daemon/execdriver/native/seccomp_default.go index dbd00312a3..41a051d9ca 100644 --- a/daemon/execdriver/native/seccomp_default.go +++ b/daemon/execdriver/native/seccomp_default.go @@ -85,12 +85,6 @@ var defaultSeccompProfile = &configs.Seccomp{ Action: configs.Errno, Args: []*configs.Arg{}, }, - { - // Deny getting the list of robust futexes - Name: "get_robust_list", - Action: configs.Errno, - Args: []*configs.Arg{}, - }, { // Deny manipulation and functions on kernel modules. Name: "init_module", @@ -267,12 +261,6 @@ var defaultSeccompProfile = &configs.Seccomp{ Action: configs.Errno, Args: []*configs.Arg{}, }, - { - // Deny setting the list of robust futexes - Name: "set_robust_list", - Action: configs.Errno, - Args: []*configs.Arg{}, - }, { // Time/Date is not namespaced Name: "settimeofday",