cregit-Linux how code gets into the kernel

Release 4.10 arch/x86/include/asm/pci_64.h

#ifndef _ASM_X86_PCI_64_H

#define _ASM_X86_PCI_64_H

#ifdef __KERNEL__

#ifdef CONFIG_CALGARY_IOMMU

static inline void *pci_iommu(struct pci_bus *bus) { struct pci_sysdata *sd = bus->sysdata; return sd->iommu; }

Contributors

PersonTokensPropCommitsCommitProp
muli ben-yehudamuli ben-yehuda27100.00%1100.00%
Total27100.00%1100.00%


static inline void set_pci_iommu(struct pci_bus *bus, void *val) { struct pci_sysdata *sd = bus->sysdata; sd->iommu = val; }

Contributors

PersonTokensPropCommitsCommitProp
muli ben-yehudamuli ben-yehuda31100.00%1100.00%
Total31100.00%1100.00%

#endif /* CONFIG_CALGARY_IOMMU */ extern int (*pci_config_read)(int seg, int bus, int dev, int fn, int reg, int len, u32 *value); extern int (*pci_config_write)(int seg, int bus, int dev, int fn, int reg, int len, u32 value); #endif /* __KERNEL__ */ #endif /* _ASM_X86_PCI_64_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
andi kleenandi kleen6950.00%240.00%
muli ben-yehudamuli ben-yehuda6446.38%120.00%
h. peter anvinh. peter anvin32.17%120.00%
andrew mortonandrew morton21.45%120.00%
Total138100.00%5100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.