Linux Audio

Check our new training course

Loading...
Note: File does not exist in v4.17.
 1#include <linux/module.h>
 2
 3#include <asm/checksum.h>
 4#include <asm/pgtable.h>
 5#include <asm/desc.h>
 6#include <asm/ftrace.h>
 7
 8#ifdef CONFIG_FUNCTION_TRACER
 9/* mcount is defined in assembly */
10EXPORT_SYMBOL(mcount);
11#endif
12
13/*
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 */
18#ifndef CONFIG_X86_CMPXCHG64
19extern void cmpxchg8b_emu(void);
20EXPORT_SYMBOL(cmpxchg8b_emu);
21#endif
22
23/* Networking helper routines. */
24EXPORT_SYMBOL(csum_partial_copy_generic);
25
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
35EXPORT_SYMBOL(strstr);
36
37EXPORT_SYMBOL(csum_partial);
38EXPORT_SYMBOL(empty_zero_page);