1 /* Exports for assembly files.
2 All C exports should go in the respective C files. */
4 #include <linux/module.h>
5 #include <net/checksum.h>
8 #include <asm/processor.h>
9 #include <asm/uaccess.h>
10 #include <asm/pgtable.h>
13 EXPORT_SYMBOL(kernel_thread
);
15 EXPORT_SYMBOL(__get_user_1
);
16 EXPORT_SYMBOL(__get_user_2
);
17 EXPORT_SYMBOL(__get_user_4
);
18 EXPORT_SYMBOL(__get_user_8
);
19 EXPORT_SYMBOL(__put_user_1
);
20 EXPORT_SYMBOL(__put_user_2
);
21 EXPORT_SYMBOL(__put_user_4
);
22 EXPORT_SYMBOL(__put_user_8
);
24 EXPORT_SYMBOL(copy_user_generic
);
25 EXPORT_SYMBOL(__copy_user_nocache
);
26 EXPORT_SYMBOL(copy_from_user
);
27 EXPORT_SYMBOL(copy_to_user
);
28 EXPORT_SYMBOL(__copy_from_user_inatomic
);
30 EXPORT_SYMBOL(copy_page
);
31 EXPORT_SYMBOL(clear_page
);
33 EXPORT_SYMBOL(csum_partial
);
36 * Export string functions. We normally rely on gcc builtin for most of these,
37 * but gcc sometimes decides not to inline them.
43 extern void *memset(void *, int, __kernel_size_t
);
44 extern void *memcpy(void *, const void *, __kernel_size_t
);
45 extern void *__memcpy(void *, const void *, __kernel_size_t
);
47 EXPORT_SYMBOL(memset
);
48 EXPORT_SYMBOL(memcpy
);
49 EXPORT_SYMBOL(__memcpy
);
51 EXPORT_SYMBOL(empty_zero_page
);
52 EXPORT_SYMBOL(init_level4_pgt
);
53 EXPORT_SYMBOL(load_gs_index
);
55 EXPORT_SYMBOL(_proxy_pda
);
57 #ifdef CONFIG_PARAVIRT
58 /* Virtualized guests may want to use it */
59 EXPORT_SYMBOL_GPL(cpu_gdt_descr
);