When in the kernel debugger it's useful to print the stack even if it
isn't within the expected stack memory. This can happen early in the
boot when the thread stack memory has't been set.
Details
Details
Diff Detail
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
Lint Passed - Unit
No Test Coverage - Build Status
Buildable 43379 Build 40267: arc lint + arc unit
Event Timeline
Comment Actions
I think this won't work in CHERI? Another approach might be to recognize the early boot case in unwind_frame() and skip the kstack_contains check if you are on the early stack (e.g. !cold) instead which would be smaller (don't have to add the bool and change all the callers)