Contributors: 15
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Rafael J. Wysocki |
119 |
39.53% |
1 |
5.26% |
| Thomas Gleixner |
47 |
15.61% |
2 |
10.53% |
| Waiman Long |
41 |
13.62% |
1 |
5.26% |
| Brian Gerst |
18 |
5.98% |
1 |
5.26% |
| Juergen Gross |
14 |
4.65% |
3 |
15.79% |
| Glauber de Oliveira Costa |
14 |
4.65% |
2 |
10.53% |
| Boris Ostrovsky |
13 |
4.32% |
1 |
5.26% |
| Jeremy Fitzhardinge |
8 |
2.66% |
1 |
5.26% |
| Borislav Petkov |
8 |
2.66% |
1 |
5.26% |
| H. Peter Anvin |
8 |
2.66% |
1 |
5.26% |
| Jan Beulich |
5 |
1.66% |
1 |
5.26% |
| Andrew Lutomirski |
2 |
0.66% |
1 |
5.26% |
| Konrad Rzeszutek Wilk |
2 |
0.66% |
1 |
5.26% |
| Greg Kroah-Hartman |
1 |
0.33% |
1 |
5.26% |
| Linus Torvalds |
1 |
0.33% |
1 |
5.26% |
| Total |
301 |
|
19 |
|
// SPDX-License-Identifier: GPL-2.0
#ifndef __LINUX_KBUILD_H
# error "Please do not build this file directly, build asm-offsets.c instead"
#endif
#include <asm/ia32.h>
#if defined(CONFIG_KVM_GUEST) && defined(CONFIG_PARAVIRT_SPINLOCKS)
#include <asm/kvm_para.h>
#endif
int main(void)
{
#ifdef CONFIG_PARAVIRT
#ifdef CONFIG_PARAVIRT_XXL
OFFSET(PV_CPU_usergs_sysret64, paravirt_patch_template,
cpu.usergs_sysret64);
OFFSET(PV_CPU_swapgs, paravirt_patch_template, cpu.swapgs);
#ifdef CONFIG_DEBUG_ENTRY
OFFSET(PV_IRQ_save_fl, paravirt_patch_template, irq.save_fl);
#endif
#endif
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(gdt_desc);
BLANK();
#undef ENTRY
OFFSET(TSS_ist, tss_struct, x86_tss.ist);
DEFINE(DB_STACK_OFFSET, offsetof(struct cea_exception_stacks, DB_stack) -
offsetof(struct cea_exception_stacks, DB1_stack));
BLANK();
#ifdef CONFIG_STACKPROTECTOR
DEFINE(stack_canary_offset, offsetof(struct fixed_percpu_data, stack_canary));
BLANK();
#endif
return 0;
}