diff options
| author | Ingo Molnar <mingo@kernel.org> | 2020-07-26 18:15:14 +0200 |
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2020-07-26 18:25:24 +0200 |
| commit | d25c8be67481aaaa060782d7e8b84bc0d0355922 (patch) | |
| tree | a2623611d4de40abdef02853225c90de7356cf04 /include/linux | |
| parent | 72c3c0fe54a3f3ddea8f5ca468ddf9deaf2100b7 (diff) | |
| parent | 3135f5b73592988af0eb1b11ccbb72a8667be201 (diff) | |
Merge branch 'core/entry' into x86/entry
Pick up generic entry code fixes.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/seccomp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/seccomp.h b/include/linux/seccomp.h index 03d28c32ad01..51f234b6d28f 100644 --- a/include/linux/seccomp.h +++ b/include/linux/seccomp.h @@ -58,10 +58,11 @@ static inline int seccomp_mode(struct seccomp *s) struct seccomp { }; struct seccomp_filter { }; +struct seccomp_data; #ifdef CONFIG_HAVE_ARCH_SECCOMP_FILTER static inline int secure_computing(void) { return 0; } -static inline int __secure_computing(void) { return 0; } +static inline int __secure_computing(const struct seccomp_data *sd) { return 0; } #else static inline void secure_computing_strict(int this_syscall) { return; } #endif |
