Searched refs:NR_syscalls (Results 26 - 50 of 52) sorted by relevance

123

/linux-master/arch/arc/include/uapi/asm/
H A Dunistd.h33 #define NR_syscalls __NR_syscalls macro
/linux-master/arch/x86/include/asm/
H A Dunistd.h35 # define NR_syscalls (__NR_syscalls) macro
/linux-master/arch/powerpc/include/asm/
H A Dunistd.h10 #define NR_syscalls __NR_syscalls macro
H A Dvdso_datapage.h41 #define SYSCALL_MAP_SIZE ((NR_syscalls + 31) / 32)
/linux-master/arch/loongarch/kernel/
H A Dsyscall.c48 if (nr < NR_syscalls)
57 if (nr < NR_syscalls) {
/linux-master/arch/powerpc/kernel/vdso/
H A Ddatapage.S40 li r0,NR_syscalls
/linux-master/kernel/trace/
H A Dtrace_syscalls.c109 if (!syscalls_metadata || nr >= NR_syscalls || nr < 0)
303 if (syscall_nr < 0 || syscall_nr >= NR_syscalls)
342 if (syscall_nr < 0 || syscall_nr >= NR_syscalls)
376 if (WARN_ON_ONCE(num < 0 || num >= NR_syscalls))
396 if (WARN_ON_ONCE(num < 0 || num >= NR_syscalls))
414 if (WARN_ON_ONCE(num < 0 || num >= NR_syscalls))
434 if (WARN_ON_ONCE(num < 0 || num >= NR_syscalls))
450 if (num < 0 || num >= NR_syscalls) {
517 syscalls_metadata = kcalloc(NR_syscalls,
526 for (i = 0; i < NR_syscalls;
[all...]
/linux-master/arch/powerpc/kernel/
H A Dsyscall.c131 * and the test against NR_syscalls will fail and the return
135 if (unlikely(r0 >= NR_syscalls))
138 } else if (unlikely(r0 >= NR_syscalls)) {
H A Dvdso.c284 for (i = 0; i < NR_syscalls; i++) {
/linux-master/arch/parisc/include/asm/
H A Dsyscall.h12 #define NR_syscalls (__NR_Linux_syscalls) macro
/linux-master/arch/arm/include/asm/
H A Dsyscall.h18 #define NR_syscalls (__NR_syscalls) macro
/linux-master/arch/sparc/kernel/
H A Dsyscalls.S168 cmp %g1, NR_syscalls
198 cmp %g1, NR_syscalls
217 cmp %g1, NR_syscalls ! IEU1 Group
241 cmp %g1, NR_syscalls ! IEU1 Group
/linux-master/arch/m68k/68000/
H A Dentry.S49 cmpl #NR_syscalls,%d1
78 cmpl #NR_syscalls,%d0
/linux-master/arch/x86/entry/
H A Dcommon.c50 if (likely(unr < NR_syscalls)) {
51 unr = array_index_nospec(unr, NR_syscalls);
/linux-master/arch/sh/kernel/
H A Dentry-common.S397 6: .long NR_syscalls
/linux-master/arch/s390/kernel/
H A Dsyscall.c141 if (likely(nr >= NR_syscalls))
/linux-master/arch/m68k/coldfire/
H A Dentry.S62 cmpl #NR_syscalls,%d0
/linux-master/arch/arm/kernel/
H A Dentry-common.S17 .equ NR_syscalls, __NR_syscalls
368 cmpne scno, #NR_syscalls @ check range
H A Dentry-header.S395 cmp \tmp, #NR_syscalls @ check upper syscall limit
406 cmp \nr, #NR_syscalls @ check upper syscall limit
/linux-master/arch/m68k/kernel/
H A Dentry.S187 cmpl #NR_syscalls,%d0
217 cmpl #NR_syscalls,%d0
/linux-master/arch/arc/kernel/
H A Dentry.S160 cmp r8, NR_syscalls - 1
236 cmp r8, NR_syscalls - 1
/linux-master/arch/alpha/kernel/
H A Dentry.S457 lda $4, NR_syscalls($31)
598 lda $1, NR_syscalls($31)
/linux-master/arch/powerpc/platforms/cell/spufs/
H A Drun.c330 if (s.nr_ret < NR_syscalls) {
/linux-master/arch/powerpc/kernel/ptrace/
H A Dptrace.c294 if (regs->gpr[0] >= NR_syscalls)
/linux-master/arch/riscv/kernel/
H A Dtraps.c329 if (syscall >= 0 && syscall < NR_syscalls)

Completed in 334 milliseconds

123