aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc64/kernel/ppc_ksyms.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ppc64/kernel/ppc_ksyms.c')
-rw-r--r--arch/ppc64/kernel/ppc_ksyms.c95
1 files changed, 95 insertions, 0 deletions
diff --git a/arch/ppc64/kernel/ppc_ksyms.c b/arch/ppc64/kernel/ppc_ksyms.c
new file mode 100644
index 000000000000..6ced63a3439f
--- /dev/null
+++ b/arch/ppc64/kernel/ppc_ksyms.c
@@ -0,0 +1,95 @@
1/*
2 * c 2001 PPC 64 Team, IBM Corp
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 */
9#include <linux/config.h>
10#include <linux/module.h>
11#include <linux/string.h>
12#include <linux/console.h>
13#include <net/checksum.h>
14
15#include <asm/processor.h>
16#include <asm/uaccess.h>
17#include <asm/io.h>
18#include <asm/system.h>
19#include <asm/hw_irq.h>
20#include <asm/abs_addr.h>
21#include <asm/cacheflush.h>
22#include <asm/iSeries/HvCallSc.h>
23
24EXPORT_SYMBOL(strcpy);
25EXPORT_SYMBOL(strncpy);
26EXPORT_SYMBOL(strcat);
27EXPORT_SYMBOL(strncat);
28EXPORT_SYMBOL(strchr);
29EXPORT_SYMBOL(strrchr);
30EXPORT_SYMBOL(strpbrk);
31EXPORT_SYMBOL(strstr);
32EXPORT_SYMBOL(strlen);
33EXPORT_SYMBOL(strnlen);
34EXPORT_SYMBOL(strcmp);
35EXPORT_SYMBOL(strncmp);
36
37EXPORT_SYMBOL(csum_partial);
38EXPORT_SYMBOL(csum_partial_copy_generic);
39EXPORT_SYMBOL(ip_fast_csum);
40EXPORT_SYMBOL(csum_tcpudp_magic);
41
42EXPORT_SYMBOL(__copy_tofrom_user);
43EXPORT_SYMBOL(__clear_user);
44EXPORT_SYMBOL(__strncpy_from_user);
45EXPORT_SYMBOL(__strnlen_user);
46
47EXPORT_SYMBOL(reloc_offset);
48
49#ifdef CONFIG_PPC_ISERIES
50EXPORT_SYMBOL(HvCall0);
51EXPORT_SYMBOL(HvCall1);
52EXPORT_SYMBOL(HvCall2);
53EXPORT_SYMBOL(HvCall3);
54EXPORT_SYMBOL(HvCall4);
55EXPORT_SYMBOL(HvCall5);
56EXPORT_SYMBOL(HvCall6);
57EXPORT_SYMBOL(HvCall7);
58#endif
59
60EXPORT_SYMBOL(_insb);
61EXPORT_SYMBOL(_outsb);
62EXPORT_SYMBOL(_insw);
63EXPORT_SYMBOL(_outsw);
64EXPORT_SYMBOL(_insl);
65EXPORT_SYMBOL(_outsl);
66EXPORT_SYMBOL(_insw_ns);
67EXPORT_SYMBOL(_outsw_ns);
68EXPORT_SYMBOL(_insl_ns);
69EXPORT_SYMBOL(_outsl_ns);
70
71EXPORT_SYMBOL(kernel_thread);
72
73EXPORT_SYMBOL(giveup_fpu);
74#ifdef CONFIG_ALTIVEC
75EXPORT_SYMBOL(giveup_altivec);
76#endif
77EXPORT_SYMBOL(flush_icache_range);
78
79#ifdef CONFIG_SMP
80#ifdef CONFIG_PPC_ISERIES
81EXPORT_SYMBOL(local_get_flags);
82EXPORT_SYMBOL(local_irq_disable);
83EXPORT_SYMBOL(local_irq_restore);
84#endif
85#endif
86
87EXPORT_SYMBOL(memcpy);
88EXPORT_SYMBOL(memset);
89EXPORT_SYMBOL(memmove);
90EXPORT_SYMBOL(memscan);
91EXPORT_SYMBOL(memcmp);
92EXPORT_SYMBOL(memchr);
93
94EXPORT_SYMBOL(timer_interrupt);
95EXPORT_SYMBOL(console_drivers);