NetBSD Problem Report #58069

From triaxx@netbsd.org  Sat Mar 23 17:56:33 2024
Return-Path: <triaxx@netbsd.org>
Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits))
	(Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified))
	by mollari.NetBSD.org (Postfix) with ESMTPS id 60F711A923A
	for <gnats-bugs@gnats.NetBSD.org>; Sat, 23 Mar 2024 17:56:33 +0000 (UTC)
Message-Id: <20240323175631.A88861A923B@mollari.NetBSD.org>
Date: Sat, 23 Mar 2024 17:56:31 +0000 (UTC)
From: triaxx@netbsd.org
Reply-To: triaxx@netbsd.org
To: gnats-bugs@NetBSD.org
Subject: Panic when trying to connect tty
X-Send-Pr-Version: 3.95

>Number:         58069
>Category:       kern
>Synopsis:       Panic when trying to connect tty
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    kern-bug-people
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Sat Mar 23 18:00:01 +0000 2024
>Last-Modified:  Sun Mar 24 08:15:02 +0000 2024
>Originator:     Frédéric Fauberteau
>Release:        NetBSD 10.99.10
>Organization:
>Environment:
System: NetBSD goliath.triaxx.org 10.99.10 NetBSD 10.99.10 (GENERIC) #0: Fri Mar 15 11:15:04 CET 2024  triaxx@goliath.triaxx.org:/usr/obj/sys/arch/amd64/compile/GENERIC amd64
Architecture: x86_64
Machine: amd64
Revision: 1.609
>Description:
According to https://www.netbsd.org/docs/kernel/kgdb.html, two machines are involded: TARGET and REMOTE.

The TARGET machine:

    $ dmesg -t | grep com0
    com0 at acpi0 (UAR1, PNP0501-0): io 0x3f8-0x3ff irq 4
    com0: ns16550a, 16-byte FIFO

    $ grep "tty00" /etc/ttys 
    tty00   "/usr/libexec/getty std.9600"   unknown off local

On REMOTE machine:

    $ dmesg -t | grep com0
    uplcom0 at uhub1 port 3
    uplcom0: Prolific Technology Inc. (0x067b) USB-Serial Controller (0x2303), rev 2.00/3.00, addr 15
    ucom0 at uplcom0

    $ grep ttyU0 /etc/ttys
    ttyU0   "/usr/libexec/getty std.9600"   unknown off local

    $ cu -l /dev/ttyU0
    Connected

The kernel of the TARGET machine panics when trying to connect to tty00 linked to com0:

    $ gdb netbsd.1
    GNU gdb (GDB) 13.2
    Copyright (C) 2023 Free Software Foundation, Inc.
    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
    This is free software: you are free to change and redistribute it.
    There is NO WARRANTY, to the extent permitted by law.
    Type "show copying" and "show warranty" for details.
    This GDB was configured as "x86_64--netbsd".
    Type "show configuration" for configuration details.
    For bug reporting instructions, please see:
    <https://www.gnu.org/software/gdb/bugs/>.
    Find the GDB manual and other documentation resources online at:
        <http://www.gnu.org/software/gdb/documentation/>.

    For help, type "help".
    Type "apropos word" to search for commands related to "word"...
    Reading symbols from netbsd.1...
    (No debugging symbols found in netbsd.1)
    (gdb) target kvm netbsd.1.core
    0xffffffff80239c85 in cpu_reboot ()
    (gdb) bt
    #0  0xffffffff80239c85 in cpu_reboot ()
    #1  0xffffffff80ddea88 in kern_reboot ()
    #2  0xffffffff80e25208 in vpanic ()
    #3  0xffffffff80e252dd in panic ()
    #4  0xffffffff80dc293d in heartbeat ()
    #5  0xffffffff80da95c6 in hardclock ()
    #6  0xffffffff8021075e in Xresume_lapic_ltimer ()
    #7  0xffffac882fc93f70 in ?? ()
    Backtrace stopped: previous frame inner to this frame (corrupt stack?)
    (gdb)

    $ addr2line -e netbsd.1 0xffffffff8021075e
    ??:?

>How-To-Repeat:
    $ cu -l /dev/tty00

or

    $ stty -a -f /dev/tty00
    speed 9600 baud; 0 rows; 0 columns; queue = 1024; line = termios;
    lflags: icanon isig iexten echo echoe -echok echoke -echonl echoctl
            -echoprt -altwerase -noflsh -tostop -flusho -pendin -nokerninfo
            -extproc
    iflags: -istrip icrnl -inlcr -igncr ixon -ixoff ixany imaxbel -ignbrk
            brkint -inpck -ignpar -parmrk
    oflags: opost onlcr -ocrnl -oxtabs -onocr -onlret
    cflags: cread cs8 -parenb -parodd hupcl clocal -cstopb -crtscts -mdmbuf
            -cdtrcts
    cchars: discard = ^O; dsusp = ^Y; eof = ^D; eol = <undef>;
            eol2 = <undef>; erase = ^?; intr = ^C; kill = ^U; lnext = ^V;
            min = 1; quit = ^\; reprint = ^R; start = ^Q; status = ^T;
            stop = ^S; susp = ^Z; time = 0; werase = ^W;
>Fix:

>Release-Note:

>Audit-Trail:
From: Taylor R Campbell <riastradh@NetBSD.org>
To: triaxx@NetBSD.org
Cc: gnats-bugs@NetBSD.org, netbsd-bugs@NetBSD.org
Subject: Re: kern/58069: Panic when trying to connect tty
Date: Sat, 23 Mar 2024 18:05:39 +0000

 Well, that's not supposed to happen!

 Can you try `bt', `ps', and `dmesg' in crash(8)?

 # crash -M netbsd.1.core -N netbsd.1
 crash> bt
 crash> ps
 crash> dmesg

