From 2dd552a5420895f2fe6dcd3b57087cddb373cae9 Mon Sep 17 00:00:00 2001 From: Greg Steuck Date: Wed, 29 Apr 2020 11:09:59 -0700 Subject: vm/.../openbsd: get back traces of the first two cpus. (#1705) --- vm/vmimpl/openbsd.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vm/vmimpl/openbsd.go b/vm/vmimpl/openbsd.go index 73460cb80..8017ede03 100644 --- a/vm/vmimpl/openbsd.go +++ b/vm/vmimpl/openbsd.go @@ -25,6 +25,10 @@ func DiagnoseOpenBSD(w io.Writer) ([]byte, bool) { "show all locks", "show malloc", "show all pools", + "machine ddbcpu 0", // Traces a couple of first CPUs (enough on GCE farm). + "trace", + "machine ddbcpu 1", // One of these is likely a dup of the very first trace. + "trace", } for _, c := range commands { w.Write([]byte(c + "\n")) -- cgit mrf-deployment