]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kernel/asm-offsets_64.c
Merge branch 'stable/for-jens-4.12' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-artful-kernel.git] / arch / x86 / kernel / asm-offsets_64.c
CommitLineData
5de2b61a
BP
1#ifndef __LINUX_KBUILD_H
2# error "Please do not build this file directly, build asm-offsets.c instead"
3#endif
4
c3ca5f30 5#include <asm/ia32.h>
8869a2e5 6
cfcbadb4 7#define __SYSCALL_64(nr, sym, qual) [nr] = 1,
303395ac
PA
8static char syscalls_64[] = {
9#include <asm/syscalls_64.h>
10};
cfcbadb4 11#define __SYSCALL_I386(nr, sym, qual) [nr] = 1,
303395ac
PA
12static char syscalls_ia32[] = {
13#include <asm/syscalls_32.h>
c3ca5f30
TG
14};
15
dd0fd8bc
WL
16#if defined(CONFIG_KVM_GUEST) && defined(CONFIG_PARAVIRT_SPINLOCKS)
17#include <asm/kvm_para.h>
18#endif
19
c3ca5f30
TG
20int main(void)
21{
a59153dc 22#ifdef CONFIG_PARAVIRT
fab58420 23 OFFSET(PV_IRQ_adjust_exception_frame, pv_irq_ops, adjust_exception_frame);
2be29982 24 OFFSET(PV_CPU_usergs_sysret64, pv_cpu_ops, usergs_sysret64);
a59153dc 25 OFFSET(PV_CPU_swapgs, pv_cpu_ops, swapgs);
b82fef82 26 BLANK();
a59153dc
GOC
27#endif
28
dd0fd8bc
WL
29#if defined(CONFIG_KVM_GUEST) && defined(CONFIG_PARAVIRT_SPINLOCKS)
30 OFFSET(KVM_STEAL_TIME_preempted, kvm_steal_time, preempted);
31 BLANK();
32#endif
33
b82fef82 34#define ENTRY(entry) OFFSET(pt_regs_ ## entry, pt_regs, entry)
65ea5b03
PA
35 ENTRY(bx);
36 ENTRY(cx);
37 ENTRY(dx);
38 ENTRY(sp);
39 ENTRY(bp);
40 ENTRY(si);
41 ENTRY(di);
0de80bcc
RW
42 ENTRY(r8);
43 ENTRY(r9);
44 ENTRY(r10);
45 ENTRY(r11);
46 ENTRY(r12);
47 ENTRY(r13);
48 ENTRY(r14);
49 ENTRY(r15);
65ea5b03 50 ENTRY(flags);
0de80bcc
RW
51 BLANK();
52#undef ENTRY
b82fef82
JB
53
54#define ENTRY(entry) OFFSET(saved_context_ ## entry, saved_context, entry)
0de80bcc
RW
55 ENTRY(cr0);
56 ENTRY(cr2);
57 ENTRY(cr3);
58 ENTRY(cr4);
59 ENTRY(cr8);
cc456c4e 60 ENTRY(gdt_desc);
0de80bcc
RW
61 BLANK();
62#undef ENTRY
bd53147d 63
b82fef82 64 OFFSET(TSS_ist, tss_struct, x86_tss.ist);
9d0c914c 65 OFFSET(TSS_sp0, tss_struct, x86_tss.sp0);
bd53147d 66 BLANK();
8c5e5ac3 67
0100301b
BG
68#ifdef CONFIG_CC_STACKPROTECTOR
69 DEFINE(stack_canary_offset, offsetof(union irq_stack_union, stack_canary));
70 BLANK();
71#endif
72
303395ac
PA
73 DEFINE(__NR_syscall_max, sizeof(syscalls_64) - 1);
74 DEFINE(NR_syscalls, sizeof(syscalls_64));
75
bace7117 76 DEFINE(__NR_syscall_compat_max, sizeof(syscalls_ia32) - 1);
303395ac 77 DEFINE(IA32_NR_syscalls, sizeof(syscalls_ia32));
b82fef82 78
c3ca5f30
TG
79 return 0;
80}