Searched refs:TASK_SIZE (Results 76 - 100 of 167) sorted by relevance

1234567

/linux-master/arch/arm/include/asm/
H A Duaccess.h119 : "r" (size), "r" (TASK_SIZE)
183 unsigned long __limit = TASK_SIZE - 1; \
236 unsigned long __limit = TASK_SIZE - 1; \
/linux-master/arch/arm/mm/
H A Dfault.c32 return addr >= TASK_SIZE && ULONG_MAX - addr >= size;
187 if (addr > TASK_SIZE)
452 * If the address is in kernel space (>= TASK_SIZE), then we are
474 if (addr < TASK_SIZE)
H A Dinit.c295 BUILD_BUG_ON(TASK_SIZE > MODULES_VADDR);
296 BUG_ON(TASK_SIZE > MODULES_VADDR);
/linux-master/arch/powerpc/mm/
H A Dfault.c206 address >= TASK_SIZE ? "exec-protected" : "user",
215 if (address >= TASK_SIZE)
319 if (is_user && address >= TASK_SIZE) {
/linux-master/arch/sh/include/asm/
H A Delf.h114 #define ELF_ET_DYN_BASE (2 * TASK_SIZE / 3)
/linux-master/arch/powerpc/include/asm/book3s/32/
H A Dmmu-hash.h200 if (n << 28 < TASK_SIZE)
/linux-master/arch/arm/lib/
H A Dcopy_from_user.S109 ldr r3, =TASK_SIZE
H A Dcopy_to_user.S109 ldr r3, =TASK_SIZE
/linux-master/arch/nios2/mm/
H A Dfault.c74 if (unlikely(address >= TASK_SIZE))
/linux-master/arch/microblaze/mm/
H A Dfault.c100 if (unlikely(kernel_mode(regs) && (address >= TASK_SIZE))) {
H A Dpgtable.c233 if (addr < TASK_SIZE)
/linux-master/arch/alpha/mm/
H A Dfault.c115 if (address >= TASK_SIZE)
/linux-master/arch/x86/um/asm/
H A Delf.h206 #define ELF_ET_DYN_BASE (TASK_SIZE / 3 * 2)
/linux-master/arch/powerpc/include/asm/
H A Dpage.h269 #define is_kernel_addr(x) ((x) >= TASK_SIZE)
/linux-master/arch/s390/include/asm/
H A Dpgalloc.h44 addr + len <= TASK_SIZE) {
/linux-master/arch/x86/include/asm/
H A Dkexec.h44 # define KEXEC_CONTROL_MEMORY_LIMIT TASK_SIZE
/linux-master/arch/parisc/mm/
H A Dhugetlbpage.c32 if (len > TASK_SIZE)
/linux-master/arch/x86/mm/
H A Dmmap.c178 * On 32bit this only checks whether @addr + @len is <= TASK_SIZE.
211 if (TASK_SIZE - len < addr)
/linux-master/arch/powerpc/mm/book3s32/
H A Dmmu.c226 for (i = TASK_SIZE >> 28; i < 16; i++) {
329 if (!pte_young(*ptep) || address >= TASK_SIZE)
/linux-master/arch/loongarch/kernel/
H A Dhw_breakpoint.c277 return (va >= TASK_SIZE) && ((va + len - 1) >= TASK_SIZE);
/linux-master/arch/xtensa/kernel/
H A Dsignal.c215 && ((regs->lbeg > TASK_SIZE) || (regs->lend > TASK_SIZE)) )
/linux-master/arch/sparc/mm/
H A Dhugetlbpage.c33 unsigned long task_size = TASK_SIZE;
100 unsigned long task_size = TASK_SIZE;
/linux-master/arch/um/kernel/
H A Dtrap.c221 else if (!is_user && address > PAGE_SIZE && address < TASK_SIZE) {
/linux-master/mm/kmsan/
H A Dinstrumentation.c23 if ((u64)addr < TASK_SIZE)
/linux-master/arch/xtensa/mm/
H A Dfault.c105 if (address >= TASK_SIZE && !user_mode(regs)) {

Completed in 245 milliseconds

1234567