cregit-Linux how code gets into the kernel

Release 4.10 arch/x86/kernel/head32.c

Directory: arch/x86/kernel
/*
 *  linux/arch/i386/kernel/head32.c -- prepare to run common code
 *
 *  Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
 *  Copyright (C) 2007 Eric Biederman <ebiederm@xmission.com>
 */

#include <linux/init.h>
#include <linux/start_kernel.h>
#include <linux/mm.h>
#include <linux/memblock.h>

#include <asm/setup.h>
#include <asm/sections.h>
#include <asm/e820.h>
#include <asm/page.h>
#include <asm/apic.h>
#include <asm/io_apic.h>
#include <asm/bios_ebda.h>
#include <asm/tlbflush.h>
#include <asm/bootparam_utils.h>


static void __init i386_default_early_setup(void) { /* Initialize 32bit specific setup functions */ x86_init.resources.reserve_resources = i386_reserve_resources; x86_init.mpparse.setup_ioapic_ids = setup_ioapic_ids_from_mpc; }

Contributors

PersonTokensPropCommitsCommitProp
thomas gleixnerthomas gleixner2596.15%150.00%
uwe kleine-koeniguwe kleine-koenig13.85%150.00%
Total26100.00%2100.00%


asmlinkage __visible void __init i386_start_kernel(void) { cr4_init_shadow(); sanitize_boot_params(&boot_params); x86_early_init_platform_quirks(); /* Call the subarch specific early setup function */ switch (boot_params.hdr.hardware_subarch) { case X86_SUBARCH_INTEL_MID: x86_intel_mid_early_setup(); break; case X86_SUBARCH_CE4100: x86_ce4100_early_setup(); break; default: i386_default_early_setup(); break; } start_kernel(); }

Contributors

PersonTokensPropCommitsCommitProp
thomas gleixnerthomas gleixner2647.27%538.46%
eric w. biedermaneric w. biederman1120.00%17.69%
h. peter anvinh. peter anvin610.91%17.69%
andy lutomirskiandy lutomirski35.45%17.69%
luis r. rodriguezluis r. rodriguez35.45%17.69%
andi kleenandi kleen23.64%215.38%
kuppuswamy sathyanarayanankuppuswamy sathyanarayanan23.64%17.69%
yinghai luyinghai lu23.64%17.69%
Total55100.00%13100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
thomas gleixnerthomas gleixner5948.76%527.78%
yinghai luyinghai lu1915.70%316.67%
eric w. biedermaneric w. biederman1814.88%15.56%
h. peter anvinh. peter anvin97.44%15.56%
andy lutomirskiandy lutomirski32.48%15.56%
borislav petkovborislav petkov32.48%15.56%
luis r. rodriguezluis r. rodriguez32.48%15.56%
rafael j. wysockirafael j. wysocki21.65%15.56%
andi kleenandi kleen21.65%211.11%
kuppuswamy sathyanarayanankuppuswamy sathyanarayanan21.65%15.56%
uwe kleine-koeniguwe kleine-koenig10.83%15.56%
Total121100.00%18100.00%
Directory: arch/x86/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.