asm-offsets_64.c 1.6 KB
Newer Older
1 2 3 4
#ifndef __LINUX_KBUILD_H
# error "Please do not build this file directly, build asm-offsets.c instead"
#endif

5
#include <asm/ia32.h>
6

7
#define __SYSCALL_64(nr, sym, qual) [nr] = 1,
8 9 10
static char syscalls_64[] = {
#include <asm/syscalls_64.h>
};
11
#define __SYSCALL_I386(nr, sym, qual) [nr] = 1,
12 13
static char syscalls_ia32[] = {
#include <asm/syscalls_32.h>
14 15
};

16 17 18 19
#if defined(CONFIG_KVM_GUEST) && defined(CONFIG_PARAVIRT_SPINLOCKS)
#include <asm/kvm_para.h>
#endif

20 21
int main(void)
{
22
#ifdef CONFIG_PARAVIRT
23
	OFFSET(PV_CPU_usergs_sysret64, pv_cpu_ops, usergs_sysret64);
24
	OFFSET(PV_CPU_swapgs, pv_cpu_ops, swapgs);
25
	BLANK();
26 27
#endif

28 29 30 31 32
#if defined(CONFIG_KVM_GUEST) && defined(CONFIG_PARAVIRT_SPINLOCKS)
	OFFSET(KVM_STEAL_TIME_preempted, kvm_steal_time, preempted);
	BLANK();
#endif

33
#define ENTRY(entry) OFFSET(pt_regs_ ## entry, pt_regs, entry)
34 35 36 37 38 39 40
	ENTRY(bx);
	ENTRY(cx);
	ENTRY(dx);
	ENTRY(sp);
	ENTRY(bp);
	ENTRY(si);
	ENTRY(di);
41 42 43 44 45 46 47 48
	ENTRY(r8);
	ENTRY(r9);
	ENTRY(r10);
	ENTRY(r11);
	ENTRY(r12);
	ENTRY(r13);
	ENTRY(r14);
	ENTRY(r15);
49
	ENTRY(flags);
50 51
	BLANK();
#undef ENTRY
52 53

#define ENTRY(entry) OFFSET(saved_context_ ## entry, saved_context, entry)
54 55 56 57 58
	ENTRY(cr0);
	ENTRY(cr2);
	ENTRY(cr3);
	ENTRY(cr4);
	ENTRY(cr8);
59
	ENTRY(gdt_desc);
60 61
	BLANK();
#undef ENTRY
62

63
	OFFSET(TSS_ist, tss_struct, x86_tss.ist);
64
	OFFSET(TSS_sp0, tss_struct, x86_tss.sp0);
65
	BLANK();
66

67 68 69 70 71
#ifdef CONFIG_CC_STACKPROTECTOR
	DEFINE(stack_canary_offset, offsetof(union irq_stack_union, stack_canary));
	BLANK();
#endif

72 73 74
	DEFINE(__NR_syscall_max, sizeof(syscalls_64) - 1);
	DEFINE(NR_syscalls, sizeof(syscalls_64));

75
	DEFINE(__NR_syscall_compat_max, sizeof(syscalls_ia32) - 1);
76
	DEFINE(IA32_NR_syscalls, sizeof(syscalls_ia32));
77

78 79
	return 0;
}