1 #include <linux/module.h>
3 #include <asm/checksum.h>
4 #include <asm/pgtable.h>
6 #include <asm/ftrace.h>
8 #ifdef CONFIG_FUNCTION_TRACER
9 /* mcount is defined in assembly */
10 EXPORT_SYMBOL(mcount
);
14 * Note, this is a prototype to get at the symbol for
15 * the export, but dont use it from C code, it is used
16 * by assembly code and is not using C calling convention!
18 #ifndef CONFIG_X86_CMPXCHG64
19 extern void cmpxchg8b_emu(void);
20 EXPORT_SYMBOL(cmpxchg8b_emu
);
23 /* Networking helper routines. */
24 EXPORT_SYMBOL(csum_partial_copy_generic
);
26 EXPORT_SYMBOL(__get_user_1
);
27 EXPORT_SYMBOL(__get_user_2
);
28 EXPORT_SYMBOL(__get_user_4
);
30 EXPORT_SYMBOL(__put_user_1
);
31 EXPORT_SYMBOL(__put_user_2
);
32 EXPORT_SYMBOL(__put_user_4
);
33 EXPORT_SYMBOL(__put_user_8
);
35 EXPORT_SYMBOL(strstr
);
37 EXPORT_SYMBOL(csum_partial
);
38 EXPORT_SYMBOL(empty_zero_page
);