Searched refs:TASK_SIZE (Results 126 - 150 of 167) sorted by relevance

1234567

/linux-master/arch/powerpc/mm/
H A Dmem.c429 BUILD_BUG_ON(TASK_SIZE > MODULES_VADDR);
/linux-master/mm/kmsan/
H A Dhooks.c270 if ((u64)to < TASK_SIZE) {
/linux-master/arch/um/kernel/
H A Dum_arch.c340 * TASK_SIZE needs to be PGDIR_SIZE aligned or else exit_mmap craps
374 max_physmem = TASK_SIZE - uml_physmem - iomem_size - MIN_VMALLOC;
/linux-master/arch/powerpc/kernel/
H A Dasm-offsets.c332 DEFINE(TASK_SIZE, TASK_SIZE);
333 DEFINE(NUM_USER_SEGMENTS, TASK_SIZE>>28);
H A Dhead_book3s_32.S423 lis r1, TASK_SIZE@h /* check if kernel address */
491 lis r1, TASK_SIZE@h /* check if kernel address */
571 lis r1, TASK_SIZE@h /* check if kernel address */
/linux-master/fs/
H A Dbinfmt_elf.c111 #define BAD_ADDR(x) (unlikely((unsigned long)(x) >= TASK_SIZE))
696 eppnt->p_memsz > TASK_SIZE ||
697 TASK_SIZE - eppnt->p_memsz < k) {
1171 elf_ppnt->p_memsz > TASK_SIZE ||
1172 TASK_SIZE - elf_ppnt->p_memsz < k) {
/linux-master/arch/powerpc/include/asm/book3s/32/
H A Dpgtable.h133 #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
/linux-master/mm/kasan/
H A Dreport.c672 else if (orig_addr < TASK_SIZE)
/linux-master/arch/arm/kernel/
H A Dhw_breakpoint.c460 return (va >= TASK_SIZE) && ((va + len - 1) >= TASK_SIZE);
/linux-master/mm/
H A Dmremap.c881 if (new_len > TASK_SIZE || new_addr > TASK_SIZE - new_len)
H A Dmmap.c1864 if (len > TASK_SIZE)
1895 if (addr > TASK_SIZE - len)
2036 if (address >= (TASK_SIZE & PAGE_MASK))
2044 if (gap_addr < address || gap_addr > TASK_SIZE)
2045 gap_addr = TASK_SIZE;
2733 if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start)
H A Dmlock.c777 mm_populate(0, TASK_SIZE);
H A Dshmem.c2276 if (len > TASK_SIZE)
2288 if (addr > TASK_SIZE - len)
2332 if (inflated_len > TASK_SIZE)
2349 if (inflated_addr > TASK_SIZE - len)
/linux-master/arch/mips/kernel/
H A Dprocess.c685 unsigned long top = TASK_SIZE & PAGE_MASK;
/linux-master/arch/arc/mm/
H A Dcache.c791 WARN(kstart < TASK_SIZE, "%s() can't handle user vaddr", __func__);
/linux-master/arch/powerpc/mm/book3s64/
H A Dslice.c440 high_limit = TASK_SIZE;
/linux-master/arch/sparc/kernel/
H A Dsys_sparc_64.c94 unsigned long task_size = TASK_SIZE;
/linux-master/arch/x86/mm/
H A Dinit.c831 (TASK_SIZE - TASK_UNMAPPED_BASE - 3 * PAGE_SIZE);
/linux-master/arch/arm/mm/
H A Dmmu.c984 if (md->virtual != vectors_base() && md->virtual < TASK_SIZE) {
1301 * KASan's shadow memory inserts itself between the TASK_SIZE
1805 if (addr < TASK_SIZE && pte_valid_user(pteval)) {
/linux-master/arch/s390/kvm/
H A Dpv.c475 s390_uv_destroy_range(kvm->mm, 0, TASK_SIZE);
/linux-master/arch/loongarch/kernel/
H A Dptrace.c1061 info->mask = TASK_SIZE - 1;
/linux-master/arch/alpha/kernel/
H A Dosf_sys.c1240 limit = TASK_SIZE;
/linux-master/arch/s390/mm/
H A Dgmap.c2778 walk_page_range(mm, 0, TASK_SIZE, &enable_skey_walk_ops, NULL);
2804 walk_page_range(mm, 0, TASK_SIZE, &reset_cmma_walk_ops, NULL);
/linux-master/kernel/
H A Dsys.c1951 unsigned long mmap_max_addr = TASK_SIZE;
2180 if (addr >= TASK_SIZE || addr < mmap_min_addr)
/linux-master/include/linux/
H A Dsched.h2163 #define TASK_SIZE_OF(tsk) TASK_SIZE

Completed in 839 milliseconds

1234567