Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
#include <linux/export.h> #include <linux/types.h> #include <asm/checksum.h> #include <asm/div64.h> #include <asm/ftrace.h> #include <asm/page.h> #include <asm/string.h> #include <asm/tbx.h> EXPORT_SYMBOL(clear_page); EXPORT_SYMBOL(copy_page); #ifdef [31mCONFIG_FLATMEM[0m /* needed for the pfn_valid macro */ EXPORT_SYMBOL(max_pfn); EXPORT_SYMBOL(min_low_pfn); #endif /* Network checksum functions */ EXPORT_SYMBOL(csum_partial); /* TBI symbols */ EXPORT_SYMBOL(__TBI); EXPORT_SYMBOL(__TBIFindSeg); EXPORT_SYMBOL(__TBIPoll); EXPORT_SYMBOL(__TBITimeStamp); #define DECLARE_EXPORT(name) extern void name(void); EXPORT_SYMBOL(name) /* libgcc functions */ DECLARE_EXPORT(__ashldi3); DECLARE_EXPORT(__ashrdi3); DECLARE_EXPORT(__lshrdi3); DECLARE_EXPORT(__udivsi3); DECLARE_EXPORT(__divsi3); DECLARE_EXPORT(__umodsi3); DECLARE_EXPORT(__modsi3); DECLARE_EXPORT(__muldi3); DECLARE_EXPORT(__cmpdi2); DECLARE_EXPORT(__ucmpdi2); /* Maths functions */ EXPORT_SYMBOL(div_u64); EXPORT_SYMBOL(div_s64); /* String functions */ EXPORT_SYMBOL(memcpy); EXPORT_SYMBOL(memset); EXPORT_SYMBOL(memmove); #ifdef [31mCONFIG_FUNCTION_TRACER[0m EXPORT_SYMBOL(mcount_wrapper); #endif