Home
last modified time | relevance | path

Searched refs:COMPAT_RLIM_INFINITY (Results 1 – 8 of 8) sorted by relevance

/kernel/linux/linux-5.10/arch/powerpc/include/asm/
Dcompat.h86 #define COMPAT_RLIM_INFINITY 0xffffffff macro
/kernel/linux/linux-5.10/arch/sparc/include/asm/
Dcompat.h116 #define COMPAT_RLIM_INFINITY 0x7fffffff macro
/kernel/linux/linux-5.10/arch/arm64/include/asm/
Dcompat.h104 #define COMPAT_RLIM_INFINITY 0xffffffff macro
/kernel/linux/linux-5.10/arch/parisc/include/asm/
Dcompat.h97 #define COMPAT_RLIM_INFINITY 0xffffffff macro
/kernel/linux/linux-5.10/arch/mips/include/asm/
Dcompat.h90 #define COMPAT_RLIM_INFINITY 0x7fffffffUL macro
/kernel/linux/linux-5.10/arch/x86/include/asm/
Dcompat.h91 #define COMPAT_RLIM_INFINITY 0xffffffff macro
/kernel/linux/linux-5.10/arch/s390/include/asm/
Dcompat.h156 #define COMPAT_RLIM_INFINITY 0xffffffff macro
/kernel/linux/linux-5.10/kernel/
Dsys.c1423 if (r32.rlim_cur == COMPAT_RLIM_INFINITY) in COMPAT_SYSCALL_DEFINE2()
1427 if (r32.rlim_max == COMPAT_RLIM_INFINITY) in COMPAT_SYSCALL_DEFINE2()
1443 if (r.rlim_cur > COMPAT_RLIM_INFINITY) in COMPAT_SYSCALL_DEFINE2()
1444 r32.rlim_cur = COMPAT_RLIM_INFINITY; in COMPAT_SYSCALL_DEFINE2()
1447 if (r.rlim_max > COMPAT_RLIM_INFINITY) in COMPAT_SYSCALL_DEFINE2()
1448 r32.rlim_max = COMPAT_RLIM_INFINITY; in COMPAT_SYSCALL_DEFINE2()