Searched refs:scno (Results 1 – 5 of 5) sorted by relevance
/linux/arch/arm64/kernel/ |
H A D | syscall.c | 19 long compat_arm_syscall(struct pt_regs *regs, int scno); 22 static long do_ni_syscall(struct pt_regs *regs, int scno) in do_ni_syscall() argument 25 long ret = compat_arm_syscall(regs, scno); in do_ni_syscall() 38 static void invoke_syscall(struct pt_regs *regs, unsigned int scno, in invoke_syscall() argument 46 if (scno < sc_nr) { in invoke_syscall() 48 syscall_fn = syscall_table[array_index_nospec(scno, sc_nr)]; in invoke_syscall() 51 ret = do_ni_syscall(regs, scno); in invoke_syscall() 73 static void el0_svc_common(struct pt_regs *regs, int scno, int sc_nr, in el0_svc_common() argument 79 regs->syscallno = scno; in el0_svc_common() 125 if (scno in el0_svc_common() [all...] |
H A D | sys_compat.c | 68 long compat_arm_syscall(struct pt_regs *regs, int scno) in compat_arm_syscall() argument 72 switch (scno) { in compat_arm_syscall() 108 if (scno < __ARM_NR_COMPAT_END) in compat_arm_syscall()
|
/linux/arch/arm/kernel/ |
H A D | entry-common.S | 92 movlt scno, #(__NR_restart_syscall - __NR_SYSCALL_BASE) 93 str scno, [tsk, #TI_ABI_SYSCALL] @ make sure tracers see update 217 * Pure EABI user space always put syscall number into scno (r7). 222 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in 223 USER( ldreq scno, [saved_pc, #-4] ) 227 USER( ldr scno, [saved_pc, #-4] ) @ get SWI instruction 241 * If this is an old ABI call, get the syscall number into scno and 246 streq scno, [tsk, #TI_ABI_SYSCALL] 247 eorne scno, r10, #__NR_OABI_SYSCALL_BASE 250 bic scno, scn [all...] |
H A D | entry-header.S | 427 scno .req r7 @ syscall number label
|
/linux/arch/arm64/include/asm/ |
H A D | compat.h | 99 long compat_arm_syscall(struct pt_regs *regs, int scno);
|