]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/ia64/kernel/ia64_ksyms.c
[PATCH] remove gcc-2 checks
[mirror_ubuntu-jammy-kernel.git] / arch / ia64 / kernel / ia64_ksyms.c
CommitLineData
1da177e4
LT
1/*
2 * Architecture-specific kernel symbols
3 *
4 * Don't put any exports here unless it's defined in an assembler file.
5 * All other exports should be put directly after the definition.
6 */
7
8#include <linux/config.h>
9#include <linux/module.h>
10
11#include <linux/string.h>
12EXPORT_SYMBOL(memset);
13EXPORT_SYMBOL(memchr);
14EXPORT_SYMBOL(memcmp);
15EXPORT_SYMBOL(memcpy);
16EXPORT_SYMBOL(memmove);
17EXPORT_SYMBOL(memscan);
18EXPORT_SYMBOL(strcat);
19EXPORT_SYMBOL(strchr);
20EXPORT_SYMBOL(strcmp);
21EXPORT_SYMBOL(strcpy);
22EXPORT_SYMBOL(strlen);
23EXPORT_SYMBOL(strncat);
24EXPORT_SYMBOL(strncmp);
25EXPORT_SYMBOL(strncpy);
26EXPORT_SYMBOL(strnlen);
27EXPORT_SYMBOL(strrchr);
28EXPORT_SYMBOL(strstr);
29EXPORT_SYMBOL(strpbrk);
30
31#include <asm/checksum.h>
32EXPORT_SYMBOL(ip_fast_csum); /* hand-coded assembly */
33
34#include <asm/semaphore.h>
35EXPORT_SYMBOL(__down);
36EXPORT_SYMBOL(__down_interruptible);
37EXPORT_SYMBOL(__down_trylock);
38EXPORT_SYMBOL(__up);
39
40#include <asm/page.h>
41EXPORT_SYMBOL(clear_page);
42
43#ifdef CONFIG_VIRTUAL_MEM_MAP
44#include <linux/bootmem.h>
b77dae52 45EXPORT_SYMBOL(min_low_pfn); /* defined by bootmem.c, but not exported by generic code */
1da177e4
LT
46EXPORT_SYMBOL(max_low_pfn); /* defined by bootmem.c, but not exported by generic code */
47#endif
48
49#include <asm/processor.h>
50EXPORT_SYMBOL(per_cpu__cpu_info);
51#ifdef CONFIG_SMP
52EXPORT_SYMBOL(per_cpu__local_per_cpu_offset);
53#endif
54
55#include <asm/uaccess.h>
56EXPORT_SYMBOL(__copy_user);
57EXPORT_SYMBOL(__do_clear_user);
58EXPORT_SYMBOL(__strlen_user);
59EXPORT_SYMBOL(__strncpy_from_user);
60EXPORT_SYMBOL(__strnlen_user);
61
1da177e4
LT
62/* from arch/ia64/lib */
63extern void __divsi3(void);
64extern void __udivsi3(void);
65extern void __modsi3(void);
66extern void __umodsi3(void);
67extern void __divdi3(void);
68extern void __udivdi3(void);
69extern void __moddi3(void);
70extern void __umoddi3(void);
71
72EXPORT_SYMBOL(__divsi3);
73EXPORT_SYMBOL(__udivsi3);
74EXPORT_SYMBOL(__modsi3);
75EXPORT_SYMBOL(__umodsi3);
76EXPORT_SYMBOL(__divdi3);
77EXPORT_SYMBOL(__udivdi3);
78EXPORT_SYMBOL(__moddi3);
79EXPORT_SYMBOL(__umoddi3);
80
81#if defined(CONFIG_MD_RAID5) || defined(CONFIG_MD_RAID5_MODULE)
82extern void xor_ia64_2(void);
83extern void xor_ia64_3(void);
84extern void xor_ia64_4(void);
85extern void xor_ia64_5(void);
86
87EXPORT_SYMBOL(xor_ia64_2);
88EXPORT_SYMBOL(xor_ia64_3);
89EXPORT_SYMBOL(xor_ia64_4);
90EXPORT_SYMBOL(xor_ia64_5);
91#endif
92
93#include <asm/pal.h>
94EXPORT_SYMBOL(ia64_pal_call_phys_stacked);
95EXPORT_SYMBOL(ia64_pal_call_phys_static);
96EXPORT_SYMBOL(ia64_pal_call_stacked);
97EXPORT_SYMBOL(ia64_pal_call_static);
98EXPORT_SYMBOL(ia64_load_scratch_fpregs);
99EXPORT_SYMBOL(ia64_save_scratch_fpregs);
100
101#include <asm/unwind.h>
102EXPORT_SYMBOL(unw_init_running);
103
104#ifdef ASM_SUPPORTED
105# ifdef CONFIG_SMP
a1365647 106# if (__GNUC__ == 3 && __GNUC_MINOR__ < 3)
1da177e4
LT
107/*
108 * This is not a normal routine and we don't want a function descriptor for it, so we use
109 * a fake declaration here.
110 */
111extern char ia64_spinlock_contention_pre3_4;
112EXPORT_SYMBOL(ia64_spinlock_contention_pre3_4);
113# else
114/*
115 * This is not a normal routine and we don't want a function descriptor for it, so we use
116 * a fake declaration here.
117 */
118extern char ia64_spinlock_contention;
119EXPORT_SYMBOL(ia64_spinlock_contention);
120# endif
121# endif
122#endif
123
124extern char ia64_ivt[];
125EXPORT_SYMBOL(ia64_ivt);