From: triaxx@NetBSD.org
To: Taylor R Campbell <riastradh@NetBSD.org>
Cc: gnats-bugs@NetBSD.org, netbsd-bugs@NetBSD.org
Subject: Re: kern/58069: Panic when trying to connect tty
Date: Sat, 23 Mar 2024 19:23:02 +0100

 $ crash -M netbsd.1.core -N netbsd.1
 Crash version 10.99.10, image version 10.99.10.
 Kernel compiled without options LOCKDEBUG.
 System panicked: cpu1: time has not advanced in 1501 heartbeats
 Backtrace from time of crash is available.
 crash> bt
 drm_sched_fence_release_scheduled.cold() at 0
 kern_reboot() at kern_reboot+0x87
 vpanic() at vpanic+0x17d
 panic() at printf_nostamp
 heartbeat() at heartbeat+0x2b0
 hardclock() at hardclock+0x8b
 Xresume_lapic_ltimer() at Xresume_lapic_ltimer+0x1e
 --- interrupt ---
 x86_mwait() at x86_mwait+0xd
 acpicpu_cstate_idle() at acpicpu_cstate_idle+0x19a
 idle_loop() at idle_loop+0x128
 cpu_hatch() at cpu_hatch+0x180
 crash> ps
 PID    LID S CPU     FLAGS       STRUCT LWP *               NAME WAIT
 556  > 556 7   0   8020000   ffffa755807c9c00           ttyflags
 548    548 2   1   8020100   ffffa75580438400                 sh
 339    339 2   0   8020100   ffffa75580438800              sleep
 323    323 2   1   8020100   ffffa7558000ec00                 sh
 447    447 3   2   8020180   ffffa75580438000                 sh pipe_rd
 318    318 2   0   8020100   ffffa7557fe50400                 sh
 312    312 2   1   8020100   ffffa7558000e800                 sh
 1        1 2   0   8020100   ffffa7557fd86000               init
 0      480 3   1       200   ffffa755807c9000               ccd0 ccdthr
 0      331 3   0       200   ffffa7557fe50800            physiod physiod
 0    > 311 7   3       240   ffffa7558000e400            ioflush
 0      310 3   2       200   ffffa7558000e000          pooldrain pooldrain
 0      309 3   1       200   ffffa7557fe50c00           pgdaemon pgdaemon
 0      306 3   0       200   ffffa7557fe50000          swwreboot swwreboot
 0      684 3   0       200   ffffa7557fd86800           scsibus1 sccomp
 0      683 3   0       200   ffffa7557fd86c00          atapibus0 sccomp
 0      681 3   0       200   ffffa7557fb3c000           scsibus0 sccomp
 0      680 3   0       200   ffffa7557fd86400             npfgc0 npfgcw
 0      679 3   0       200   ffffa7557fd44c00            rt_free rt_free
 0      678 3   0       200   ffffa7557fd44800              unpgc unpgc
 0      293 3   5       200   ffffa7557fd44400    key_timehandler 
 key_timehandler

 0      676 3  11       200   ffffa7557fd44000    icmp6_wqinput/1 
 icmp6_wqinput
 0      291 3  10       200   ffffa7557fd08c00    icmp6_wqinput/1 
 icmp6_wqinput
 0      290 3   9       200   ffffa7557fd08800    icmp6_wqinput/9 
 icmp6_wqinput
 0      289 3   8       200   ffffa7557fd08400    icmp6_wqinput/8 
 icmp6_wqinput
 0      288 3   7       200   ffffa7557fd08000    icmp6_wqinput/7 
 icmp6_wqinput
 0      415 3   6       200   ffffa7557fcdcc00    icmp6_wqinput/6 
 icmp6_wqinput
 0      414 3   5       200   ffffa7557fcdc800    icmp6_wqinput/5 
 icmp6_wqinput
 0      413 3   4       200   ffffa7557fcdc400    icmp6_wqinput/4 
 icmp6_wqinput
 0      412 3   3       200   ffffa7557fcdc000    icmp6_wqinput/3 
 icmp6_wqinput
 0      411 3   2       200   ffffa7557fce0c00    icmp6_wqinput/2 
 icmp6_wqinput
 0      410 3   1       200   ffffa7557fce0800    icmp6_wqinput/1 
 icmp6_wqinput
 0      409 3   0       200   ffffa7557fce0400    icmp6_wqinput/0 
 icmp6_wqinput
 0      408 3   0       200   ffffa7557fce0000          nd6_timer nd6_timer
 0      407 3  11       200   ffffa7557fcb4c00    carp6_wqinput/1 
 carp6_wqinput
 0      406 3  10       200   ffffa7557fcb4800    carp6_wqinput/1 
 carp6_wqinput
 0      405 3   9       200   ffffa7557fcb4400    carp6_wqinput/9 
 carp6_wqinput
 0      404 3   8       200   ffffa7557fcb4000    carp6_wqinput/8 
 carp6_wqinput
 0      403 3   7       200   ffffa7557fc98c00    carp6_wqinput/7 
 carp6_wqinput
 0      402 3   6       200   ffffa7557fc98800    carp6_wqinput/6 
 carp6_wqinput
 0      401 3   5       200   ffffa7557fc98400    carp6_wqinput/5 
 carp6_wqinput
 0      400 3   4       200   ffffa7557fc98000    carp6_wqinput/4 
 carp6_wqinput
 0      399 3   3       200   ffffa7557fc5cc00    carp6_wqinput/3 
 carp6_wqinput
 0      398 3   2       200   ffffa7557fc5c800    carp6_wqinput/2 
 carp6_wqinput
 0      397 3   1       200   ffffa7557fc5c400    carp6_wqinput/1 
 carp6_wqinput
 0      396 3   0       200   ffffa7557fc5c000    carp6_wqinput/0 
 carp6_wqinput
 0      395 3  11       200   ffffa7557fc70c00    carp_wqinput/11 
 carp_wqinput
 0      394 3  10       200   ffffa7557fc70800    carp_wqinput/10 
 carp_wqinput
 0      393 3   9       200   ffffa7557fc70400     carp_wqinput/9 
 carp_wqinput
 0      392 3   8       200   ffffa7557fc70000     carp_wqinput/8 
 carp_wqinput
 0      391 3   7       200   ffffa7557fc54c00     carp_wqinput/7 
 carp_wqinput
 0      390 3   6       200   ffffa7557fc54800     carp_wqinput/6 
 carp_wqinput
 0      389 3   5       200   ffffa7557fc54400     carp_wqinput/5 
 carp_wqinput
 0      388 3   4       200   ffffa7557fc54000     carp_wqinput/4 
 carp_wqinput
 0      387 3   3       200   ffffa7557fc38c00     carp_wqinput/3 
 carp_wqinput
 0      386 3   2       200   ffffa7557fc38800     carp_wqinput/2 
 carp_wqinput
 0      385 3   1       200   ffffa7557fc38400     carp_wqinput/1 
 carp_wqinput
 0      384 3   0       200   ffffa7557fc38000     carp_wqinput/0 
 carp_wqinput
 0      296 3  11       200   ffffa7557fbecc00    icmp_wqinput/11 
 icmp_wqinput
 0      299 3  10       200   ffffa7557fbec800    icmp_wqinput/10 
 icmp_wqinput
 0       31 3   9       200   ffffa7557fbec400     icmp_wqinput/9 
 icmp_wqinput
 0       63 3   8       200   ffffa7557fbec000     icmp_wqinput/8 
 icmp_wqinput
 0      190 3   7       200   ffffa7557fbf0c00     icmp_wqinput/7 
 icmp_wqinput
 0      127 3   6       200   ffffa7557fbf0800     icmp_wqinput/6 
 icmp_wqinput
 0      254 3   5       200   ffffa7557fbf0400     icmp_wqinput/5 
 icmp_wqinput
 0      189 3   4       200   ffffa7557fbf0000     icmp_wqinput/4 
 icmp_wqinput
 0      188 3   3       200   ffffa7557fb84c00     icmp_wqinput/3 
 icmp_wqinput
 0      187 3   2       200   ffffa7557fb84800     icmp_wqinput/2 
 icmp_wqinput
 0      186 3   1       200   ffffa7557fa11800     icmp_wqinput/1 
 icmp_wqinput
 0      185 3   0       200   ffffa7557fb3f000     icmp_wqinput/0 
 icmp_wqinput
 0      184 3   0       200   ffffa7557fa11400           rt_timer rt_timer
 0      183 2   4       200   ffffa7557fb3fc00        vmem_rehash
 0      182 3   5       200   ffffa7557fb84400               usb7 usbevt
 0      181 3   1       200   ffffa7557fb84000               usb6 usbevt
 0      180 2   2       240   ffffa7557fb68c00               usb5
 0      179 2   3       240   ffffa7557fb68800               usb4
 0    > 178 7   4       240   ffffa7557fb68400               usb3
 0      177 3   5       200   ffffa7557fb68000               usb2 usbevt
 0      176 3   1       200   ffffa7557fb3cc00               usb1 usbevt
 0    > 175 7   2       240   ffffa7557fb3c800               usb0
 0      174 3   8       200   ffffa7557fb3c400        amdzentemp0 amdzentemp0
 0      165 3   0       200   ffffa7557fa11000          entbutler entropy
 0      163 3   3       200   ffffa7557f363800            atabus5 atath
 0      162 3   2       200   ffffa7557f363400            atabus4 atath
 0      161 3   5       200   ffffa7557f363000            atabus3 atath
 0      160 3   1       200   ffffa7557f2e5c00            atabus2 atath
 0       95 3   4       200   ffffa7557f2e5800            atabus1 atath
 0      222 2   0       200   ffffa7557f2e5400            atabus0
 0      221 3   0       200   ffffa7557f2e5000         usbtask-dr usbtsk
 0      220 3   0       200   ffffa7557f164c00         usbtask-hc usbtsk
 0      219 3  11       200   ffffa7557f164800           xcall/11 xcall
 0      218 1  11       200   ffffa7557f164400         softser/11
 0      217 1  11       200   ffffa7557f164000         softclk/11
 0      216 1  11       200   ffffa7557f0f5c00         softbio/11
 0      215 1  11       200   ffffa7557f0f5800         softnet/11
 0    > 214 1  11       201   ffffa7557f0f5400            idle/11
 0      213 3  10       200   ffffa7557f0f5000           xcall/10 xcall
 0      212 1  10       200   ffffa7557f089c00         softser/10
 0      211 1  10       200   ffffa7557f089800         softclk/10
 0      210 1  10       200   ffffa7557f089400         softbio/10
 0      209 1  10       200   ffffa7557f089000         softnet/10
 0    > 208 1  10       201   ffffa7557effac00            idle/10
 0      207 3   9       200   ffffa7557effa800            xcall/9 xcall
 0      206 1   9       200   ffffa7557effa400          softser/9
 0      205 1   9       200   ffffa7557effa000          softclk/9
 0      204 1   9       200   ffffa7557ef7bc00          softbio/9
 0      203 1   9       200   ffffa7557ef7b800          softnet/9
 0    > 202 1   9       201   ffffa7557ef7b400             idle/9
 0      201 3   8       200   ffffa7557ef7b000            xcall/8 xcall
 0      200 1   8       200   ffffa7557ef2fc00          softser/8
 0      199 1   8       200   ffffa7557ef2f800          softclk/8
 0      198 1   8       200   ffffa7557ef2f400          softbio/8
 0      197 1   8       200   ffffa7557ef2f000          softnet/8
 0    > 196 1   8       201   ffffa7557ee70c00             idle/8
 0      195 3   7       200   ffffa7557ee70800            xcall/7 xcall
 0      194 1   7       200   ffffa7557ee70400          softser/7
 0      193 1   7       200   ffffa7557ee70000          softclk/7
 0      192 1   7       200   ffffa7557ee21c00          softbio/7
 0      125 1   7       200   ffffa7557ee21800          softnet/7
 0    > 124 1   7       201   ffffa7557ee21400             idle/7
 0      123 3   6       200   ffffa7557ee21000            xcall/6 xcall
 0    > 122 7   6       200   ffffa7557ede5c00          softser/6
 0    > 121 7   6       200   ffffa7557ede5800          softclk/6
 0      120 1   6       200   ffffa7557ede5400          softbio/6
 0      119 1   6       200   ffffa7557ede5000          softnet/6
 0    > 118 1   6       201   ffffa7557ed56c00             idle/6
 0      117 3   5       200   ffffa7557ed56800            xcall/5 xcall
 0      116 1   5       200   ffffa7557ed56400          softser/5
 0    > 115 7   5       200   ffffa7557ed56000          softclk/5
 0      114 1   5       200   ffffa7557ece7c00          softbio/5
 0      113 1   5       200   ffffa7557ece7800          softnet/5
 0    > 112 1   5       201   ffffa7557ece7400             idle/5
 0      111 3   4       200   ffffa7557ece7000            xcall/4 xcall
 0      110 1   4       200   ffffa7557ec7bc00          softser/4
 0      109 1   4       200   ffffa7557ec7b800          softclk/4
 0      108 1   4       200   ffffa7557ec7b400          softbio/4
 0      107 1   4       200   ffffa7557ec7b000          softnet/4
 0      106 1   4       201   ffffa7557ec0cc00             idle/4
 0      105 3   3       200   ffffa7557ec0c800            xcall/3 xcall
 0      104 1   3       200   ffffa7557ec0c400          softser/3
 0      103 1   3       200   ffffa7557ec0c000          softclk/3
 0      102 1   3       200   ffffa7557eb6dc00          softbio/3
 0      101 1   3       200   ffffa7557eb6d800          softnet/3
 0      100 1   3       201   ffffa7557eb6d400             idle/3
 0       99 3   2       200   ffffa7557eb6d000            xcall/2 xcall
 0       98 1   2       200   ffffa7557eb21c00          softser/2
 0       97 1   2       200   ffffa7557eb21800          softclk/2
 0       96 1   2       200   ffffa7557eb21400          softbio/2
 0       30 1   2       200   ffffa7557eb21000          softnet/2
 0       29 1   2       201   ffffa7557ea9ec00             idle/2
 0       28 3   1       200   ffffa7557ea9e800            xcall/1 xcall
 0       27 1   1       200   ffffa7557ea9e400          softser/1
 0       26 1   1       200   ffffa7557ea9e000          softclk/1
 0       25 1   1       200   ffffa75c46c84c00          softbio/1
 0       24 1   1       200   ffffa75c46c84800          softnet/1
 0    >  23 1   1       201   ffffa75c46c84400             idle/1
 0       22 3   0       200   ffffa75c46c84000           lnxsyswq lnxsyswq
 0       21 3   0       200   ffffa75c46c9ac00           lnxubdwq lnxubdwq
 0       20 3   6       200   ffffa75c46c9a800           lnxpwrwq lnxpwrwq
 0       19 3   0       200   ffffa75c46c9a400           lnxlngwq lnxlngwq
 0       18 3   0       200   ffffa75c46c9a000           lnxhipwq lnxhipwq
 0       17 3   6       200   ffffa75c46cb7c00           lnxrcugc lnxrcugc
 0       16 3   0       200   ffffa75c46cb7800             sysmon smtaskq
 0       15 3   0       200   ffffa75c46cb7400         pmfsuspend pmfsuspend
 0       14 3   0       200   ffffa75c46cb7000           pmfevent pmfevent
 0       13 3   0       200   ffffa75c47cdfc00         sopendfree sopendfr
 0       12 3   2       200   ffffa75c47cdf800             ifwdog ifwdog
 0       11 3   1       200   ffffa75c47cdf400            iflnkst iflnkst
 0       10 3   0       200   ffffa75c47cdf000           nfssilly nfssilly
 0        9 3   4       200   ffffa75c4ad11c00           pooldisp pooldisp
 0        8 3   6       200   ffffa75c4ad11800          modunload mod_unld
 0        7 3   0       200   ffffa75c4ad11400            xcall/0 xcall
 0        6 1   0       200   ffffa75c4ad11000          softser/0
 0        5 1   0       200   ffffa75c4ad4bc00          softclk/0
 0        4 1   0       200   ffffa75c4ad4b800          softbio/0
 0        3 1   0       200   ffffa75c4ad4b400          softnet/0
 0        2 1   0       201   ffffa75c4ad4b000             idle/0
 0        0 3   0       200   ffffffff8188bac0            swapper uvm
 crash> dmesg
 linear_le:16 2ch 48000Hz, blk 1920 bytes (10ms) for playback
 [   1.0372992] spkr1 at audio0: PC Speaker (synthesized)
 [   1.0372992] wsbell at spkr1 not configured
 [   1.0372992] amdccp0 at pci9 dev 0 function 2: AMD Cryptographic 
 Coprocessor
 [   1.0372992] xhci2 at pci9 dev 0 function 3: AMD 17h/6xh xHCI (rev. 0x00)
 [   1.0372992] xhci2: 64-bit DMA
 [   1.0372992] xhci2: interrupting at msix5 vec 0
 [   1.0372992] xhci2: xHCI version 1.10
 [   1.0372992] usb4 at xhci2: USB revision 3.1
 [   1.0372992] usb5 at xhci2: USB revision 2.0
 [   1.0372992] xhci3 at pci9 dev 0 function 4: AMD 17h/6xh xHCI (rev. 0x00)
 [   1.0372992] xhci3: 64-bit DMA
 [   1.0372992] xhci3: interrupting at msix6 vec 0
 [   1.0372992] xhci3: xHCI version 1.10
 [   1.0372992] usb6 at xhci3: USB revision 3.1
 [   1.0372992] usb7 at xhci3: USB revision 2.0
 [   1.0372992] hdaudio1 at pci9 dev 0 function 6: HD Audio Controller
 [   1.0372992] hdaudio1: interrupting at msi7 vec 0
 [   1.0372992] hdaudio1: HDA ver. 1.0, OSS 4, ISS 4, BSS 0, SDO 1, 64-bit
 [   1.0372992] hdafg1 at hdaudio1: Realtek product 0b00
 [   1.0372992] hdafg1: DAC00 6ch: Speaker [Jack]
 [   1.0372992] hdafg1: DAC01 2ch: HP Out [Jack]
 [   1.0372992] hdafg1: DIG02 2ch: SPDIF Out [Jack]
 [   1.0372992] hdafg1: ADC03 2ch: Line In [Jack], Mic In [Jack]
 [   1.0372992] hdafg1: ADC04 2ch: Mic In [Jack]
 [   1.0372992] hdafg1: 6ch/2ch 32000Hz 44100Hz 48000Hz 88200Hz 96000Hz 
 192000Hz
 PCM16 PCM20 PCM24 AC3
 [   1.0372992] audio1 at hdafg1: playback, capture, full duplex, independent
 [   1.0372992] audio1: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms) 
 for play
 back
 [   1.0372992] audio1: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms) 
 for reco
 rding
 [   1.0372992] spkr2 at audio1: PC Speaker (synthesized)
 [   1.0372992] wsbell at spkr2 not configured
 [   1.0372992] piixpm0 at pci0 dev 20 function 0: AMD X370/X399 SMBus 
 Controller
   (rev. 0x51)
 [   1.0372992] piixpm0: interrupting at SMI,
 [   1.0372992] iic1 at piixpm0 port 0: I2C bus
 [   1.0372992] iic2 at piixpm0 port 1: I2C bus
 [   1.0372992] pcib0 at pci0 dev 20 function 3: AMD FCH LPC (rev. 0x51)
 [   1.0372992] pchb3 at pci0 dev 24 function 0: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372992] pchb4 at pci0 dev 24 function 1: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372992] pchb5 at pci0 dev 24 function 2: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372992] pchb6 at pci0 dev 24 function 3: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372992] pchb7 at pci0 dev 24 function 4: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372992] pchb8 at pci0 dev 24 function 5: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372992] pchb9 at pci0 dev 24 function 6: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372992] pchb10 at pci0 dev 24 function 7: AMD 19h/5xh Data Fabric 
 (rev. 0
 x00)
 [   1.0372992] isa0 at pcib0
 [   1.0372992] pckbc0 at isa0 port 0x60-0x64
 [   1.0372992] acpicpu0 at cpu0: ACPI CPU
 [   1.0372992] acpicpu0: C1: FFH, lat   1 us, pow     0 mW
 [   1.0372992] acpicpu0: C2: I/O, lat  18 us, pow     0 mW
 [   1.0372992] acpicpu0: C3: I/O, lat 350 us, pow     0 mW
 [   1.0372992] acpicpu0: P0: FFH, lat   1 us, pow  5265 mW, 3900 MHz
 [   1.0372992] acpicpu0: P1: FFH, lat   1 us, pow  1615 mW, 1700 MHz
 [   1.0372992] acpicpu0: P2: FFH, lat   1 us, pow  1277 mW, 1400 MHz
 [   1.0372992] acpicpu1 at cpu1: ACPI CPU
 [   1.0372992] acpicpu2 at cpu2: ACPI CPU
 [   1.0372992] acpicpu3 at cpu3: ACPI CPU
 [   1.0372992] acpicpu4 at cpu4: ACPI CPU
 [   1.0372992] acpicpu5 at cpu5: ACPI CPU
 [   1.0372992] acpicpu6 at cpu6: ACPI CPU
 [   1.0372992] acpicpu7 at cpu7: ACPI CPU
 [   1.0372992] acpicpu8 at cpu8: ACPI CPU
 [   1.0372992] acpicpu9 at cpu9: ACPI CPU
 [   1.0372992] acpicpu10 at cpu10: ACPI CPU
 [   1.0372992] acpicpu11 at cpu11: ACPI CPU
 [   1.0372992] timecounter: Timecounter "clockinterrupt" frequency 100 
 Hz qualit
 y 0
 [   1.0372992] timecounter: Timecounter "TSC" frequency 3892706000 Hz 
 quality 30
 00
 [   1.7291853] uhub0 at usb0: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 3.00/1.00, addr 0
 [   1.7365644] uhub0: 4 ports with 4 removable, self powered
 [   1.7365644] uhub1 at usb1: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 2.00/1.00, addr 0
 [   1.7365644] uhub1: 10 ports with 10 removable, self powered
 [   1.7365644] uhub2 at usb2: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 3.00/1.00, addr 0
 [   1.7465628] uhub2: 4 ports with 4 removable, self powered
 [   1.7465628] uhub3 at usb3: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 2.00/1.00, addr 0
 [   1.7565627] uhub3: 4 ports with 4 removable, self powered
 [   1.7565627] uhub4 at usb4: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 3.00/1.00, addr 0
 [   1.7565627] uhub4: 2 ports with 2 removable, self powered
 [   1.7565627] uhub5 at usb5: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 2.00/1.00, addr 0
 [   1.7665627] uhub5: 4 ports with 4 removable, self powered
 [   1.7665627] uhub6 at usb6: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 3.00/1.00, addr 0
 [   1.7765626] uhub6: 2 ports with 2 removable, self powered
 [   1.7765626] uhub7 at usb7: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 2.00/1.00, addr 0
 [   1.7765626] uhub7: 4 ports with 4 removable, self powered
 [   1.7765626] IPsec: Initialized Security Association Processing.
 [   1.8765632] ahcisata0 port 0: device present, speed: 6.0Gb/s
 [   1.8765632] ahcisata0 port 2: device present, speed: 3.0Gb/s
 [   1.8765632] ahcisata0 port 1: device present, speed: 3.0Gb/s
 [   1.8765632] ahcisata0 port 3: device present, speed: 3.0Gb/s
 [   2.2265626] umass0 at uhub0 port 1 configuration 1 interface 0
 [   2.2265626] umass0: Seagate (0x0bc2) Expansion (0x2321), rev 
 3.00/1.00, addr
 1
 [   2.2265626] umass0: using SCSI over Bulk-Only
 [   2.2265626] scsibus0 at umass0: 2 targets, 1 lun per target
 [   2.2365624] sd0 at scsibus0 target 0 lun 0: <Seagate, Expansion, 
 0502> disk f
 ixed
 [   2.2565626] sd0: 465 GB, 16383 cyl, 16 head, 63 sec, 512 bytes/sect x 
 9767731
 67 sectors
 [   2.2665624] umass1 at uhub3 port 2 configuration 1 interface 0
 [   2.2665624] umass1: TSST Inc (0x0e8d) SES084D (0x1836), rev 
 2.00/0.00, addr 1

 [   2.2665624] umass1: using ATAPI over Bulk-Only
 [   2.2665624] atapibus0 at umass1: 2 targets
 [   2.2665624] sd0: GPT GUID: 6280f578-9364-11ea-8eeb-00c09ff0b94b
 [   2.2665624] dk0 at sd0: "srd00f1", 976773088 blocks at 40, type: ffs
 [   2.2665624] cd0 at atapibus0 drive 0: <TSSTcorp, CDDVDW SE-S084D, 
 TS00> cdrom
   removable
 [   2.2865624] uhidev0 at uhub5 port 1 configuration 1 interface 0
 [   2.2865624] uhidev0: SZH (0xc0f4) usb keyboard (0x05e0), rev 
 1.10/1.10, addr
 1, iclass 3/1
 [   2.2965626] ukbd0 at uhidev0
 [   2.2965626] wskbd0 at ukbd0: console keyboard, using wsdisplay0
 [   2.2965626] uhidev1 at uhub5 port 1 configuration 1 interface 1
 [   2.2965626] uhidev1: SZH (0xc0f4) usb keyboard (0x05e0), rev 
 1.10/1.10, addr
 1, iclass 3/0
 [   2.3065623] uhidev1: 2 report ids
 [   2.3065623] uhid0 at uhidev1 reportid 1: input=2, output=0, feature=0
 [   2.3065623] uhid1 at uhidev1 reportid 2: input=1, output=0, feature=0
 [   2.3365623] uhidev2 at uhub1 port 6 configuration 1 interface 2
 [   2.3365623] uhidev2: AsusTek Computer Inc. (0x0b05) AURA LED 
 Controller (0x19
 39), rev 2.00/1.00, addr 2, iclass 3/0
 [   2.3665624] uhidev2: 236 report ids
 [   2.3665624] uhid2 at uhidev2 reportid 236: input=64, output=64, feature=0
 [   2.6665619] umass2 at uhub0 port 2 configuration 1 interface 0
 [   2.6665619] umass2: Seagate (0x0bc2) Expansion HDD (0x2037), rev 
 3.20/19.01,
 addr 3
 [   2.6665619] umass2: using SCSI over Bulk-Only
 [   2.6665619] scsibus1 at umass2: 2 targets, 1 lun per target
 [   2.6665619] sd1 at scsibus1 target 0 lun 0: <Seagate, Expansion HDD, 
 1901> di
 sk fixed
 [   2.6765619] sd1: fabricating a geometry
 [   2.6765619] sd1: 4657 GB, 4769307 cyl, 64 head, 32 sec, 512 
 bytes/sect x 9767
 541167 sectors
 [   2.6765619] sd1: fabricating a geometry
 [   2.6765619] sd1: GPT GUID: 229a8f97-87c4-452b-8439-410813fd536f
 [   2.6765619] dk1 at sd1: "stkm5000", 9767538688 blocks at 2048, type: cgd
 [   2.8165617] uhidev3 at uhub5 port 2 configuration 1 interface 0
 [   2.8165617] uhidev3: Logitech (0x046d) USB Laser Mouse (0xc062), rev 
 2.00/31.
 00, addr 2, iclass 3/1
 [   2.8165617] ums0 at uhidev3: 8 buttons, W and Z dirs
 [   2.8165617] wsmouse0 at ums0 mux 0
 [   2.8665615] uhub8 at uhub1 port 7: vendor 05e3 (0x05e3) USB2.0 Hub 
 (0x0608),
 class 9/0, rev 2.00/60.90, addr 4
 [   2.8665615] uhub8: single transaction translator
 [   2.8765615] uhub8: 4 ports with 4 removable, self powered
 [   3.4065606] wd0 at atabus0 drive 0
 [   3.4065606] wd0: <CT1000MX500SSD1>
 [   3.4065606] wd0: drive supports 1-sector PIO transfers, LBA48 addressing
 [   3.4065606] wd0: 931 GB, 1938021 cyl, 16 head, 63 sec, 512 bytes/sect 
 x 19535
 25168 sectors (4096 bytes/physsect; first aligned sector: 8)
 [   3.4065606] wd0: GPT GUID: 0bb3b360-b938-48b1-9a79-534a8091721a
 [   3.4065606] dk2 at wd0: "boot", 262144 blocks at 40, type: msdos
 [   3.4065606] dk3 at wd0: "swap", 67108864 blocks at 262184, type: swap
 [   3.4065606] dk4 at wd0: "root", 268435456 blocks at 67371048, type: ffs
 [   3.4065606] dk5 at wd0: "rootdev", 268435456 blocks at 335806504, 
 type: ffs
 [   3.4065606] dk6 at wd0: "home", 1349283168 blocks at 604241960, type: ffs
 [   3.4065606] wd0: drive supports PIO mode 4, DMA mode 2, Ultra-DMA 
 mode 6 (Ult
 ra/133), WRITE DMA FUA, NCQ (32 tags)
 [   3.4065606] wd0(ahcisata0:0:0): using PIO mode 4, DMA mode 2, 
 Ultra-DMA mode
 6 (Ultra/133) (using DMA), NCQ (31 tags)
 [   3.4065606] wd1 at atabus1 drive 0
 [   3.4065606] wd1: <WDC WD2500AAKX-08ERMA0>
 [   3.4065606] wd1: drive supports 16-sector PIO transfers, LBA48 addressing
 [   3.4065606] wd1: 232 GB, 484521 cyl, 16 head, 63 sec, 512 bytes/sect 
 x 488397
 168 sectors
 [   3.4265606] wd1: GPT GUID: 781436fa-2826-496b-8f4f-d337894a7cc8
 [   3.4265606] dk7 at wd1: "ccd0p0", 488397088 blocks at 40, type: ccd
 [   3.4265606] wd1: drive supports PIO mode 4, DMA mode 2, Ultra-DMA 
 mode 5 (Ult
 ra/100), NCQ (32 tags) w/PRIO
 [   3.4265606] wd1(ahcisata0:1:0): using PIO mode 4, DMA mode 2, 
 Ultra-DMA mode
 5 (Ultra/100) (using DMA), NCQ (31 tags) w/PRIO
 [   3.4265606] wd2 at atabus2 drive 0
 [   3.4265606] wd2: <WDC WD2500AAKX-001CA0>
 [   3.4265606] wd2: drive supports 16-sector PIO transfers, LBA48 addressing
 [   3.4265606] wd2: 232 GB, 484521 cyl, 16 head, 63 sec, 512 bytes/sect 
 x 488397
 168 sectors
 [   3.4565604] wd2: GPT GUID: d89b1c76-adbe-45f8-bcb0-ec5929c99caf
 [   3.4565604] dk8 at wd2: "ccd0p1", 488397088 blocks at 40, type: ccd
 [   3.4565604] wd2: drive supports PIO mode 4, DMA mode 2, Ultra-DMA 
 mode 6 (Ult
 ra/133), NCQ (32 tags) w/PRIO
 [   3.4565604] wd2(ahcisata0:2:0): using PIO mode 4, DMA mode 2, 
 Ultra-DMA mode
 6 (Ultra/133) (using DMA), NCQ (31 tags) w/PRIO
 [   3.4565604] wd3 at atabus3 drive 0
 [   3.4565604] wd3: <HITACHI HDS7250SASUN500G 0738KVWU4H>
 [   3.4565604] wd3: drive supports 16-sector PIO transfers, LBA48 addressing
 [   3.4565604] wd3: 465 GB, 969021 cyl, 16 head, 63 sec, 512 bytes/sect 
 x 976773
 168 sectors
 [   3.4765605] wd3: GPT GUID: 3254d266-d1b1-4901-bfa6-dfe8f8fe2cfc
 [   3.4765605] dk9 at wd3: "lnx-boot", 2097152 blocks at 40, type: msdos
 [   3.4765605] dk10 at wd3: "lnx-swap", 67108864 blocks at 2097192, 
 type: <unkno
 wn>
 [   3.4765605] dk11 at wd3: "lnx-root", 134217728 blocks at 69206056, 
 type: ext2
 fs
 [   3.4765605] wd3: drive supports PIO mode 4, DMA mode 2, Ultra-DMA 
 mode 6 (Ult
 ra/133), WRITE DMA FUA, NCQ (32 tags)
 [   3.4765605] wd3(ahcisata0:3:0): using PIO mode 4, DMA mode 2, 
 Ultra-DMA mode
 6 (Ultra/133) (using DMA), NCQ (31 tags)
 [   3.4765605] swwdog0: software watchdog initialized
 [   3.5765603] boot device: <unknown>
 [   3.5765603] root on dk5 dumps on dk3
 [   3.5765603] root file system type: ffs
 [   3.5765603] kern.module.path=/stand/amd64/10.99.10/modules
 [  28.6665169] AMD 17h/6xh IOMMU (IOMMU system) at pci0 dev 0 function 2 
 not con
 figured
 [  29.0065157] ccd0: Interleaving 2 components (63 block interleave)
 [  29.0065157] ccd0: /dev/dk7 (488397042 blocks)
 [  29.0065157] ccd0: /dev/dk8 (488397042 blocks)
 [  29.0065157] ccd0: total 976794084 blocks
 [  29.0065157] ccd0: GPT GUID: 546b7b1d-bf71-46a2-9788-226ebaf7ae2d
 [  29.0065157] dk12 at ccd0: "ccd0", 976794008 blocks at 40, type: ffs
 vision 2.0
 [   1.0372607] hdaudio1 at pci9 dev 0 functi01 heartbeats
 [ 137.1264346] cpu1: Begin traceback...
 [ 137.1264at msi7 vec 0
 [   1.0372607] hdaudio1: HDA ver. 1.0, OSS 4, ISS etbsd:panic+0x3c
 [ 137.1264346] heartbeat() at netbsd:heartbeat+ek product 0b00
 [   1.0372607] hdafg1: DAC00 6ch: Speaker [Jack]1264346] 
 Xresume_lapic_ltimer()
 at netbsd:Xresume_lapic_ltimer+0hdafg1: DIG02 2ch: SPDIF Out [Jack]
 [   1.0372607] hdafg1: ADC03at netbsd:x86_mwait+0xd
 [ 137.1264346] acpicpu_cstate_idle() at  2ch: Mic In [Jack]
 [   1.0372607] hdafg1: 6ch/2ch 32000Hz 44100etbsd:idle_loop+0x128
 [ 137.1264346] cpu_hatch() at netbsd:cpu_h0372607] audio1 at hdafg1: 
 playback, c
 apture, full duplex, indep1264346] Bad frame pointer: 0xffffb8882fc86000
 [ 137.1264346] cp0 bytes (10ms) for playback
 [   1.0372607] audio1: slinear_le:16t=1470223, size=8204830):
 [ 137.1264346] dump fatal page fault i spkr2 at audio1: PC Speaker 
 (synthesized)

 [   1.0372607] wsbellff806b4ba7 cs 0x8 rflags 0x10282 cr2 0x90 ilevel 
 0x8 rsp 0x
 ffffbunction 0: AMD X370/X399 SMBus Controller (rev. 0x51)
 [   1.0372west kstack 0xffffb8882fc8f2c0
 [ 138.2729177] Skipping crash dumm0 port 0: I2C bus
 [   1.0372607] iic2 at piixpm0 port 1: I2C bupu1: Begin traceback...
 [ 138.2729177] vpanic() at netbsd:vpanicev. 0x51)
 [   1.0372607] pchb3 at[   1.0000000] Copyright (c) 1996, 1997, 1998, 
 1999, 2000
 , 2001, 2002, 2003,
 [   1.0000000]     2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 
 2013,
 [   1.0000000]     2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 
 2023,
 [   1.0000000]     2024
 [   1.0000000]     The NetBSD Foundation, Inc.  All rights reserved.
 [   1.0000000] Copyright (c) 1982, 1986, 1989, 1991, 1993
 [   1.0000000]     The Regents of the University of California.  All 
 rights rese
 rved.

 [   1.0000000] NetBSD 10.99.10 (GENERIC) #0: Fri Mar 15 11:15:04 CET 2024
 [   1.0000000] 
 triaxx@goliath.triaxx.org:/usr/obj/sys/arch/amd64/compile/GENERI
 C
 [   1.0000000] total memory = 32050 MB
 [   1.0000000] avail memory = 30983 MB
 [   1.0000000] timecounter: Timecounters tick every 10.000 msec
 [   1.0000000] Kernelized RAIDframe activated
 [   1.0000000] RTC BIOS diagnostic error 
 0x3f<config_unit,memory_size,fixed_disk
 ,invalid_time>
 [   1.0000000] timecounter: Timecounter "i8254" frequency 1193182 Hz 
 quality 100

 [   1.0000040] efi: systbl at pa c6959018
 [   1.0000040] mainbus0 (root)
 [   1.0000040] ACPI: RSDP 0x00000000C4129014 000024 (v02 ALASKA)
 [   1.0000040] ACPI: XSDT 0x00000000C4128728 0000CC (v01 ALASKA A M I 
 0107200
 9 AMI  01000013)
 [   1.0000040] ACPI: FACP 0x00000000C4119000 000114 (v06 ALASKA A M I 
 0107200
 9 AMI  00010013)
 [   1.0000040] ACPI: DSDT 0x00000000C410D000 00B3F3 (v02 ALASKA A M I 
 0107200
 9 INTL 20120913)
 [   1.0000040] ACPI: FACS 0x00000000C4890000 000040
 [   1.0000040] ACPI: IVRS 0x00000000C4127000 0000D0 (v02 AMD    AmdTable 
 0000000
 1 AMD  00000001)
 [   1.0000040] ACPI: SSDT 0x00000000C411F000 0072B0 (v02 AMD    Artic 
 0000000
 2 MSFT 04000000)
 [   1.0000040] ACPI: SSDT 0x00000000C411B000 003B8E (v02 AMD    AMD AOD 
 0000000
 1 INTL 20120913)
 [   1.0000040] ACPI: SSDT 0x00000000C411A000 0001AD (v02 ALASKA CPUSSDT 
 0107200
 9 AMI  01072009)
 [   1.0000040] ACPI: FIDT 0x00000000C410C000 00009C (v01 ALASKA A M I 
 0107200
 9 AMI  00010013)
 [   1.0000040] ACPI: FPDT 0x00000000C4009000 000044 (v01 ALASKA A M I 
 0107200
 9 AMI  01000013)
 [   1.0000040] ACPI: MCFG 0x00000000C410A000 00003C (v01 ALASKA A M I 
 0107200
 9 MSFT 00010013)
 [   1.0000040] ACPI: HPET 0x00000000C4109000 000038 (v01 ALASKA A M I 
 0107200
 9 AMI  00000005)
 [   1.0000040] ACPI: VFCT 0x00000000C40FA000 00D884 (v01 ALASKA A M I 
 0000000
 1 AMD  31504F47)
 [   1.0000040] ACPI: WPBT 0x00000000C401B000 00003C (v01 ALASKA A M I 
 0000000
 1 ASUS 00000001)
 [   1.0000040] ACPI: SSDT 0x00000000C4017000 003E88 (v02 AMD    AmdTable 
 0000000
 1 AMD  00000001)
 [   1.0000040] ACPI: CRAT 0x00000000C4016000 000B68 (v01 AMD    AmdTable 
 0000000
 1 AMD  00000001)
 [   1.0000040] ACPI: CDIT 0x00000000C4015000 000029 (v01 AMD    AmdTable 
 0000000
 1 AMD  00000001)
 [   1.0000040] ACPI: SSDT 0x00000000C4014000 000D53 (v02 AMD    ArticIG2 
 0000000
 1 INTL 20120913)
 [   1.0000040] ACPI: SSDT 0x00000000C4012000 0010C1 (v02 AMD    ArticTPX 
 0000000
 1 INTL 20120913)
 [   1.0000040] ACPI: SSDT 0x00000000C400E000 003E6E (v02 AMD    ArticN 
 0000000
 1 INTL 20120913)
 [   1.0000040] ACPI: WSMT 0x00000000C400D000 000028 (v01 ALASKA A M I 
 0107200
 9 AMI  00010013)
 [   1.0000040] ACPI: APIC 0x00000000C400C000 00015E (v04 ALASKA A M I 
 0107200
 9 AMI  00010013)
 [   1.0000040] ACPI: SSDT 0x00000000C400B000 00007D (v02 AMD    ArticDIS 
 0000000
 1 INTL 20120913)
 [   1.0000040] ACPI: SSDT 0x00000000C400A000 0000BF (v01 AMD    AmdTable 
 0000100
 0 INTL 20120913)
 [   1.0000040] ACPI: 10 ACPI AML tables successfully acquired and loaded
 [   1.0000040] ioapic0 at mainbus0 apid 13: pa 0xfec00000, version 0x21, 
 24 pins

 [   1.0000040] ioapic1 at mainbus0 apid 14: pa 0xfec01000, version 0x21, 
 32 pins

 [   1.0000040] cpu0 at mainbus0 apid 0
 [   1.0000040] cpu0: Use mfence to serialize rdtsc
 [   1.0000040] cpu0: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu0: node 0, package 0, core 0, smt 0
 [   1.0000040] cpu0: SVM disabled by the BIOS
 [   1.0000040] cpu0: searching errata for cpu revision 0x00a50f00
 [   1.0000040] cpu1 at mainbus0 apid 2
 [   1.0000040] cpu1: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu1: node 0, package 0, core 1, smt 0
 [   1.0000040] cpu2 at mainbus0 apid 4
 [   1.0000040] cpu2: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu2: node 0, package 0, core 2, smt 0
 [   1.0000040] cpu3 at mainbus0 apid 6
 [   1.0000040] cpu3: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu3: node 0, package 0, core 3, smt 0
 [   1.0000040] cpu4 at mainbus0 apid 8
 [   1.0000040] cpu4: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu4: node 0, package 0, core 4, smt 0
 [   1.0000040] cpu5 at mainbus0 apid 10
 [   1.0000040] cpu5: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu5: node 0, package 0, core 5, smt 0
 [   1.0000040] cpu6 at mainbus0 apid 1
 [   1.0000040] cpu6: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu6: node 0, package 0, core 0, smt 1
 [   1.0000040] cpu7 at mainbus0 apid 3
 [   1.0000040] cpu7: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu7: node 0, package 0, core 1, smt 1
 [   1.0000040] cpu8 at mainbus0 apid 5
 [   1.0000040] cpu8: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu8: node 0, package 0, core 2, smt 1
 [   1.0000040] cpu9 at mainbus0 apid 7
 [   1.0000040] cpu9: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu9: node 0, package 0, core 3, smt 1
 [   1.0000040] cpu10 at mainbus0 apid 9
 [   1.0000040] cpu10: AMD Ryzen 5 5600G with Radeon Graphics         , 
 id 0xa50f
 00
 [   1.0000040] cpu10: node 0, package 0, core 4, smt 1
 [   1.0000040] cpu11 at mainbus0 apid 11
 [   1.0000040] cpu11: AMD Ryzen 5 5600G with Radeon Graphics         , 
 id 0xa50f
 00
 [   1.0000040] cpu11: node 0, package 0, core 5, smt 1
 [   1.0000040] acpi0 at mainbus0: Intel ACPICA 20230628
 [   1.0000040] acpi0: X/RSDT: OemId <ALASKA,  A M I ,01072009>, AslId 
 <AMI ,0100
 0013>
 [   1.0000040] acpi0: MCFG: segment 0, bus 0-127, address 0x00000000f0000000
 [   1.0000040] acpi0: SCI interrupting at int 9
 [   1.0000040] acpi0: fixed power button present
 [   1.0000040] timecounter: Timecounter "ACPI-Fast" frequency 3579545 Hz 
 quality
   1000
 [   1.0352518] hpet0 at acpi0: high precision event timer (mem 
 0xfed00000-0xfed0
 0400)
 [   1.0352518] timecounter: Timecounter "hpet0" frequency 14318180 Hz 
 quality 20
 00
 [   1.0372344] AMDN (PNP0C01) at acpi0 not configured
 [   1.0372344] attimer1 at acpi0 (TMR, PNP0100): io 0x40-0x43 irq 0
 [   1.0372344] pcppi1 at acpi0 (SPKR, PNP0800): io 0x61
 [   1.0372344] spkr0 at pcppi1: PC Speaker
 [   1.0372344] wsbell at spkr0 not configured
 [   1.0372344] midi0 at pcppi1: PC speaker
 [   1.0372344] sysbeep0 at pcppi1
 [   1.0372344] com0 at acpi0 (UAR1, PNP0501-0): io 0x3f8-0x3ff irq 4
 [   1.0372344] com0: ns16550a, 16-byte FIFO
 [   1.0372344] acpibut0 at acpi0 (PWRB, PNP0C0C-170): ACPI Power Button
 [   1.0372344] GPIO (AMDI0030) at acpi0 not configured
 [   1.0372344] dwiic0 at acpi0 (I2CD, AMDI0010-3): mem 
 0xfedc5000-0xfedc5fff irq
   6
 [   1.0372344] iic0 at dwiic0: I2C bus
 [   1.0372344] PTIO (AMDIF030) at acpi0 not configured
 [   1.0372344] acpiwmi0 at acpi0 (AWW0, PNP0C14-AWW): ACPI WMI Interface
 [   1.0372344] acpiwmibus at acpiwmi0 not configured
 [   1.0372344] acpiwmi1 at acpi0 (AMW0, PNP0C14-ASUSWMI): ACPI WMI Interface
 [   1.0372344] wmieeepc0 at acpiwmi1: Asus Eee PC WMI mappings
 [   1.0372344] acpiwmi2 at acpi0 (ABAW, PNP0C14-AsusBACKUPWMI): ACPI WMI 
 Interfa
 ce
 [   1.0372344] acpiwmibus at acpiwmi2 not configured
 [   1.0372344] acpiwmi3 at acpi0 (ACCE, PNP0C14-ASUSCONTROLCENTER): ACPI 
 WMI Int
 erface
 [   1.0372344] acpiwmibus at acpiwmi3 not configured
 [   1.0372344] acpiwmi4 at acpi0 (AOD, PNP0C14-AOD): ACPI WMI Interface
 [   1.0372344] acpiwmibus at acpiwmi4 not configured
 [   1.0372344] attimer1: attached to pcppi1
 [   1.0372344] pci0 at mainbus0 bus 0: configuration mode 1
 [   1.0372344] pci0: i/o space, memory space enabled, rd/line, rd/mult, 
 wr/inv o
 k
 [   1.0372344] amdsmn0 at pci0 dev 0 function 0: AMD System Management 
 Network
 [   1.0372344] amdzentemp0 at amdsmn0: AMD CPU Temperature Sensors 
 (Family19h)
 [   1.0372344] AMD 17h/6xh IOMMU (IOMMU system) at pci0 dev 0 function 2 
 not con
 figured
 [   1.0372344] pchb0 at pci0 dev 1 function 0: AMD 17h/6xh Host Bridge 
 (rev. 0x0
 0)
 [   1.0372344] pchb1 at pci0 dev 2 function 0: AMD 17h/6xh Host Bridge 
 (rev. 0x0
 0)
 [   1.0372344] ppb0 at pci0 dev 2 function 1: AMD 17h/6xh PCIe (rev. 0x00)
 [   1.0372344] ppb0: PCI Express capability version 2 <Root Port of 
 PCI-E Root C
 omplex> x4 @ 8.0GT/s
 [   1.0372344] pci1 at ppb0 bus 1
 [   1.0372344] pci1: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372344] xhci0 at pci1 dev 0 function 0: AMD 500 Series xHCI (rev. 
 0x00)
 [   1.0372344] xhci0: 64-bit DMA
 [   1.0372344] xhci0: interrupting at msix0 vec 0
 [   1.0372344] xhci0: xHCI version 1.10
 [   1.0372344] usb0 at xhci0: USB revision 3.1
 [   1.0372344] usb1 at xhci0: USB revision 2.0
 [   1.0372344] ahcisata0 at pci1 dev 0 function 1: AMD 500 Series AHCI 
 (rev. 0x0
 0)
 [   1.0372344] ahcisata0: 64-bit DMA
 [   1.0372344] ahcisata0: AHCI revision 1.31, 6 ports, 32 slots, CAP 
 0xef36ff25<
 SXS,PSC,SSC,PMD,SPM,SAM,ISS=0x3=Gen3,SCLO,SAL,SALP,SSS,SSNTF,SNCQ,S64A>
 [   1.0372344] ahcisata0: interrupting at msi1 vec 0
 [   1.0372344] atabus0 at ahcisata0 channel 0
 [   1.0372344] atabus1 at ahcisata0 channel 1
 [   1.0372344] atabus2 at ahcisata0 channel 2
 [   1.0372344] atabus3 at ahcisata0 channel 3
 [   1.0372344] atabus4 at ahcisata0 channel 4
 [   1.0372344] atabus5 at ahcisata0 channel 5
 [   1.0372344] ppb1 at pci1 dev 0 function 2: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372344] ppb1: PCI Express capability version 2 <Upstream Port of 
 PCI-E Sw
 itch>
 [   1.0372344] pci2 at ppb1 bus 2
 [   1.0372344] pci2: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372344] ppb2 at pci2 dev 0 function 0: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372344] ppb2: PCI Express capability version 2 <Downstream Port 
 of PCI-E
 Switch> x1 @ 8.0GT/s
 [   1.0372344] pci3 at ppb2 bus 3
 [   1.0372344] pci3: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372344] ppb3 at pci2 dev 1 function 0: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372344] ppb3: PCI Express capability version 2 <Downstream Port 
 of PCI-E
 Switch> x1 @ 8.0GT/s
 [   1.0372344] ppb3: link is x1 @ 5.0GT/s
 [   1.0372344] pci4 at ppb3 bus 4
 [   1.0372344] pci4: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372344] xhci1 at pci4 dev 0 function 0: Fresco Logic product 1100 
 (rev. 0
 x10)
 [   1.0372344] xhci1: 64-bit DMA
 [   1.0372344] xhci1: interrupting at msix2 vec 0
 [   1.0372344] xhci1: xHCI version 1.0
 [   1.0372344] usb2 at xhci1: USB revision 3.0
 [   1.0372344] usb3 at xhci1: USB revision 2.0
 [   1.0372344] ppb4 at pci2 dev 2 function 0: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372344] ppb4: PCI Express capability version 2 <Downstream Port 
 of PCI-E
 Switch> x1 @ 8.0GT/s
 [   1.0372344] pci5 at ppb4 bus 5
 [   1.0372344] pci5: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372344] ppb5 at pci2 dev 3 function 0: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372344] ppb5: PCI Express capability version 2 <Downstream Port 
 of PCI-E
 Switch> x1 @ 8.0GT/s
 [   1.0372344] pci6 at ppb5 bus 6
 [   1.0372344] pci6: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372344] ppb6 at pci2 dev 8 function 0: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372344] ppb6: PCI Express capability version 2 <Downstream Port 
 of PCI-E
 Switch> x1 @ 8.0GT/s
 [   1.0372344] pci7 at ppb6 bus 7
 [   1.0372344] pci7: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372344] ppb7 at pci2 dev 9 function 0: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372344] ppb7: PCI Express capability version 2 <Downstream Port 
 of PCI-E
 Switch> x1 @ 8.0GT/s
 [   1.0372344] ppb7: link is x1 @ 5.0GT/s
 [   1.0372344] pci8 at ppb7 bus 8
 [   1.0372344] pci8: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372344] rge0 at pci8 dev 0 function 0: Realtek Semiconductor 8125 
 10/100/
 1G/2.5G Ethernet (rev. 0x05)
 [   1.0372344] rge0: interrupting at msix3 vec 0
 [   1.0372344] rge0: HW rev. B
 [   1.0372344] rge0: Ethernet address c8:7f:54:6f:e9:6c
 [   1.0372344] pchb2 at pci0 dev 8 function 0: AMD 17h/6xh Host Bridge 
 (rev. 0x0
 0)
 [   1.0372344] ppb8 at pci0 dev 8 function 1: AMD 17h/6xh PCIe (rev. 0x00)
 [   1.0372344] ppb8: PCI Express capability version 2 <Root Port of 
 PCI-E Root C
 omplex> x16 @ 8.0GT/s
 [   1.0372344] pci9 at ppb8 bus 9
 [   1.0372344] pci9: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372344] genfb0 at pci9 dev 0 function 0: ATI Technologies product 
 1638 (r
 ev. 0xc9)
 [   1.0372344] genfb0: framebuffer at 0xd0000000, size 1024x768, depth 
 32, strid
 e 4096
 [   1.0372344] genfb0: shadow framebuffer enabled, size 3072 KB
 [   1.0372344] wsdisplay0 at genfb0 kbdmux 1: console (default, vt100 
 emulation)

 [   1.0372344] wsmux1: connecting to wsdisplay0
 [   1.0372344] drm at genfb0 not configured
 [   1.0372344] hdaudio0 at pci9 dev 0 function 1: HD Audio Controller
 [   1.0372344] hdaudio0: interrupting at msi4 vec 0
 [   1.0372344] hdaudio0: HDA ver. 1.0, OSS 4, ISS 0, BSS 0, SDO 1, 64-bit
 [   1.0372344] hdafg0 at hdaudio0: ATI R6xx HDMI
 [   1.0372344] hdafg0: HDMI00 2ch: Digital Out [Jack]
 [   1.0372344] hdafg0: HDMI01 2ch: Digital Out [Jack]
 [   1.0372344] hdafg0: 2ch/0ch 32000Hz 44100Hz 48000Hz PCM16 AC3
 [   1.0372344] audio0 at hdafg0: playback
 [   1.0372344] audio0: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms) 
 for play
 back
 [   1.0372344] spkr1 at audio0: PC Speaker (synthesized)
 [   1.0372344] wsbell at spkr1 not configured
 [   1.0372344] amdccp0 at pci9 dev 0 function 2: AMD Cryptographic 
 Coprocessor
 [   1.0372344] xhci2 at pci9 dev 0 function 3: AMD 17h/6xh xHCI (rev. 0x00)
 [   1.0372344] xhci2: 64-bit DMA
 [   1.0372344] xhci2: interrupting at msix5 vec 0
 [   1.0372344] xhci2: xHCI version 1.10
 [   1.0372344] usb4 at xhci2: USB revision 3.1
 [   1.0372344] usb5 at xhci2: USB revision 2.0
 [   1.0372344] xhci3 at pci9 dev 0 function 4: AMD 17h/6xh xHCI (rev. 0x00)
 [   1.0372344] xhci3: 64-bit DMA
 [   1.0372344] xhci3: interrupting at msix6 vec 0
 [   1.0372344] xhci3: xHCI version 1.10
 [   1.0372344] usb6 at xhci3: USB revision 3.1
 [   1.0372344] usb7 at xhci3: USB revision 2.0
 [   1.0372344] hdaudio1 at pci9 dev 0 function 6: HD Audio Controller
 [   1.0372344] hdaudio1: interrupting at msi7 vec 0
 [   1.0372344] hdaudio1: HDA ver. 1.0, OSS 4, ISS 4, BSS 0, SDO 1, 64-bit
 [   1.0372344] hdafg1 at hdaudio1: Realtek product 0b00
 [   1.0372344] hdafg1: DAC00 6ch: Speaker [Jack]
 [   1.0372344] hdafg1: DAC01 2ch: HP Out [Jack]
 [   1.0372344] hdafg1: DIG02 2ch: SPDIF Out [Jack]
 [   1.0372344] hdafg1: ADC03 2ch: Line In [Jack], Mic In [Jack]
 [   1.0372344] hdafg1: ADC04 2ch: Mic In [Jack]
 [   1.0372344] hdafg1: 6ch/2ch 32000Hz 44100Hz 48000Hz 88200Hz 96000Hz 
 192000Hz
 PCM16 PCM20 PCM24 AC3
 [   1.0372344] audio1 at hdafg1: playback, capture, full duplex, independent
 [   1.0372344] audio1: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms) 
 for play
 back
 [   1.0372344] audio1: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms) 
 for reco
 rding
 [   1.0372344] spkr2 at audio1: PC Speaker (synthesized)
 [   1.0372344] wsbell at spkr2 not configured
 [   1.0372344] piixpm0 at pci0 dev 20 function 0: AMD X370/X399 SMBus 
 Controller
   (rev. 0x51)
 [   1.0372344] piixpm0: interrupting at SMI,
 [   1.0372344] iic1 at piixpm0 port 0: I2C bus
 [   1.0372344] iic2 at piixpm0 port 1: I2C bus
 [   1.0372344] pcib0 at pci0 dev 20 function 3: AMD FCH LPC (rev. 0x51)
 [   1.0372344] pchb3 at pci0 dev 24 function 0: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372344] pchb4 at pci0 dev 24 function 1: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372344] pchb5 at pci0 dev 24 function 2: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372344] pchb6 at pci0 dev 24 function 3: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372344] pchb7 at pci0 dev 24 function 4: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372344] pchb8 at pci0 dev 24 function 5: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372344] pchb9 at pci0 dev 24 function 6: AMD 19h/5xh Data Fabric 
 (rev. 0x
 00)
 [   1.0372344] pchb10 at pci0 dev 24 function 7: AMD 19h/5xh Data Fabric 
 (rev. 0
 x00)
 [   1.0372344] isa0 at pcib0
 [   1.0372344] pckbc0 at isa0 port 0x60-0x64
 [   1.0372344] acpicpu0 at cpu0: ACPI CPU
 [   1.0372344] acpicpu0: C1: FFH, lat   1 us, pow     0 mW
 [   1.0372344] acpicpu0: C2: I/O, lat  18 us, pow     0 mW
 [   1.0372344] acpicpu0: C3: I/O, lat 350 us, pow     0 mW
 [   1.0372344] acpicpu0: P0: FFH, lat   1 us, pow  5265 mW, 3900 MHz
 [   1.0372344] acpicpu0: P1: FFH, lat   1 us, pow  1615 mW, 1700 MHz
 [   1.0372344] acpicpu0: P2: FFH, lat   1 us, pow  1277 mW, 1400 MHz
 [   1.0372344] acpicpu1 at cpu1: ACPI CPU
 [   1.0372344] acpicpu2 at cpu2: ACPI CPU
 [   1.0372344] acpicpu3 at cpu3: ACPI CPU
 [   1.0372344] acpicpu4 at cpu4: ACPI CPU
 [   1.0372344] acpicpu5 at cpu5: ACPI CPU
 [   1.0372344] acpicpu6 at cpu6: ACPI CPU
 [   1.0372344] acpicpu7 at cpu7: ACPI CPU
 [   1.0372344] acpicpu8 at cpu8: ACPI CPU
 [   1.0372344] acpicpu9 at cpu9: ACPI CPU
 [   1.0372344] acpicpu10 at cpu10: ACPI CPU
 [   1.0372344] acpicpu11 at cpu11: ACPI CPU
 [   1.0372344] timecounter: Timecounter "clockinterrupt" frequency 100 
 Hz qualit
 y 0
 [   1.0372344] timecounter: Timecounter "TSC" frequency 3892717000 Hz 
 quality 30
 00
 [   1.7307385] uhub0 at usb0: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 3.00/1.00, addr 0
 [   1.7381111] uhub0: 4 ports with 4 removable, self powered
 [   1.7381111] uhub1 at usb1: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 2.00/1.00, addr 0
 [   1.7381111] uhub1: 10 ports with 10 removable, self powered
 [   1.7381111] uhub2 at usb2: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 3.00/1.00, addr 0
 [   1.7481092] uhub2: 4 ports with 4 removable, self powered
 [   1.7481092] uhub3 at usb3: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 2.00/1.00, addr 0
 [   1.7581090] uhub3: 4 ports with 4 removable, self powered
 [   1.7581090] uhub4 at usb4: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 3.00/1.00, addr 0
 [   1.7581090] uhub4: 2 ports with 2 removable, self powered
 [   1.7581090] uhub5 at usb5: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 2.00/1.00, addr 0
 [   1.7681089] uhub5: 4 ports with 4 removable, self powered
 [   1.7681089] uhub6 at usb6: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 3.00/1.00, addr 0
 [   1.7781090] uhub6: 2 ports with 2 removable, self powered
 [   1.7781090] uhub7 at usb7: NetBSD (0x0000) xHCI root hub (0x0000), 
 class 9/0,
   rev 2.00/1.00, addr 0
 [   1.7781090] uhub7: 4 ports with 4 removable, self powered
 [   1.7781090] IPsec: Initialized Security Association Processing.
 [   1.8781093] ahcisata0 port 0: device present, speed: 6.0Gb/s
 [   1.8781093] ahcisata0 port 1: device present, speed: 3.0Gb/s
 [   1.8781093] ahcisata0 port 3: device present, speed: 3.0Gb/s
 [   1.8781093] ahcisata0 port 2: device present, speed: 3.0Gb/s
 [   2.2281076] umass0 at uhub0 port 1 configuration 1 interface 0
 [   2.2281076] umass0: Seagate (0x0bc2) Expansion (0x2321), rev 
 3.00/1.00, addr
 1
 [   2.2281076] umass0: using SCSI over Bulk-Only
 [   2.2281076] scsibus0 at umass0: 2 targets, 1 lun per target
 [   2.2381074] sd0 at scsibus0 target 0 lun 0: <Seagate, Expansion, 
 0502> disk f
 ixed
 [   2.2581088] sd0: 465 GB, 16383 cyl, 16 head, 63 sec, 512 bytes/sect x 
 9767731
 67 sectors
 [   2.2681073] umass1 at uhub3 port 2 configuration 1 interface 0
 [   2.2681073] umass1: TSST Inc (0x0e8d) SES084D (0x1836), rev 
 2.00/0.00, addr 1

 [   2.2681073] umass1: using ATAPI over Bulk-Only
 [   2.2681073] atapibus0 at umass1: 2 targets
 [   2.2681073] sd0: GPT GUID: 6280f578-9364-11ea-8eeb-00c09ff0b94b
 [   2.2681073] dk0 at sd0: "srd00f1", 976773088 blocks at 40, type: ffs
 [   2.2681073] cd0 at atapibus0 drive 0: <TSSTcorp, CDDVDW SE-S084D, 
 TS00> cdrom
   removable
 [   2.2981087] uhidev0 at uhub5 port 1 configuration 1 interface 0
 [   2.2981087] uhidev0: SZH (0xc0f4) usb keyboard (0x05e0), rev 
 1.10/1.10, addr
 1, iclass 3/1
 [   2.3081076] ukbd0 at uhidev0
 [   2.3181073] wskbd0 at ukbd0: console keyboard, using wsdisplay0
 [   2.3181073] uhidev1 at uhub5 port 1 configuration 1 interface 1
 [   2.3181073] uhidev1: SZH (0xc0f4) usb keyboard (0x05e0), rev 
 1.10/1.10, addr
 1, iclass 3/0
 [   2.3281072] uhidev1: 2 report ids
 [   2.3281072] uhid0 at uhidev1 reportid 1: input=2, output=0, feature=0
 [   2.3281072] uhid1 at uhidev1 reportid 2: input=1, output=0, feature=0
 [   2.3481072] uhidev2 at uhub1 port 6 configuration 1 interface 2
 [   2.3481072] uhidev2: AsusTek Computer Inc. (0x0b05) AURA LED 
 Controller (0x19
 39), rev 2.00/1.00, addr 2, iclass 3/0
 [   2.3781085] uhidev2: 236 report ids
 [   2.3781085] uhid2 at uhidev2 reportid 236: input=64, output=64, feature=0
 [   2.6681057] umass2 at uhub0 port 2 configuration 1 interface 0
 [   2.6681057] umass2: Seagate (0x0bc2) Expansion HDD (0x2037), rev 
 3.20/19.01,
 addr 3
 [   2.6681057] umass2: using SCSI over Bulk-Only
 [   2.6681057] scsibus1 at umass2: 2 targets, 1 lun per target
 [   2.6681057] sd1 at scsibus1 target 0 lun 0: <Seagate, Expansion HDD, 
 1901> di
 sk fixed
 [   2.6781056] sd1: fabricating a geometry
 [   2.6781056] sd1: 4657 GB, 4769307 cyl, 64 head, 32 sec, 512 
 bytes/sect x 9767
 541167 sectors
 [   2.6781056] sd1: fabricating a geometry
 [   2.6781056] sd1: GPT GUID: 229a8f97-87c4-452b-8439-410813fd536f
 [   2.6781056] dk1 at sd1: "stkm5000", 9767538688 blocks at 2048, type: cgd
 [   2.8381049] uhidev3 at uhub5 port 2 configuration 1 interface 0
 [   2.8381049] uhidev3: Logitech (0x046d) USB Laser Mouse (0xc062), rev 
 2.00/31.
 00, addr 2, iclass 3/1
 [   2.8481048] ums0 at uhidev3: 8 buttons, W and Z dirs
 [   2.8481048] wsmouse0 at ums0 mux 0
 [   2.8781047] uhub8 at uhub1 port 7: vendor 05e3 (0x05e3) USB2.0 Hub 
 (0x0608),
 class 9/0, rev 2.00/60.90, addr 4
 [   2.8781047] uhub8: single transaction translator
 [   2.9081046] uhub8: 4 ports with 4 removable, self powered
 [   3.4081023] wd0 at atabus0 drive 0
 [   3.4081023] wd0: <CT1000MX500SSD1>
 [   3.4081023] wd0: drive supports 1-sector PIO transfers, LBA48 addressing
 [   3.4081023] wd0: 931 GB, 1938021 cyl, 16 head, 63 sec, 512 bytes/sect 
 x 19535
 25168 sectors (4096 bytes/physsect; first aligned sector: 8)
 [   3.4081023] wd0: GPT GUID: 0bb3b360-b938-48b1-9a79-534a8091721a
 [   3.4181016] dk2 at wd0: "boot", 262144 blocks at 40, type: msdos
 [   3.4181016] dk3 at wd0: "swap", 67108864 blocks at 262184, type: swap
 [   3.4181016] dk4 at wd0: "root", 268435456 blocks at 67371048, type: ffs
 [   3.4181016] dk5 at wd0: "rootdev", 268435456 blocks at 335806504, 
 type: ffs
 [   3.4181016] dk6 at wd0: "home", 1349283168 blocks at 604241960, type: ffs
 [   3.4181016] wd0: drive supports PIO mode 4, DMA mode 2, Ultra-DMA 
 mode 6 (Ult
 ra/133), WRITE DMA FUA, NCQ (32 tags)
 [   3.4181016] wd0(ahcisata0:0:0): using PIO mode 4, DMA mode 2, 
 Ultra-DMA mode
 6 (Ultra/133) (using DMA), NCQ (31 tags)
 [   3.4181016] wd1 at atabus1 drive 0
 [   3.4181016] wd1: <WDC WD2500AAKX-08ERMA0>
 [   3.4181016] wd1: drive supports 16-sector PIO transfers, LBA48 addressing
 [   3.4181016] wd1: 232 GB, 484521 cyl, 16 head, 63 sec, 512 bytes/sect 
 x 488397
 168 sectors
 [   3.4381022] wd1: GPT GUID: 781436fa-2826-496b-8f4f-d337894a7cc8
 [   3.4381022] dk7 at wd1: "ccd0p0", 488397088 blocks at 40, type: ccd
 [   3.4381022] wd1: drive supports PIO mode 4, DMA mode 2, Ultra-DMA 
 mode 5 (Ult
 ra/100), NCQ (32 tags) w/PRIO
 [   3.4381022] wd1(ahcisata0:1:0): using PIO mode 4, DMA mode 2, 
 Ultra-DMA mode
 5 (Ultra/100) (using DMA), NCQ (31 tags) w/PRIO
 [   3.4381022] wd2 at atabus2 drive 0
 [   3.4381022] wd2: <WDC WD2500AAKX-001CA0>
 [   3.4381022] wd2: drive supports 16-sector PIO transfers, LBA48 addressing
 [   3.4381022] wd2: 232 GB, 484521 cyl, 16 head, 63 sec, 512 bytes/sect 
 x 488397
 168 sectors
 [   3.4581029] wd2: GPT GUID: d89b1c76-adbe-45f8-bcb0-ec5929c99caf
 [   3.4581029] dk8 at wd2: "ccd0p1", 488397088 blocks at 40, type: ccd
 [   3.4581029] wd2: drive supports PIO mode 4, DMA mode 2, Ultra-DMA 
 mode 6 (Ult
 ra/133), NCQ (32 tags) w/PRIO
 [   3.4581029] wd2(ahcisata0:2:0): using PIO mode 4, DMA mode 2, 
 Ultra-DMA mode
 6 (Ultra/133) (using DMA), NCQ (31 tags) w/PRIO
 [   3.4581029] wd3 at atabus3 drive 0
 [   3.4581029] wd3: <HITACHI HDS7250SASUN500G 0738KVWU4H>
 [   3.4581029] wd3: drive supports 16-sector PIO transfers, LBA48 addressing
 [   3.4581029] wd3: 465 GB, 969021 cyl, 16 head, 63 sec, 512 bytes/sect 
 x 976773
 168 sectors
 [   3.4781020] wd3: GPT GUID: 3254d266-d1b1-4901-bfa6-dfe8f8fe2cfc
 [   3.4781020] dk9 at wd3: "lnx-boot", 2097152 blocks at 40, type: msdos
 [   3.4781020] dk10 at wd3: "lnx-swap", 67108864 blocks at 2097192, 
 type: <unkno
 wn>
 [   3.4781020] dk11 at wd3: "lnx-root", 134217728 blocks at 69206056, 
 type: ext2
 fs
 [   3.4781020] wd3: drive supports PIO mode 4, DMA mode 2, Ultra-DMA 
 mode 6 (Ult
 ra/133), WRITE DMA FUA, NCQ (32 tags)
 [   3.4781020] wd3(ahcisata0:3:0): using PIO mode 4, DMA mode 2, 
 Ultra-DMA mode
 6 (Ultra/133) (using DMA), NCQ (31 tags)
 [   3.4781020] swwdog0: software watchdog initialized
 [   3.6181013] boot device: <unknown>
 [   3.6181013] root on dk5 dumps on dk3
 [   3.6281010] root file system type: ffs
 [   3.6281010] kern.module.path=/stand/amd64/10.99.10/modules
 [   1.0000000] Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
 [   1.0000000]     2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 
 2013,
 [   1.0000000]     2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 
 2023,
 [   1.0000000]     2024
 [   1.0000000]     The NetBSD Foundation, Inc.  All rights reserved.
 [   1.0000000] Copyright (c) 1982, 1986, 1989, 1991, 1993
 [   1.0000000]     The Regents of the University of California.  All 
 rights rese
 rved.

 [   1.0000000] NetBSD 10.99.10 (GENERIC) #0: Fri Mar 15 11:15:04 CET 2024
 [   1.0000000] 
 triaxx@goliath.triaxx.org:/usr/obj/sys/arch/amd64/compile/GENERI
 C
 [   1.0000000] total memory = 32050 MB
 [   1.0000000] avail memory = 30983 MB
 [   1.0000000] timecounter: Timecounters tick every 10.000 msec
 [   1.0000000] Kernelized RAIDframe activated
 [   1.0000000] RTC BIOS diagnostic error 
 0x3f<config_unit,memory_size,fixed_disk
 ,invalid_time>
 [   1.0000000] timecounter: Timecounter "i8254" frequency 1193182 Hz 
 quality 100

 [   1.0000040] efi: systbl at pa c6959018
 [   1.0000040] mainbus0 (root)
 [   1.0000040] ACPI: RSDP 0x00000000C4129014 000024 (v02 ALASKA)
 [   1.0000040] ACPI: XSDT 0x00000000C4128728 0000CC (v01 ALASKA A M I 
 0107200
 9 AMI  01000013)
 [   1.0000040] ACPI: FACP 0x00000000C4119000 000114 (v06 ALASKA A M I 
 0107200
 9 AMI  00010013)
 [   1.0000040] ACPI: DSDT 0x00000000C410D000 00B3F3 (v02 ALASKA A M I 
 0107200
 9 INTL 20120913)
 [   1.0000040] ACPI: FACS 0x00000000C4890000 000040
 [   1.0000040] ACPI: IVRS 0x00000000C4127000 0000D0 (v02 AMD    AmdTable 
 0000000
 1 AMD  00000001)
 [   1.0000040] ACPI: SSDT 0x00000000C411F000 0072B0 (v02 AMD    Artic 
 0000000
 2 MSFT 04000000)
 [   1.0000040] ACPI: SSDT 0x00000000C411B000 003B8E (v02 AMD    AMD AOD 
 0000000
 1 INTL 20120913)
 [   1.0000040] ACPI: SSDT 0x00000000C411A000 0001AD (v02 ALASKA CPUSSDT 
 0107200
 9 AMI  01072009)
 [   1.0000040] ACPI: FIDT 0x00000000C410C000 00009C (v01 ALASKA A M I 
 0107200
 9 AMI  00010013)
 [   1.0000040] ACPI: FPDT 0x00000000C4009000 000044 (v01 ALASKA A M I 
 0107200
 9 AMI  01000013)
 [   1.0000040] ACPI: MCFG 0x00000000C410A000 00003C (v01 ALASKA A M I 
 0107200
 9 MSFT 00010013)
 [   1.0000040] ACPI: HPET 0x00000000C4109000 000038 (v01 ALASKA A M I 
 0107200
 9 AMI  00000005)
 [   1.0000040] ACPI: VFCT 0x00000000C40FA000 00D884 (v01 ALASKA A M I 
 0000000
 1 AMD  31504F47)
 [   1.0000040] ACPI: WPBT 0x00000000C401B000 00003C (v01 ALASKA A M I 
 0000000
 1 ASUS 00000001)
 [   1.0000040] ACPI: SSDT 0x00000000C4017000 003E88 (v02 AMD    AmdTable 
 0000000
 1 AMD  00000001)
 [   1.0000040] ACPI: CRAT 0x00000000C4016000 000B68 (v01 AMD    AmdTable 
 0000000
 1 AMD  00000001)
 [   1.0000040] ACPI: CDIT 0x00000000C4015000 000029 (v01 AMD    AmdTable 
 0000000
 1 AMD  00000001)
 [   1.0000040] ACPI: SSDT 0x00000000C4014000 000D53 (v02 AMD    ArticIG2 
 0000000
 1 INTL 20120913)
 [   1.0000040] ACPI: SSDT 0x00000000C4012000 0010C1 (v02 AMD    ArticTPX 
 0000000
 1 INTL 20120913)
 [   1.0000040] ACPI: SSDT 0x00000000C400E000 003E6E (v02 AMD    ArticN 
 0000000
 1 INTL 20120913)
 [   1.0000040] ACPI: WSMT 0x00000000C400D000 000028 (v01 ALASKA A M I 
 0107200
 9 AMI  00010013)
 [   1.0000040] ACPI: APIC 0x00000000C400C000 00015E (v04 ALASKA A M I 
 0107200
 9 AMI  00010013)
 [   1.0000040] ACPI: SSDT 0x00000000C400B000 00007D (v02 AMD    ArticDIS 
 0000000
 1 INTL 20120913)
 [   1.0000040] ACPI: SSDT 0x00000000C400A000 0000BF (v01 AMD    AmdTable 
 0000100
 0 INTL 20120913)
 [   1.0000040] ACPI: 10 ACPI AML tables successfully acquired and loaded
 [   1.0000040] ioapic0 at mainbus0 apid 13: pa 0xfec00000, version 0x21, 
 24 pins

 [   1.0000040] ioapic1 at mainbus0 apid 14: pa 0xfec01000, version 0x21, 
 32 pins

 [   1.0000040] cpu0 at mainbus0 apid 0
 [   1.0000040] cpu0: Use mfence to serialize rdtsc
 [   1.0000040] cpu0: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu0: node 0, package 0, core 0, smt 0
 [   1.0000040] cpu0: SVM disabled by the BIOS
 [   1.0000040] cpu0: searching errata for cpu revision 0x00a50f00
 [   1.0000040] cpu1 at mainbus0 apid 2
 [   1.0000040] cpu1: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu1: node 0, package 0, core 1, smt 0
 [   1.0000040] cpu2 at mainbus0 apid 4
 [   1.0000040] cpu2: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu2: node 0, package 0, core 2, smt 0
 [   1.0000040] cpu3 at mainbus0 apid 6
 [   1.0000040] cpu3: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu3: node 0, package 0, core 3, smt 0
 [   1.0000040] cpu4 at mainbus0 apid 8
 [   1.0000040] cpu4: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu4: node 0, package 0, core 4, smt 0
 [   1.0000040] cpu5 at mainbus0 apid 10
 [   1.0000040] cpu5: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu5: node 0, package 0, core 5, smt 0
 [   1.0000040] cpu6 at mainbus0 apid 1
 [   1.0000040] cpu6: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu6: node 0, package 0, core 0, smt 1
 [   1.0000040] cpu7 at mainbus0 apid 3
 [   1.0000040] cpu7: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu7: node 0, package 0, core 1, smt 1
 [   1.0000040] cpu8 at mainbus0 apid 5
 [   1.0000040] cpu8: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu8: node 0, package 0, core 2, smt 1
 [   1.0000040] cpu9 at mainbus0 apid 7
 [   1.0000040] cpu9: AMD Ryzen 5 5600G with Radeon Graphics         , id 
 0xa50f0
 0
 [   1.0000040] cpu9: node 0, package 0, core 3, smt 1
 [   1.0000040] cpu10 at mainbus0 apid 9
 [   1.0000040] cpu10: AMD Ryzen 5 5600G with Radeon Graphics         , 
 id 0xa50f
 00
 [   1.0000040] cpu10: node 0, package 0, core 4, smt 1
 [   1.0000040] cpu11 at mainbus0 apid 11
 [   1.0000040] cpu11: AMD Ryzen 5 5600G with Radeon Graphics         , 
 id 0xa50f
 00
 [   1.0000040] cpu11: node 0, package 0, core 5, smt 1
 [   1.0000040] acpi0 at mainbus0: Intel ACPICA 20230628
 [   1.0000040] acpi0: X/RSDT: OemId <ALASKA,  A M I ,01072009>, AslId 
 <AMI ,0100
 0013>
 [   1.0000040] acpi0: MCFG: segment 0, bus 0-127, address 0x00000000f0000000
 [   1.0000040] acpi0: SCI interrupting at int 9
 [   1.0000040] acpi0: fixed power button present
 [   1.0000040] timecounter: Timecounter "ACPI-Fast" frequency 3579545 Hz 
 quality
   1000
 [   1.0352224] hpet0 at acpi0: high precision event timer (mem 
 0xfed00000-0xfed0
 0400)
 [   1.0352224] timecounter: Timecounter "hpet0" frequency 14318180 Hz 
 quality 20
 00
 [   1.0372040] AMDN (PNP0C01) at acpi0 not configured
 [   1.0372040] attimer1 at acpi0 (TMR, PNP0100): io 0x40-0x43 irq 0
 [   1.0372040] pcppi1 at acpi0 (SPKR, PNP0800): io 0x61
 [   1.0372040] spkr0 at pcppi1: PC Speaker
 [   1.0372040] wsbell at spkr0 not configured
 [   1.0372040] midi0 at pcppi1: PC speaker
 [   1.0372040] sysbeep0 at pcppi1
 [   1.0372040] com0 at acpi0 (UAR1, PNP0501-0): io 0x3f8-0x3ff irq 4
 [   1.0372040] com0: ns16550a, 16-byte FIFO
 [   1.0372040] acpibut0 at acpi0 (PWRB, PNP0C0C-170): ACPI Power Button
 [   1.0372040] GPIO (AMDI0030) at acpi0 not configured
 [   1.0372040] dwiic0 at acpi0 (I2CD, AMDI0010-3): mem 
 0xfedc5000-0xfedc5fff irq
   6
 [   1.0372040] iic0 at dwiic0: I2C bus
 [   1.0372040] PTIO (AMDIF030) at acpi0 not configured
 [   1.0372040] acpiwmi0 at acpi0 (AWW0, PNP0C14-AWW): ACPI WMI Interface
 [   1.0372040] acpiwmibus at acpiwmi0 not configured
 [   1.0372040] acpiwmi1 at acpi0 (AMW0, PNP0C14-ASUSWMI): ACPI WMI Interface
 [   1.0372040] wmieeepc0 at acpiwmi1: Asus Eee PC WMI mappings
 [   1.0372040] acpiwmi2 at acpi0 (ABAW, PNP0C14-AsusBACKUPWMI): ACPI WMI 
 Interfa
 ce
 [   1.0372040] acpiwmibus at acpiwmi2 not configured
 [   1.0372040] acpiwmi3 at acpi0 (ACCE, PNP0C14-ASUSCONTROLCENTER): ACPI 
 WMI Int
 erface
 [   1.0372040] acpiwmibus at acpiwmi3 not configured
 [   1.0372040] acpiwmi4 at acpi0 (AOD, PNP0C14-AOD): ACPI WMI Interface
 [   1.0372040] acpiwmibus at acpiwmi4 not configured
 [   1.0372040] attimer1: attached to pcppi1
 [   1.0372040] pci0 at mainbus0 bus 0: configuration mode 1
 [   1.0372040] pci0: i/o space, memory space enabled, rd/line, rd/mult, 
 wr/inv o
 k
 [   1.0372040] amdsmn0 at pci0 dev 0 function 0: AMD System Management 
 Network
 [   1.0372040] amdzentemp0 at amdsmn0: AMD CPU Temperature Sensors 
 (Family19h)
 [   1.0372040] AMD 17h/6xh IOMMU (IOMMU system) at pci0 dev 0 function 2 
 not con
 figured
 [   1.0372040] pchb0 at pci0 dev 1 function 0: AMD 17h/6xh Host Bridge 
 (rev. 0x0
 0)
 [   1.0372040] pchb1 at pci0 dev 2 function 0: AMD 17h/6xh Host Bridge 
 (rev. 0x0
 0)
 [   1.0372040] ppb0 at pci0 dev 2 function 1: AMD 17h/6xh PCIe (rev. 0x00)
 [   1.0372040] ppb0: PCI Express capability version 2 <Root Port of 
 PCI-E Root C
 omplex> x4 @ 8.0GT/s
 [   1.0372040] pci1 at ppb0 bus 1
 [   1.0372040] pci1: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372040] xhci0 at pci1 dev 0 function 0: AMD 500 Series xHCI (rev. 
 0x00)
 [   1.0372040] xhci0: 64-bit DMA
 [   1.0372040] xhci0: interrupting at msix0 vec 0
 [   1.0372040] xhci0: xHCI version 1.10
 [   1.0372040] usb0 at xhci0: USB revision 3.1
 [   1.0372040] usb1 at xhci0: USB revision 2.0
 [   1.0372040] ahcisata0 at pci1 dev 0 function 1: AMD 500 Series AHCI 
 (rev. 0x0
 0)
 [   1.0372040] ahcisata0: 64-bit DMA
 [   1.0372040] ahcisata0: AHCI revision 1.31, 6 ports, 32 slots, CAP 
 0xef36ff25<
 SXS,PSC,SSC,PMD,SPM,SAM,ISS=0x3=Gen3,SCLO,SAL,SALP,SSS,SSNTF,SNCQ,S64A>
 [   1.0372040] ahcisata0: interrupting at msi1 vec 0
 [   1.0372040] atabus0 at ahcisata0 channel 0
 [   1.0372040] atabus1 at ahcisata0 channel 1
 [   1.0372040] atabus2 at ahcisata0 channel 2
 [   1.0372040] atabus3 at ahcisata0 channel 3
 [   1.0372040] atabus4 at ahcisata0 channel 4
 [   1.0372040] atabus5 at ahcisata0 channel 5
 [   1.0372040] ppb1 at pci1 dev 0 function 2: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372040] ppb1: PCI Express capability version 2 <Upstream Port of 
 PCI-E Sw
 itch>
 [   1.0372040] pci2 at ppb1 bus 2
 [   1.0372040] pci2: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372040] ppb2 at pci2 dev 0 function 0: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372040] ppb2: PCI Express capability version 2 <Downstream Port 
 of PCI-E
 Switch> x1 @ 8.0GT/s
 [   1.0372040] pci3 at ppb2 bus 3
 [   1.0372040] pci3: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372040] ppb3 at pci2 dev 1 function 0: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372040] ppb3: PCI Express capability version 2 <Downstream Port 
 of PCI-E
 Switch> x1 @ 8.0GT/s
 [   1.0372040] ppb3: link is x1 @ 5.0GT/s
 [   1.0372040] pci4 at ppb3 bus 4
 [   1.0372040] pci4: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372040] xhci1 at pci4 dev 0 function 0: Fresco Logic product 1100 
 (rev. 0
 x10)
 [   1.0372040] xhci1: 64-bit DMA
 [   1.0372040] xhci1: interrupting at msix2 vec 0
 [   1.0372040] xhci1: xHCI version 1.0
 [   1.0372040] usb2 at xhci1: USB revision 3.0
 [   1.0372040] usb3 at xhci1: USB revision 2.0
 [   1.0372040] ppb4 at pci2 dev 2 function 0: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372040] ppb4: PCI Express capability version 2 <Downstream Port 
 of PCI-E
 Switch> x1 @ 8.0GT/s
 [   1.0372040] pci5 at ppb4 bus 5
 [   1.0372040] pci5: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372040] ppb5 at pci2 dev 3 function 0: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372040] ppb5: PCI Express capability version 2 <Downstream Port 
 of PCI-E
 Switch> x1 @ 8.0GT/s
 [   1.0372040] pci6 at ppb5 bus 6
 [   1.0372040] pci6: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372040] ppb6 at pci2 dev 8 function 0: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372040] ppb6: PCI Express capability version 2 <Downstream Port 
 of PCI-E
 Switch> x1 @ 8.0GT/s
 [   1.0372040] pci7 at ppb6 bus 7
 [   1.0372040] pci7: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372040] ppb7 at pci2 dev 9 function 0: AMD 500 Series PCIe (rev. 
 0x00)
 [   1.0372040] ppb7: PCI Express capability version 2 <Downstream Port 
 of PCI-E
 Switch> x1 @ 8.0GT/s
 [   1.0372040] ppb7: link is x1 @ 5.0GT/s
 [   1.0372040] pci8 at ppb7 bus 8
 [   1.0372040] pci8: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372040] rge0 at pci8 dev 0 function 0: Realtek Semiconductor 8125 
 10/100/
 1G/2.5G Ethernet (rev. 0x05)
 [   1.0372040] rge0: interrupting at msix3 vec 0
 [   1.0372040] rge0: HW rev. B
 [   1.0372040] rge0: Ethernet address c8:7f:54:6f:e9:6c
 [   1.0372040] pchb2 at pci0 dev 8 function 0: AMD 17h/6xh Host Bridge 
 (rev. 0x0
 0)
 [   1.0372040] ppb8 at pci0 dev 8 function 1: AMD 17h/6xh PCIe (rev. 0x00)
 [   1.0372040] ppb8: PCI Express capability version 2 <Root Port of 
 PCI-E Root C
 omplex> x16 @ 8.0GT/s
 [   1.0372040] pci9 at ppb8 bus 9
 [   1.0372040] pci9: i/o space, memory space enabled, rd/line, wr/inv ok
 [   1.0372040] genfb0 at pci9 dev 0 function 0: ATI Technologies product 
 1638 (r
 ev. 0xc9)
 [   1.0372040] genfb0: framebuffer at 0xd0000000, size 1024x768, depth 
 32, strid
 e 4096
 [   1.0372040] genfb0: shadow framebuffer enabled, size 3072 KB
 [   1.0372040] wsdisplay0 at genfb0 kbdmux 1: console (default, vt100 
 emulation)

 [   1.0372040] wsmux1: connecting to wsdisplay0
 [

From: Taylor R Campbell <riastradh@NetBSD.org>
To: triaxx@NetBSD.org
Cc: gnats-bugs@NetBSD.org, netbsd-bugs@NetBSD.org
Subject: Re: kern/58069: Panic when trying to connect tty
Date: Sat, 23 Mar 2024 18:30:29 +0000

 Great!  There are some hung threads here, mostly softints.  Next thing
 to try in crash(8):

 crash> show all tstiles
 crash> bt/a ffffa755807c9c00
 crash> bt/a ffffa7558000e400
 crash> bt/a ffffa7557fb68400
 crash> bt/a ffffa7557fb3c800
 crash> bt/a ffffa7557ede5c00
 crash> bt/a ffffa7557ede5800
 crash> bt/a ffffa7557ed56000

From: triaxx@NetBSD.org
To: Taylor R Campbell <riastradh@NetBSD.org>
Cc: gnats-bugs@NetBSD.org, netbsd-bugs@NetBSD.org
Subject: Re: kern/58069: Panic when trying to connect tty
Date: Sat, 23 Mar 2024 20:25:06 +0100

 Crash version 10.99.10, image version 10.99.10.
 crash: _kvm_kvatop(0)
 Kernel compiled without options LOCKDEBUG.
 System panicked: cpu1: time has not advanced in 1501 heartbeats
 Backtrace from time of crash is available.
 crash> show all tstiles
    PID   LID          COMMAND      WAITING-FOR     TYPE     WAIT-CHANNEL
    447   447               sh                0       cv ffffa755804d4008
      0   480           system                0       cv ffffa755807f94f0
      0   331           system                0       cv ffffa755805e79c8
      0   310           system                0       cv uvmpd_pool_drain_cv
      0   309           system                0    sleep        uvm+0x188
      0   306           system                0       cv ffffa7557fed8348
      0   684           system                0       cv ffffa7557fe941c0
      0   683           system                0       cv ffffa7557f1e8f40
      0   681           system                0       cv ffffa7557f1e8d00
      0   680           system                0       cv ffffa7557fdb4708
      0   679           system                0       cv ffffa7557fb90588
      0   678           system                0       cv    unp_thread_cv
      0   293           system                0       cv ffffa7557fb90448
      0   676           system                0       cv ffffa7557fce4788
      0   291           system                0       cv ffffa7557fce4748
      0   290           system                0       cv ffffa7557fce4708
      0   289           system                0       cv ffffa7557fce46c8
      0   288           system                0       cv ffffa7557fce4688
      0   415           system                0       cv ffffa7557fce4648
      0   414           system                0       cv ffffa7557fce4608
      0   413           system                0       cv ffffa7557fce45c8
      0   412           system                0       cv ffffa7557fce4588
      0   411           system                0       cv ffffa7557fce4548
      0   410           system                0       cv ffffa7557fce4508
      0   409           system                0       cv ffffa7557fce44c8
      0   408           system                0       cv ffffa7557fb90308
      0   407           system                0       cv ffffa7557fc76a48
      0   406           system                0       cv ffffa7557fc76a08
      0   405           system                0       cv ffffa7557fc769c8
      0   404           system                0       cv ffffa7557fc76988
      0   403           system                0       cv ffffa7557fc76948
      0   402           system                0       cv ffffa7557fc76908
      0   401           system                0       cv ffffa7557fc768c8
      0   400           system                0       cv ffffa7557fc76888
      0   399           system                0       cv ffffa7557fc76848
      0   398           system                0       cv ffffa7557fc76808
      0   397           system                0       cv ffffa7557fc767c8
      0   396           system                0       cv ffffa7557fc76788
      0   395           system                0       cv ffffa7557fc33a08
      0   394           system                0       cv ffffa7557fc339c8
      0   393           system                0       cv ffffa7557fc33988
      0   392           system                0       cv ffffa7557fc33948
      0   391           system                0       cv ffffa7557fc33908
      0   390           system                0       cv ffffa7557fc338c8
      0   389           system                0       cv ffffa7557fc33888
      0   388           system                0       cv ffffa7557fc33848
      0   387           system                0       cv ffffa7557fc33808
      0   386           system                0       cv ffffa7557fc337c8
      0   385           system                0       cv ffffa7557fc33788
      0   384           system                0       cv ffffa7557fc33748
      0   296           system                0       cv ffffa7557fbd4888
      0   299           system                0       cv ffffa7557fbd4848
      0    31           system                0       cv ffffa7557fbd4808
      0    63           system                0       cv ffffa7557fbd47c8
      0   190           system                0       cv ffffa7557fbd4788
      0   127           system                0       cv ffffa7557fbd4748
      0   254           system                0       cv ffffa7557fbd4708
      0   189           system                0       cv ffffa7557fbd46c8
      0   188           system                0       cv ffffa7557fbd4688
      0   187           system                0       cv ffffa7557fbd4648
      0   186           system                0       cv ffffa7557fbd4608
      0   185           system                0       cv ffffa7557fbd45c8
      0   184           system                0       cv ffffa7557fb901c8
      0   182           system                0       cv ffffa7557f945978
      0   181           system                0       cv ffffa7557f9454c0
      0   177           system                0       cv ffffa7557ef104c0
      0   176           system                0       cv ffffa7557f137978
      0   174           system                0       cv ffffa7557f991848
      0   165           system                0   kpause ffffa7557fa11000
      0   163           system                0       cv ffffac8042253ba0
      0   162           system                0       cv ffffac80422533b0
      0   161           system                0       cv ffffac8042252bc0
      0   160           system                0       cv ffffac80422523d0
      0    95           system                0       cv ffffac8042251be0
      0   221           system                0       cv   usb_taskq+0x58
      0   220           system                0       cv   usb_taskq+0x18
      0   219           system                0       cv ffffac8830857010
      0   213           system                0       cv ffffac883081a010
      0   207           system                0       cv ffffac88307dd010
      0   201           system                0       cv ffffac88307a0010
      0   195           system                0       cv ffffac8830763010
      0   123           system                0       cv ffffac8830726010
      0   117           system                0       cv ffffac88306e9010
      0   111           system                0       cv ffffac88306ac010
      0   105           system                0       cv ffffac883066f010
      0    99           system                0       cv ffffac8830632010
      0    28           system                0       cv ffffac882fc86010
      0    22           system                0       cv ffffa75c4bdaee08
      0    21           system                0       cv ffffa75c4bdaed08
      0    20           system                0       cv ffffa75c4bdaec08
      0    19           system                0       cv ffffa75c4bdaeb08
      0    18           system                0       cv ffffa75c4bdaea08
      0    17           system                0       cv           gc+0x8
      0    16           system                0       cv sysmon_task_queue_cv
      0    15           system                0       cv ffffa75c4ad646c8
      0    14           system                0       cv ffffa75c4ad64588
      0    13           system                0       cv pendfree_thread_cv
      0    12           system                0       cv ffffa75c4ad64448
      0    11           system                0       cv ffffa75c4ad64308
      0    10           system                0       cv ffffa75c4ad641c8
      0     9           system                0       cv ffffa75c4bdae728
      0     8           system                0       cv module_thread_cv
      0     7           system                0       cv 
 cpu_info_primary+0x10
      0     0           system                0   kpause             lwp0
 crash> bt/a ffffa755807c9c00
 trace: pid 556 lid 556 at 0xffffffff8069dab2
 comintr() at comintr+0x313
 crash> bt/a ffffa7558000e400
 trace: pid 0 lid 311 at 0xffffac88411ddc60
 bdev_strategy() at bdev_strategy+0xe6
 spec_strategy() at spec_strategy+0x6e
 VOP_STRATEGY() at VOP_STRATEGY+0x3c
 dkstart() at dkstart+0x13e
 bdev_strategy() at bdev_strategy+0x81
 spec_strategy() at spec_strategy+0x6e
 VOP_STRATEGY() at VOP_STRATEGY+0x3c
 bwrite() at bwrite+0x1e5
 VOP_BWRITE() at VOP_BWRITE+0x5b
 vflushbuf() at vflushbuf+0xd2
 ffs_vfs_fsync() at ffs_vfs_fsync+0x106
 spec_fsync() at spec_fsync+0x4a
 VOP_FSYNC() at VOP_FSYNC+0x47
 sched_sync() at sched_sync+0x273
 crash> bt/a ffffa7557fb68400
 trace: pid 0 lid 178 at 0xffffac8840e3cf80
 sleepq_block() at sleepq_block+0x298
 cv_timedwait() at cv_timedwait+0xde
 usb_event_thread() at usb_event_thread+0x96
 crash> bt/a ffffa7557fb3c800
 trace: pid 0 lid 175 at 0xffffac8840e27f80
 sleepq_block() at sleepq_block+0x298
 cv_timedwait() at cv_timedwait+0xde
 usb_event_thread() at usb_event_thread+0x96
 crash> bt/a ffffa7557ede5c00
 trace: pid 0 lid 122 at 0xffffac8830726000
 _KERNEL_OPT_MEMORY_RBFLAGS() at ffffa7557ed43880
 crash> bt/a ffffa7557ede5800
 trace: pid 0 lid 121 at 0xffffac88307510e0
 softint_dispatch() at softint_dispatch+0x112
 DDB lost frame for Xsoftintr+0x4c, trying 0xffffac88307510f0
 Xsoftintr() at Xsoftintr+0x4c
 --- interrupt ---
 0:
 crash> bt/a ffffa7557ed56000
 trace: pid 0 lid 115 at 0xffffac88306e9000
 _KERNEL_OPT_MEMORY_RBFLAGS() at ffffa7557ebdef40

From: Taylor R Campbell <riastradh@NetBSD.org>
To: triaxx@NetBSD.org
Cc: gnats-bugs@NetBSD.org, netbsd-bugs@NetBSD.org
Subject: Re: kern/58069: Panic when trying to connect tty
Date: Sun, 24 Mar 2024 03:15:37 +0000

 > Date: Sat, 23 Mar 2024 20:25:06 +0100
 > From: triaxx@NetBSD.org
 > 
 > crash> bt/a ffffa755807c9c00
 > trace: pid 556 lid 556 at 0xffffffff8069dab2
 > comintr() at comintr+0x313

 This one is:

 556  > 556 7   0   8020000   ffffa755807c9c00           ttyflags

 Now that's weird -- this crash dump is from the REMOTE machine using
 ucom0, isn't it?  Not the TARGET machine using com0?  So it's curious
 that comintr should appear in the stack trace of the ttyflags program.

 > crash> bt/a ffffa7558000e400
 > trace: pid 0 lid 311 at 0xffffac88411ddc60
 > bdev_strategy() at bdev_strategy+0xe6
 > [...]

 This one is:

 0    > 311 7   3       240   ffffa7558000e400            ioflush

 Probably not interesting here.

 > crash> bt/a ffffa7557fb68400
 > trace: pid 0 lid 178 at 0xffffac8840e3cf80
 > sleepq_block() at sleepq_block+0x298
 > cv_timedwait() at cv_timedwait+0xde
 > usb_event_thread() at usb_event_thread+0x96
 > crash> bt/a ffffa7557fb3c800
 > trace: pid 0 lid 175 at 0xffffac8840e27f80
 > sleepq_block() at sleepq_block+0x298
 > cv_timedwait() at cv_timedwait+0xde
 > usb_event_thread() at usb_event_thread+0x96

 These ones are weird, because they are supposed to be currently
 running on the CPU, but instead the stack trace shows them sleeping:

 0    > 178 7   4       240   ffffa7557fb68400               usb3
 ...
 0    > 175 7   2       240   ffffa7557fb3c800               usb0

 > crash> bt/a ffffa7557ede5c00
 > trace: pid 0 lid 122 at 0xffffac8830726000
 > _KERNEL_OPT_MEMORY_RBFLAGS() at ffffa7557ed43880

 This one is:

 0    > 122 7   6       200   ffffa7557ede5c00          softser/6

 But what is it doing?  My guess is that it's stuck waiting for a lock,
 held by something in kpause or similar, which is only woken by a
 callout, which can't run as long as a higher-priority softint like
 this one is stuck.

 > crash> bt/a ffffa7557ede5800
 > trace: pid 0 lid 121 at 0xffffac88307510e0
 > softint_dispatch() at softint_dispatch+0x112
 > DDB lost frame for Xsoftintr+0x4c, trying 0xffffac88307510f0
 > Xsoftintr() at Xsoftintr+0x4c
 > --- interrupt ---
 > 0:

 This one is:

 0    > 121 7   6       200   ffffa7557ede5800          softclk/6

 It has presumably been interrupted by softser/6 above.

 > crash> bt/a ffffa7557ed56000
 > trace: pid 0 lid 115 at 0xffffac88306e9000
 > _KERNEL_OPT_MEMORY_RBFLAGS() at ffffa7557ebdef40

 This one is:

 0    > 115 7   5       200   ffffa7557ed56000          softclk/5

 It might be waiting for the same lock as softser/6, but what lock is
 that?

 Any chance you could make the kernel and core dump available?

From: triaxx@NetBSD.org
To: Taylor R Campbell <riastradh@NetBSD.org>
Cc: gnats-bugs@NetBSD.org, netbsd-bugs@NetBSD.org
Subject: Re: kern/58069: Panic when trying to connect tty
Date: Sun, 24 Mar 2024 09:10:36 +0100

 >> crash> bt/a ffffa755807c9c00
 >> trace: pid 556 lid 556 at 0xffffffff8069dab2
 >> comintr() at comintr+0x313
 > 
 > This one is:
 > 
 > 556  > 556 7   0   8020000   ffffa755807c9c00           ttyflags
 > 
 > Now that's weird -- this crash dump is from the REMOTE machine using
 > ucom0, isn't it?  Not the TARGET machine using com0?  So it's curious
 > that comintr should appear in the stack trace of the ttyflags program.

 No, the crash dump is from the TARGET machine using com0. I have edited 
 the PR to fix my mistake in the description of the problem.

 > Any chance you could make the kernel and core dump available?

 The kernel and core are now available from: 
 http://ftp.triaxx.org/pub/NetBSD/dumps/NetBSD-10.99.10/

>Unformatted:

NetBSD Home
NetBSD PR Database Search

(Contact us) $NetBSD: query-full-pr,v 1.47 2022/09/11 19:34:41 kim Exp $
$NetBSD: gnats_config.sh,v 1.9 2014/08/02 14:16:04 spz Exp $
Copyright © 1994-2024 The NetBSD Foundation, Inc. ALL RIGHTS RESERVED.