Another one, it happened with below diff applied. Didn't had time yet to
dive into this.

-----------------------------------------------
commit 94d934f45b45bd87293428425164d8120ec10255 (main)
from: Mikolaj Kucharski <[email protected]>
date: Mon Sep 20 08:35:49 2021 UTC
 
 ignore the SWBA interrupt while we're not in RUN state
 
diff 2cd8545e477139b6c38791b115f0a983e1171705 
5a9d942f0a06316203dd6a5c1b2d057187962d57
blob - 5af62956495d2ce56101817ff6130d5c4b933a60
blob + 5f603acd47d7f2ce52dd9ef7e0761aea0c3d4d37
--- dev/ic/ar5008.c
+++ dev/ic/ar5008.c
@@ -1245,6 +1245,13 @@ ar5008_swba_intr(struct athn_softc *sc)
        uint8_t ridx, hwrate;
        int error, totlen;
 
+       /* Stefan Sperling <stsp () stsp ! name> */
+       if (ic->ic_opmode != IEEE80211_M_HOSTAP ||
+           ic->ic_state != IEEE80211_S_RUN) {
+               printf("MMM: %s() [%s|%d] return (ENOTSUP)\n", __func__, 
__FILE_NAME__, __LINE__);
+               /* return (ENOTSUP); */
+       }
+
        if (ic->ic_tim_mcast_pending &&
            mq_empty(&ni->ni_savedq) &&
            SIMPLEQ_EMPTY(&sc->txq[ATHN_QID_CAB].head))

-----------------------------------------------
commit d655a89071a6be117fc8d839bb3697696d629e5c
from: Mikolaj Kucharski <[email protected]>
date: Mon Sep 20 08:35:49 2021 UTC
 
 custom debugging changes
 
diff 4016d99f4a6705e785703d1696d76a53d8b5bc88 
2cd8545e477139b6c38791b115f0a983e1171705
blob - ff58831e5f15802b7468e8d25332b7510b7ed333
blob + 9c1bfede2f3203b632dcd0cb0e81340fb01de4b2
--- arch/hppa/hppa/mutex.c
+++ arch/hppa/hppa/mutex.c
@@ -74,7 +74,7 @@ mtx_enter_try(struct mutex *mtx)
 
 #ifdef DIAGNOSTIC
        if (__predict_false(mtx->mtx_owner == ci))
