cregit-Linux how code gets into the kernel

Release 4.14 arch/sparc/kernel/asm-offsets.c

// SPDX-License-Identifier: GPL-2.0
/*
 * This program is used to generate definitions needed by
 * assembly language modules.
 *
 * We use the technique used in the OSF Mach kernel code:
 * generate asm statements containing #defines,
 * compile this file to assembler, and then extract the
 * #defines from the assembly-language output.
 *
 * On sparc, thread_info data is static and TI_XXX offsets are computed by hand.
 */

#include <linux/sched.h>
#include <linux/mm_types.h>
// #include <linux/mm.h>
#include <linux/kbuild.h>

#include <asm/hibernate.h>

#ifdef CONFIG_SPARC32

int sparc32_foo(void) { DEFINE(AOFF_thread_fork_kpsr, offsetof(struct thread_struct, fork_kpsr)); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Pete Zaitcev1565.22%150.00%
Sam Ravnborg834.78%150.00%
Total23100.00%2100.00%

#else
int sparc64_foo(void) { #ifdef CONFIG_HIBERNATION BLANK(); OFFSET(SC_REG_FP, saved_context, fp); OFFSET(SC_REG_CWP, saved_context, cwp); OFFSET(SC_REG_WSTATE, saved_context, wstate); OFFSET(SC_REG_TICK, saved_context, tick); OFFSET(SC_REG_PSTATE, saved_context, pstate); OFFSET(SC_REG_G4, saved_context, g4); OFFSET(SC_REG_G5, saved_context, g5); OFFSET(SC_REG_G6, saved_context, g6); #endif return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Kirill V Tkhai8088.89%150.00%
Sam Ravnborg1011.11%150.00%
Total90100.00%2100.00%

#endif
int foo(void) { BLANK(); DEFINE(AOFF_task_thread, offsetof(struct task_struct, thread)); BLANK(); DEFINE(AOFF_mm_context, offsetof(struct mm_struct, context)); BLANK(); DEFINE(VMA_VM_MM, offsetof(struct vm_area_struct, vm_mm)); /* DEFINE(NUM_USER_SEGMENTS, TASK_SIZE>>28); */ return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Pete Zaitcev3457.63%133.33%
Olivier DANET1627.12%133.33%
Sam Ravnborg915.25%133.33%
Total59100.00%3100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Kirill V Tkhai8342.78%114.29%
Pete Zaitcev5427.84%114.29%
Sam Ravnborg3417.53%114.29%
Olivier DANET168.25%114.29%
Christoph Lameter31.55%114.29%
Ingo Molnar31.55%114.29%
Greg Kroah-Hartman10.52%114.29%
Total194100.00%7100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.