Merge branch 'x86-debug-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / arch / x86 / kernel / x8664_ksyms_64.c
CommitLineData
2ee60e17
AK
1/* Exports for assembly files.
2 All C exports should go in the respective C files. */
3
1da177e4
LT
4#include <linux/module.h>
5#include <linux/smp.h>
1da177e4 6
37135677
IM
7#include <net/checksum.h>
8
1da177e4 9#include <asm/processor.h>
1da177e4 10#include <asm/pgtable.h>
37135677 11#include <asm/uaccess.h>
70fd93c9 12#include <asm/desc.h>
395a59d0 13#include <asm/ftrace.h>
1da177e4 14
606576ce 15#ifdef CONFIG_FUNCTION_TRACER
37135677
IM
16/* mcount is defined in assembly */
17EXPORT_SYMBOL(mcount);
18#endif
1da177e4 19
1da177e4
LT
20EXPORT_SYMBOL(__get_user_1);
21EXPORT_SYMBOL(__get_user_2);
22EXPORT_SYMBOL(__get_user_4);
23EXPORT_SYMBOL(__get_user_8);
24EXPORT_SYMBOL(__put_user_1);
25EXPORT_SYMBOL(__put_user_2);
26EXPORT_SYMBOL(__put_user_4);
27EXPORT_SYMBOL(__put_user_8);
28
1b1d9258
JB
29EXPORT_SYMBOL(copy_user_generic_string);
30EXPORT_SYMBOL(copy_user_generic_unrolled);
954e482b 31EXPORT_SYMBOL(copy_user_enhanced_fast_string);
0812a579 32EXPORT_SYMBOL(__copy_user_nocache);
9f0cf4ad 33EXPORT_SYMBOL(_copy_from_user);
3c93ca00 34EXPORT_SYMBOL(_copy_to_user);
1da177e4
LT
35
36EXPORT_SYMBOL(copy_page);
37EXPORT_SYMBOL(clear_page);
38
89804c02
IM
39EXPORT_SYMBOL(csum_partial);
40
8000a83f
PC
41/*
42 * Export string functions. We normally rely on gcc builtin for most of these,
43 * but gcc sometimes decides not to inline them.
44 */
1da177e4
LT
45#undef memcpy
46#undef memset
47#undef memmove
1da177e4 48
8000a83f
PC
49extern void *memset(void *, int, __kernel_size_t);
50extern void *memcpy(void *, const void *, __kernel_size_t);
51extern void *__memcpy(void *, const void *, __kernel_size_t);
1da177e4
LT
52
53EXPORT_SYMBOL(memset);
1da177e4
LT
54EXPORT_SYMBOL(memcpy);
55EXPORT_SYMBOL(__memcpy);
9599ec04 56EXPORT_SYMBOL(memmove);
1da177e4 57
1da177e4 58EXPORT_SYMBOL(empty_zero_page);
e6428047
RR
59#ifndef CONFIG_PARAVIRT
60EXPORT_SYMBOL(native_load_gs_index);
61#endif
This page took 0.680082 seconds and 5 git commands to generate.