1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #include <linux/uaccess.h> 3 #include <asm/fpu.h> 4 #include <asm/lbt.h> 5 #include <asm/mmu_context.h> 6 #include <asm/page.h> 7 #include <asm/ftrace.h> 8 #include <asm-generic/asm-prototypes.h> 9 10 #ifdef CONFIG_ARCH_SUPPORTS_INT128 11 __int128_t __ashlti3(__int128_t a, int b); 12 __int128_t __ashrti3(__int128_t a, int b); 13 __int128_t __lshrti3(__int128_t a, int b); 14 #endif 15 16 asmlinkage void noinstr __no_stack_protector ret_from_fork(struct task_struct *prev, 17 struct pt_regs *regs); 18 19 asmlinkage void noinstr __no_stack_protector ret_from_kernel_thread(struct task_struct *prev, 20 struct pt_regs *regs, 21 int (*fn)(void *), 22 void *fn_arg); 23