From 3d2f584ddab119da50e8a8d26765aa98d3b33c02 Mon Sep 17 00:00:00 2001 From: Michael Tuexen Date: Wed, 28 May 2025 12:50:27 +0200 Subject: vm/vmimpl: show all locked tcpcbs 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. --- vm/vmimpl/freebsd.go | 1 + 1 file changed, 1 insertion(+) (limited to 'vm/vmimpl') diff --git a/vm/vmimpl/freebsd.go b/vm/vmimpl/freebsd.go index 8a75e04c5..4272781ff 100644 --- a/vm/vmimpl/freebsd.go +++ b/vm/vmimpl/freebsd.go @@ -23,6 +23,7 @@ func DiagnoseFreeBSD(w io.Writer) ([]byte, bool) { "show all locks", "show malloc", "show uma", + "show all tcpcbs/l", } for _, c := range commands { w.Write([]byte(c + "\n")) -- cgit mrf-deployment