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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/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.c380 unsigned long stack_page; local
387 stack_page = (unsigned long)task_stack_page(task);
388 if (!stack_page)
398 if (*sp >= stack_page &&
399 *sp + sizeof(*regs) <= stack_page + THREAD_SIZE - 32) {
427 if (*sp < stack_page ||
428 *sp + info.frame_size > stack_page + THREAD_SIZE - 32)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/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-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Dprocess_32.c390 unsigned long stack_page; local
394 stack_page = (unsigned long)task_stack_page(p);
396 if (!stack_page || sp < stack_page || sp > top_esp+stack_page)
401 if (bp < stack_page || bp > top_ebp+stack_page)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/avr32/kernel/
H A Dprocess.c414 unsigned long stack_page; local
419 stack_page = (unsigned long)task_stack_page(p);
420 BUG_ON(!stack_page);
430 BUG_ON(fp < stack_page || fp > (THREAD_SIZE + stack_page));
443 BUG_ON(sp < stack_page || sp > (THREAD_SIZE + stack_page));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/kernel/
H A Dprocess.c338 unsigned long stack_page; local
343 stack_page = (unsigned long)task_stack_page(p);
346 if (fp < stack_page+sizeof(struct thread_info) ||
347 fp >= 8184+stack_page)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/kernel/
H A Dprocess.c419 unsigned long stack_page, sp, ip; local
425 stack_page = (unsigned long) task_stack_page(p);
427 if (stack_page == 0)
435 if (sp < stack_page)
438 while (sp < stack_page + THREAD_SIZE) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68knommu/kernel/
H A Dprocess.c373 unsigned long stack_page; local
378 stack_page = (unsigned long)p;
381 if (fp < stack_page+sizeof(struct thread_info) ||
382 fp >= THREAD_SIZE-8+stack_page)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/xtensa/kernel/
H A Dprocess.c233 unsigned long stack_page = (unsigned long) task_stack_page(p); local
243 if (sp < stack_page + sizeof(struct task_struct) ||
244 sp >= (stack_page + THREAD_SIZE) ||
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kernel/
H A Dprocess.c1020 unsigned long stack_page; local
1028 stack_page = (unsigned long) hardirq_ctx[cpu];
1029 if (sp >= stack_page + sizeof(struct thread_struct)
1030 && sp <= stack_page + THREAD_SIZE - nbytes)
1033 stack_page = (unsigned long) softirq_ctx[cpu];
1034 if (sp >= stack_page + sizeof(struct thread_struct)
1035 && sp <= stack_page + THREAD_SIZE - nbytes)
1044 unsigned long stack_page = (unsigned long)task_stack_page(p); local
1046 if (sp >= stack_page + sizeof(struct thread_struct)
1047 && sp <= stack_page
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/blackfin/kernel/
H A Dprocess.c232 unsigned long stack_page; local
237 stack_page = (unsigned long)p;
240 if (fp < stack_page + sizeof(struct thread_info) ||
241 fp >= 8184 + stack_page)

Completed in 179 milliseconds