diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-11-02 16:09:59 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-02 16:09:59 -0600 |
commit | 32e134c19ff324d2f8e27ffeaa51b5a4b051e296 (patch) | |
tree | cca947c3a739eddb3f46cf192bf758447cf1d4b7 /src/shared/seccomp-util.h | |
parent | bbeea271172a4664ce9a4a41a7fa3b1ca18dbedd (diff) | |
parent | 999a6c5d9c8bc9536f98ce26dde1de5adaabe29b (diff) |
Merge pull request #4483 from poettering/exec-order
more seccomp fixes, and change of order of selinux/aa/smack and seccomp application on exec
Diffstat (limited to 'src/shared/seccomp-util.h')
-rw-r--r-- | src/shared/seccomp-util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/seccomp-util.h b/src/shared/seccomp-util.h index 8050fc6fbf..8e209efef2 100644 --- a/src/shared/seccomp-util.h +++ b/src/shared/seccomp-util.h @@ -38,6 +38,7 @@ typedef struct SyscallFilterSet { } SyscallFilterSet; enum { + SYSCALL_FILTER_SET_BASIC_IO, SYSCALL_FILTER_SET_CLOCK, SYSCALL_FILTER_SET_CPU_EMULATION, SYSCALL_FILTER_SET_DEBUG, @@ -52,6 +53,7 @@ enum { SYSCALL_FILTER_SET_PRIVILEGED, SYSCALL_FILTER_SET_PROCESS, SYSCALL_FILTER_SET_RAW_IO, + SYSCALL_FILTER_SET_RESOURCES, _SYSCALL_FILTER_SET_MAX }; |