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 9 EXPORT_SYMBOL(flush_dcache_range); 10 EXPORT_SYMBOL(flush_icache_range); 11 12 EXPORT_SYMBOL(empty_zero_page); 13 14 long long __bswapdi2(long long); 15 EXPORT_SYMBOL(__bswapdi2); 16 17 #ifdef CONFIG_FUNCTION_TRACER 18 EXPORT_SYMBOL(_mcount); 19 #endif 20 21 #ifdef CONFIG_PPC_FPU 22 EXPORT_SYMBOL(giveup_fpu); 23 EXPORT_SYMBOL(load_fp_state); 24 EXPORT_SYMBOL(store_fp_state); 25 #endif 26 27 #ifdef CONFIG_ALTIVEC 28 EXPORT_SYMBOL(giveup_altivec); 29 EXPORT_SYMBOL(load_vr_state); 30 EXPORT_SYMBOL(store_vr_state); 31 #endif 32 33 #ifdef CONFIG_VSX 34 EXPORT_SYMBOL_GPL(__giveup_vsx); 35 #endif 36 37 #ifdef CONFIG_SPE 38 EXPORT_SYMBOL(giveup_spe); 39 #endif 40 41 #ifdef CONFIG_EPAPR_PARAVIRT 42 EXPORT_SYMBOL(epapr_hypercall_start); 43 #endif 44 45 EXPORT_SYMBOL(current_stack_pointer); 46