Release 4.10 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>
};
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
#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 | rafael j. wysocki | 121 | 44.65% | 1 | 7.69% |
h. peter anvin | h. peter anvin | 40 | 14.76% | 2 | 15.38% |
thomas gleixner | thomas gleixner | 34 | 12.55% | 1 | 7.69% |
brian gerst | brian gerst | 21 | 7.75% | 1 | 7.69% |
jeremy fitzhardinge | jeremy fitzhardinge | 18 | 6.64% | 2 | 15.38% |
glauber de oliveira costa | glauber de oliveira costa | 15 | 5.54% | 2 | 15.38% |
andy lutomirski | andy lutomirski | 11 | 4.06% | 1 | 7.69% |
jan beulich | jan beulich | 5 | 1.85% | 1 | 7.69% |
konrad rzeszutek wilk | konrad rzeszutek wilk | 5 | 1.85% | 1 | 7.69% |
ingo molnar | ingo molnar | 1 | 0.37% | 1 | 7.69% |
| Total | 271 | 100.00% | 13 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
rafael j. wysocki | rafael j. wysocki | 121 | 37.12% | 1 | 6.67% |
h. peter anvin | h. peter anvin | 61 | 18.71% | 2 | 13.33% |
thomas gleixner | thomas gleixner | 56 | 17.18% | 1 | 6.67% |
brian gerst | brian gerst | 21 | 6.44% | 1 | 6.67% |
jeremy fitzhardinge | jeremy fitzhardinge | 18 | 5.52% | 2 | 13.33% |
glauber de oliveira costa | glauber de oliveira costa | 15 | 4.60% | 2 | 13.33% |
andy lutomirski | andy lutomirski | 15 | 4.60% | 2 | 13.33% |
borislav petkov | borislav petkov | 8 | 2.45% | 1 | 6.67% |
konrad rzeszutek wilk | konrad rzeszutek wilk | 5 | 1.53% | 1 | 6.67% |
jan beulich | jan beulich | 5 | 1.53% | 1 | 6.67% |
ingo molnar | ingo molnar | 1 | 0.31% | 1 | 6.67% |
| Total | 326 | 100.00% | 15 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.