cregit-Linux how code gets into the kernel

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

#ifndef _ASM_X86_DMI_H

#define _ASM_X86_DMI_H

#include <linux/compiler.h>
#include <linux/init.h>

#include <asm/io.h>
#include <asm/setup.h>


static __always_inline __init void *dmi_alloc(unsigned len) { return extend_brk(len, sizeof(int)); }

Contributors

PersonTokensPropCommitsCommitProp
thomas gleixnerthomas gleixner1252.17%125.00%
jeremy fitzhardingejeremy fitzhardinge1043.48%250.00%
parag warudkarparag warudkar14.35%125.00%
Total23100.00%4100.00%

/* Use early IO mappings for DMI because it's initialized early */ #define dmi_early_remap early_ioremap #define dmi_early_unmap early_iounmap #define dmi_remap ioremap_cache #define dmi_unmap iounmap #endif /* _ASM_X86_DMI_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
thomas gleixnerthomas gleixner2744.26%112.50%
jeremy fitzhardingejeremy fitzhardinge1931.15%225.00%
ard biesheuvelard biesheuvel914.75%112.50%
h. peter anvinh. peter anvin34.92%112.50%
jean delvarejean delvare11.64%112.50%
parag warudkarparag warudkar11.64%112.50%
andy lutomirskiandy lutomirski11.64%112.50%
Total61100.00%8100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.