1 #ifndef __LINUX_KBUILD_H
2 # error "Please do not build this file directly, build asm-offsets.c instead"
7 #define __SYSCALL_64(nr, sym, qual) [nr] = 1,
8 static char syscalls_64[] = {
9 #include <asm/syscalls_64.h>
11 #define __SYSCALL_I386(nr, sym, qual) [nr] = 1,
12 static char syscalls_ia32[] = {
13 #include <asm/syscalls_32.h>
18 #ifdef CONFIG_PARAVIRT
19 OFFSET(PV_IRQ_adjust_exception_frame, pv_irq_ops, adjust_exception_frame);
20 OFFSET(PV_CPU_usergs_sysret64, pv_cpu_ops, usergs_sysret64);
21 OFFSET(PV_CPU_swapgs, pv_cpu_ops, swapgs);
25 #define ENTRY(entry) OFFSET(pt_regs_ ## entry, pt_regs, entry)
45 #define ENTRY(entry) OFFSET(saved_context_ ## entry, saved_context, entry)
55 OFFSET(TSS_ist, tss_struct, x86_tss.ist);
56 OFFSET(TSS_sp0, tss_struct, x86_tss.sp0);
59 DEFINE(__NR_syscall_max, sizeof(syscalls_64) - 1);
60 DEFINE(NR_syscalls, sizeof(syscalls_64));
62 DEFINE(__NR_syscall_compat_max, sizeof(syscalls_ia32) - 1);
63 DEFINE(IA32_NR_syscalls, sizeof(syscalls_ia32));