Searched refs:stack_page (Results 1 - 11 of 11) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/kernel/
H A Dstacktrace.c42 unsigned long stack_page = local
44 if (stack_page && sp >= stack_page &&
45 sp <= stack_page + THREAD_SIZE - 32)
H A Dprocess.c367 unsigned long stack_page; local
374 stack_page = (unsigned long)task_stack_page(task);
375 if (!stack_page)
385 if (*sp >= stack_page &&
386 *sp + sizeof(*regs) <= stack_page + THREAD_SIZE - 32) {
414 if (*sp < stack_page ||
415 *sp + info.frame_size > stack_page + THREAD_SIZE - 32)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/h8300/kernel/
H A Dprocess.c240 unsigned long stack_page; local
245 stack_page = (unsigned long)p;
248 if (fp < stack_page+sizeof(struct thread_info) ||
249 fp >= 8184+stack_page)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/kernel/
H A Dprocess.c401 unsigned long stack_page; local
406 stack_page = (unsigned long)task_stack_page(p);
407 BUG_ON(!stack_page);
417 BUG_ON(fp < stack_page || fp > (THREAD_SIZE + stack_page));
430 BUG_ON(sp < stack_page || sp > (THREAD_SIZE + stack_page));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/kernel/
H A Dprocess.c366 unsigned long stack_page; local
371 stack_page = 4096 + (unsigned long)p;
374 if (fp < stack_page || fp > 4092+stack_page)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/blackfin/kernel/
H A Dprocess.c333 unsigned long stack_page; local
338 stack_page = (unsigned long)p;
341 if (fp < stack_page + sizeof(struct thread_info) ||
342 fp >= 8184 + stack_page)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/kernel/
H A Dprocess.c388 unsigned long stack_page; local
393 stack_page = (unsigned long)task_stack_page(p);
396 if (fp < stack_page+sizeof(struct thread_info) ||
397 fp >= 8184+stack_page)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68knommu/kernel/
H A Dprocess.c371 unsigned long stack_page; local
376 stack_page = (unsigned long)p;
379 if (fp < stack_page+sizeof(struct thread_info) ||
380 fp >= 8184+stack_page)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Dprocess.c826 unsigned long stack_page; local
834 stack_page = (unsigned long) hardirq_ctx[cpu];
835 if (sp >= stack_page + sizeof(struct thread_struct)
836 && sp <= stack_page + THREAD_SIZE - nbytes)
839 stack_page = (unsigned long) softirq_ctx[cpu];
840 if (sp >= stack_page + sizeof(struct thread_struct)
841 && sp <= stack_page + THREAD_SIZE - nbytes)
854 unsigned long stack_page = (unsigned long)task_stack_page(p); local
856 if (sp >= stack_page + sizeof(struct thread_struct)
857 && sp <= stack_page
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/xtensa/kernel/
H A Dprocess.c169 unsigned long stack_page = (unsigned long) task_stack_page(p); local
179 if (sp < stack_page + sizeof(struct task_struct) ||
180 sp >= (stack_page + THREAD_SIZE) ||
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/
H A Dprocess.c794 unsigned long stack_page; local
798 stack_page = (unsigned long)task_stack_page(p);
800 if (!stack_page || esp < stack_page || esp > top_esp+stack_page)
805 if (ebp < stack_page || ebp > top_ebp+stack_page)

Completed in 85 milliseconds