1 /* Exports for assembly files.
2 All C exports should go in the respective C files. */
4 #include <linux/module.h>
7 #include <asm/processor.h>
8 #include <asm/uaccess.h>
9 #include <asm/pgtable.h>
12 EXPORT_SYMBOL(kernel_thread);
14 EXPORT_SYMBOL(__get_user_1);
15 EXPORT_SYMBOL(__get_user_2);
16 EXPORT_SYMBOL(__get_user_4);
17 EXPORT_SYMBOL(__get_user_8);
18 EXPORT_SYMBOL(__put_user_1);
19 EXPORT_SYMBOL(__put_user_2);
20 EXPORT_SYMBOL(__put_user_4);
21 EXPORT_SYMBOL(__put_user_8);
23 EXPORT_SYMBOL(copy_user_generic);
24 EXPORT_SYMBOL(__copy_user_nocache);
25 EXPORT_SYMBOL(copy_from_user);
26 EXPORT_SYMBOL(copy_to_user);
27 EXPORT_SYMBOL(__copy_from_user_inatomic);
29 EXPORT_SYMBOL(copy_page);
30 EXPORT_SYMBOL(clear_page);
33 * Export string functions. We normally rely on gcc builtin for most of these,
34 * but gcc sometimes decides not to inline them.
40 extern void *memset(void *, int, __kernel_size_t);
41 extern void *memcpy(void *, const void *, __kernel_size_t);
42 extern void *__memcpy(void *, const void *, __kernel_size_t);
44 EXPORT_SYMBOL(memset);
45 EXPORT_SYMBOL(memcpy);
46 EXPORT_SYMBOL(__memcpy);
48 EXPORT_SYMBOL(empty_zero_page);
49 EXPORT_SYMBOL(init_level4_pgt);
50 EXPORT_SYMBOL(load_gs_index);
52 EXPORT_SYMBOL(_proxy_pda);
54 #ifdef CONFIG_PARAVIRT
55 /* Virtualized guests may want to use it */
56 EXPORT_SYMBOL_GPL(cpu_gdt_descr);