Searched refs:TASK_SIZE (Results 101 - 125 of 167) sorted by relevance

1234567

/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)) {
/linux-master/arch/m68k/mm/
H A Dmcfmmu.c140 if ((mmuar < TASK_UNMAPPED_BASE) || (mmuar >= TASK_SIZE))
/linux-master/mm/kasan/
H A Dreport_generic.c134 else if ((unsigned long)info->access_addr < TASK_SIZE)
/linux-master/arch/riscv/mm/
H A Dfault.c273 if (!user_mode(regs) && addr < TASK_SIZE && unlikely(!(regs->status & SR_SUM))) {
/linux-master/arch/loongarch/include/asm/
H A Delf.h308 #define ELF_ET_DYN_BASE (TASK_SIZE / 3 * 2)
/linux-master/arch/arm/include/asm/
H A Dpgtable-3level.h235 BUG_ON(addr >= TASK_SIZE);
H A Dpgtable.h73 * Use TASK_SIZE as the ceiling argument for free_pgtables() and
78 #define USER_PGTABLES_CEILING TASK_SIZE
/linux-master/include/linux/sched/
H A Dmm.h172 #define arch_get_mmap_end(addr, len, flags) (TASK_SIZE)
/linux-master/arch/s390/include/asm/
H A Dprocessor.h107 #define TASK_SIZE (test_thread_flag(TIF_31BIT) ? \ macro
/linux-master/arch/powerpc/mm/book3s32/
H A Dhash_low.S68 lis r0, TASK_SIZE@h /* check if kernel address */
315 lis r0, TASK_SIZE@h
/linux-master/mm/
H A Dpagewalk.c55 if (walk->mm == &init_mm || addr >= TASK_SIZE)
61 if (walk->mm != &init_mm && addr < TASK_SIZE)
/linux-master/arch/alpha/kernel/
H A Dtraps.c749 the page at TASK_SIZE is unmapped and so can't be touched anyway. */
750 if ((unsigned long)va >= TASK_SIZE)
955 if ((unsigned long)va >= TASK_SIZE)
/linux-master/arch/arm64/kernel/
H A Dhw_breakpoint.c344 return (va >= TASK_SIZE) && ((va + len - 1) >= TASK_SIZE);
/linux-master/lib/
H A Dtest_user_copy.c201 if (user_addr >= (unsigned long)(TASK_SIZE)) {
/linux-master/arch/mips/include/asm/
H A Delf.h456 #define ELF_ET_DYN_BASE (TASK_SIZE / 3 * 2)
/linux-master/arch/sparc/mm/
H A Dfault_32.c136 if (address >= TASK_SIZE)
/linux-master/arch/sh/mm/
H A Dfault.c381 return address >= TASK_SIZE;
/linux-master/arch/arm/kernel/
H A Dprocess.c360 last = TASK_SIZE - (npages << PAGE_SHIFT);
/linux-master/arch/openrisc/include/asm/
H A Dpgtable.h72 * (TASK_SIZE is the maximum virtual address space)
75 #define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
/linux-master/arch/xtensa/include/asm/
H A Dpgtable.h60 #define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
/linux-master/arch/alpha/include/asm/
H A Dpgtable.h17 #include <asm/processor.h> /* For TASK_SIZE */
47 #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
/linux-master/arch/um/kernel/
H A Dum_arch.c339 * TASK_SIZE needs to be PGDIR_SIZE aligned or else exit_mmap craps
373 max_physmem = TASK_SIZE - uml_physmem - iomem_size - MIN_VMALLOC;
/linux-master/arch/microblaze/include/asm/
H A Dpgtable.h24 #include <asm/processor.h> /* For TASK_SIZE */
101 #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
/linux-master/arch/loongarch/kernel/
H A Dprocess.c294 unsigned long top = TASK_SIZE & PAGE_MASK;

Completed in 422 milliseconds

1234567