cregit-Linux how code gets into the kernel

Release 4.14 arch/x86/pci/init.c

Directory: arch/x86/pci
// SPDX-License-Identifier: GPL-2.0
#include <linux/pci.h>
#include <linux/init.h>
#include <asm/pci_x86.h>
#include <asm/x86_init.h>

/* arch_initcall has too random ordering, so call the initializers
   in the right sequence from here. */

static __init int pci_arch_init(void) { #ifdef CONFIG_PCI_DIRECT int type = 0; type = pci_direct_probe(); #endif if (!(pci_probe & PCI_PROBE_NOEARLY)) pci_mmcfg_early_init(); if (x86_init.pci.arch_init && !x86_init.pci.arch_init()) return 0; #ifdef CONFIG_PCI_BIOS pci_pcbios_init(); #endif /* * don't check for raw_pci_ops here because we want pcbios as last * fallback, yet it's needed to run first to set pcibios_last_bus * in case legacy PCI probing is used. otherwise detecting peer busses * fails. */ #ifdef CONFIG_PCI_DIRECT pci_direct_init(type); #endif if (!raw_pci_ops && !raw_pci_ext_ops) printk(KERN_ERR "PCI: Fatal: No config space access function found\n"); dmi_check_pciprobe(); dmi_check_skip_isa_align(); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Andi Kleen5354.64%323.08%
Yinghai Lu1313.40%323.08%
Thomas Gleixner1111.34%17.69%
Jacob jun Pan99.28%17.69%
Andres Salomon88.25%215.38%
Robert Hancock11.03%17.69%
Daniel Ritz11.03%17.69%
Robert Richter11.03%17.69%
Total97100.00%13100.00%

arch_initcall(pci_arch_init);

Overall Contributors

PersonTokensPropCommitsCommitProp
Andi Kleen6656.90%320.00%
Thomas Gleixner1412.07%16.67%
Yinghai Lu1311.21%320.00%
Jacob jun Pan97.76%16.67%
Andres Salomon86.90%213.33%
Robert Richter21.72%16.67%
Jaswinder Singh Rajput10.86%16.67%
Greg Kroah-Hartman10.86%16.67%
Robert Hancock10.86%16.67%
Daniel Ritz10.86%16.67%
Total116100.00%15100.00%
Directory: arch/x86/pci
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.