i386_ksyms_32.c 828 字节
Newer Older
L
Linus Torvalds 已提交
1
#include <linux/module.h>
I
Ingo Molnar 已提交
2

L
Linus Torvalds 已提交
3
#include <asm/checksum.h>
4
#include <asm/pgtable.h>
I
Ingo Molnar 已提交
5
#include <asm/desc.h>
6
#include <asm/ftrace.h>
I
Ingo Molnar 已提交
7

8
#ifdef CONFIG_FUNCTION_TRACER
I
Ingo Molnar 已提交
9 10 11
/* mcount is defined in assembly */
EXPORT_SYMBOL(mcount);
#endif
L
Linus Torvalds 已提交
12

13 14 15 16 17 18 19 20
/*
 * Note, this is a prototype to get at the symbol for
 * the export, but dont use it from C code, it is used
 * by assembly code and is not using C calling convention!
 */
extern void cmpxchg8b_emu(void);
EXPORT_SYMBOL(cmpxchg8b_emu);

L
Linus Torvalds 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
/* Networking helper routines. */
EXPORT_SYMBOL(csum_partial_copy_generic);

EXPORT_SYMBOL(__get_user_1);
EXPORT_SYMBOL(__get_user_2);
EXPORT_SYMBOL(__get_user_4);

EXPORT_SYMBOL(__put_user_1);
EXPORT_SYMBOL(__put_user_2);
EXPORT_SYMBOL(__put_user_4);
EXPORT_SYMBOL(__put_user_8);

EXPORT_SYMBOL(strstr);

EXPORT_SYMBOL(csum_partial);
36
EXPORT_SYMBOL(empty_zero_page);