Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394...
[pandora-kernel.git] / arch / x86 / kernel / x8664_ksyms_64.c
1 /* Exports for assembly files.
2    All C exports should go in the respective C files. */
3
4 #include <linux/module.h>
5 #include <linux/smp.h>
6
7 #include <net/checksum.h>
8
9 #include <asm/processor.h>
10 #include <asm/pgtable.h>
11 #include <asm/uaccess.h>
12 #include <asm/desc.h>
13 #include <asm/ftrace.h>
14
15 #ifdef CONFIG_FTRACE
16 /* mcount is defined in assembly */
17 EXPORT_SYMBOL(mcount);
18 #endif
19
20 EXPORT_SYMBOL(kernel_thread);
21
22 EXPORT_SYMBOL(__get_user_1);
23 EXPORT_SYMBOL(__get_user_2);
24 EXPORT_SYMBOL(__get_user_4);
25 EXPORT_SYMBOL(__get_user_8);
26 EXPORT_SYMBOL(__put_user_1);
27 EXPORT_SYMBOL(__put_user_2);
28 EXPORT_SYMBOL(__put_user_4);
29 EXPORT_SYMBOL(__put_user_8);
30
31 EXPORT_SYMBOL(copy_user_generic);
32 EXPORT_SYMBOL(__copy_user_nocache);
33 EXPORT_SYMBOL(copy_from_user);
34 EXPORT_SYMBOL(copy_to_user);
35 EXPORT_SYMBOL(__copy_from_user_inatomic);
36
37 EXPORT_SYMBOL(copy_page);
38 EXPORT_SYMBOL(clear_page);
39
40 EXPORT_SYMBOL(csum_partial);
41
42 /*
43  * Export string functions. We normally rely on gcc builtin for most of these,
44  * but gcc sometimes decides not to inline them.
45  */
46 #undef memcpy
47 #undef memset
48 #undef memmove
49
50 extern void *memset(void *, int, __kernel_size_t);
51 extern void *memcpy(void *, const void *, __kernel_size_t);
52 extern void *__memcpy(void *, const void *, __kernel_size_t);
53
54 EXPORT_SYMBOL(memset);
55 EXPORT_SYMBOL(memcpy);
56 EXPORT_SYMBOL(__memcpy);
57
58 EXPORT_SYMBOL(empty_zero_page);
59 EXPORT_SYMBOL(init_level4_pgt);
60 EXPORT_SYMBOL(load_gs_index);
61
62 EXPORT_SYMBOL(_proxy_pda);