blob: 9c3bd4a2050e802a62ff13dfc52e855e641a802b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/module.h>
Ingo Molnar37135672008-05-14 08:10:31 +02002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#include <asm/checksum.h>
Theodore Ts'o8232fd62007-11-26 20:42:19 +01004#include <asm/pgtable.h>
Ingo Molnar37135672008-05-14 08:10:31 +02005#include <asm/desc.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +05306#include <asm/ftrace.h>
Ingo Molnar37135672008-05-14 08:10:31 +02007
Steven Rostedt606576c2008-10-06 19:06:12 -04008#ifdef CONFIG_FUNCTION_TRACER
Ingo Molnar37135672008-05-14 08:10:31 +02009/* mcount is defined in assembly */
10EXPORT_SYMBOL(mcount);
11#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Arjan van de Ven79e1dd02009-09-30 17:07:54 +020013/*
14 * Note, this is a prototype to get at the symbol for
15 * the export, but dont use it from C code, it is used
16 * by assembly code and is not using C calling convention!
17 */
Eric Dumazet04edbde2009-10-01 07:30:38 +020018#ifndef CONFIG_X86_CMPXCHG64
Arjan van de Ven79e1dd02009-09-30 17:07:54 +020019extern void cmpxchg8b_emu(void);
20EXPORT_SYMBOL(cmpxchg8b_emu);
Eric Dumazet04edbde2009-10-01 07:30:38 +020021#endif
Arjan van de Ven79e1dd02009-09-30 17:07:54 +020022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/* Networking helper routines. */
24EXPORT_SYMBOL(csum_partial_copy_generic);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26EXPORT_SYMBOL(__get_user_1);
27EXPORT_SYMBOL(__get_user_2);
28EXPORT_SYMBOL(__get_user_4);
29
30EXPORT_SYMBOL(__put_user_1);
31EXPORT_SYMBOL(__put_user_2);
32EXPORT_SYMBOL(__put_user_4);
33EXPORT_SYMBOL(__put_user_8);
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035EXPORT_SYMBOL(strstr);
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037EXPORT_SYMBOL(csum_partial);
Theodore Ts'o8232fd62007-11-26 20:42:19 +010038EXPORT_SYMBOL(empty_zero_page);