Release 4.11 arch/x86/kernel/asm-offsets_64.c
#ifndef __LINUX_KBUILD_H
# error "Please do not build this file directly, build asm-offsets.c instead"
#endif
#include <asm/ia32.h>
#define __SYSCALL_64(nr, sym, qual) [nr] = 1,
static char syscalls_64[] = {
#include <asm/syscalls_64.h>
};
#define __SYSCALL_I386(nr, sym, qual) [nr] = 1,
static char syscalls_ia32[] = {
#include <asm/syscalls_32.h>
};
#if defined(CONFIG_KVM_GUEST) && defined(CONFIG_PARAVIRT_SPINLOCKS)
#include <asm/kvm_para.h>
#endif
int main(void)
{
#ifdef CONFIG_PARAVIRT
OFFSET(PV_IRQ_adjust_exception_frame, pv_irq_ops, adjust_exception_frame);
OFFSET(PV_CPU_usergs_sysret64, pv_cpu_ops, usergs_sysret64);
OFFSET(PV_CPU_swapgs, pv_cpu_ops, swapgs);
BLANK();
#endif
#if defined(CONFIG_KVM_GUEST) && defined(CONFIG_PARAVIRT_SPINLOCKS)
OFFSET(KVM_STEAL_TIME_preempted, kvm_steal_time, preempted);
BLANK();
#endif
#define ENTRY(entry) OFFSET(pt_regs_ ## entry, pt_regs, entry)
ENTRY(bx);
ENTRY(cx);
ENTRY(dx);
ENTRY(sp);
ENTRY(bp);
ENTRY(si);
ENTRY(di);
ENTRY(r8);
ENTRY(r9);
ENTRY(r10);
ENTRY(r11);
ENTRY(r12);
ENTRY(r13);
ENTRY(r14);
ENTRY(r15);
ENTRY(flags);
BLANK();
#undef ENTRY
#define ENTRY(entry) OFFSET(saved_context_ ## entry, saved_context, entry)
ENTRY(cr0);
ENTRY(cr2);
ENTRY(cr3);
ENTRY(cr4);
ENTRY(cr8);
ENTRY(gdt_desc);
BLANK();
#undef ENTRY
OFFSET(TSS_ist, tss_struct, x86_tss.ist);
OFFSET(TSS_sp0, tss_struct, x86_tss.sp0);
BLANK();
#ifdef CONFIG_CC_STACKPROTECTOR
DEFINE(stack_canary_offset, offsetof(union irq_stack_union, stack_canary));
BLANK();
#endif
DEFINE(__NR_syscall_max, sizeof(syscalls_64) - 1);
DEFINE(NR_syscalls, sizeof(syscalls_64));
DEFINE(__NR_syscall_compat_max, sizeof(syscalls_ia32) - 1);
DEFINE(IA32_NR_syscalls, sizeof(syscalls_ia32));
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rafael J. Wysocki | 121 | 40.88% | 1 | 7.14% |
H. Peter Anvin | 40 | 13.51% | 2 | 14.29% |
Thomas Gleixner | 34 | 11.49% | 1 | 7.14% |
Waiman Long | 25 | 8.45% | 1 | 7.14% |
Brian Gerst | 21 | 7.09% | 1 | 7.14% |
Jeremy Fitzhardinge | 18 | 6.08% | 2 | 14.29% |
Glauber de Oliveira Costa | 15 | 5.07% | 2 | 14.29% |
Andrew Lutomirski | 11 | 3.72% | 1 | 7.14% |
Konrad Rzeszutek Wilk | 5 | 1.69% | 1 | 7.14% |
Jan Beulich | 5 | 1.69% | 1 | 7.14% |
Ingo Molnar | 1 | 0.34% | 1 | 7.14% |
Total | 296 | 100.00% | 14 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rafael J. Wysocki | 121 | 32.97% | 1 | 6.25% |
H. Peter Anvin | 61 | 16.62% | 2 | 12.50% |
Thomas Gleixner | 56 | 15.26% | 1 | 6.25% |
Waiman Long | 41 | 11.17% | 1 | 6.25% |
Brian Gerst | 21 | 5.72% | 1 | 6.25% |
Jeremy Fitzhardinge | 18 | 4.90% | 2 | 12.50% |
Glauber de Oliveira Costa | 15 | 4.09% | 2 | 12.50% |
Andrew Lutomirski | 15 | 4.09% | 2 | 12.50% |
Borislav Petkov | 8 | 2.18% | 1 | 6.25% |
Konrad Rzeszutek Wilk | 5 | 1.36% | 1 | 6.25% |
Jan Beulich | 5 | 1.36% | 1 | 6.25% |
Ingo Molnar | 1 | 0.27% | 1 | 6.25% |
Total | 367 | 100.00% | 16 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.