cregit-Linux how code gets into the kernel

Release 4.8 arch/x86/kernel/i386_ksyms_32.c

Directory: arch/x86/kernel
#include <linux/export.h>
#include <linux/spinlock_types.h>

#include <asm/checksum.h>
#include <asm/pgtable.h>
#include <asm/desc.h>
#include <asm/ftrace.h>

#ifdef CONFIG_FUNCTION_TRACER
/* mcount is defined in assembly */

EXPORT_SYMBOL(mcount);
#endif

/*
 * Note, this is a prototype to get at the symbol for
 * the export, but dont use it from C code, it is used
 * by assembly code and is not using C calling convention!
 */
#ifndef CONFIG_X86_CMPXCHG64
extern void cmpxchg8b_emu(void);

EXPORT_SYMBOL(cmpxchg8b_emu);
#endif

/* Networking helper routines. */

EXPORT_SYMBOL(csum_partial_copy_generic);


EXPORT_SYMBOL(__get_user_1);

EXPORT_SYMBOL(__get_user_2);

EXPORT_SYMBOL(__get_user_4);

EXPORT_SYMBOL(__get_user_8);


EXPORT_SYMBOL(__put_user_1);

EXPORT_SYMBOL(__put_user_2);

EXPORT_SYMBOL(__put_user_4);

EXPORT_SYMBOL(__put_user_8);


EXPORT_SYMBOL(strstr);


EXPORT_SYMBOL(csum_partial);

EXPORT_SYMBOL(empty_zero_page);

#ifdef CONFIG_PREEMPT

EXPORT_SYMBOL(___preempt_schedule);

EXPORT_SYMBOL(___preempt_schedule_notrace);
#endif


EXPORT_SYMBOL(__sw_hweight32);

Overall Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git2217.19%625.00%
peter zijlstrapeter zijlstra1410.94%14.17%
arjan van de venarjan van de ven1310.16%14.17%
alexey dobriyanalexey dobriyan1310.16%14.17%
ingo molnaringo molnar129.38%14.17%
theodore tsotheodore tso75.47%14.17%
ville syrjalaville syrjala53.91%14.17%
arnaldo carvalho de meloarnaldo carvalho de melo53.91%14.17%
eric dumazeteric dumazet53.91%14.17%
borislav petkovborislav petkov53.91%14.17%
brian gerstbrian gerst43.12%14.17%
prasanna s panchamukhiprasanna s panchamukhi43.12%14.17%
paul gortmakerpaul gortmaker43.12%14.17%
greg kroah-hartmangreg kroah-hartman43.12%14.17%
linus torvaldslinus torvalds43.12%14.17%
abhishek sagarabhishek sagar32.34%14.17%
john levonjohn levon21.56%14.17%
steven rostedtsteven rostedt10.78%14.17%
frederic weisbeckerfrederic weisbecker10.78%14.17%
Total128100.00%24100.00%
Directory: arch/x86/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.