-               panic("mtx %p: locking against myself", mtx);
+               panic("%s: mtx %p: locking against myself", __func__, mtx);
 #endif
 
        asm volatile (
@@ -108,7 +108,7 @@ mtx_enter(struct mutex *mtx)
 
 #ifdef DIAGNOSTIC
        if (__predict_false(mtx->mtx_owner == ci))
-               panic("mtx %p: locking against myself", mtx);
+               panic("%s: mtx %p: locking against myself", __func__, mtx);
 #endif
 
        if (mtx->mtx_wantipl != IPL_NONE)
blob - ff04d0699000c7a8975c7d1238368d8f34a4c128
blob + 03eb78368c58af12e0b664d2d1165ac746971453
--- arch/m88k/m88k/mutex.c
+++ arch/m88k/m88k/mutex.c
@@ -104,7 +104,7 @@ mtx_enter_try(struct mutex *mtx)
 
 #ifdef DIAGNOSTIC
        if (__predict_false(mtx->mtx_owner == ci))
-               panic("mtx %p: locking against myself", mtx);
+               panic("%s: mtx %p: locking against myself", __func__, mtx);
 #endif
        if (mtx->mtx_wantipl != IPL_NONE)
                splx(s);
@@ -126,7 +126,7 @@ mtx_enter(struct mutex *mtx)
 
 #ifdef DIAGNOSTIC
        if (__predict_false(mtx->mtx_owner == ci))
-               panic("mtx %p: locking against myself", mtx);
+               panic("%s: mtx %p: locking against myself", __func__, mtx);
 #endif
 
        if (mtx->mtx_wantipl != IPL_NONE)
blob - 6ace32dbff3f26941eab5836419dc7e600f1b32e
blob + f2111282aa6e3b8db97208f462a7b73613f5481c
--- dev/ic/aic6915.c
+++ dev/ic/aic6915.c
@@ -492,7 +492,7 @@ sf_watchdog(struct ifnet *ifp)
 {
        struct sf_softc *sc = ifp->if_softc;
 
-       printf("%s: device timeout\n", sc->sc_dev.dv_xname);
+       printf("%s: device timeout [%s()|%s|%d]\n", sc->sc_dev.dv_xname, 
__func__, __FILE_NAME__, __LINE__);
        ifp->if_oerrors++;
 
        (void) sf_init(ifp);
blob - 6208492c94c2af3d15e158e8329f881565efd232
blob + 09f644585c55d24f495fc3fe35926d68ffc5ff1c
--- dev/ic/an.c
+++ dev/ic/an.c
@@ -1261,7 +1261,7 @@ an_watchdog(struct ifnet *ifp)
 
        if (sc->sc_tx_timer) {
                if (--sc->sc_tx_timer == 0) {
-                       printf("%s: device timeout\n", ifp->if_xname);
+                       printf("%s: device timeout [%s()|%s|%d]\n", 
ifp->if_xname, __func__, __FILE_NAME__, __LINE__);
                        ifp->if_oerrors++;
                        an_init(ifp);
                        return;
blob - ea1f278ed8f363012fc1922c04adf311b50d38e9
blob + 5af62956495d2ce56101817ff6130d5c4b933a60
--- dev/ic/ar5008.c
+++ dev/ic/ar5008.c
@@ -1511,6 +1511,10 @@ ar5008_tx(struct athn_softc *sc, struct mbuf *m, struc
                        if (ar5008_ccmp_encap(m, hdrlen, k) != 0)
                                return (ENOBUFS);
                } else {
+                       printf("MMM: %s() [%s|%d]\n", __func__, __FILE_NAME__, 
__LINE__);
+                       if ((k->k_flags & IEEE80211_KEY_SWCRYPTO) == 0)
+                               printf("MMM: %s() [%s|%d]: key unset for sw 
crypto: %d\n",
+                                       __func__, __FILE_NAME__, __LINE__, 
k->k_id);
                        if ((m = ieee80211_encrypt(ic, m, k)) == NULL)
                                return (ENOBUFS);
                        k = NULL; /* skip hardware crypto further below */
blob - 9a640630ecdd5e55125bae10cbd31665bf7ce9e6
blob + c9411ad18013dd674437b97d25e0dcd68dad2a5c
--- dev/ic/ath.c
+++ dev/ic/ath.c
@@ -931,7 +931,7 @@ ath_watchdog(struct ifnet *ifp)
                return;
        if (sc->sc_tx_timer) {
                if (--sc->sc_tx_timer == 0) {
-                       printf("%s: device timeout\n", ifp->if_xname);
+                       printf("%s: device timeout [%s()|%s|%d]\n", 
ifp->if_xname, __func__, __FILE_NAME__, __LINE__);
                        ath_reset(sc, 1);
                        ifp->if_oerrors++;
                        sc->sc_stats.ast_watchdog++;
blob - 24f8a4db31a511271251fa219de71fc28df63e91
blob + f528b8a493f147895e05764ba47b3b5cba43fe94
--- dev/ic/athn.c
+++ dev/ic/athn.c
@@ -2874,7 +2874,8 @@ athn_watchdog(struct ifnet *ifp)
 
        if (sc->sc_tx_timer > 0) {
                if (--sc->sc_tx_timer == 0) {
-                       printf("%s: device timeout\n", sc->sc_dev.dv_xname);
+                       /* MMM athn0: device timeout 
[athn_watchdog()|athn.c|2911] */
+                       printf("%s: device timeout [%s()|%s|%d]\n", 
sc->sc_dev.dv_xname, __func__, __FILE_NAME__, __LINE__);
                        athn_stop(ifp, 1);
                        (void)athn_init(ifp);
                        ifp->if_oerrors++;
blob - 9e1010a7c24096873691c6dbb4a42b4f36d25fa4
blob + 5ad5835df285576943ddb35ddfd587412952663b
--- dev/usb/ehci.c
+++ dev/usb/ehci.c
@@ -870,6 +870,7 @@ ehci_idone(struct usbd_xfer *xfer)
        struct ehci_soft_qtd *sqtd;
        u_int32_t status = 0, nstatus = 0;
        int actlen, cerr;
+       u_int32_t sqtd_len, ehci_qtd_len;
 
 #ifdef DIAGNOSTIC
        {
@@ -899,8 +900,20 @@ ehci_idone(struct usbd_xfer *xfer)
                if (sqtd->qtd.qtd_next == htole32(EHCI_LINK_TERMINATE) &&
                    EHCI_QTD_GET_BYTES(status) == 0)
                        status &= ~EHCI_QTD_HALTED;
-               if (EHCI_QTD_GET_PID(status) != EHCI_QTD_PID_SETUP)
-                       actlen += sqtd->len - EHCI_QTD_GET_BYTES(status);
+               if (EHCI_QTD_GET_PID(status) != EHCI_QTD_PID_SETUP) {
+                       sqtd_len = sqtd->len;
+                       ehci_qtd_len = EHCI_QTD_GET_BYTES(status);
+                       if (ehci_qtd_len > sqtd_len) {
+                               printf("MMM S1 %s: actlen=%d, sqtd_len=%u, 
ehci_qtd_len=%u, status=0x%x\n",
+                                       __func__, actlen, sqtd_len, 
ehci_qtd_len, status);
+                       }
+                       actlen += sqtd_len - ehci_qtd_len;
+                       if (ehci_qtd_len > sqtd_len) {
+                               printf("MMM S2 %s: actlen=%d, sqtd_len=%u, 
ehci_qtd_len=%u, status=0x%x\n",
+                                       __func__, actlen, sqtd_len, 
ehci_qtd_len, status);
+                       }
+                       KASSERT(sqtd_len >= ehci_qtd_len);
+               }
        }
 
        cerr = EHCI_QTD_GET_CERR(status);
blob - 08ffda8c9aaede9c901d97a43bf2873591e8df19
blob + 3a607bf9edcbdaf4c69d63c5c08323e0476adaff
--- dev/usb/if_athn_usb.c
+++ dev/usb/if_athn_usb.c
@@ -2460,7 +2460,7 @@ athn_usb_watchdog(struct ifnet *ifp)
 
        if (sc->sc_tx_timer > 0) {
                if (--sc->sc_tx_timer == 0) {
-                       printf("%s: device timeout\n", sc->sc_dev.dv_xname);
+                       printf("%s: device timeout [%s()|%s|%d]\n", 
sc->sc_dev.dv_xname, __func__, __FILE_NAME__, __LINE__);
                        /* athn_usb_init(ifp); XXX needs a process context! */
                        ifp->if_oerrors++;
                        return;
blob - c2133041168e826909415759d2009bd74dd48aee
blob + 2d8e288d7429b4a89c66d1b0555e3df1b15282ce
--- dev/usb/if_urtwn.c
+++ dev/usb/if_urtwn.c
@@ -1306,7 +1306,8 @@ urtwn_rxeof(struct usbd_xfer *xfer, void *priv,
        int len, totlen, pktlen, infosz, npkts, error, align;
 
        if (__predict_false(status != USBD_NORMAL_COMPLETION)) {
-               DPRINTF(("RX status=%d\n", status));
+               printf("MMM %s() [%s|%d]\n", __FUNCTION__, __FILE__, __LINE__);
+               printf("RX status=%d\n", status);
                if (status == USBD_STALLED)
                        usbd_clear_endpoint_stall_async(sc->rx_pipe);
                if (status != USBD_CANCELLED)
@@ -1316,7 +1317,8 @@ urtwn_rxeof(struct usbd_xfer *xfer, void *priv,
        usbd_get_xfer_status(xfer, NULL, NULL, &len, NULL);
 
        if (__predict_false(len < sizeof(*rxd))) {
-               DPRINTF(("xfer too short %d\n", len));
+               printf("MMM %s() [%s|%d]\n", __FUNCTION__, __FILE__, __LINE__);
+               printf("xfer too short %d\n", len);
                goto resubmit;
        }
        buf = data->buf;
@@ -1424,7 +1426,8 @@ urtwn_txeof(struct usbd_xfer *xfer, void *priv,
        TAILQ_INSERT_TAIL(&sc->tx_free_list, data, next);
 
        if (__predict_false(status != USBD_NORMAL_COMPLETION)) {
-               DPRINTF(("TX status=%d\n", status));
+               printf("MMM %s() [%s|%d]\n", __FUNCTION__, __FILE__, __LINE__);
+               printf("TX status=%d\n", status);
                if (status == USBD_STALLED)
                        usbd_clear_endpoint_stall_async(data->pipe);
                ifp->if_oerrors++;
blob - 3c613bdafcb09d0e0d919261aaf97dbb547ca093
blob + 94b5dab69090a792d7315a0d74d7fcf24c006b14
--- dev/usb/umsm.c
+++ dev/usb/umsm.c
@@ -257,7 +257,6 @@ static const struct umsm_type umsm_devs[] = {
        {{ USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC8355}, 0},
        {{ USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AIRCARD_340U}, 0},
        {{ USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AIRCARD_770S}, 0},
-       {{ USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_MC7455}, 0},
 
        {{ USB_VENDOR_SIMCOM, USB_PRODUCT_SIMCOM_SIM7600E}, 0},
 
blob - 1483faf72e1fe35182778da8b087e91f2131040f
blob + 759e5cdf78e11a8b559568c89f0ed5c8e984ff55
--- dev/usb/usbdi.c
+++ dev/usb/usbdi.c
@@ -750,13 +750,12 @@ usb_transfer_complete(struct usbd_xfer *xfer)
        if (polling)
                pipe->running = 0;
 
-#ifdef DIAGNOSTIC
        if (xfer->actlen > xfer->length) {
                printf("%s: actlen > len %u > %u\n", __func__, xfer->actlen,
                    xfer->length);
+               KASSERT(xfer->actlen <= xfer->length);
                xfer->actlen = xfer->length;
        }
-#endif
 
        if (usbd_xfer_isread(xfer) && xfer->actlen != 0 &&
            (xfer->flags & USBD_NO_COPY) == 0)
blob - 5cc55bb256a0f57d8187e6010cd4a72f7d70ee89
blob + 6aad671b6d424280523cc7481206492ba44191bd
--- kern/kern_lock.c
+++ kern/kern_lock.c
@@ -293,7 +293,7 @@ mtx_enter_try(struct mutex *mtx)
        owner = atomic_cas_ptr(&mtx->mtx_owner, NULL, ci);
 #ifdef DIAGNOSTIC
        if (__predict_false(owner == ci))
-               panic("mtx %p: locking against myself", mtx);
+               panic("%s: mtx %p: locking against myself", __func__, mtx);
 #endif
        if (owner == NULL) {
                membar_enter_after_atomic();
@@ -326,7 +326,7 @@ mtx_enter(struct mutex *mtx)
 
 #ifdef DIAGNOSTIC
        if (__predict_false(mtx->mtx_owner == ci))
-               panic("mtx %p: locking against myself", mtx);
+               panic("%s: mtx %p: locking against myself", __func__, mtx);
 #endif
 
        if (mtx->mtx_wantipl != IPL_NONE)
blob - d79b59748e8dd9d1bf6b8492176ec8a731aacb69
blob + ad4cacc7f2f9fbd773b6ec632cb2e340d2ef32eb
--- kern/kern_rwlock.c
+++ kern/kern_rwlock.c
@@ -171,8 +171,8 @@ rw_enter_diag(struct rwlock *rwl, int flags)
        case RW_WRITE:
        case RW_READ:
                if (RW_PROC(curproc) == RW_PROC(rwl->rwl_owner))
-                       panic("rw_enter: %s locking against myself",
-                           rwl->rwl_name);
+                       panic("%s: %s locking against myself",
+                           __func__, rwl->rwl_name);
                break;
        case RW_DOWNGRADE:
                /*
blob - f13b535c7cb7dab22213acc9edd9541269db10e0
blob + ca2260eb35ae54112065567f4dbd6db111fb03ee
--- net80211/ieee80211_crypto.c
+++ net80211/ieee80211_crypto.c
@@ -194,11 +194,20 @@ ieee80211_get_txkey(struct ieee80211com *ic, const str
     struct ieee80211_node *ni)
 {
        int kid;
+       /* struct ieee80211_key *k = NULL; */
 
        if ((ic->ic_flags & IEEE80211_F_RSNON) &&
            !IEEE80211_IS_MULTICAST(wh->i_addr1) &&
-           ni->ni_rsncipher != IEEE80211_CIPHER_USEGROUP)
+           ni->ni_rsncipher != IEEE80211_CIPHER_USEGROUP) {
                return &ni->ni_pairwise_key;
+               /*
+               k = &ni->ni_pairwise_key;
+               if ((k->k_id == 0) && ((k->k_flags & IEEE80211_KEY_SWCRYPTO) == 
0)) {
+                       printf("MMM: %s() [%s|%d]: key unset for sw crypto: 
%d\n", __func__, __FILE_NAME__, __LINE__, k->k_id);
+               }
+               return k;
+               */
+       }
 
        /* All other cases (including WEP) use a group key. */
        if (ni->ni_flags & IEEE80211_NODE_MFP)
@@ -207,6 +216,14 @@ ieee80211_get_txkey(struct ieee80211com *ic, const str
                kid = ic->ic_def_txkey;
 
        return &ic->ic_nw_keys[kid];
+       /* __FILE__, __BASE_FILE__ or __FILE_NAME__ */
+       /*
+       k = &ic->ic_nw_keys[kid];
+       if ((k->k_flags & IEEE80211_KEY_SWCRYPTO) == 0) {
+               printf("MMM: %s() [%s|%d]: key unset for sw crypto: %d\n", 
__func__, __FILE_NAME__, __LINE__, k->k_id);
+       }
+       return k;
+       */
 }
 
 struct ieee80211_key *
@@ -257,6 +274,17 @@ struct mbuf *
 ieee80211_encrypt(struct ieee80211com *ic, struct mbuf *m0,
     struct ieee80211_key *k)
 {
+       if ((k->k_flags & IEEE80211_KEY_SWCRYPTO) == 0) {
+               printf("MMM: %s() [%s|%d]: k_id: %d\n", __func__, 
__FILE_NAME__, __LINE__, k->k_id);
+               printf("MMM: %s() [%s|%d]: k_flags: %d\n", __func__, 
__FILE_NAME__, __LINE__, k->k_flags);
+               printf("MMM: %s() [%s|%d]: k_len: %d\n", __func__, 
__FILE_NAME__, __LINE__, k->k_len);
+               printf("MMM: %s() [%s|%d]: k_cipher: %d\n", __func__, 
__FILE_NAME__, __LINE__, k->k_cipher);
+               printf("MMM: %s() [%s|%d]: k_key: 0x", __func__, __FILE_NAME__, 
__LINE__);
+               for (int i = 0; i < sizeof(k->k_key); i++)
+                       printf("%02x", k->k_key[i]);
+               printf("\n");
+       }
+
        if ((k->k_flags & IEEE80211_KEY_SWCRYPTO) == 0)
                panic("%s: key unset for sw crypto: id=%d cipher=%d flags=0x%x",
                    __func__, k->k_id, k->k_cipher, k->k_flags);







== 2021-09-22T14:49:06Z ==

set $lines = 0
ddb{0}> 

set $maxwidth = 0
ddb{0}> 



show panic
*cpu0: ieee80211_encrypt: key unset for sw crypto: id=0 cipher=0 flags=0x0
ddb{0}> trace
db_enter() at db_enter+0x10
panic(ffffffff81ea79d7) at panic+0xbf
ieee80211_encrypt(ffff80000009c048,fffffd80c307ce00,ffff800000d3e1c0) at 
ieee80211_encrypt+0x473
ar5008_tx(ffff80000009c000,fffffd80c307ce00,ffff800000d3e000,0) at 
ar5008_tx+0x1e7
athn_start(ffff80000009c048) at athn_start+0x108
ar5008_intr(ffff80000009c000) at ar5008_intr+0x216
intr_handler(ffff8000225a6d80,ffff80000008f780) at intr_h

andler+0x6e
Xintr_ioapic_level3_untramp() at Xintr_ioapic_level3_untramp+0x193
acpicpu_idle() at acpicpu_idle+0x11f
sched_idle(ffffffff821a7ff0) at sched_idle+0x27e
end trace frame: 0x0, count: -10
ddb{0}> machine cpuinfo
*   0: ddb
    1: stopped
    2: stopped
    3: stopped
ddb{0}> 



show registers
rdi                                0
rsi                             0x14
rbp               0xffff8000225a6ac0
rbx               0xffff80000009c048
rdx               0xc80000000c000010
rcx                            0x286
rax                             0x4b
r8                 0x101010101010101
r9                                 0
r10                                0
r11               0x63a7e7a65210de01
r12               0xffffffff821a8a00    cpu_info_full_primary+0x2a00
r13               0xffff800000d3e1c0
r14                                0
r15               0xffffffff81ea79d7    substchar+0x8a3f
rip               0xffffffff81782410    db_enter+0x10
cs                               0x8
rflags                         0x202
rsp               0xffff8000225a6ac0
ss                              0x10
db_enter+0x10:  popq    %rbp
ddb{0}> show proc
PROC (idle0) pid=446556 stat=onproc
    flags process=14000<NOZOMBIE,SYSTEM> proc=40000200<SYSTEM,CPUPEG>
    pri=0, usrpri=50, 

nice=20
    forw=0x5dedabd1dc7857e3, list=0xffff8000fffffa40,0xffff8000fffff510
    process=0xffff8000ffffd3b0 user=0xffff8000225a1000, 
vmspace=0xffffffff822d2e78
    estcpu=0, cpticks=3931221, pctcpu=0.0
    user=0, sys=0, intr=6
ddb{0}> ps
   PID     TID   PPID    UID  S       FLAGS  WAIT          COMMAND
 93197  269633  63037      0  3    0x100082  nanoslp       sleep
 74181  512547  23534      0  3    0x100082  nanoslp       sleep
 64616   82448      1      0  3    0x100083  ttyin         getty


 90799  424682      1      0  3    0x100098  poll          cron
 39349  174855      1      0  3    0x100080  htplev        hotplugd
 54533   23020      1  32767  3    0x100083  piperd        logger
 79712  207066      1  32767  3    0x100083  nanoslp       perl
 42620  350509      1    658  3        0x80  nanoslp       vnstatd
 14039  505316      1      0  3        0x82  kqread        cupsd
  1292  322791      1    572  3        0x90  poll          dbus-daemon
 63037  268410      1      0  3    0x10008b  sigsusp       sh
 23131   87442      1    577  3        0x90  poll          openvpn
 23534  179025      1      0  3    0x10008b  sigsusp       sh
 18057   90123  64514     95  3    0x100092  kqread        smtpd
 19224   92231  64514    103  3    0x100092  kqread        smtpd
  8900   26494  64514     95  3    0x100092  kqread        smtpd
 36661    7694  64514     95  3    0x100092  kqread        smtpd
 53055  478708  64514     95  3    0x100092  kqread        smtpd
 39450  371458  64514     95  3    0x100092  kqread        smtpd
 64514  254604      1      0  3    0x100080  kqread        smtpd
 79779  401574      1     77  3    0x100090  poll          dhcpd
 75721  196463      1      0  3    0x100080  kqread        ifstated
 43987  493497      1      0  3        0x88  select        sshd
 72197  464059      1      0  3    0x100080  poll          ntpd
 98673  151944  78082     83  3    0x100092  poll          ntpd
 78082   21536      1     83  3    0x100092  poll          ntpd
 23605  168973      1     53  3        0x90  kqread        unbound
 18006   43350  83180     73  3    0x100090  kqread        syslogd
 83180  509804      1      0  3    0x100082  netio         syslogd
 75333  335194      1      0  3    0x100080  kqread        resolvd
 87626  493762  63632     77  3    0x100092  kqread        dhcpleased
 24521  341713  63632     77  3    0x100092  kqread        dhcpleased
 63632  159518      1      0  3        0x80  kqread        dhcpleased
 66721  462825      0      0  3     0x14200  bored         wg_crypt
 62956   44274      0      0  3     0x14200  bored         wg_crypt
 10844  222692      0      0  3     0x14200  bored         wg_crypt
 60160  239148      0      0  3     0x14200  bored         wg_crypt
 82290  346650      0      0  3     0x14200  bored         wg_handshake
 89360  347133      0      0  3     0x14200  bored         wg_handshake
 45553  523622  94160    115  3    0x100092  kqread        slaacd
 23620  408790  94160    115  3    0x100092  kqread        slaacd
 94160  143545      1      0  3    0x100080  kqread        slaacd
 23875  243972      0      0  3     0x14200  bored         smr
 46125  504762      0      0  3     0x14200  pgzero        zerothread
 13868   43984      0      0  3     0x14200  aiodoned      aiodoned
 35256  501336      0      0  3     0x14200  syncer        update
 18459   31744      0      0  3     0x14200  cleaner       cleaner
 33804  253484      0      0  3     0x14200  reaper        reaper
 67697  245471      0      0  3     0x14200  pgdaemon      pagedaemon
  6986  275517      0      0  3     0x14200  bored         crynlk
 80115    3425      0      0  3     0x14200  bored         crypto
 61625  297306      0      0  3     0x14200  bored         sensors
 18564   54327      0      0  3     0x14200  mmctsk        sdmmc0
 13744  169035      0      0  3     0x14200  usbtsk        usbtask
 15915  115181      0      0  3     0x14200  usbatsk       usbatsk
 32229  484495      0      0  3  0x40014200  acpi0         acpi0
 72370    3240      0      0  7  0x40014200                idle3
 90436  193294      0      0  7  0x40014200                idle2
 21460  411298      0      0  7  0x40014200                idle1
 92792  258247      0      0  3     0x14200  bored         softnet
  9093  129822      0      0  3     0x14200  bored         systqmp
 76922  477793      0      0  3     0x14200  bored         systq
 76768  175511      0      0  3  0x40014200  bored         softclock
*28053  446556      0      0  7  0x40014200                idle0
     1  171502      0      0  3        0x82  wait          init
     0       0     -1      0  3     0x10200  scheduler     swapper
ddb{0}> ps /o
    TID    PID    UID     PRFLAGS     PFLAGS  CPU  COMMAND
ddb{0}> 



sh all locks
No such command
ddb{0}> show malloc
           Type InUse  MemUse  HighUse   Limit  Requests Type Lim
         devbuf  3682   7737K    7941K  78643K      9975        0
            pcb    14      8K       8K  78643K        16        0
         rtable   185     12K      12K  78643K     21590        0
         ifaddr   253     25K      25K  78643K       255        0
       counters    90     68K      68K  78643K        90        0
       ioctlops     0      0K       4K  78643K      2082  

      0
            iov     0      0K       0K  78643K         3        0
          mount     8      8K       8K  78643K         8        0
            log     0      0K       0K  78643K         4        0
         vnodes    22      1K      75K  78643K      1213        0
      UFS quota     1     32K      32K  78643K         1        0
      UFS mount    33     74K      74K  78643K        33        0
            shm     2      1K       1K  78643K         2        0
         VM map     2      0K       0K  78643K         2        0
            sem     2      0K       0K  78643K         2        0
        dirhash    42     20K      20K  78643K        69        0
           ACPI  2950    341K     365K  78643K     91600        0
      file desc     1      0K       0K  78643K         1        0
           proc    83     88K     137K  78643K      1607        0
    NFS srvsock     1      0K       0K  78643K         1        0
     NFS daemon     1     16K      16K  78643K         1        0
       in_multi    55      3K       3K  78643K        55        0
    ether_multi    12      0K       0K  78643K        12        0
    ISOFS mount     1     32K      32K  78643K         1        0
  MSDOSFS mount     1     16K      16K  78643K         1        0
           ttys    19     95K      95K  78643K        19        0
           exec     0      0K       2K  78643K      4617        0
        pagedep     1      8K       8K  78643K         1        0
       inodedep     1     32K      32K  78643K         1        0
         newblk     1      0K       0K  78643K         1        0
        VM swap     7    298K     298K  78643K         7        0
       UVM amap   546     35K      39K  78643K     41242        0
       UVM aobj     3      2K       2K  78643K         3        0
            USB    68     30K      31K  78643K        76        0
     USB device    14      8K       8K  78643K        14        0
        memdesc     1      4K       4K  78643K         1        0
    crypto data     1      1K       1K  78643K         1        0
    ip6_options     1      0K       0K  78643K        13        0
            NDP     9      0K       0K  78643K        13        0
           temp    40   4179K    4248K  78643K     70428        0
         kqueue    30     43K      43K  78643K        30        0
      SYN cache     2     16K      16K  78643K         2        0
ddb{0}> show all pools
Name      Size Requests Fail Releases Pgreq Pgrel Npage Hiwat Minpg Maxpg Idle
plcache    128       44    0       

 0     2     0     2     2     0     8    0
rtpcb      120       22    0       16     1     0     1     1     0     8    0
rtentry    112       73    0        6     2     0     2     2     0     8    0
unpcb      120      437    0      370     3     0     3     3     0     8    0
tcpqe       32     1266    0     1266   121   121     0     1     0     8    0
tcpcb      736     4333    0     4324  1034  1033     1     2     0     8    0
arp         88       17    0        6     1     0     1     1     0     8    0
inpcb      304    14820    0    14794  1148  1145     3     3     0     8    0
nd6         48        4    0        0     1     0     1     1     0     8    0
wgpeer     5032       1    0        0     1     0     1     1     0     8    0
wgaip       64        1    0        0     1     0     1     1     0     8    0
pfosfp      40     1428    0     1005     5     0     5     5     0     8    0
pfosfpen   112     1428    0      714    21     0    21    21     0     8    0
pfrke_plain 160      21    0        0     1     0     1     1     0     8    0
pfrktable  1344      27    0       13     2     0     2     2     0     8    0
pftag       88        1    0        0     1     0     1     1     0     8    0
pfqueue    264        1    0        0     1     0     1     1     0     8    0
pfruleitem  16    17850    0    17679     1     0     1     1     0     8    0
pfstitem    24    23425    0    23154     3     1     2     2     0     8    0
pfstkey    112    23425    0    23154    30    22     8     8     0     8    0
pfstate    320    21948    0    21738   100    82    18    18     0     8    0
pfrule     1360      32    0       16     3     1     2     3     0     8    0
art_heap8  4096       1    0        0     1     0     1     1     0     8    0
art_heap4  256      312    0        3    20     0    20    20     0     8    0
art_table   32      313    0        3     3     0     3     3     0     8    0
art_node    16       73    0        7     1     0     1     1     0     8    0
dirhash    1024     690    0       40    82     0    82    82     0     8    0
dino2pl    256    58814    0    38172  1305    14  1291  1291     0     8    0
ffsino     240    58814    0    38172  1229    14  1215  1215     0     8    0
nchpl      144    53682    0    49998   143     6   137   137     0     8    0
uvmvnodes   72    20660    0        0   376     0   376   376     0     8    0
vnodes     224    20660    0        0  1216     0  1216  1216     0     8    0
namei      1024  255337    0   255337  1410  1410     0     1     0     8    0
percpumem   32       34    0        0     1     0     1     1     0     8    0
ehcixfer   296       70    0       67     1     0     1     1     0     8    0
xhcixfer   280       41    0       40     1     0     1     1     0     8    0
pfiaddrpl  120        8    0        0     1     0     1     1     0     8    0
scxspl     216    88631    0    88631   543   542     1     2     0     8    1
plimitpl   152       67    0       41     2     0     2     2     0     8    0
sigapl     424     3070    0     3005    10     1     9    10     0     8    0
futexpl     56     4875    0     4875     1     1     0     1     0     8    0
knotepl    112      195    0        0     4     0     4     4     0     8    0
kqueuepl   184       20    0        1     1     0     1     1     0     8    0
pipepl     304      203    0      201     2     1     1     1     0     8    0
fdescpl    432     3043    0     3005     7     1     6     7     0     8    0
filepl     120    53953    0    53774     7     1     6     7     0     8    0
lockfpl    104     5065    0     5061     1     0     1     1     0     8    0
lockfspl    48     1089    0     1085     1     0     1     1     0     8    0
sessionpl  144       47    0       26     1     0     1     1     0     8    0
pgrppl      48       47    0       26     1     0     1     1     0     8    0
ucredpl     96     1536    0     1498   240   239     1     2     0     8    0
zombiepl   144     3005    0     3005   822   822     0     1     0     8    0
processpl  1008    3070    0     3005    11     0    11    11     0     8    0
procpl     672     3082    0     3017     7     0     7     7     0     8    0
sockpl     448    15279    0    15180  1190  1178    12    14     0     8    0
mcl8k      8192       4    0        0     1     0     1     1     0     8    0
mcl4k      4096    3034    0        0    46    29    17    27     0     8    0
mcl2k2     2112   18465    0        0    80    52    28    28     0     8    0
mcl2k      2048    1444    0        0    12     6     6     7     0     8    0
mtagpl      96      186    0        0     1     0     1     1     0     8    0
mbufpl     256    20093    0        0   100    48    52    52     0     8    0
bufpl      280    25691    0     5023  1480     3  1477  1477     0     8    0
anonpl      24  1083300    0  1059287   262    94   168   173     0   379    0
amapchunkpl 152   80499    0    79254   161   111    50    58     0   158    0
amappl16   200      358    0      348     2     1     1     1     0     8    0
amappl15   192     1514    0     1497   137   136     1     2     0     8    0
amappl14   184       62    0       43     3     2     1     1     0     8    0
amappl13   176      105    0      102     1     0     1     1     0     8    0
amappl12   168       30    0       25     2     1     1     1     0     8    0
amappl11   160      521    0      470     4     1     3     4     0     8    0
amappl10   152      853    0      836     4     1     3     4     0     8    0
amappl9    144      384    0      369     3     1     2     2     0     8    0
amappl8    136     4240    0     4208     2     0     2     2     0     8    0
amappl7    128     1474    0     1393    14    10     4     4     0     8    0
amappl6    120     1221    0     1185     7     5     2     2     0     8    0
amappl5    112     4970    0     4844    13     8     5     6     0     8    0
amappl4    104     7972    0     7515    16     2    14    15     0     8    0
amappl3     96     9858    0     9385    21     8    13    15     0     8    0
amappl2     88    21028    0    19896    50    15    35    38     0     8    0
amappl1     80   104775    0   102502   119    55    64    80     0     8    0
amappl      88    29745    0    29330    26    15    11    12     0    92    0
dma4096    4096       1    0        1     1     1     0     1     0     8    0
dma512     512        3    0        2     1     0     1     1     0     8    0
dma256     256       10    0       10     1     1     0     1     0     8    0
dma128     128        1    0        1     1     1     0     1     0     8    0
dma64       64       10    0       10     1     1     0     1     0     8    0
dma32       32        9    0        9     1     1     0     1     0     8    0
dma16       16       29    0       29     1     1     0     1     0     8    0
aobjpl      64        2    0        0     1     0     1     1     0     8    0
uaddrrnd    24     3043    0     3005     1     0     1     1     0     8    0
uaddrbest   32        2    0        0     1     0     1     1     0     8    0
uaddr       24     3043    0     3005     1     0     1     1     0     8    0
vmmpekpl   168   117298    0   117263     2     0     2     2     0     8    0
vmmpepl    168   864083    0   857519   602   240   362   400     0   357    0
vmsppl     272     3042    0     3005     4     0     4     4     0     8    0
rwobjpl     24   147586    0   142464    65    20    45    47     0     8    0
pdppl      4096    3042    0     3005   318   281    37    54     0     8    0
pvpl        32  2276405    0  2241668  1012   690   322   343     0   265    0
pmappl     192     3042    0     3005     3     0     3     3     0     8    0
extentpl    40       77    0       48     1     0     1     1     0     8    0
phpool     112     6758    0     4016   107    28    79    79     0     8    0
ddb{0}> show all procs
   PID     TID   PPID    UID  S       FLAGS  WAIT          COMMAND
 93197  269633  63037      0  3    0x100082  nanoslp   

    sleep
 74181  512547  23534      0  3    0x100082  nanoslp       sleep
 64616   82448      1      0  3    0x100083  ttyin         getty
 90799  424682      1      0  3    0x100098  poll          cron
 39349  174855      1      0  3    0x100080  htplev        hotplugd
 54533   23020      1  32767  3    0x100083  piperd        logger
 79712  207066      1  32767  3    0x100083  nanoslp       perl
 42620  350509      1    658  3        0x80  nanoslp       vnstatd
 14039  505316      1      0  3        0x82  kqread        cupsd
  1292  322791      1    572  3        0x90  poll          dbus-daemon
 63037  268410      1      0  3    0x10008b  sigsusp       sh
 23131   87442      1    577  3        0x90  poll          openvpn
 23534  179025      1      0  3    0x10008b  sigsusp       sh
 18057   90123  64514     95  3    0x100092  kqread        smtpd
 19224   92231  64514    103  3    0x100092  kqread        smtpd
  8900   26494  64514     95  3    0x100092  kqread        smtpd
 36661    7694  64514     95  3    0x100092  kqread        smtpd
 53055  478708  64514     95  3    0x100092  kqread        smtpd
 39450  371458  64514     95  3    0x100092  kqread        smtpd
 64514  254604      1      0  3    0x100080  kqread        smtpd
 79779  401574      1     77  3    0x100090  poll          dhcpd
 75721  196463      1      0  3    0x100080  kqread        ifstated
 43987  493497      1      0  3        0x88  select        sshd
 72197  464059      1      0  3    0x100080  poll          ntpd
 98673  151944  78082     83  3    0x100092  poll          ntpd
 78082   21536      1     83  3    0x100092  poll          ntpd
 23605  168973      1     53  3        0x90  kqread        unbound
 18006   43350  83180     73  3    0x100090  kqread        syslogd
 83180  509804      1      0  3    0x100082  netio         syslogd
 75333  335194      1      0  3    0x100080  kqread        resolvd
 87626  493762  63632     77  3    0x100092  kqread        dhcpleased
 24521  341713  63632     77  3    0x100092  kqread        dhcpleased
 63632  159518      1      0  3        0x80  kqread        dhcpleased
 66721  462825      0      0  3     0x14200  bored         wg_crypt
 62956   44274      0      0  3     0x14200  bored         wg_crypt
 10844  222692      0      0  3     0x14200  bored         wg_crypt
 60160  239148      0      0  3     0x14200  bored         wg_crypt
 82290  346650      0      0  3     0x14200  bored         wg_handshake
 89360  347133      0      0  3     0x14200  bored         wg_handshake
 45553  523622  94160    115  3    0x100092  kqread        slaacd
 23620  408790  94160    115  3    0x100092  kqread        slaacd
 94160  143545      1      0  3    0x100080  kqread        slaacd
 23875  243972      0      0  3     0x14200  bored         smr
 46125  504762      0      0  3     0x14200  pgzero        zerothread
 13868   43984      0      0  3     0x14200  aiodoned      aiodoned
 35256  501336      0      0  3     0x14200  syncer        update
 18459   31744      0      0  3     0x14200  cleaner       cleaner
 33804  253484      0      0  3     0x14200  reaper        reaper
 67697  245471      0      0  3     0x14200  pgdaemon      pagedaemon
  6986  275517      0      0  3     0x14200  bored         crynlk
 80115    3425      0      0  3     0x14200  bored         crypto
 61625  297306      0      0  3     0x14200  bored         sensors
 18564   54327      0      0  3     0x14200  mmctsk        sdmmc0
 13744  169035      0      0  3     0x14200  usbtsk        usbtask
 15915  115181      0      0  3     0x14200  usbatsk       usbatsk
 32229  484495      0      0  3  0x40014200  acpi0         acpi0
 72370    3240      0      0  7  0x40014200                idle3
 90436  193294      0      0  7  0x40014200                idle2
 21460  411298      0      0  7  0x40014200                idle1
 92792  258247      0      0  3     0x14200  bored         softnet
  9093  129822      0      0  3     0x14200  bored         systqmp
 76922  477793      0      0  3     0x14200  bored         systq
 76768  175511      0      0  3  0x40014200  bored         softclock
*28053  446556      0      0  7  0x40014200                idle0
     1  171502      0      0  3        0x82  wait          init
     0       0     -1      0  3     0x10200  scheduler     swapper
ddb{0}> show uvm
Current UVM status:
  pagesize=4096 (0x1000), pagemask=0xfff, pageshift=12
  1006645 VM pages: 24136 active, 4743 inactive, 3595 wired, 874898 free 
(109383 zero)
  min  10% (25) anon, 10% (25) vno

de, 5% (12) vtext
  freemin=33554, free-target=44738, inactive-target=0, wired-max=335548
  faults=1497869, traps=1464657, intrs=4689433, ctxswitch=3829785 fpuswitch=0
  softint=3941106, syscalls=2637376, kmapent=14
  fault counts:
    noram=0, noanon=0, noamap=0, pgwait=0, pgrele=0
    ok relocks(total)=19626(19642), anget(retries)=331010(0), amapcopy=209817
    neighbor anon/obj pg=188232/549237, gets(lock/unlock)=183314/19642
    cases: anon=276222, anoncow=54788, obj=148141, prcopy=35157, przero=983547
  daemon and swap counts:
    woke=0, revs=0, scans=0, obscans=0, anscans=0
    busy=0, freed=0, reactivate=0, deactivate=0
    pageouts=0, pending=0, nswget=0
    nswapdev=1
    swpages=1050248, swpginuse=0, swpgonly=0 paging=0
  kernel pointers:
    objs(kern)=0xffffffff821c3708
ddb{0}> show uvmexp
Current UVM status:
  pagesize=4096 (0x1000), pagemask=0xfff, pageshift=12
  1006645 VM pages: 24136 active, 4743 inactive, 3595 wired, 874898 free 
(109383 zero)
  min  10% (25) anon, 10% (

25) vnode, 5% (12) vtext
  freemin=33554, free-target=44738, inactive-target=0, wired-max=335548
  faults=1497869, traps=1464657, intrs=4689433, ctxswitch=3829785 fpuswitch=0
  softint=3941106, syscalls=2637376, kmapent=14
  fault counts:
    noram=0, noanon=0, noamap=0, pgwait=0, pgrele=0
    ok relocks(total)=19626(19642), anget(retries)=331010(0), amapcopy=209817
    neighbor anon/obj pg=188232/549237, gets(lock/unlock)=183314/19642
    cases: anon=276222, anoncow=54788, obj=148141, prcopy=35157, przero=983547
  daemon and swap counts:
    woke=0, revs=0, scans=0, obscans=0, anscans=0
    busy=0, freed=0, reactivate=0, deactivate=0
    pageouts=0, pending=0, nswget=0
    nswapdev=1
    swpages=1050248, swpginuse=0, swpgonly=0 paging=0
  kernel pointers:
    objs(kern)=0xffffffff821c3708
ddb{0}> show bcstats
Current Buffer Cache status:
numbufs 20668 busymapped 0, delwri 5
kvaslots 6553 avail kva slots 6553
bufpages 82625, dmapages 82625, dirtypages 20
pendingreads 0, pendingwrites 0


highflips 0, highflops 0, dmaflips 0
ddb{0}> dmesg
OpenBSD 7.0 (GENERIC.MP) #4: Mon Sep 20 08:41:30 UTC 2021
    
[email protected]:/home/mkucharski/openbsd/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 4259872768 (4062MB)
avail mem = 4114735104 (3924MB)
random: good seed from bootblocks
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 3.0 @ 0xcfe8b040 (13 entries)
bios0: vendor coreboot version "v4.12.0.4" date 08/27/2020
bios0: PC Engines apu2


== 2021-09-22T14:49:29Z ==

acpi0 at bios0: ACPI 6.0
acpi0: sleep states S0 S1 S4 S5
acpi0: tables DSDT FACP SSDT MCFG TPM2 APIC HEST SSDT SSDT DRTM HPET
acpi0: wakeup devices PBR4(S4) PBR5(S4) PBR6(S4) PBR7(S4) PBR8(S4) UOH1(S3) 
UOH2(S3) UOH3(S3) UOH4(S3) UOH5(S3) UOH6(S3) XHC0(S4)
acpitimer0 at acpi0: 3579545 Hz, 32 bits
acpimcfg0 at acpi0
acpimcfg0: addr 0xf8000000, bus 0-64
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: AMD GX-412TC SOC, 998.26 MHz, 16-30-01
cpu0: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TOPEXT,DBKP,PERFTSC,PCTRL3,ITSC,BMI1,XSAVEOPT
cpu0: 32KB 64b/line 2-way I-cache, 32KB 64b/line 8-way D-cache, 2MB 64b/line 
16-way L2 cache
cpu0: ITLB 32 4KB entries fully associative, 8 4MB entries fully associative
cpu0: DTLB 40 4KB entries fully associative, 8 4MB entries fully associative
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges
cpu0: apic clock running at 99MHz
cpu0: mwait min=64, max=64, IBE
cpu1 at mainbus0: apid 1 (application processor)
cpu1: AMD GX-412TC SOC, 998.14 MHz, 16-30-01
cpu1: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TOPEXT,DBKP,PERFTSC,PCTRL3,ITSC,BMI1,XSAVEOPT
cpu1: 32KB 64b/line 2-way I-cache, 32KB 64b/line 8-way D-cache, 2MB 64b/line 
16-way L2 cache
cpu1: ITLB 32 4KB entries fully associative, 8 4MB entries fully associative
cpu1: DTLB 40 4KB entries fully associative, 8 4MB entries fully associative
cpu1: smt 0, core 1, package 0
cpu2 at mainbus0: apid 2 (application processor)
cpu2: AMD GX-412TC SOC, 998.14 MHz, 16-30-01
cpu2: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TOPEXT,DBKP,PERFTSC,PCTRL3,ITSC,BMI1,XSAVEOPT
cpu2: 32KB 64b/line 2-way I-cache, 32KB 64b/line 8-way D-cache, 2MB 64b/line 
16-way L2 cache
cpu2: ITLB 32 4KB entries fully associative, 8 4MB entries fully associative
cpu2: DTLB 40 4KB entries fully associative, 8 4MB entries fully associative
cpu2: smt 0, core 2, package 0
cpu3 at mainbus0: apid 3 (application processor)
cpu3: AMD GX-412TC SOC, 998.14 MHz, 16-30-01
cpu3: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TOPEXT,DBKP,PERFTSC,PCTRL3,ITSC,BMI1,XSAVEOPT
cpu3: 32KB 64b/line 2-way I-cache, 32KB 64b/line 8-way D-cache, 2MB 64b/line 
16-way L2 cache
cpu3: ITLB 32 4KB entries fully associative, 8 4MB entries fully associative
cpu3: DTLB 40 4KB entries fully associative, 8 4MB entries fully associative
cpu3: smt 0, core 3, package 0
ioapic0 at mainbus0: apid 4 pa 0xfec00000, version 21, 24 pins
ioapic1 at mainbus0: apid 5 pa 0xfec20000, version 21, 32 pins
acpihpet0 at acpi0: 14318180 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus -1 (PBR4)
acpiprt2 at acpi0: bus 1 (PBR5)
acpiprt3 at acpi0: bus 2 (PBR6)
acpiprt4 at acpi0: bus 3 (PBR7)
acpiprt5 at acpi0: bus 4 (PBR8)
acpipci0 at acpi0 PCI0: 0x00000000 0x00000011 0x00000001
acpicmos0 at acpi0
amdgpio0 at acpi0 GPIO uid 0 addr 0xfed81500/0x300 irq 7, 184 pins
"PRP0001" at acpi0 not configured
"PRP0001" at acpi0 not configured
"PRP0001" at acpi0 not configured
"PRP0001" at acpi0 not configured
"PRP0001" at acpi0 not configured
"PRP0001" at acpi0 not configured
"BOOT0000" at acpi0 not configured
acpicpu0 at acpi0: C2(0@400 io@0x1771), C1(@1 halt!), PSS
acpicpu1 at acpi0: C2(0@400 io@0x1771), C1(@1 halt!), PSS
acpicpu2 at acpi0: C2(0@400 io@0x1771), C1(@1 halt!), PSS
acpicpu3 at acpi0: C2(0@400 io@0x1771), C1(@1 halt!), PSS
acpitz0 at acpi0: critical temperature is 115 degC
cpu0: 998 MHz: speeds: 1000 800 600 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "AMD 16h Root Complex" rev 0x00
vendor "AMD", unknown product 0x1567 (class system subclass IOMMU, rev 0x00) at 
pci0 dev 0 function 2 not configured
pchb1 at pci0 dev 2 function 0 "AMD 16h Host" rev 0x00
ppb0 at pci0 dev 2 function 2 "AMD 16h PCIE" rev 0x00: msi
pci1 at ppb0 bus 1
em0 at pci1 dev 0 function 0 "Intel I210" rev 0x03: msi, address 
00:0d:b9:55:96:04
ppb1 at pci0 dev 2 function 3 "AMD 16h PCIE" rev 0x00: msi
pci2 at ppb1 bus 2
em1 at pci2 dev 0 function 0 "Intel I210" rev 0x03: msi, address 
00:0d:b9:55:96:05
ppb2 at pci0 dev 2 function 4 "AMD 16h PCIE" rev 0x00: msi
pci3 at ppb2 bus 3
em2 at pci3 dev 0 function 0 "Intel I210" rev 0x03: msi, address 
00:0d:b9:55:96:06
ppb3 at pci0 dev 2 function 5 "AMD 16h PCIE" rev 0x00: msi
pci4 at ppb3 bus 4
athn0 at pci4 dev 0 function 0 "Atheros AR9281" rev 0x01: apic 5 int 16
athn0: AR9280 rev 2 (2T2R), ROM rev 22, address 04:f0:21:45:6a:c4
ccp0 at pci0 dev 8 function 0 "AMD 16h Crypto" rev 0x00
xhci0 at pci0 dev 16 function 0 "AMD Bolton xHCI" rev 0x11: msi, xHCI 1.0
usb0 at xhci0: USB revision 3.0
uhub0 at usb0 configuration 1 interface 0 "AMD xHCI root hub" rev 3.00/1.00 
addr 1
ahci0 at pci0 dev 17 function 0 "AMD Hudson-2 SATA" rev 0x40: apic 4 int 19, 
AHCI 1.3
ahci0: port 0: 6.0Gb/s
scsibus1 at ahci0: 32 targets
sd0 at scsibus1 targ 0 lun 0: <ATA, TS128GMSA370, P122> naa.57c35481856c8911
sd0: 122104MB, 512 bytes/sector, 250069680 sectors, thin
ehci0 at pci0 dev 19 function 0 "AMD Hudson-2 USB2" rev 0x39: apic 4 int 18
usb1 at ehci0: USB revision 2.0
uhub1 at usb1 configuration 1 interface 0 "AMD EHCI root hub" rev 2.00/1.00 
addr 1
piixpm0 at pci0 dev 20 function 0 "AMD Hudson-2 SMBus" rev 0x42: SMI
iic0 at piixpm0
iic1 at piixpm0
iic1: addr 0x4c 3e=00 48=00 4a=00 4e=00 fc=00 fe=00 words 00=ffff 01=ffff 
02=ffff 03=ffff 04=ffff 05=ffff 06=ffff 07=ffff
pcib0 at pci0 dev 20 function 3 "AMD Hudson-2 LPC" rev 0x11
sdhc0 at pci0 dev 20 function 7 "AMD Bolton SD/MMC" rev 0x01: apic 4 int 16
sdhc0: SDHC 2.0, 50 MHz base clock
sdmmc0 at sdhc0: 4-bit, sd high-speed, mmc high-speed, dma
pchb2 at pci0 dev 24 function 0 "AMD 16h Link Cfg" rev 0x00
pchb3 at pci0 dev 24 function 1 "AMD 16h Address Map" rev 0x00
pchb4 at pci0 dev 24 function 2 "AMD 16h DRAM Cfg" rev 0x00
km0 at pci0 dev 24 function 3 "AMD 16h Misc Cfg" rev 0x00
pchb5 at pci0 dev 24 function 4 "AMD 16h CPU Power" rev 0x00
pchb6 at pci0 dev 24 function 5 "AMD 16h Misc Cfg" rev 0x00
isa0 at pcib0
isadma0 at isa0
com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo
com0: console
com1 at isa0 port 0x2f8/8 irq 3: ns16550a, 16 byte fifo
com2 at isa0 port 0x3e8/8 irq 5: ns16550a, 16 byte fifo
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
lpt0 at isa0 port 0x378/4 irq 7
intr_establish: pic ioapic0 pin 7: can't share type 3 with 2
wbsio0 at isa0 port 0x2e/2: NCT5104D rev 0x53
vmm0 at mainbus0: SVM/RVI
dt: 445 probes
ulpt0 at uhub0 port 3 configuration 1 interface 1 "Samsung Electronics Co., 
Ltd. M2070 Series" rev 2.00/1.00 addr 2
ulpt0: using bi-directional mode
ugen0 at uhub0 port 3 configuration 1 "Samsung Electronics Co., Ltd. M2070 
Series" rev 2.00/1.00 addr 2
uhub2 at uhub1 port 1 configuration 1 interface 0 "Advanced Micro Devices Hub" 
rev 2.00/0.18 addr 2
umb0 at uhub2 port 3 configuration 1 interface 12 "Sierra Wireless, 
Incorporated Sierra Wireless MC7455 Qualcomm Snapdragon? X7 LTE-A" rev 
2.00/0.06 addr 3
ugen1 at uhub2 port 3 configuration 1 "Sierra Wireless, Incorporated Sierra 
Wireless MC7455 Qualcomm Snapdragon? X7 LTE-A" rev 2.00/0.06 addr 3
vscsi0 at root
scsibus2 at vscsi0: 256 targets
softraid0 at root
scsibus3 at softraid0: 256 targets
root on sd0a (f4c61a8acb9563fd.a) swap on sd0b dump on sd0b
MMM: ar5008_tx() [ar5008.c|1521]
MMM: ar5008_tx() [ar5008.c|1524]: key unset for sw crypto: 0
MMM: ieee80211_encrypt() [ieee80211_crypto.c|278]: k_id: 0
MMM: ieee80211_encrypt() [ieee80211_crypto.c|279]: k_flags: 0
MMM: ieee80211_encrypt() [ieee80211_crypto.c|280]: k_len: 0
MMM: ieee80211_encrypt() [ieee80211_crypto.c|281]: k_cipher: 0
MMM: ieee80211_encrypt() [ieee80211_crypto.c|282]: k_key: 
0x0000000000000000000000000000000000000000000000000000000000000000
panic: ieee80211_encrypt: key unset for sw crypto: id=0 cipher=0 flags=0x0
Stopped at      db_enter+0x10:  popq    %rbp
    TID    PID    UID     PRFLAGS     PFLAGS  CPU  COMMAND
db_enter() at db_enter+0x10
panic(ffffffff81ea79d7) at panic+0xbf
ieee80211_encrypt(ffff80000009c048,fffffd80c307ce00,ffff800000d3e1c0) at 
ieee80211_encrypt+0x473
ar5008_tx(ffff80000009c000,fffffd80c307ce00,ffff800000d3e000,0) at 
ar5008_tx+0x1e7
athn_start(ffff80000009c048) at athn_start+0x108
ar5008_intr(ffff80000009c000) at ar5008_intr+0x216
intr_handler(ffff8000225a6d80,ffff80000008f780) at intr_handler+0x6e
Xintr_ioapic_level3_untramp() at Xintr_ioapic_level3_untramp+0x193
acpicpu_idle() at acpicpu_idle+0x11f
sched_idle(ffffffff821a7ff0) at sched_idle+0x27e
end trace frame: 0x0, count: 5
https://www.openbsd.org/ddb.html describes the minimum info required in bug
reports.  Insufficient info makes it difficult to find and fix bugs.
ddb{0}> Bad character
?
ddb{0}> ddb{0}> ddb{0}> *cpu0: ieee80211_encrypt: key unset for sw crypto: id=0 
cipher=0 flags=0x0
ddb{0}> db_enter() at db_enter+0x10
panic(ffffffff81ea79d7) at panic+0xbf
ieee80211_encrypt(ffff80000009c048,fffffd80c307ce00,ffff800000d3e1c0) at 
ieee80211_encrypt+0x473
ar5008_tx(ffff80000009c000,fffffd80c307ce00,ffff800000d3e000,0) at 
ar5008_tx+0x1e7
athn_start(ffff80000009c048) at athn_start+0x108
ar5008_intr(ffff80000009c000) at ar5008_intr+0x216
intr_handler(ffff8000225a6d80,ffff80000008f780) at intr_handler+0x6e
Xintr_ioapic_level3_untramp() at Xintr_ioapic_level3_untramp+0x193
acpicpu_idle() at acpicpu_idle+0x11f
sched_idle(ffffffff821a7ff0) at sched_idle+0x27e
end trace frame: 0x0, count: -10
ddb{0}> *   0: ddb
    1: stopped
    2: stopped
    3: stopped
ddb{0}> rdi                                0
rsi                             0x14
rbp               0xffff8000225a6ac0
rbx               0xffff80000009c048
rdx               0xc80000000c000010
rcx                            0x286
rax                             0x4b
r8                 0x101010101010101
r9                                 0
r10                                0
r11               0x63a7e7a65210de01
r12               0xffffffff821a8a00    cpu_info_full_primary+0x2a00
r13               0xffff800000d3e1c0
r14                                0
r15               0xffffffff81ea79d7    substchar+0x8a3f
rip               0xffffffff81782410    db_enter+0x10
cs                               0x8
rflags                         0x202
rsp               0xffff8000225a6ac0
ss                              0x10
db_enter+0x10:  popq    %rbp
ddb{0}> PROC (idle0) pid=446556 stat=onproc
    flags process=14000<NOZOMBIE,SYSTEM> proc=40000200<SYSTEM,CPUPEG>
    pri=0, usrpri=50, nice=20
    forw=0x5dedabd1dc7857e3, list=0xffff8000fffffa40,0xffff8000fffff510
    process=0xffff8000ffffd3b0 user=0xffff8000225a1000, 
vmspace=0xffffffff822d2e78
    estcpu=0, cpticks=3931221, pctcpu=0.0
    user=0, sys=0, intr=6
ddb{0}>    PID     TID   PPID    UID  S       FLAGS  WAIT          COMMAND
 93197  269633  63037      0  3    0x100082  nanoslp       sleep
 74181  512547  23534      0  3    0x100082  nanoslp       sleep
 64616   82448      1      0  3    0x100083  ttyin         getty
 90799  424682      1      0  3    0x100098  poll          cron
 39349  174855      1      0  3    0x100080  htplev        hotplugd
 54533   23020      1  32767  3    0x100083  piperd        logger
 79712  207066      1  32767  3    0x100083  nanoslp       perl
 42620  350509      1    658  3        0x80  nanoslp       vnstatd
 14039  505316      1      0  3        0x82  kqread        cupsd
  1292  322791      1    572  3        0x90  poll          dbus-daemon
 63037  268410      1      0  3    0x10008b  sigsusp       sh
 23131   87442      1    577  3        0x90  poll          openvpn
 23534  179025      1      0  3    0x10008b  sigsusp       sh
 18057   90123  64514     95  3    0x100092  kqread        smtpd
 19224   92231  64514    103  3    0x100092  kqread        smtpd
  8900   26494  64514     95  3    0x100092  kqread        smtpd
 36661    7694  64514     95  3    0x100092  kqread        smtpd
 53055  478708  64514     95  3    0x100092  kqread        smtpd
 39450  371458  64514     95  3    0x100092  kqread        smtpd
 64514  254604      1      0  3    0x100080  kqread        smtpd
 79779  401574      1     77  3    0x100090  poll          dhcpd
 75721  196463      1      0  3    0x100080  kqread        ifstated
 43987  493497      1      0  3        0x88  select        sshd
 72197  464059      1      0  3    0x100080  poll          ntpd
 98673  151944  78082     83  3    0x100092  poll          ntpd
 78082   21536      1     83  3    0x100092  poll          ntpd
 23605  168973      1     53  3        0x90  kqread        unbound
 18006   43350  83180     73  3    0x100090  kqread        syslogd
 83180  509804      1      0  3    0x100082  netio         syslogd
 75333  335194      1      0  3    0x100080  kqread        resolvd
 87626  493762  63632     77  3    0x100092  kqread        dhcpleased
 24521  341713  63632     77  3    0x100092  kqread        dhcpleased
 63632  159518      1      0  3        0x80  kqread        dhcpleased
 66721  462825      0      0  3     0x14200  bored         wg_crypt
 62956   44274      0      0  3     0x14200  bored         wg_crypt
 10844  222692      0      0  3     0x14200  bored         wg_crypt
 60160  239148      0      0  3     0x14200  bored         wg_crypt
 82290  346650      0      0  3     0x14200  bored         wg_handshake
 89360  347133      0      0  3     0x14200  bored         wg_handshake
 45553  523622  94160    115  3    0x100092  kqread        slaacd
 23620  408790  94160    115  3    0x100092  kqread        slaacd
 94160  143545      1      0  3    0x100080  kqread        slaacd
 23875  243972      0      0  3     0x14200  bored         smr
 46125  504762      0      0  3     0x14200  pgzero        zerothread
 13868   43984      0      0  3     0x14200  aiodoned      aiodoned
 35256  501336      0      0  3     0x14200  syncer        update
 18459   31744      0      0  3     0x14200  cleaner       cleaner
 33804  253484      0      0  3     0x14200  reaper        reaper
 67697  245471      0      0  3     0x14200  pgdaemon      pagedaemon
  6986  275517      0      0  3     0x14200  bored         crynlk
 80115    3425      0      0  3     0x14200  bored         crypto
 61625  297306      0      0  3     0x14200  bored         sensors
 18564   54327      0      0  3     0x14200  mmctsk        sdmmc0
 13744  169035      0      0  3     0x14200  usbtsk        usbtask
 15915  115181      0      0  3     0x14200  usbatsk       usbatsk
 32229  484495      0      0  3  0x40014200  acpi0         acpi0
 72370    3240      0      0  7  0x40014200                idle3
 90436  193294      0      0  7  0x40014200                idle2
 21460  411298      0      0  7  0x40014200                idle1
 92792  258247      0      0  3     0x14200  bored         softnet
  9093  129822      0      0  3     0x14200  bored         systqmp
 76922  477793      0      0  3     0x14200  bored         systq
 76768  175511      0      0  3  0x40014200  bored         softclock
*28053  446556      0      0  7  0x40014200                idle0
     1  171502      0      0  3        0x82  wait          init
     0       0     -1      0  3     0x10200  scheduler     swapper
ddb{0}>     TID    PID    UID     PRFLAGS     PFLAGS  CPU  COMMAND
ddb{0}> No such command
ddb{0}>            Type InUse  MemUse  HighUse   Limit  Requests Type Lim
         devbuf  3682   7737K    7941K  78643K      9975        0
            pcb    14      8K       8K  78643K        16        0
         rtable   185     12K      12K  78643K     21590        0
         ifaddr   253     25K      25K  78643K       255        0
       counters    90     68K      68K  78643K        90        0
       ioctlops     0      0K       4K  78643K      2082        0
            iov     0      0K       0K  78643K         3        0
          mount     8      8K       8K  78643K         8        0
            log     0      0K       0K  78643K         4        0
         vnodes    22      1K      75K  78643K      1213        0
      UFS quota     1     32K      32K  78643K         1        0
      UFS mount    33     74K      74K  78643K        33        0
            shm     2      1K       1K  78643K         2        0
         VM map     2      0K       0K  78643K         2        0
            sem     2      0K       0K  78643K         2        0
        dirhash    42     20K      20K  78643K        69        0
           ACPI  2950    341K     365K  78643K     91600        0
      file desc     1      0K       0K  78643K         1        0
           proc    83     88K     137K  78643K      1607        0
    NFS srvsock     1      0K       0K  78643K         1        0
     NFS daemon     1     16K      16K  78643K         1        0
       in_multi    55      3K       3K  78643K        55        0
    ether_multi    12      0K       0K  78643K        12        0
    ISOFS mount     1     32K      32K  78643K         1        0
  MSDOSFS mount     1     16K      16K  78643K         1        0
           ttys    19     95K      95K  78643K        19        0
           exec     0      0K       2K  78643K      4617        0
        pagedep     1      8K       8K  78643K         1        0
       inodedep     1     32K      32K  78643K         1        0
         newblk     1      0K       0K  78643K         1        0
        VM swap     7    298K     298K  78643K         7        0
       UVM amap   546     35K      39K  78643K     41242        0
       UVM aobj     3      2K       2K  78643K         3        0
            USB    68     30K      31K  78643K        76        0
     USB device    14      8K       8K  78643K        14        0
        memdesc     1      4K       4K  78643K         1        0
    crypto data     1      1K       1K  78643K         1        0
    ip6_options     1      0K       0K  78643K        13        0
            NDP     9      0K       0K  78643K        13        0
           temp    40   4179K    4248K  78643K     70428        0
         kqueue    30     43K      43K  78643K        30        0
      SYN cache     2     16K      16K  78643K         2        0
ddb{0}> Name      Size Requests Fail Releases Pgreq Pgrel Npage Hiwat Minpg 
Maxpg Idle
plcache    128       44    0        0     2     0     2     2     0     8    0
rtpcb      120       22    0       16     1     0     1     1     0     8    0
rtentry    112       73    0        6     2     0     2     2     0     8    0
unpcb      120      437    0      370     3     0     3     3     0     8    0
tcpqe       32     1266    0     1266   121   121     0     1     0     8    0
tcpcb      736     4333    0     4324  1034  1033     1     2     0     8    0
arp         88       17    0        6     1     0     1     1     0     8    0
inpcb      304    14820    0    14794  1148  1145     3     3     0     8    0
nd6         48        4    0        0     1     0     1     1     0     8    0
wgpeer     5032       1    0        0     1     0     1     1     0     8    0
wgaip       64        1    0        0     1     0     1     1     0     8    0
pfosfp      40     1428    0     1005     5     0     5     5     0     8    0
pfosfpen   112     1428    0      714    21     0    21    21     0     8    0
pfrke_plain 160      21    0        0     1     0     1     1     0     8    0
pfrktable  1344      27    0       13     2     0     2     2     0     8    0
pftag       88        1    0        0     1     0     1     1     0     8    0
pfqueue    264        1    0        0     1     0     1     1     0     8    0
pfruleitem  16    17850    0    17679     1     0     1     1     0     8    0
pfstitem    24    23425    0    23154     3     1     2     2     0     8    0
pfstkey    112    23425    0    23154    30    22     8     8     0     8    0
pfstate    320    21948    0    21738   100    82    18    18     0     8    0
pfrule     1360      32    0       16     3     1     2     3     0     8    0
art_heap8  4096       1    0        0     1     0     1     1     0     8    0
art_heap4  256      312    0        3    20     0    20    20     0     8    0
art_table   32      313    0        3     3     0     3     3     0     8    0
art_node    16       73    0        7     1     0     1     1     0     8    0
dirhash    1024     690    0       40    82     0    82    82     0     8    0
dino2pl    256    58814    0    38172  1305    14  1291  1291     0     8    0
ffsino     240    58814    0    38172  1229    14  1215  1215     0     8    0
nchpl      144    53682    0    49998   143     6   137   137     0     8    0
uvmvnodes   72    20660    0        0   376     0   376   376     0     8    0
vnodes     224    20660    0        0  1216     0  1216  1216     0     8    0
namei      1024  255337    0   255337  1410  1410     0     1     0     8    0
percpumem   32       34    0        0     1     0     1     1     0     8    0
ehcixfer   296       70    0       67     1     0     1     1     0     8    0
xhcixfer   280       41    0       40     1     0     1     1     0     8    0
pfiaddrpl  120        8    0        0     1     0     1     1     0     8    0
scxspl     216    88631    0    88631   543   542     1     2     0     8    1
plimitpl   152       67    0       41     2     0     2     2     0     8    0
sigapl     424     3070    0     3005    10     1     9    10     0     8    0
futexpl     56     4875    0     4875     1     1     0     1     0     8    0
knotepl    112      195    0        0     4     0     4     4     0     8    0
kqueuepl   184       20    0        1     1     0     1     1     0     8    0
pipepl     304      203    0      201     2     1     1     1     0     8    0
fdescpl    432     3043    0     3005     7     1     6     7     0     8    0
filepl     120    53953    0    53774     7     1     6     7     0     8    0
lockfpl    104     5065    0     5061     1     0     1     1     0     8    0
lockfspl    48     1089    0     1085     1     0     1     1     0     8    0
sessionpl  144       47    0       26     1     0     1     1     0     8    0
pgrppl      48       47    0       26     1     0     1     1     0     8    0
ucredpl     96     1536    0     1498   240   239     1     2     0     8    0
zombiepl   144     3005    0     3005   822   822     0     1     0     8    0
processpl  1008    3070    0     3005    11     0    11    11     0     8    0
procpl     672     3082    0     3017     7     0     7     7     0     8    0
sockpl     448    15279    0    15180  1190  1178    12    14     0     8    0
mcl8k      8192       4    0        0     1     0     1     1     0     8    0
mcl4k      4096    3034    0        0    46    29    17    27     0     8    0
mcl2k2     2112   18465    0        0    80    52    28    28     0     8    0
mcl2k      2048    1444    0        0    12     6     6     7     0     8    0
mtagpl      96      186    0        0     1     0     1     1     0     8    0
mbufpl     256    20093    0        0   100    48    52    52     0     8    0
bufpl      280    25691    0     5023  1480     3  1477  1477     0     8    0
anonpl      24  1083300    0  1059287   262    94   168   173     0   379    0
amapchunkpl 152   80499    0    79254   161   111    50    58     0   158    0
amappl16   200      358    0      348     2     1     1     1     0     8    0
amappl15   192     1514    0     1497   137   136     1     2     0     8    0
amappl14   184       62    0       43     3     2     1     1     0     8    0
amappl13   176      105    0      102     1     0     1     1     0     8    0
amappl12   168       30    0       25     2     1     1     1     0     8    0
amappl11   160      521    0      470     4     1     3     4     0     8    0
amappl10   152      853    0      836     4     1     3     4     0     8    0
amappl9    144      384    0      369     3     1     2     2     0     8    0
amappl8    136     4240    0     4208     2     0     2     2     0     8    0
amappl7    128     1474    0     1393    14    10     4     4     0     8    0
amappl6    120     1221    0     1185     7     5     2     2     0     8    0
amappl5    112     4970    0     4844    13     8     5     6     0     8    0
amappl4    104     7972    0     7515    16     2    14    15     0     8    0
amappl3     96     9858    0     9385    21     8    13    15     0     8    0
amappl2     88    21028    0    19896    50    15    35    38     0     8    0
amappl1     80   104775    0   102502   119    55    64    80     0     8    0
amappl      88    29745    0    29330    26    15    11    12     0    92    0
dma4096    4096       1    0        1     1     1     0     1     0     8    0
dma512     512        3    0        2     1     0     1     1     0     8    0
dma256     256       10    0       10     1     1     0     1     0     8    0
dma128     128        1    0        1     1     1     0     1     0     8    0
dma64       64       10    0       10     1     1     0     1     0     8    0
dma32       32        9    0        9     1     1     0     1     0     8    0
dma16       16       29    0       29     1     1     0     1     0     8    0
aobjpl      64        2    0        0     1     0     1     1     0     8    0
uaddrrnd    24     3043    0     3005     1     0     1     1     0     8    0
uaddrbest   32        2    0        0     1     0     1     1     0     8    0
uaddr       24     3043    0     3005     1     0     1     1     0     8    0
vmmpekpl   168   117298    0   117263     2     0     2     2     0     8    0
vmmpepl    168   864083    0   857519   602   240   362   400     0   357    0
vmsppl     272     3042    0     3005     4     0     4     4     0     8    0
rwobjpl     24   147586    0   142464    65    20    45    47     0     8    0
pdppl      4096    3042    0     3005   318   281    37    54     0     8    0
pvpl        32  2276405    0  2241668  1012   690   322   343     0   265    0
pmappl     192     3042    0     3005     3     0     3     3     0     8    0
extentpl    40       77    0       48     1     0     1     1     0     8    0
phpool     112     6758    0     4016   107    28    79    79     0     8    0
ddb{0}>    PID     TID   PPID    UID  S       FLAGS  WAIT          COMMAND
 93197  269633  63037      0  3    0x100082  nanoslp       sleep
 74181  512547  23534      0  3    0x100082  nanoslp       sleep
 64616   82448      1      0  3    0x100083  ttyin         getty
 90799  424682      1      0  3    0x100098  poll          cron
 39349  174855      1      0  3    0x100080  htplev        hotplugd
 54533   23020      1  32767  3    0x100083  piperd        logger
 79712  207066      1  32767  3    0x100083  nanoslp       perl
 42620  350509      1    658  3        0x80  nanoslp       vnstatd
 14039  505316      1      0  3        0x82  kqread        cupsd
  1292  322791      1    572  3        0x90  poll          dbus-daemon
 63037  268410      1      0  3    0x10008b  sigsusp       sh
 23131   87442      1    577  3        0x90  poll          openvpn
 23534  179025      1      0  3    0x10008b  sigsusp       sh
 18057   90123  64514     95  3    0x100092  kqread        smtpd
 19224   92231  64514    103  3    0x100092  kqread        smtpd
  8900   26494  64514     95  3    0x100092  kqread        smtpd
 36661    7694  64514     95  3    0x100092  kqread        smtpd
 53055  478708  64514     95  3    0x100092  kqread        smtpd
 39450  371458  64514     95  3    0x100092  kqread        smtpd
 64514  254604      1      0  3    0x100080  kqread        smtpd
 79779  401574      1     77  3    0x100090  poll          dhcpd
 75721  196463      1      0  3    0x100080  kqread        ifstated
 43987  493497      1      0  3        0x88  select        sshd
 72197  464059      1      0  3    0x100080  poll          ntpd
 98673  151944  78082     83  3    0x100092  poll          ntpd
 78082   21536      1     83  3    0x100092  poll          ntpd
 23605  168973      1     53  3        0x90  kqread        unbound
 18006   43350  83180     73  3    0x100090  kqread        syslogd
 83180  509804      1      0  3    0x100082  netio         syslogd
 75333  335194      1      0  3    0x100080  kqread        resolvd
 87626  493762  63632     77  3    0x100092  kqread        dhcpleased
 24521  341713  63632     77  3    0x100092  kqread        dhcpleased
 63632  159518      1      0  3        0x80  kqread        dhcpleased
 66721  462825      0      0  3     0x14200  bored         wg_crypt
 62956   44274      0      0  3     0x14200  bored         wg_crypt
 10844  222692      0      0  3     0x14200  bored         wg_crypt
 60160  239148      0      0  3     0x14200  bored         wg_crypt
 82290  346650      0      0  3     0x14200  bored         wg_handshake
 89360  347133      0      0  3     0x14200  bored         wg_handshake
 45553  523622  94160    115  3    0x100092  kqread        slaacd
 23620  408790  94160    115  3    0x100092  kqread        slaacd
 94160  143545      1      0  3    0x100080  kqread        slaacd
 23875  243972      0      0  3     0x14200  bored         smr
 46125  504762      0      0  3     0x14200  pgzero        zerothread
 13868   43984      0      0  3     0x14200  aiodoned      aiodoned
 35256  501336      0      0  3     0x14200  syncer        update
 18459   31744      0      0  3     0x14200  cleaner       cleaner
 33804  253484      0      0  3     0x14200  reaper        reaper
 67697  245471      0      0  3     0x14200  pgdaemon      pagedaemon
  6986  275517      0      0  3     0x14200  bored         crynlk
 80115    3425      0      0  3     0x14200  bored         crypto
 61625  297306      0      0  3     0x14200  bored         sensors
 18564   54327      0      0  3     0x14200  mmctsk        sdmmc0
 13744  169035      0      0  3     0x14200  usbtsk        usbtask
 15915  115181      0      0  3     0x14200  usbatsk       usbatsk
 32229  484495      0      0  3  0x40014200  acpi0         acpi0
 72370    3240      0      0  7  0x40014200                idle3
 90436  193294      0      0  7  0x40014200                idle2
 21460  411298      0      0  7  0x40014200                idle1
 92792  258247      0      0  3     0x14200  bored         softnet
  9093  129822      0      0  3     0x14200  bored         systqmp
 76922  477793      0      0  3     0x14200  bored         systq
 76768  175511      0      0  3  0x40014200  bored         softclock
*28053  446556      0      0  7  0x40014200                idle0
     1  171502      0      0  3        0x82  wait          init
     0       0     -1      0  3     0x10200  scheduler     swapper
ddb{0}> Current UVM status:
  pagesize=4096 (0x1000), pagemask=0xfff, pageshift=12
  1006645 VM pages: 24136 active, 4743 inactive, 3595 wired, 874898 free 
(109383 zero)
  min  10% (25) anon, 10% (25) vnode, 5% (12) vtext
  freemin=33554, free-target=44738, inactive-target=0, wired-max=335548
  faults=1497869, traps=1464657, intrs=4689433, ctxswitch=3829785 fpuswitch=0
  softint=3941106, syscalls=2637376, kmapent=14
  fault counts:
    noram=0, noanon=0, noamap=0, pgwait=0, pgrele=0
    ok relocks(total)=19626(19642), anget(retries)=331010(0), amapcopy=209817
    neighbor anon/obj pg=188232/549237, gets(lock/unlock)=183314/19642
    cases: anon=276222, anoncow=54788, obj=148141, prcopy=35157, przero=983547
  daemon and swap counts:
    woke=0, revs=0, scans=0, obscans=0, anscans=0
    busy=0, freed=0, reactivate=0, deactivate=0
    pageouts=0, pending=0, nswget=0
    nswapdev=1
    swpages=1050248, swpginuse=0, swpgonly=0 paging=0
  kernel pointers:
    objs(kern)=0xffffffff821c3708
ddb{0}> Current UVM status:
  pagesize=4096 (0x1000), pagemask=0xfff, pageshift=12
  1006645 VM pages: 24136 active, 4743 inactive, 3595 wired, 874898 free 
(109383 zero)
  min  10% (25) anon, 10% (25) vnode, 5% (12) vtext
  freemin=33554, free-target=44738, inactive-target=0, wired-max=335548
  faults=1497869, traps=1464657, intrs=4689433, ctxswitch=3829785 fpuswitch=0
  softint=3941106, syscalls=2637376, kmapent=14
  fault counts:
    noram=0, noanon=0, noamap=0, pgwait=0, pgrele=0
    ok relocks(total)=19626(19642), anget(retries)=331010(0), amapcopy=209817
    neighbor anon/obj pg=188232/549237, gets(lock/unlock)=183314/19642
    cases: anon=276222, anoncow=54788, obj=148141, prcopy=35157, przero=983547
  daemon and swap counts:
    woke=0, revs=0, scans=0, obscans=0, anscans=0
    busy=0, freed=0, reactivate=0, deactivate=0
    pageouts=0, pending=0, nswget=0
    nswapdev=1
    swpages=1050248, swpginuse=0, swpgonly=0 paging=0
  kernel pointers:
    objs(kern)=0xffffffff821c3708
ddb{0}> Current Buffer Cache status:
numbufs 20668 busymapped 0, delwri 5
kvaslots 6553 avail kva slots 6553
bufpages 82625, dmapages 82625, dirtypages 20
pendingreads 0, pendingwrites 0
highflips 0, highflops 0, dmaflips 0
ddb{0}>
ddb{0}> boot reboot
rebooting...
PC Engines apu2
coreboot build 20202708
BIOS version v4.12.0.4
4080 MB ECC DRAM

-- 
Regards,
 Mikolaj

Reply via email to