aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vmimpl/freebsd.go
Commit message (Collapse)AuthorAgeFilesLines
* vm/vmimpl: show BBLog entries for all locked tcpcbsMichael Tuexen2025-06-141-1/+1
|
* vm/vmimpl: show BBLog entries for all locked tcpcbsMichael Tuexen2025-06-141-1/+1
|
* vm/vmimpl: show all locked tcpcbsMichael Tuexen2025-05-281-0/+1
| | | | | | | Add a command to show all locked TCP control blocked. If a panic is related to the TCP stack, most likely the affected TCP control block is locked. Therefore, this is show. This is much less noisy than showing all TCP control blocks.
* all: fix comments formatDmitry Vyukov2020-07-121-3/+3
| | | | | | | Fix capitalization, dots at the end and two spaces after a period. Update #1876
* vm/vmimpl: Don't show ktr, but uma on FreeBSDMichael Tuexen2020-05-121-1/+1
| | | | | | Right now, kernels are not build with KTR support, so don't run show ktr. Add showing information about zones like vmstat -z would show.
* vm/vmimpl: refactor DiagnoseFree/OpenBSDDmitry Vyukov2020-03-211-2/+2
| | | | | Make signatures of these functions match vm.Diagnose. Both more flexible, less code, more reasonable.
* vm: Get debug information when FreeBSD on panics (#1470)Andrew Turner2019-10-211-0/+32
The FreeBSD kernel debugger can provide more information when the kernel panics. Add support to bhybe and gce to print this information.