1#include <linux/ftrace.h>
2#include <linux/mm.h>
3
4#include <asm/processor.h>
5#include <asm/switch_to.h>
6#include <asm/cacheflush.h>
7#include <asm/epapr_hcalls.h>
8
9EXPORT_SYMBOL(flush_dcache_range);
10EXPORT_SYMBOL(flush_icache_range);
11
12EXPORT_SYMBOL(empty_zero_page);
13
14long long __bswapdi2(long long);
15EXPORT_SYMBOL(__bswapdi2);
16
17#ifdef CONFIG_FUNCTION_TRACER
18EXPORT_SYMBOL(_mcount);
19#endif
20
21#ifdef CONFIG_PPC_FPU
22EXPORT_SYMBOL(giveup_fpu);
23EXPORT_SYMBOL(load_fp_state);
24EXPORT_SYMBOL(store_fp_state);
25#endif
26
27#ifdef CONFIG_ALTIVEC
28EXPORT_SYMBOL(giveup_altivec);
29EXPORT_SYMBOL(load_vr_state);
30EXPORT_SYMBOL(store_vr_state);
31#endif
32
33#ifdef CONFIG_VSX
34EXPORT_SYMBOL_GPL(__giveup_vsx);
35#endif
36
37#ifdef CONFIG_SPE
38EXPORT_SYMBOL(giveup_spe);
39#endif
40
41#ifdef CONFIG_EPAPR_PARAVIRT
42EXPORT_SYMBOL(epapr_hypercall_start);
43#endif
44
45EXPORT_SYMBOL(current_stack_pointer);
46