From: Johannes Berg Date: Wed, 15 Apr 2020 07:51:52 +0000 (+0200) Subject: um: syscall.c: include X-Git-Tag: v5.15~3854^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e6da5df0eefc0ff5c48aba29157d738888b214e1;p=platform%2Fkernel%2Flinux-starfive.git um: syscall.c: include Without CONFIG_SECCOMP, we don't get this include recursively through the existing includes, thus failing the build on not having __NR_syscall_max defined. Add the necessary include to fix this. Signed-off-by: Johannes Berg Acked-By: Anton Ivanov Signed-off-by: Richard Weinberger --- diff --git a/arch/um/kernel/skas/syscall.c b/arch/um/kernel/skas/syscall.c index 0a12d5a0..3d91f89 100644 --- a/arch/um/kernel/skas/syscall.c +++ b/arch/um/kernel/skas/syscall.c @@ -11,6 +11,7 @@ #include #include #include +#include void handle_syscall(struct uml_pt_regs *r) {