|
@@ -754,12 +754,12 @@ unsigned long get_wchan(struct task_struct *p)
|
|
if (!p || p == current || p->state == TASK_RUNNING)
|
|
if (!p || p == current || p->state == TASK_RUNNING)
|
|
return 0;
|
|
return 0;
|
|
stack = (unsigned long)task_stack_page(p);
|
|
stack = (unsigned long)task_stack_page(p);
|
|
- if (p->thread.sp < stack || p->thread.sp > stack+THREAD_SIZE)
|
|
|
|
|
|
+ if (p->thread.sp < stack || p->thread.sp >= stack+THREAD_SIZE)
|
|
return 0;
|
|
return 0;
|
|
fp = *(u64 *)(p->thread.sp);
|
|
fp = *(u64 *)(p->thread.sp);
|
|
do {
|
|
do {
|
|
if (fp < (unsigned long)stack ||
|
|
if (fp < (unsigned long)stack ||
|
|
- fp > (unsigned long)stack+THREAD_SIZE)
|
|
|
|
|
|
+ fp >= (unsigned long)stack+THREAD_SIZE)
|
|
return 0;
|
|
return 0;
|
|
ip = *(u64 *)(fp+8);
|
|
ip = *(u64 *)(fp+8);
|
|
if (!in_sched_functions(ip))
|
|
if (!in_sched_functions(ip))
|