x8664_ksyms_64.c 1.4 KB
Newer Older
1 2 3
/* Exports for assembly files.
   All C exports should go in the respective C files. */

L
Linus Torvalds 已提交
4 5 6
#include <linux/module.h>
#include <linux/smp.h>

I
Ingo Molnar 已提交
7 8
#include <net/checksum.h>

L
Linus Torvalds 已提交
9 10
#include <asm/processor.h>
#include <asm/pgtable.h>
I
Ingo Molnar 已提交
11
#include <asm/uaccess.h>
12
#include <asm/desc.h>
13
#include <asm/ftrace.h>
L
Linus Torvalds 已提交
14

15
#ifdef CONFIG_FUNCTION_TRACER
I
Ingo Molnar 已提交
16 17 18
/* mcount is defined in assembly */
EXPORT_SYMBOL(mcount);
#endif
L
Linus Torvalds 已提交
19 20 21 22 23 24 25 26 27 28

EXPORT_SYMBOL(__get_user_1);
EXPORT_SYMBOL(__get_user_2);
EXPORT_SYMBOL(__get_user_4);
EXPORT_SYMBOL(__get_user_8);
EXPORT_SYMBOL(__put_user_1);
EXPORT_SYMBOL(__put_user_2);
EXPORT_SYMBOL(__put_user_4);
EXPORT_SYMBOL(__put_user_8);

29 30
EXPORT_SYMBOL(copy_user_generic_string);
EXPORT_SYMBOL(copy_user_generic_unrolled);
31
EXPORT_SYMBOL(__copy_user_nocache);
32
EXPORT_SYMBOL(_copy_from_user);
33
EXPORT_SYMBOL(_copy_to_user);
L
Linus Torvalds 已提交
34 35 36 37

EXPORT_SYMBOL(copy_page);
EXPORT_SYMBOL(clear_page);

I
Ingo Molnar 已提交
38 39
EXPORT_SYMBOL(csum_partial);

40 41 42 43
/*
 * Export string functions. We normally rely on gcc builtin for most of these,
 * but gcc sometimes decides not to inline them.
 */
L
Linus Torvalds 已提交
44 45 46 47
#undef memcpy
#undef memset
#undef memmove

48 49 50
extern void *memset(void *, int, __kernel_size_t);
extern void *memcpy(void *, const void *, __kernel_size_t);
extern void *__memcpy(void *, const void *, __kernel_size_t);
L
Linus Torvalds 已提交
51 52 53 54 55 56

EXPORT_SYMBOL(memset);
EXPORT_SYMBOL(memcpy);
EXPORT_SYMBOL(__memcpy);

EXPORT_SYMBOL(empty_zero_page);
R
Rusty Russell 已提交
57 58 59
#ifndef CONFIG_PARAVIRT
EXPORT_SYMBOL(native_load_gs_index);
#endif