2005-04-17 02:20:36 +04:00
|
|
|
#include <linux/module.h>
|
2008-05-14 10:10:31 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <asm/checksum.h>
|
2007-11-26 22:42:19 +03:00
|
|
|
#include <asm/pgtable.h>
|
2008-05-14 10:10:31 +04:00
|
|
|
#include <asm/desc.h>
|
2008-06-21 22:17:27 +04:00
|
|
|
#include <asm/ftrace.h>
|
2008-05-14 10:10:31 +04:00
|
|
|
|
2008-10-07 03:06:12 +04:00
|
|
|
#ifdef CONFIG_FUNCTION_TRACER
|
2008-05-14 10:10:31 +04:00
|
|
|
/* mcount is defined in assembly */
|
|
|
|
EXPORT_SYMBOL(mcount);
|
|
|
|
#endif
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2009-09-30 19:07:54 +04:00
|
|
|
/*
|
|
|
|
* 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!
|
|
|
|
*/
|
2009-10-01 09:30:38 +04:00
|
|
|
#ifndef CONFIG_X86_CMPXCHG64
|
2009-09-30 19:07:54 +04:00
|
|
|
extern void cmpxchg8b_emu(void);
|
|
|
|
EXPORT_SYMBOL(cmpxchg8b_emu);
|
2009-10-01 09:30:38 +04:00
|
|
|
#endif
|
2009-09-30 19:07:54 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* Networking helper routines. */
|
|
|
|
EXPORT_SYMBOL(csum_partial_copy_generic);
|
|
|
|
|
|
|
|
EXPORT_SYMBOL(__get_user_1);
|
|
|
|
EXPORT_SYMBOL(__get_user_2);
|
|
|
|
EXPORT_SYMBOL(__get_user_4);
|
2012-12-12 15:34:03 +04:00
|
|
|
EXPORT_SYMBOL(__get_user_8);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
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);
|
2007-11-26 22:42:19 +03:00
|
|
|
EXPORT_SYMBOL(empty_zero_page);
|
2013-08-14 16:51:00 +04:00
|
|
|
|
|
|
|
#ifdef CONFIG_PREEMPT
|
|
|
|
EXPORT_SYMBOL(___preempt_schedule);
|
2015-06-04 18:39:08 +03:00
|
|
|
EXPORT_SYMBOL(___preempt_schedule_notrace);
|
2013-08-14 16:51:00 +04:00
|
|
|
#endif
|