Contributors: 17
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Rafael J. Wysocki |
92 |
39.48% |
1 |
5.00% |
| Andi Kleen |
30 |
12.88% |
2 |
10.00% |
| Waiman Long |
24 |
10.30% |
1 |
5.00% |
| Boris Ostrovsky |
13 |
5.58% |
1 |
5.00% |
| Glauber de Oliveira Costa |
13 |
5.58% |
1 |
5.00% |
| Thomas Gleixner |
9 |
3.86% |
1 |
5.00% |
| Jan Beulich |
8 |
3.43% |
1 |
5.00% |
| H. Peter Anvin |
8 |
3.43% |
1 |
5.00% |
| Borislav Petkov |
8 |
3.43% |
1 |
5.00% |
| Juergen Gross |
8 |
3.43% |
3 |
15.00% |
| Brian Gerst |
7 |
3.00% |
1 |
5.00% |
| Kai Germaschewski |
6 |
2.58% |
1 |
5.00% |
| Peter Zijlstra |
2 |
0.86% |
1 |
5.00% |
| Konrad Rzeszutek Wilk |
2 |
0.86% |
1 |
5.00% |
| Andrew Lutomirski |
1 |
0.43% |
1 |
5.00% |
| Greg Kroah-Hartman |
1 |
0.43% |
1 |
5.00% |
| Linus Torvalds |
1 |
0.43% |
1 |
5.00% |
| Total |
233 |
|
20 |
|
// 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)
#include <asm/kvm_para.h>
#endif
int main(void)
{
#ifdef CONFIG_PARAVIRT
#ifdef CONFIG_PARAVIRT_XXL
#ifdef CONFIG_DEBUG_ENTRY
OFFSET(PV_IRQ_save_fl, paravirt_patch_template, irq.save_fl);
#endif
#endif
BLANK();
#endif
#if defined(CONFIG_KVM_GUEST)
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
BLANK();
#ifdef CONFIG_STACKPROTECTOR
OFFSET(FIXED_stack_canary, fixed_percpu_data, stack_canary);
BLANK();
#endif
return 0;
}