forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Use common arch_stack_walk() infrastructure to avoid duplicated code and avoid taking care of the stack storage and filtering. 2. Add sched_ra (means sched return address) and sched_cfa (means sched call frame address) to thread_info, and store them in switch_to(). 3. Add __get_wchan() implementation. Now we can print the process stack and wait channel by cat /proc/*/stack and /proc/*/wchan. Signed-off-by: Qing Zhang <[email protected]> Signed-off-by: Huacai Chen <[email protected]>
- Loading branch information
1 parent
49aef11
commit 93a4fa6
Showing
8 changed files
with
93 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* Stack trace management functions | ||
* | ||
* Copyright (C) 2022 Loongson Technology Corporation Limited | ||
*/ | ||
#include <linux/sched.h> | ||
#include <linux/stacktrace.h> | ||
|
||
#include <asm/stacktrace.h> | ||
#include <asm/unwind.h> | ||
|
||
void arch_stack_walk(stack_trace_consume_fn consume_entry, void *cookie, | ||
struct task_struct *task, struct pt_regs *regs) | ||
{ | ||
unsigned long addr; | ||
struct pt_regs dummyregs; | ||
struct unwind_state state; | ||
|
||
regs = &dummyregs; | ||
|
||
if (task == current) { | ||
regs->regs[3] = (unsigned long)__builtin_frame_address(0); | ||
regs->csr_era = (unsigned long)__builtin_return_address(0); | ||
} else { | ||
regs->regs[3] = thread_saved_fp(task); | ||
regs->csr_era = thread_saved_ra(task); | ||
} | ||
|
||
regs->regs[1] = 0; | ||
for (unwind_start(&state, task, regs); | ||
!unwind_done(&state); unwind_next_frame(&state)) { | ||
addr = unwind_get_return_address(&state); | ||
if (!addr || !consume_entry(cookie, addr)) | ||
break; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters