Searched refs:TASK_SIZE (Results 51 - 75 of 167) sorted by relevance

1234567

/linux-master/arch/x86/include/asm/
H A Dpage_64_types.h75 #define TASK_SIZE (test_thread_flag(TIF_ADDR32) ? \ macro
/linux-master/arch/sh/include/asm/
H A Dkexec.h24 #define KEXEC_CONTROL_MEMORY_LIMIT TASK_SIZE
/linux-master/arch/mips/include/asm/
H A Dprocessor.h39 #define TASK_SIZE 0x80000000UL macro
41 #define STACK_TOP_MAX TASK_SIZE
50 * so don't change it unless you know what you are doing. TASK_SIZE
61 #define TASK_SIZE (test_thread_flag(TIF_32BIT_ADDR) ? TASK_SIZE32 : TASK_SIZE64) macro
80 #define TASK_UNMAPPED_BASE PAGE_ALIGN(TASK_SIZE / 3)
/linux-master/arch/sh/mm/
H A Dtlbex_32.c41 if (unlikely(address >= TASK_SIZE || !current->mm))
/linux-master/arch/powerpc/kernel/ptrace/
H A Dptrace-adv.c101 if ((data & ~0x7UL) >= TASK_SIZE)
154 if (bp_info->addr >= TASK_SIZE)
159 if (bp_info->addr2 >= TASK_SIZE)
296 if (bp_info->addr >= TASK_SIZE)
401 if (bp_info->addr >= TASK_SIZE)
408 if (~((unsigned long)bp_info->addr2) >= TASK_SIZE)
414 if (bp_info->addr2 >= TASK_SIZE)
H A Dptrace-noadv.c97 if ((data & ~0x7UL) >= TASK_SIZE)
214 if ((unsigned long)bp_info->addr >= TASK_SIZE)
/linux-master/arch/m68k/include/asm/
H A Dtlbflush.h119 for (addr = 0x00000000; addr < TASK_SIZE; addr += SUN3_PMEG_SIZE) {
148 for (i = 0; i < TASK_SIZE; i += SUN3_PMEG_SIZE) {
H A Dpgtable_mm.h72 #define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
/linux-master/arch/um/include/asm/
H A Dpgtable-3level.h43 #define USER_PTRS_PER_PGD ((TASK_SIZE + (PGDIR_SIZE - 1)) / PGDIR_SIZE)
/linux-master/arch/s390/mm/
H A Dhugetlbpage.c255 info.high_limit = TASK_SIZE;
285 info.high_limit = TASK_SIZE;
301 if (len > TASK_SIZE - mmap_min_addr)
313 if (TASK_SIZE - len >= addr && addr >= mmap_min_addr &&
/linux-master/arch/xtensa/kernel/
H A Dstacktrace.c46 if (pc == 0 || pc >= TASK_SIZE || ufn(&frame, data))
84 if (pc == 0 || pc >= TASK_SIZE || ufn(&frame, data))
111 if (pc == 0 || pc >= TASK_SIZE || ufn(&frame, data))
H A Dhw_breakpoint.c45 return (va >= TASK_SIZE) && ((va + len - 1) >= TASK_SIZE);
/linux-master/arch/parisc/kernel/
H A Dsys_parisc.c111 if (unlikely(len > TASK_SIZE))
120 /* Even MAP_FIXED mappings must reside within TASK_SIZE */
121 if (TASK_SIZE - len < addr)
138 if (TASK_SIZE - len >= addr &&
/linux-master/arch/xtensa/include/asm/
H A Delf.h125 #define ELF_ET_DYN_BASE (2 * TASK_SIZE / 3)
/linux-master/arch/sparc/include/asm/
H A Dprocessor_64.h18 * that TASK_SIZE is a misnomer, it really gives maximum user virtual
33 #define TASK_SIZE \ macro
/linux-master/arch/powerpc/mm/nohash/
H A D40x.c59 * the zone. We set all zones above TASK_SIZE to zero, allowing
61 * TASK_SIZE, we set a 01 binary (a value of 10 will not work)
66 for (i = 0, zpr = 0; i < TASK_SIZE >> 28; i++)
/linux-master/arch/powerpc/include/asm/nohash/32/
H A Dpgtable.h52 #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
/linux-master/arch/powerpc/include/asm/
H A Dkexec.h34 /* TASK_SIZE, probably left over from use_mm ?? */
35 #define KEXEC_CONTROL_MEMORY_LIMIT TASK_SIZE
/linux-master/arch/arm/include/asm/
H A Dpgtable-2level.h106 #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
/linux-master/arch/x86/mm/
H A Dhugetlbpage.c94 if (len > TASK_SIZE)
/linux-master/arch/sh/kernel/
H A Dhw_breakpoint.c132 return (va >= TASK_SIZE) && ((va + len - 1) >= TASK_SIZE);
/linux-master/arch/parisc/include/asm/
H A Dprocessor.h28 #define TASK_SIZE TASK_SIZE_OF(current) macro
45 #define STACK_TOP TASK_SIZE
212 stack base is at TASK_SIZE - rlim_max.
215 stack base at TASK_SIZE
/linux-master/drivers/misc/lkdtm/
H A Dperms.c207 if (user_addr >= TASK_SIZE) {
228 if (user_addr >= TASK_SIZE) {
/linux-master/arch/xtensa/mm/
H A Dtlb.c153 if (end > start && start >= TASK_SIZE && end <= PAGE_OFFSET &&
223 * Check that TLB entries with kernel ASID (1) have kernel VMA (>= TASK_SIZE),
224 * and TLB entries with user ASID (>=4) have VMA < TASK_SIZE.
246 if (tlb_asid > 0 && ((vpn < TASK_SIZE) == kernel)) {
/linux-master/arch/riscv/include/asm/
H A Dpgtable.h172 #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
861 #define KERN_VIRT_START (-(BIT(VA_BITS)) + TASK_SIZE)
868 * Note that PGDIR_SIZE must evenly divide TASK_SIZE.
875 * Note that PGDIR_SIZE must evenly divide TASK_SIZE since "RISC-V
887 #define TASK_SIZE (is_compat_task() ? \ macro
890 #define TASK_SIZE TASK_SIZE_64 macro
894 #define TASK_SIZE FIXADDR_START macro
902 #define TASK_SIZE _AC(-1, UL) macro
904 #define VMALLOC_END TASK_SIZE

Completed in 223 milliseconds

1234567