We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdcb58c commit 99ce325Copy full SHA for 99ce325
arch/x86/entry/common.c
@@ -34,6 +34,7 @@
34
#include <asm/fpu/api.h>
35
#include <asm/nospec-branch.h>
36
#include <asm/io_bitmap.h>
37
+#include <asm/syscall.h>
38
39
#define CREATE_TRACE_POINTS
40
#include <trace/events/syscalls.h>
arch/x86/include/asm/syscall.h
@@ -168,6 +168,11 @@ static inline int syscall_get_arch(struct task_struct *task)
168
task->thread_info.status & TS_COMPAT)
169
? AUDIT_ARCH_I386 : AUDIT_ARCH_X86_64;
170
}
171
+
172
+void do_syscall_64(unsigned long nr, struct pt_regs *regs);
173
+void do_int80_syscall_32(struct pt_regs *regs);
174
+long do_fast_syscall_32(struct pt_regs *regs);
175
176
#endif /* CONFIG_X86_32 */
177
178
#endif /* _ASM_X86_SYSCALL_H */
0 commit comments