diff options
-rw-r--r-- | arch/arm64/kernel/process.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/arch/arm64/kernel/process.c b/arch/arm64/kernel/process.c index de17c89985db..0adb8f0f4549 100644 --- a/arch/arm64/kernel/process.c +++ b/arch/arm64/kernel/process.c | |||
@@ -308,6 +308,7 @@ struct task_struct *__switch_to(struct task_struct *prev, | |||
308 | unsigned long get_wchan(struct task_struct *p) | 308 | unsigned long get_wchan(struct task_struct *p) |
309 | { | 309 | { |
310 | struct stackframe frame; | 310 | struct stackframe frame; |
311 | unsigned long stack_page; | ||
311 | int count = 0; | 312 | int count = 0; |
312 | if (!p || p == current || p->state == TASK_RUNNING) | 313 | if (!p || p == current || p->state == TASK_RUNNING) |
313 | return 0; | 314 | return 0; |
@@ -315,9 +316,11 @@ unsigned long get_wchan(struct task_struct *p) | |||
315 | frame.fp = thread_saved_fp(p); | 316 | frame.fp = thread_saved_fp(p); |
316 | frame.sp = thread_saved_sp(p); | 317 | frame.sp = thread_saved_sp(p); |
317 | frame.pc = thread_saved_pc(p); | 318 | frame.pc = thread_saved_pc(p); |
319 | stack_page = (unsigned long)task_stack_page(p); | ||
318 | do { | 320 | do { |
319 | int ret = unwind_frame(&frame); | 321 | if (frame.sp < stack_page || |
320 | if (ret < 0) | 322 | frame.sp >= stack_page + THREAD_SIZE || |
323 | unwind_frame(&frame)) | ||
321 | return 0; | 324 | return 0; |
322 | if (!in_sched_functions(frame.pc)) | 325 | if (!in_sched_functions(frame.pc)) |
323 | return frame.pc; | 326 | return frame.pc; |