Date: Wed, 1 Apr 2020 19:45:28 +0200 From: Marc Veldman <marc@bumblingdork.com> To: freebsd-bluetooth@freebsd.org Subject: Panic with Bluetooth LE, possible fix. Message-ID: <CABaTypHcmMsQgTuzHrT-NYkca6ZC_c1yx0Z%2BZ98mU=S5oH6%2BAQ@mail.gmail.com>
index | next in thread | raw e-mail
[-- Attachment #1 --]
Hello List,
apologies if this is the wrong list.
Enabling bluetooth LE scanning will cause a panic:
Doing this with a Bluetooth 4.0 capable unit:
# hccontrol -n ubt0hci le_set_scan_param active 500 500 public all
# hccontrol -n ubt0hci le_set_scan_enable enable
# hccontrol -n ubt0hci le_enable enable
<panic>
Attached the coredump and below a possible patch.
The problem is that ep cannot be safely be used as the test expression
in the for loop
because of the later m_pullup. This pattern is repeated at other places in
this file and other places in bluetooth/hci.
I'm a beginner at C, and I'm not really sure if this is the proper way to go.
Advice would be appreciated so I can submit a proper bug report with a patch.
Thanks in advance!
Index: sys/netgraph/bluetooth/hci/ng_hci_evnt.c
===================================================================
--- sys/netgraph/bluetooth/hci/ng_hci_evnt.c (revision 359500)
+++ sys/netgraph/bluetooth/hci/ng_hci_evnt.c (working copy)
@@ -381,6 +381,7 @@
ng_hci_neighbor_p n = NULL;
bdaddr_t bdaddr;
int error = 0;
+ int num_reports = 0;
u_int8_t event_type;
u_int8_t addr_type;
@@ -389,9 +390,12 @@
return (ENOBUFS);
ep = mtod(event, ng_hci_le_advertising_report_ep *);
+ num_reports = ep->num_reports;
+ /* ep can not be safely used after m_pullup */
+ ep = NULL;
m_adj(event, sizeof(*ep));
- for (; ep->num_reports > 0; ep->num_reports --) {
+ for (; num_reports > 0; num_reports --) {
/* Get remote unit address */
NG_HCI_M_PULLUP(event, sizeof(u_int8_t));
event_type = *mtod(event, u_int8_t *);
Best regards,
Marc Veldman
[-- Attachment #2 --]
devnovo dumped core - see /var/crash/vmcore.3
Wed Apr 1 18:31:55 CEST 2020
FreeBSD devnovo 13.0-CURRENT FreeBSD 13.0-CURRENT #1 r359500: Wed Apr 1 18:05:32 CEST 2020 root@devnovo:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64
panic: page fault
GNU gdb (GDB) 9.1 [GDB v9.1 for FreeBSD]
Copyright (C) 2020 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-portbld-freebsd13.0".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://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 /boot/kernel/kernel...
Reading symbols from /usr/lib/debug//boot/kernel/kernel.debug...
Unread portion of the kernel message buffer:
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
le_advertizing_report: ubt0hci - m_pullup(1) failed
Fatal trap 12: page fault while in kernel mode
cpuid = 2; apic id = 02
fault virtual address = 0x18
fault code = supervisor read data, page not present
instruction pointer = 0x20:0xffffffff8273334d
stack pointer = 0x28:0xfffffe00b4678a80
frame pointer = 0x28:0xfffffe00b4678ac0
code segment = base 0x0, limit 0xfffff, type 0x1b
= DPL 0, pres 1, long 1, def32 0, gran 1
processor eflags = interrupt enabled, resume, IOPL = 0
current process = 709 (ng_queue2)
trap number = 12
panic: page fault
cpuid = 2
time = 1585758485
KDB: stack backtrace:
db_trace_self_wrapper() at db_trace_self_wrapper+0x2b/frame 0xfffffe00b4678730
vpanic() at vpanic+0x182/frame 0xfffffe00b4678780
panic() at panic+0x43/frame 0xfffffe00b46787e0
trap_fatal() at trap_fatal+0x387/frame 0xfffffe00b4678840
trap_pfault() at trap_pfault+0x99/frame 0xfffffe00b46788a0
trap() at trap+0x2a5/frame 0xfffffe00b46789b0
calltrap() at calltrap+0x8/frame 0xfffffe00b46789b0
--- trap 0xc, rip = 0xffffffff8273334d, rsp = 0xfffffe00b4678a80, rbp = 0xfffffe00b4678ac0 ---
ng_hci_process_event() at ng_hci_process_event+0xd7d/frame 0xfffffe00b4678ac0
ng_apply_item() at ng_apply_item+0xa8/frame 0xfffffe00b4678b40
ngthread() at ngthread+0x26e/frame 0xfffffe00b4678bb0
fork_exit() at fork_exit+0x80/frame 0xfffffe00b4678bf0
fork_trampoline() at fork_trampoline+0xe/frame 0xfffffe00b4678bf0
--- trap 0, rip = 0, rsp = 0, rbp = 0 ---
KDB: enter: panic
__curthread () at /usr/src/sys/amd64/include/pcpu_aux.h:55
55 __asm("movq %%gs:%P1,%0" : "=r" (td) : "n" (offsetof(struct pcpu,
(kgdb) #0 __curthread () at /usr/src/sys/amd64/include/pcpu_aux.h:55
#1 doadump (textdump=0) at /usr/src/sys/kern/kern_shutdown.c:394
#2 0xffffffff8049b44a in db_dump (dummy=<optimized out>,
dummy2=<unavailable>, dummy3=<unavailable>, dummy4=<unavailable>)
at /usr/src/sys/ddb/db_command.c:575
#3 0xffffffff8049b20c in db_command (last_cmdp=<optimized out>,
cmd_table=<optimized out>, dopager=1) at /usr/src/sys/ddb/db_command.c:482
#4 0xffffffff8049af7d in db_command_loop ()
at /usr/src/sys/ddb/db_command.c:535
#5 0xffffffff8049e178 in db_trap (type=<optimized out>, code=<optimized out>)
at /usr/src/sys/ddb/db_main.c:253
#6 0xffffffff80c08864 in kdb_trap (type=3, code=0, tf=<optimized out>)
at /usr/src/sys/kern/subr_kdb.c:699
#7 0xffffffff8105dc08 in trap (frame=0xfffffe00b4678660)
at /usr/src/sys/amd64/amd64/trap.c:579
#8 <signal handler called>
#9 kdb_enter (why=0xffffffff811ec57d "panic", msg=<optimized out>)
at /usr/src/sys/kern/subr_kdb.c:486
#10 0xffffffff80bbe1ce in vpanic (fmt=<optimized out>, ap=<optimized out>)
at /usr/src/sys/kern/kern_shutdown.c:902
#11 0xffffffff80bbdf63 in panic (
fmt=0xffffffff81c7c1a8 <cnputs_mtx> "\365\b\033\201\377\377\377\377")
at /usr/src/sys/kern/kern_shutdown.c:839
#12 0xffffffff8105e057 in trap_fatal (frame=0xfffffe00b46789c0, eva=24)
at /usr/src/sys/amd64/amd64/trap.c:920
#13 0xffffffff8105e0f9 in trap_pfault (frame=0xfffffe00b46789c0,
usermode=<optimized out>, signo=<optimized out>, ucode=<optimized out>)
at /usr/src/sys/amd64/amd64/trap.c:737
#14 0xffffffff8105d6f5 in trap (frame=0xfffffe00b46789c0)
at /usr/src/sys/amd64/amd64/trap.c:401
#15 <signal handler called>
#16 le_advertizing_report (unit=0xfffff80011e89700, event=<optimized out>)
at /usr/src/sys/netgraph/bluetooth/hci/ng_hci_evnt.c:399
#17 le_event (unit=0xfffff80011e89700, event=<optimized out>)
at /usr/src/sys/netgraph/bluetooth/hci/ng_hci_evnt.c:590
#18 ng_hci_process_event (unit=0xfffff80011e89700, event=<optimized out>)
at /usr/src/sys/netgraph/bluetooth/hci/ng_hci_evnt.c:128
#19 0xffffffff82727688 in ng_apply_item (node=0xffffffff80c0e7a0 <putchar>,
item=0x1e, rw=1) at /usr/src/sys/netgraph/ng_base.c:2404
#20 0xffffffff8272a8ee in ngthread (arg=<optimized out>)
at /usr/src/sys/netgraph/ng_base.c:3440
#21 0xffffffff80b7bb10 in fork_exit (callout=0xffffffff8272a680 <ngthread>,
arg=0x0, frame=0xfffffe00b4678c00) at /usr/src/sys/kern/kern_fork.c:1061
#22 <signal handler called>
(kgdb)
------------------------------------------------------------------------
ps -axlww
UID PID PPID CPU PRI NI VSZ RSS MWCHAN STAT TT TIME COMMAND
0 0 0 0 -16 0 0 0 swapin DLs - 0:00.03 [kernel]
0 1 0 0 20 0 11864 1152 wait DLs - 0:00.07 [init]
0 2 0 0 -16 0 0 0 crypto_w DL - 0:00.00 [crypto]
0 3 0 0 -16 0 0 0 crypto_r DL - 0:00.00 [crypto returns 0]
0 4 0 0 -16 0 0 0 crypto_r DL - 0:00.00 [crypto returns 1]
0 5 0 0 -16 0 0 0 crypto_r DL - 0:00.00 [crypto returns 2]
0 6 0 0 -16 0 0 0 crypto_r DL - 0:00.00 [crypto returns 3]
0 7 0 0 -16 0 0 0 crypto_r DL - 0:00.00 [crypto returns 4]
0 8 0 0 -16 0 0 0 crypto_r DL - 0:00.00 [crypto returns 5]
0 9 0 0 -16 0 0 0 crypto_r DL - 0:00.00 [crypto returns 6]
0 10 0 0 -16 0 0 0 audit_wo DL - 0:00.00 [audit]
0 11 0 0 155 0 0 0 - RL - 5:47.05 [idle]
0 12 0 0 -52 0 0 0 - WL - 0:01.13 [intr]
0 13 0 0 -8 0 0 0 - DL - 0:00.43 [geom]
0 14 0 0 -16 0 0 0 seqstate DL - 0:00.00 [sequencer 00]
0 15 0 0 -16 0 0 0 crypto_r DL - 0:00.00 [crypto returns 7]
0 16 0 0 -16 0 0 0 - RL - 0:00.26 [cam]
0 17 0 0 -68 0 0 0 - DL - 0:00.22 [usb]
0 18 0 0 -8 0 0 0 t->zthr_ DL - 0:00.07 [zfskern]
0 19 0 0 -16 0 0 0 - DL - 0:00.00 [soaiod1]
0 20 0 0 -16 0 0 0 - DL - 0:00.00 [soaiod2]
0 21 0 0 -16 0 0 0 - DL - 0:00.00 [soaiod3]
0 22 0 0 -16 0 0 0 - DL - 0:00.00 [soaiod4]
0 23 0 0 -16 0 0 0 waiting_ DL - 0:00.00 [sctp_iterator]
0 24 0 0 -16 0 0 0 tzpoll DL - 0:00.00 [acpi_thermal]
0 25 0 0 -16 0 0 0 - DL - 0:00.01 [rand_harvestq]
0 26 0 0 -16 0 0 0 psleep DL - 0:00.00 [pagedaemon]
0 27 0 0 -16 0 0 0 psleep DL - 0:00.00 [vmdaemon]
0 28 0 0 -16 0 0 0 qsleep DL - 0:00.00 [bufdaemon]
0 29 0 0 -16 0 0 0 vlruwt DL - 0:00.00 [vnlru]
0 30 0 0 16 0 0 0 syncer DL - 0:00.00 [syncer]
0 31 0 0 -16 0 0 0 idle DL - 0:00.00 [enc_daemon0]
0 32 0 0 20 0 0 0 geli:w DL - 0:00.03 [g_eli[0] ada0p3]
0 33 0 0 20 0 0 0 geli:w DL - 0:00.03 [g_eli[1] ada0p3]
0 34 0 0 20 0 0 0 geli:w DL - 0:00.03 [g_eli[2] ada0p3]
0 35 0 0 20 0 0 0 geli:w DL - 0:00.03 [g_eli[3] ada0p3]
0 36 0 0 24 0 0 0 geli:w DL - 0:00.03 [g_eli[4] ada0p3]
0 37 0 0 20 0 0 0 geli:w DL - 0:00.03 [g_eli[5] ada0p3]
0 38 0 0 20 0 0 0 geli:w DL - 0:00.03 [g_eli[6] ada0p3]
0 39 0 0 20 0 0 0 geli:w DL - 0:00.03 [g_eli[7] ada0p3]
0 40 0 0 -16 0 0 0 spa->spa DL - 0:00.33 [zpool-zroot]
0 368 1 0 20 0 18360 7980 select Ds - 0:00.00 [wpa_supplicant]
0 709 0 0 -16 0 0 0 sleep DL - 0:00.00 [ng_queue]
0 907 1 0 49 0 13208 2792 select Ds - 0:00.00 [dhclient]
0 910 1 0 52 0 13208 2916 select Ds - 0:00.00 [dhclient]
65 990 1 0 20 0 13212 3044 select DCs - 0:00.00 [dhclient]
0 1001 1 0 52 0 13208 2820 select Ds - 0:00.00 [dhclient]
0 1004 1 0 52 0 13208 2908 select Ds - 0:00.00 [dhclient]
65 1026 1 0 20 0 13212 3036 select DCs - 0:00.00 [dhclient]
0 1551 1 0 20 0 11528 1700 select Ds - 0:00.00 [devd]
0 1615 1 0 20 0 13072 2668 kqread DCs - 0:00.01 [rtsold]
0 1619 1 0 52 0 13068 2636 select Ds - 0:00.00 [rtsold]
0 1621 1 0 52 0 13068 2588 select Ds - 0:00.00 [rtsold]
0 1622 1 0 52 0 13068 2584 select Ds - 0:00.00 [rtsold]
0 1623 1 0 20 0 13068 2596 select Ds - 0:00.00 [rtsold]
0 1736 1 0 20 0 12936 2916 select Ds - 0:00.02 [syslogd]
0 1788 1 0 52 0 13184 2580 pause Ds - 0:00.00 [nfsuserd]
0 1789 1788 0 20 0 13184 2584 select D - 0:00.00 [nfsuserd]
0 1790 1788 0 20 0 13184 2584 select D - 0:00.00 [nfsuserd]
0 1791 1788 0 20 0 13184 2584 select D - 0:00.00 [nfsuserd]
0 1792 1788 0 20 0 13184 2584 select D - 0:00.00 [nfsuserd]
0 1811 1 0 20 0 12872 2728 select Ds - 0:00.01 [rpcbind]
0 1826 1 0 52 0 20604 4600 select Ds - 0:00.01 [mountd]
0 1828 1 0 52 0 20480 4476 select Ds - 0:00.02 [nfsd]
0 1831 1828 0 52 0 12800 2604 rpcsvc D - 0:00.00 [nfsd]
0 1837 1 0 20 0 282676 4488 select Ds - 0:00.00 [rpc.statd]
0 1845 1 0 52 0 20584 4488 rpcsvc Ds - 0:00.00 [rpc.lockd]
123 1900 1 0 20 0 21716 6708 select Ds - 0:00.00 [ntpd]
0 1909 1 0 20 0 12888 2360 select Ds - 0:00.00 [powerd]
0 1937 1 0 20 0 20816 8752 select Ds - 0:00.00 [sshd]
0 1940 1 0 20 0 17948 7420 select Ds - 0:00.00 [sendmail]
25 1943 1 0 52 0 17948 7216 pause Ds - 0:00.00 [sendmail]
0 1947 1 0 20 0 12980 2752 nanslp Ds - 0:00.00 [cron]
0 2013 1 0 52 0 12908 2400 ttyin Ds+ - 0:00.00 [getty]
0 2014 1 0 52 0 12908 2400 ttyin Ds+ - 0:00.00 [getty]
0 2015 1 0 52 0 12908 2400 ttyin Ds+ - 0:00.00 [getty]
0 2016 1 0 52 0 12908 2400 ttyin Ds+ - 0:00.00 [getty]
0 2017 1 0 52 0 12908 2400 ttyin Ds+ - 0:00.00 [getty]
0 2018 1 0 52 0 12908 2400 ttyin Ds+ - 0:00.00 [getty]
0 2019 1 0 52 0 12908 2400 ttyin Ds+ - 0:00.00 [getty]
0 2020 1 0 52 0 12908 2400 ttyin Ds+ - 0:00.00 [getty]
0 2023 1937 0 27 0 21252 9712 select Ds - 0:00.00 [sshd]
1001 2025 2023 0 20 0 21256 9728 select D - 0:00.00 [sshd]
1001 2026 2025 0 24 0 13636 3548 wait Ds - 0:00.00 [sh]
0 2029 2026 0 20 0 14412 4852 select D+ - 0:00.01 [sudo]
0 2030 2029 0 26 0 14412 4176 select Ds - 0:00.00 [sudo]
0 2031 2030 0 20 0 13636 3484 wait D - 0:00.00 [sh]
0 2034 2031 0 20 0 12892 2340 select D+ - 0:00.00 [hccontrol]
------------------------------------------------------------------------
vmstat -s
0 cpu context switches
0 device interrupts
0 software interrupts
0 traps
0 system calls
0 kernel threads created
0 fork() calls
0 vfork() calls
0 rfork() calls
0 swap pager pageins
0 swap pager pages paged in
0 swap pager pageouts
0 swap pager pages paged out
0 vnode pager pageins
0 vnode pager pages paged in
0 vnode pager pageouts
0 vnode pager pages paged out
0 page daemon wakeups
0 pages examined by the page daemon
0 clean page reclamation shortfalls
0 pages reactivated by the page daemon
0 copy-on-write faults
0 copy-on-write optimized faults
0 zero fill pages zeroed
0 zero fill pages prezeroed
0 intransit blocking page faults
0 total VM faults taken
0 page faults requiring I/O
0 pages affected by kernel thread creation
0 pages affected by fork()
0 pages affected by vfork()
0 pages affected by rfork()
0 pages freed
0 pages freed by daemon
0 pages freed by exiting processes
0 pages active
0 pages inactive
0 pages in the laundry queue
0 pages wired down
0 virtual user pages wired down
0 pages free
0 bytes per page
0 total name lookups
cache hits (0% pos + 0% neg) system 0% per-directory
deletions 0%, falsehits 0%, toolong 0%
------------------------------------------------------------------------
vmstat -m
vmstat: memstat_kvm_malloc: invalid address (0xfffffe0132148c80)
Type InUse MemUse HighUse Requests Size(s)
------------------------------------------------------------------------
vmstat -z
ITEM SIZE LIMIT USED FREE REQ FAILSLEEP XDOMAIN
UMA Kegs: 384, 0, 0, 0, 0, 0, 0, 0
UMA Zones: 1536, 0, 0, 0, 0, 0, 0, 0
UMA Slabs 0: 112, 0, 0, 0, 0, 0, 0, 0
UMA Slabs 1: 176, 0, 0, 0, 0, 0, 0, 0
UMA Hash: 256, 0, 0, 0, 0, 0, 0, 0
2 Bucket: 32, 0, 606, 1413, 20392, 0, 0, 0
4 Bucket: 48, 0, 80, 1952, 5994, 0, 0, 0
8 Bucket: 80, 0, 180, 1080, 17846, 0, 0, 0
16 Bucket: 144, 0, 141, 355, 538, 0, 0, 0
32 Bucket: 256, 0, 184, 436, 1853, 0, 0, 0
64 Bucket: 512, 0, 192, 81, 1517, 0, 0, 0
128 Bucket: 1024, 0, 213, 91, 693, 0, 0, 0
256 Bucket: 2048, 0, 550, 26, 2983, 0, 0, 0
SMR SHARED: 24, 0, 1, 253, 1, 0, 0, 0
SMR CPU: 32, 0, 1, 253, 1, 0, 0, 0
vmem: 1856, 0, 1, 7, 1, 0, 0, 0
vmem btag: 56, 0, 20082, 967, 20082, 0, 0, 0
VM OBJECT: 264, 0, 2101, 179, 33150, 0, 0, 0
RADIX NODE: 144, 0, 7810, 498, 76146, 0, 0, 0
MAP: 216, 0, 2, 60, 2, 0, 0, 0
KMAP ENTRY: 96, 0, 45, 837, 50, 0, 0, 0
MAP ENTRY: 96, 0, 1884, 1014, 104478, 0, 0, 0
VMSPACE: 2536, 0, 47, 29, 1995, 0, 0, 0
fakepg: 104, 0, 0, 0, 0, 0, 0, 0
int pcpu: 4, 0, 152, 1880, 152, 0, 0, 0
64 pcpu: 8, 0, 4299, 1289, 4307, 0, 0, 0
mt_stats_zone: 64, 0, 450, 1074, 450, 0, 0, 0
mt_zone: 24, 0, 450, 1074, 450, 0, 0, 0
16: 16, 0, 78, 1954, 276, 0, 0, 0
16: 16, 0, 19838, 990, 62675, 0, 0, 0
16: 16, 0, 4, 1012, 13, 0, 0, 0
16: 16, 0, 128, 1904, 127318, 0, 0, 0
16: 16, 0, 5, 1519, 11, 0, 0, 0
16: 16, 0, 715, 1825, 3913, 0, 0, 0
16: 16, 0, 45, 1987, 251, 0, 0, 0
16: 16, 0, 1, 2031, 744, 0, 0, 0
32: 32, 0, 40, 1738, 136, 0, 0, 0
32: 32, 0, 10067, 1617, 32115, 0, 0, 0
32: 32, 0, 93, 1939, 624, 0, 0, 0
32: 32, 0, 229, 1803, 12676, 0, 0, 0
32: 32, 0, 270, 1508, 329, 0, 0, 0
32: 32, 0, 262, 2024, 2269, 0, 0, 0
32: 32, 0, 221, 1811, 279, 0, 0, 0
32: 32, 0, 6, 1518, 202, 0, 0, 0
64: 64, 0, 35, 1997, 158, 0, 0, 0
64: 64, 0, 11017, 1175, 53393, 0, 0, 0
64: 64, 0, 22, 2010, 501, 0, 0, 0
64: 64, 0, 2250, 1814, 7895, 0, 0, 0
64: 64, 0, 45, 1479, 49, 0, 0, 0
64: 64, 0, 791, 1749, 1359, 0, 0, 0
64: 64, 0, 150, 1882, 210, 0, 0, 0
64: 64, 0, 8, 2024, 36671, 0, 0, 0
128: 128, 0, 1540, 476, 3373, 0, 0, 0
128: 128, 0, 14958, 918, 61410, 0, 0, 0
128: 128, 0, 71, 811, 279, 0, 0, 0
128: 128, 0, 3615, 795, 126739, 0, 0, 0
128: 128, 0, 176, 706, 184, 0, 0, 0
128: 128, 0, 431, 829, 509, 0, 0, 0
128: 128, 0, 317, 817, 967, 0, 0, 0
128: 128, 0, 587, 925, 23740, 0, 0, 0
256: 256, 0, 87, 409, 515, 0, 0, 0
256: 256, 0, 2056, 486, 34046, 0, 0, 0
256: 256, 0, 1, 371, 61, 0, 0, 0
256: 256, 0, 684, 370, 5965, 0, 0, 0
256: 256, 0, 112, 384, 706, 0, 0, 0
256: 256, 0, 708, 346, 1023, 0, 0, 0
256: 256, 0, 44, 452, 104, 0, 0, 0
256: 256, 0, 17, 417, 665, 0, 0, 0
512: 512, 0, 35, 175, 1700, 0, 0, 0
512: 512, 0, 270, 300, 38343, 0, 0, 0
512: 512, 0, 1, 29, 1, 0, 0, 0
512: 512, 0, 19, 221, 149, 0, 0, 0
512: 512, 0, 30, 120, 30, 0, 0, 0
512: 512, 0, 114, 126, 18269, 0, 0, 0
512: 512, 0, 58, 182, 62, 0, 0, 0
512: 512, 0, 139, 131, 140, 0, 0, 0
1024: 1024, 0, 3, 93, 1696, 0, 0, 0
1024: 1024, 0, 1246, 98, 8213, 0, 0, 0
1024: 1024, 0, 11, 21, 12, 0, 0, 0
1024: 1024, 0, 24, 104, 45, 0, 0, 0
1024: 1024, 0, 32, 64, 32, 0, 0, 0
1024: 1024, 0, 217, 151, 986, 0, 0, 0
1024: 1024, 0, 0, 0, 0, 0, 0, 0
1024: 1024, 0, 0, 0, 0, 0, 0, 0
2048: 2048, 0, 1, 39, 16, 0, 0, 0
2048: 2048, 0, 155, 53, 107385, 0, 0, 0
2048: 2048, 0, 2, 6, 2, 0, 0, 0
2048: 2048, 0, 8, 48, 22692, 0, 0, 0
2048: 2048, 0, 1, 7, 1, 0, 0, 0
2048: 2048, 0, 15, 33, 75, 0, 0, 0
2048: 2048, 0, 5, 27, 5, 0, 0, 0
2048: 2048, 0, 0, 0, 0, 0, 0, 0
4096: 4096, 0, 17, 5, 27, 0, 0, 0
4096: 4096, 0, 323, 11, 1953, 0, 0, 0
4096: 4096, 0, 354, 6, 490, 0, 0, 0
4096: 4096, 0, 30, 6, 44, 0, 0, 0
4096: 4096, 0, 1, 7, 8, 0, 0, 0
4096: 4096, 0, 23, 11, 18918, 0, 0, 0
4096: 4096, 0, 1, 5, 3, 0, 0, 0
4096: 4096, 0, 88, 12, 2035, 0, 0, 0
8192: 8192, 0, 4, 0, 5, 0, 0, 0
8192: 8192, 0, 25, 14, 408, 0, 0, 0
8192: 8192, 0, 5, 0, 5, 0, 0, 0
8192: 8192, 0, 8, 0, 8, 0, 0, 0
8192: 8192, 0, 8, 0, 8, 0, 0, 0
8192: 8192, 0, 6, 4, 47, 0, 0, 0
8192: 8192, 0, 2, 0, 2, 0, 0, 0
8192: 8192, 0, 0, 0, 0, 0, 0, 0
16384: 16384, 0, 4, 32, 1446, 0, 0, 0
16384: 16384, 0, 8, 12, 213, 0, 0, 0
16384: 16384, 0, 1, 0, 1, 0, 0, 0
16384: 16384, 0, 2, 0, 2, 0, 0, 0
16384: 16384, 0, 1, 0, 1, 0, 0, 0
16384: 16384, 0, 1, 4, 9, 0, 0, 0
16384: 16384, 0, 0, 1, 2, 0, 0, 0
16384: 16384, 0, 0, 0, 0, 0, 0, 0
32768: 32768, 0, 1, 5, 8, 0, 0, 0
32768: 32768, 0, 16, 12, 122, 0, 0, 0
32768: 32768, 0, 1, 0, 1, 0, 0, 0
32768: 32768, 0, 9, 6, 20, 0, 0, 0
32768: 32768, 0, 1, 0, 1, 0, 0, 0
32768: 32768, 0, 0, 0, 0, 0, 0, 0
32768: 32768, 0, 0, 1, 1, 0, 0, 0
32768: 32768, 0, 1, 0, 1, 0, 0, 0
65536: 65536, 0, 0, 8, 102, 0, 0, 0
65536: 65536, 0, 0, 11, 36, 0, 0, 0
65536: 65536, 0, 2, 0, 2, 0, 0, 0
65536: 65536, 0, 2, 2, 10, 0, 0, 0
65536: 65536, 0, 1, 0, 1, 0, 0, 0
65536: 65536, 0, 7, 1, 8, 0, 0, 0
65536: 65536, 0, 0, 0, 0, 0, 0, 0
65536: 65536, 0, 0, 0, 0, 0, 0, 0
SLEEPQUEUE: 88, 0, 721, 665, 721, 0, 0, 0
Files: 80, 0, 199, 809, 19676, 0, 0, 0
filedesc0: 1088, 0, 88, 64, 2035, 0, 0, 0
PWD: 32, 0, 23, 2009, 259, 0, 0, 0
rl_entry: 40, 0, 71, 1961, 71, 0, 0, 0
TURNSTILE: 136, 0, 721, 271, 721, 0, 0, 0
rangeset pctrie nodes: 144, 0, 0, 0, 0, 0, 0, 0
umtx pi: 96, 0, 0, 0, 0, 0, 0, 0
umtx_shm: 88, 0, 0, 0, 0, 0, 0, 0
swrbuf: 832, 128, 0, 0, 0, 0, 0, 0
swwbuf: 832, 64, 0, 0, 0, 0, 0, 0
nfspbuf: 832, 128, 0, 0, 0, 0, 0, 0
mdpbuf: 832, 25, 0, 0, 0, 0, 0, 0
clpbuf: 832, 128, 0, 0, 0, 0, 0, 0
vnpbuf: 832, 512, 0, 0, 0, 0, 0, 0
pbuf: 832, 16, 0, 0, 0, 0, 0, 0
MAC labels: 40, 0, 0, 0, 0, 0, 0, 0
PROC: 1328, 0, 87, 49, 2034, 0, 0, 0
THREAD: 1792, 0, 669, 43, 693, 0, 0, 0
cpuset: 104, 0, 19, 989, 19, 0, 0, 0
domainset: 40, 0, 0, 0, 0, 0, 0, 0
audit_record: 1280, 0, 0, 0, 0, 0, 0, 0
mbuf_packet: 256, 0, 0, 1524, 198, 0, 0, 0
mbuf: 256, 6493278, 6292, 1836, 12429, 0, 0, 0
mbuf_cluster: 2048, 1014574, 3572, 1762, 3692, 0, 0, 0
mbuf_jumbo_page: 4096, 507287, 64, 1460, 2738, 0, 0, 0
mbuf_jumbo_9k: 9216, 150307, 0, 0, 0, 0, 0, 0
mbuf_jumbo_16k: 16384, 84547, 0, 0, 0, 0, 0, 0
mbuf_extpgs: 256, 0, 0, 0, 0, 0, 0, 0
epoch_record pcpu: 256, 0, 4, 58, 4, 0, 0, 0
DMAR_MAP_ENTRY: 128, 0, 0, 0, 0, 0, 0, 0
ttyinq: 160, 0, 195, 239, 330, 0, 0, 0
ttyoutq: 256, 0, 103, 331, 175, 0, 0, 0
FPU_save_area: 832, 0, 0, 0, 0, 0, 0, 0
nvme_request: 128, 0, 0, 0, 0, 0, 0, 0
g_bio: 384, 0, 0, 240, 69138, 0, 0, 0
cryptop: 240, 0, 0, 496, 9927, 0, 0, 0
crypto_session: 72, 0, 8, 118, 9, 0, 0, 0
vtnet_tx_hdr: 24, 0, 0, 0, 0, 0, 0, 0
taskq_zone: 48, 0, 0, 2032, 538, 0, 0, 0
VNODE: 488, 0, 715, 125, 1261, 0, 0, 0
VNODEPOLL: 120, 0, 0, 0, 0, 0, 0, 0
BUF TRIE: 144, 0, 0, 0, 0, 0, 0, 0
NAMEI: 1024, 0, 0, 128, 39664, 0, 0, 0
rentr: 24, 0, 0, 254, 1, 0, 0, 0
S VFS Cache: 108, 0, 787, 347, 1470, 0, 0, 0
STS VFS Cache: 148, 0, 0, 0, 0, 0, 0, 0
L VFS Cache: 328, 0, 0, 0, 0, 0, 0, 0
LTS VFS Cache: 368, 0, 0, 0, 0, 0, 0, 0
NCLNODE: 592, 0, 0, 0, 0, 0, 0, 0
DIRHASH: 1024, 0, 0, 0, 0, 0, 0, 0
AIO: 208, 0, 0, 0, 0, 0, 0, 0
AIOP: 32, 0, 0, 0, 0, 0, 0, 0
AIOCB: 752, 0, 0, 0, 0, 0, 0, 0
AIOLIO: 280, 0, 0, 0, 0, 0, 0, 0
reference_cache: 40, 0, 24, 2008, 3190, 0, 0, 0
reference_history_cache: 8, 0, 24, 2008, 3190, 0, 0, 0
range_seg_cache: 72, 0, 20408, 886, 24194, 0, 0, 0
zio_cache: 1128, 0, 12, 68, 61874, 0, 0, 0
zio_link_cache: 48, 0, 0, 2032, 21685, 0, 0, 0
zio_buf_512: 512, 0, 850, 140, 10686, 0, 0, 0
zio_data_buf_512: 512, 0, 83, 157, 6473, 0, 0, 0
zio_buf_1024: 1024, 0, 28, 100, 69, 0, 0, 0
zio_data_buf_1024: 1024, 0, 70, 58, 82, 0, 0, 0
zio_buf_1536: 1536, 0, 20, 44, 24, 0, 0, 0
zio_data_buf_1536: 1536, 0, 30, 42, 34, 0, 0, 0
zio_buf_2048: 2048, 0, 36, 60, 215, 0, 0, 0
zio_data_buf_2048: 2048, 0, 22, 34, 38, 0, 0, 0
zio_buf_2560: 2560, 0, 1, 7, 2, 0, 0, 0
zio_data_buf_2560: 2560, 0, 21, 11, 24, 0, 0, 0
zio_buf_3072: 3072, 0, 4, 16, 10, 0, 0, 0
zio_data_buf_3072: 3072, 0, 11, 17, 12, 0, 0, 0
zio_buf_3584: 3584, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_3584: 3584, 0, 10, 2, 11, 0, 0, 0
zio_buf_4096: 4096, 0, 669, 17, 2214, 0, 0, 0
zio_data_buf_4096: 4096, 0, 39, 19, 768, 0, 0, 0
zio_buf_5120: 5120, 0, 3, 11, 38, 0, 0, 0
zio_data_buf_5120: 5120, 0, 4, 2, 6, 0, 0, 0
zio_buf_6144: 6144, 0, 1, 0, 1, 0, 0, 0
zio_data_buf_6144: 6144, 0, 9, 2, 11, 0, 0, 0
zio_buf_7168: 7168, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_7168: 7168, 0, 9, 2, 11, 0, 0, 0
zio_buf_8192: 8192, 0, 1, 22, 382, 0, 0, 0
zio_data_buf_8192: 8192, 0, 8, 4, 15, 0, 0, 0
zio_buf_10240: 10240, 0, 2, 0, 2, 0, 0, 0
zio_data_buf_10240: 10240, 0, 20, 2, 24, 0, 0, 0
zio_buf_12288: 12288, 0, 3, 17, 196, 0, 0, 0
zio_data_buf_12288: 12288, 0, 10, 1, 15, 0, 0, 0
zio_buf_14336: 14336, 0, 2, 0, 2, 0, 0, 0
zio_data_buf_14336: 14336, 0, 11, 2, 15, 0, 0, 0
zio_buf_16384: 16384, 0, 343, 16, 901, 0, 0, 0
zio_data_buf_16384: 16384, 0, 4, 2, 8, 0, 0, 0
zio_buf_20480: 20480, 0, 1, 14, 70, 0, 0, 0
zio_data_buf_20480: 20480, 0, 16, 2, 24, 0, 0, 0
zio_buf_24576: 24576, 0, 0, 14, 60, 0, 0, 0
zio_data_buf_24576: 24576, 0, 18, 2, 23, 0, 0, 0
zio_buf_28672: 28672, 0, 0, 14, 40, 0, 0, 0
zio_data_buf_28672: 28672, 0, 8, 0, 8, 0, 0, 0
zio_buf_32768: 32768, 0, 1, 12, 43, 0, 0, 0
zio_data_buf_32768: 32768, 0, 6, 1, 11, 0, 0, 0
zio_buf_40960: 40960, 0, 0, 12, 51, 0, 0, 0
zio_data_buf_40960: 40960, 0, 15, 2, 17, 0, 0, 0
zio_buf_49152: 49152, 0, 2, 13, 50, 0, 0, 0
zio_data_buf_49152: 49152, 0, 11, 1, 14, 0, 0, 0
zio_buf_57344: 57344, 0, 1, 8, 34, 0, 0, 0
zio_data_buf_57344: 57344, 0, 10, 0, 10, 0, 0, 0
zio_buf_65536: 65536, 0, 0, 13, 46, 0, 0, 0
zio_data_buf_65536: 65536, 0, 4, 0, 4, 0, 0, 0
zio_buf_81920: 81920, 0, 0, 21, 103, 0, 0, 0
zio_data_buf_81920: 81920, 0, 9, 1, 10, 0, 0, 0
zio_buf_98304: 98304, 0, 0, 18, 108, 0, 0, 0
zio_data_buf_98304: 98304, 0, 7, 0, 7, 0, 0, 0
zio_buf_114688: 114688, 0, 0, 13, 31, 0, 0, 0
zio_data_buf_114688: 114688, 0, 11, 2, 13, 0, 0, 0
zio_buf_131072: 131072, 0, 110, 19, 594, 0, 0, 0
zio_data_buf_131072: 131072, 0, 153, 0, 153, 0, 0, 0
zio_buf_163840: 163840, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_163840: 163840, 0, 0, 0, 0, 0, 0, 0
zio_buf_196608: 196608, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_196608: 196608, 0, 0, 0, 0, 0, 0, 0
zio_buf_229376: 229376, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_229376: 229376, 0, 0, 0, 0, 0, 0, 0
zio_buf_262144: 262144, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_262144: 262144, 0, 0, 0, 0, 0, 0, 0
zio_buf_327680: 327680, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_327680: 327680, 0, 0, 0, 0, 0, 0, 0
zio_buf_393216: 393216, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_393216: 393216, 0, 0, 0, 0, 0, 0, 0
zio_buf_458752: 458752, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_458752: 458752, 0, 0, 0, 0, 0, 0, 0
zio_buf_524288: 524288, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_524288: 524288, 0, 0, 0, 0, 0, 0, 0
zio_buf_655360: 655360, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_655360: 655360, 0, 0, 0, 0, 0, 0, 0
zio_buf_786432: 786432, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_786432: 786432, 0, 0, 0, 0, 0, 0, 0
zio_buf_917504: 917504, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_917504: 917504, 0, 0, 0, 0, 0, 0, 0
zio_buf_1048576: 1048576, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_1048576: 1048576, 0, 0, 0, 0, 0, 0, 0
zio_buf_1310720: 1310720, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_1310720: 1310720, 0, 0, 0, 0, 0, 0, 0
zio_buf_1572864: 1572864, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_1572864: 1572864, 0, 0, 0, 0, 0, 0, 0
zio_buf_1835008: 1835008, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_1835008: 1835008, 0, 0, 0, 0, 0, 0, 0
zio_buf_2097152: 2097152, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_2097152: 2097152, 0, 0, 0, 0, 0, 0, 0
zio_buf_2621440: 2621440, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_2621440: 2621440, 0, 0, 0, 0, 0, 0, 0
zio_buf_3145728: 3145728, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_3145728: 3145728, 0, 0, 0, 0, 0, 0, 0
zio_buf_3670016: 3670016, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_3670016: 3670016, 0, 0, 0, 0, 0, 0, 0
zio_buf_4194304: 4194304, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_4194304: 4194304, 0, 0, 0, 0, 0, 0, 0
zio_buf_5242880: 5242880, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_5242880: 5242880, 0, 0, 0, 0, 0, 0, 0
zio_buf_6291456: 6291456, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_6291456: 6291456, 0, 0, 0, 0, 0, 0, 0
zio_buf_7340032: 7340032, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_7340032: 7340032, 0, 0, 0, 0, 0, 0, 0
zio_buf_8388608: 8388608, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_8388608: 8388608, 0, 0, 0, 0, 0, 0, 0
zio_buf_10485760: 10485760, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_10485760: 10485760, 0, 0, 0, 0, 0, 0, 0
zio_buf_12582912: 12582912, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_12582912: 12582912, 0, 0, 0, 0, 0, 0, 0
zio_buf_14680064: 14680064, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_14680064: 14680064, 0, 0, 0, 0, 0, 0, 0
zio_buf_16777216: 16777216, 0, 0, 0, 0, 0, 0, 0
zio_data_buf_16777216: 16777216, 0, 0, 0, 0, 0, 0, 0
lz4_ctx: 16384, 0, 0, 9, 1237, 0, 0, 0
abd_chunk: 4096, 0, 3617, 27, 4416, 0, 0, 0
sa_cache: 152, 0, 667, 263, 719, 0, 0, 0
dnode_t: 960, 0, 1037, 67, 1582, 0, 0, 0
arc_buf_hdr_t_full: 376, 0, 1350, 150, 9532, 0, 0, 0
arc_buf_hdr_t_l2only: 96, 0, 0, 0, 0, 0, 0, 0
arc_buf_t: 64, 0, 1206, 826, 9634, 0, 0, 0
dmu_buf_impl_t: 352, 0, 2031, 159, 10192, 0, 0, 0
zil_lwb_cache: 320, 0, 2, 178, 16, 0, 0, 0
zil_zcw_cache: 80, 0, 0, 756, 17, 0, 0, 0
sio_cache: 128, 0, 0, 0, 0, 0, 0, 0
zfs_znode_cache: 288, 0, 667, 83, 719, 0, 0, 0
pipe: 760, 0, 7, 121, 725, 0, 0, 0
procdesc: 136, 0, 6, 304, 47, 0, 0, 0
Mountpoints: 2816, 0, 12, 20, 12, 0, 0, 0
ksiginfo: 112, 0, 93, 915, 354, 0, 0, 0
itimer: 352, 0, 0, 0, 0, 0, 0, 0
KNOTE: 160, 0, 3, 245, 41, 0, 0, 0
socket: 904, 521604, 91, 1941, 4599, 0, 0, 0
ipq: 56, 31705, 0, 0, 0, 0, 0, 0
udp_inpcb: 488, 521604, 33, 1999, 367, 0, 0, 0
udpcb: 32, 521604, 33, 1999, 367, 0, 0, 0
tcp_inpcb: 488, 521604, 14, 1510, 19, 0, 0, 0
tcpcb: 1008, 521604, 14, 1510, 19, 0, 0, 0
tcptw: 88, 27767, 0, 0, 0, 0, 0, 0
syncache: 168, 15360, 0, 254, 1, 0, 0, 0
hostcache: 96, 15360, 0, 0, 0, 0, 0, 0
sackhole: 32, 0, 0, 0, 0, 0, 0, 0
tfo: 4, 0, 0, 0, 0, 0, 0, 0
tfo_ccache_entries: 80, 0, 0, 0, 0, 0, 0, 0
tcpreass: 48, 63410, 0, 0, 0, 0, 0, 0
tcp_log: 408, 5000000, 0, 0, 0, 0, 0, 0
tcp_log_bucket: 184, 0, 0, 0, 0, 0, 0, 0
tcp_log_node: 120, 0, 0, 0, 0, 0, 0, 0
sctp_ep: 1280, 521604, 0, 0, 0, 0, 0, 0
sctp_asoc: 2288, 40000, 0, 0, 0, 0, 0, 0
sctp_laddr: 48, 80000, 0, 1270, 11, 0, 0, 0
sctp_raddr: 736, 80000, 0, 0, 0, 0, 0, 0
sctp_chunk: 152, 400000, 0, 0, 0, 0, 0, 0
sctp_readq: 152, 400000, 0, 0, 0, 0, 0, 0
sctp_stream_msg_out: 112, 400000, 0, 0, 0, 0, 0, 0
sctp_asconf: 40, 400000, 0, 0, 0, 0, 0, 0
sctp_asconf_ack: 48, 400000, 0, 0, 0, 0, 0, 0
udplite_inpcb: 488, 521604, 0, 0, 0, 0, 0, 0
ripcb: 488, 521604, 5, 1265, 11, 0, 0, 0
unpcb: 256, 521604, 33, 1999, 4097, 0, 0, 0
IPsec SA lft_c: 16, 0, 0, 0, 0, 0, 0, 0
rtentry: 208, 0, 23, 473, 27, 0, 0, 0
selfd: 64, 0, 139, 1893, 10924, 0, 0, 0
swpctrie: 144, 2029160, 0, 0, 0, 0, 0, 0
swblk: 136, 2029159, 0, 0, 0, 0, 0, 0
NetGraph items: 72, 4096, 1, 881, 131, 0, 0, 0
NetGraph data items: 72, 4096, 0, 882, 128, 0, 0, 0
------------------------------------------------------------------------
vmstat -i
interrupt total rate
irq1: atkbd0 2 0
irq9: acpi0 342 8
irq16: ehci0 12491 292
irq17: hdac0 12 0
irq23: ehci1 684 16
cpu0:timer 10373 243
cpu1:timer 3717 87
cpu2:timer 4530 106
cpu3:timer 3628 85
cpu4:timer 4468 105
cpu5:timer 4210 99
cpu6:timer 3696 86
cpu7:timer 5472 128
irq33: em0:irq0 949 22
irq34: hdac1 33 1
irq35: iwn0 18539 434
irq39: xhci0 420156 9832
irq40: ahci0 21352 500
Total 514654 12043
------------------------------------------------------------------------
pstat -T
199/521604 files
0M/0M swap space
------------------------------------------------------------------------
pstat -s
Device 1K-blocks Used Avail Capacity
------------------------------------------------------------------------
iostat
tty ada0 cd0 pass0 cpu
tin tout KB/t tps MB/s KB/t tps MB/s KB/t tps MB/s us ni sy in id
1 31 2.7 94 0.2 0.0 0 0.0 0.0 0 0.0 0 0 0 0 99
------------------------------------------------------------------------
ipcs -a
Message Queues:
T ID KEY MODE OWNER GROUP CREATOR CGROUP CBYTES QNUM QBYTES LSPID LRPID STIME RTIME CTIME
Shared Memory:
T ID KEY MODE OWNER GROUP CREATOR CGROUP NATTCH SEGSZ CPID LPID ATIME DTIME CTIME
Semaphores:
T ID KEY MODE OWNER GROUP CREATOR CGROUP NSEMS OTIME CTIME
------------------------------------------------------------------------
ipcs -T
msginfo:
msgmax: 16384 (max characters in a message)
msgmni: 40 (# of message queues)
msgmnb: 2048 (max characters in a message queue)
msgtql: 40 (max # of messages in system)
msgssz: 8 (size of a message segment)
msgseg: 2048 (# of message segments in system)
shminfo:
shmmax: 536870912 (max shared memory segment size)
shmmin: 1 (min shared memory segment size)
shmmni: 192 (max number of shared memory identifiers)
shmseg: 128 (max shared memory segments per process)
shmall: 131072 (max amount of shared memory in pages)
seminfo:
semmni: 50 (# of semaphore identifiers)
semmns: 340 (# of semaphores in system)
semmnu: 150 (# of undo structures in system)
semmsl: 340 (max # of semaphores per id)
semopm: 100 (max # of operations per semop call)
semume: 50 (max # of undo entries per process)
semusz: 632 (size in bytes of undo structure)
semvmx: 32767 (semaphore maximum value)
semaem: 16384 (adjust on exit max value)
------------------------------------------------------------------------
nfsstat
*** -M option deprecated, ignored
*** -N option deprecated, ignored
Rpc Counts:
Getattr Setattr Lookup Readlink Read Write Create Remove
0 0 0 0 0 0 0 0
Rename Link Symlink Mkdir Rmdir Readdir RdirPlus Access
0 0 0 0 0 0 0 0
Mknod Fsstat Fsinfo PathConf Commit
0 0 0 0 0
Rpc Info:
TimedOut Invalid X Replies Retries Requests
0 0 0 0 0
Cache Info:
Attr Hits Attr Misses Lkup Hits Lkup Misses BioR Hits BioR Misses BioW Hits BioW Misses
0 0 0 0 0 0 0 0
BioRL Hits BioRL Misses BioD Hits BioD Misses DirE Hits DirE Misses Accs Hits Accs Misses
0 0 0 0 0 0 0 0
Server Info:
Getattr Setattr Lookup Readlink Read Write Create Remove
0 0 0 0 0 0 0 0
Rename Link Symlink Mkdir Rmdir Readdir RdirPlus Access
0 0 0 0 0 0 0 0
Mknod Fsstat Fsinfo PathConf Commit
0 0 0 0 0
Server Re-Failed
0
Server Faults
0
Server Write
WriteOps WriteRPC Opsaved
0 0 0
Server Cache
Inprog Idem Non-Idem Misses
0 0 0 0
------------------------------------------------------------------------
netstat -s
tcp:
0 packets sent
0 data packets (0 bytes)
0 data packets (0 bytes) retransmitted
0 data packets unnecessarily retransmitted
0 resends initiated by MTU discovery
0 ack-only packets (0 delayed)
0 URG only packets
0 window probe packets
0 window update packets
0 control packets
0 packets received
0 acks (for 0 bytes)
0 duplicate acks
0 acks for unsent data
0 packets (0 bytes) received in-sequence
0 completely duplicate packets (0 bytes)
0 old duplicate packets
0 packets with some dup. data (0 bytes duped)
0 out-of-order packets (0 bytes)
0 packets (0 bytes) of data after window
0 window probes
0 window update packets
0 packets received after close
0 discarded for bad checksums
0 discarded for bad header offset fields
0 discarded because packet too short
0 discarded due to full reassembly queue
0 connection requests
0 connection accepts
0 bad connection attempts
0 listen queue overflows
0 ignored RSTs in the windows
0 connections established (including accepts)
0 times used RTT from hostcache
0 times used RTT variance from hostcache
0 times used slow-start threshold from hostcache
0 connections closed (including 0 drops)
0 connections updated cached RTT on close
0 connections updated cached RTT variance on close
0 connections updated cached ssthresh on close
0 embryonic connections dropped
0 segments updated rtt (of 0 attempts)
0 retransmit timeouts
0 connections dropped by rexmit timeout
0 persist timeouts
0 connections dropped by persist timeout
0 Connections (fin_wait_2) dropped because of timeout
0 keepalive timeouts
0 keepalive probes sent
0 connections dropped by keepalive
0 correct ACK header predictions
0 correct data packet header predictions
0 syncache entries added
0 retransmitted
0 dupsyn
0 dropped
0 completed
0 bucket overflow
0 cache overflow
0 reset
0 stale
0 aborted
0 badack
0 unreach
0 zone failures
0 cookies sent
0 cookies received
0 hostcache entries added
0 bucket overflow
0 SACK recovery episodes
0 segment rexmits in SACK recovery episodes
0 byte rexmits in SACK recovery episodes
0 SACK options (SACK blocks) received
0 SACK options (SACK blocks) sent
0 SACK scoreboard overflow
0 packets with ECN CE bit set
0 packets with ECN ECT(0) bit set
0 packets with ECN ECT(1) bit set
0 successful ECN handshakes
0 times ECN reduced the congestion window
0 packets with matching signature received
0 packets with bad signature received
0 times failed to make signature due to no SA
0 times unexpected signature received
0 times no signature provided by segment
0 Path MTU discovery black hole detection activations
0 Path MTU discovery black hole detection min MSS activations
0 Path MTU discovery black hole detection failures
TCP connection count by state:
0 connections in CLOSED state
0 connections in LISTEN state
0 connections in SYN_SENT state
0 connections in SYN_RCVD state
0 connections in ESTABLISHED state
0 connections in CLOSE_WAIT state
0 connections in FIN_WAIT_1 state
0 connections in CLOSING state
0 connections in LAST_ACK state
0 connections in FIN_WAIT_2 state
0 connections in TIME_WAIT state
udp:
0 datagrams received
0 with incomplete header
0 with bad data length field
0 with bad checksum
0 with no checksum
0 dropped due to no socket
0 broadcast/multicast datagrams undelivered
0 dropped due to full socket buffers
0 not for hashed pcb
0 delivered
0 datagrams output
0 times multicast source filter matched
ip:
0 total packets received
0 bad header checksums
0 with size smaller than minimum
0 with data size < data length
0 with ip length > max ip packet size
0 with header length < data size
0 with data length < header length
0 with bad options
0 with incorrect version number
0 fragments received
0 fragments dropped (dup or out of space)
0 fragments dropped after timeout
0 packets reassembled ok
0 packets for this host
0 packets for unknown/unsupported protocol
0 packets forwarded (0 packets fast forwarded)
0 packets not forwardable
0 packets received for unknown multicast group
0 redirects sent
0 packets sent from this host
0 packets sent with fabricated ip header
0 output packets dropped due to no bufs, etc.
0 output packets discarded due to no route
0 output datagrams fragmented
0 fragments created
0 datagrams that can't be fragmented
0 tunneling packets that can't find gif
0 datagrams with bad address in header
icmp:
0 calls to icmp_error
0 errors not generated in response to an icmp message
0 messages with bad code fields
0 messages less than the minimum length
0 messages with bad checksum
0 messages with bad length
0 multicast echo requests ignored
0 multicast timestamp requests ignored
0 message responses generated
0 invalid return addresses
0 no return routes
arp:
0 ARP requests sent
0 ARP requests failed to sent
0 ARP replies sent
0 ARP requests received
0 ARP replies received
0 ARP packets received
0 total packets dropped due to no ARP entry
0 ARP entrys timed out
0 Duplicate IPs seen
ip6:
0 total packets received
0 with size smaller than minimum
0 with data size < data length
0 with bad options
0 with incorrect version number
0 fragments received
0 fragments dropped (dup or out of space)
0 fragments dropped after timeout
0 fragments that exceeded limit
0 atomic fragments
0 packets reassembled ok
0 packets for this host
0 packets forwarded
0 packets not forwardable
0 redirects sent
0 packets sent from this host
0 packets sent with fabricated ip header
0 output packets dropped due to no bufs, etc.
0 output packets discarded due to no route
0 output datagrams fragmented
0 fragments created
0 datagrams that can't be fragmented
0 packets that violated scope rules
0 multicast packets which we don't join
Mbuf statistics:
0 one mbuf
0 one ext mbuf
0 two or more ext mbuf
0 packets whose headers are not contiguous
0 tunneling packets that can't find gif
0 packets discarded because of too many headers
0 failures of source address selection
icmp6:
0 calls to icmp6_error
0 errors not generated in response to an icmp6 message
0 errors not generated because of rate limitation
0 messages with bad code fields
0 messages < minimum length
0 bad checksums
0 messages with bad length
Histogram of error messages to be generated:
0 no route
0 administratively prohibited
0 beyond scope
0 address unreachable
0 port unreachable
0 packet too big
0 time exceed transit
0 time exceed reassembly
0 erroneous header field
0 unrecognized next header
0 unrecognized option
0 redirect
0 unknown
0 message responses generated
0 messages with too many ND options
0 messages with bad ND options
0 bad neighbor solicitation messages
0 bad neighbor advertisement messages
0 bad router solicitation messages
0 bad router advertisement messages
0 bad redirect messages
0 default routers overflows
0 prefix overflows
0 neighbour entries overflows
0 redirect overflows
0 path MTU changes
rip6:
0 messages received
0 checksum calculations on inbound
0 messages with bad checksum
0 messages dropped due to no socket
0 multicast messages dropped due to no socket
0 messages dropped due to full socket buffers
0 delivered
0 datagrams output
pfkey:
0 requests sent from userland
0 bytes sent from userland
0 messages with invalid length field
0 messages with invalid version field
0 messages with invalid message type field
0 messages too short
0 messages with memory allocation failure
0 messages with duplicate extension
0 messages with invalid extension type
0 messages with invalid sa type
0 messages with invalid address extension
0 requests sent to userland
0 bytes sent to userland
0 messages toward single socket
0 messages toward all sockets
0 messages toward registered sockets
0 messages with memory allocation failure
------------------------------------------------------------------------
netstat -m
netstat: memstat_kvm_all: invalid address (0xfffffe0132148c80)
------------------------------------------------------------------------
netstat -anA
Active Internet connections (including servers)
Tcpcb Proto Recv-Q Send-Q Local Address Foreign Address (state)
fffff80019676988 udp4 0 0 *.514 *.*
fffff800197871e8 udp6 0 0 *.514 *.*
fffff800196cf000 udp4 0 0 *.* *.*
fffff8002900c000 icm6 560 0 *.* *.*
fffff8011c331b70 icm6 560 0 *.* *.*
fffff8011c331d58 icm6 0 0 *.* *.*
Active UNIX domain sockets
Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr
fffff8001590ac00 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8
fffff8001590ad00 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8
fffff8001590d000 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8
fffff80015988300 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8
fffff80015738a00 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8
fffff80015789600 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8
fffff8001590d900 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8
fffff800156ec100 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/devd.pipe
fffff800156ec000 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/devd.pipe
fffff80015789500 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/rpcbind.sock
fffff80027e14e00 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/rpcbind.sock
fffff80027e13000 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/rpcbind.sock
fffff80027e13100 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/rpcbind.sock
fffff80027e13200 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/rpcbind.sock
fffff80027e13300 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/rpcbind.sock
fffff80015789c00 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/rpcbind.sock
fffff80015988100 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/rpcbind.sock
fffff80027e13500 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/rpcbind.sock
fffff80015738900 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/rpcbind.sock
fffff80015988400 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/rpcbind.sock
fffff80027e13700 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/rpcbind.sock
fffff80015988800 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/rpcbind.sock
fffff80015988500 stream 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/devd.pipe
fffff8001590ae00 dgram 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/devd.pipe
fffff80015789900 dgram 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/devd.pipe
fffff800156ec200 dgram 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/devd.pipe
fffff8001580c600 dgram 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/devd.pipe
fffff80015738b00 dgram 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/devd.pipe
fffff8009a69a600 dgram 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/devd.pipe
fffff800157c5b00 dgram 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/logpriv
fffff80015989c00 dgram 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/log
fffff80015988600 dgram 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/wpa_supplicant/wlan0
fffff80015989e00 seqpac 0 0 fffffffffffffdb3 800263bc0 20a5bd 800263ad8 /var/run/devd.seqpacket.pipe
------------------------------------------------------------------------
netstat -aL
Current listen queue sizes (qlen/incqlen/maxqlen)
Proto Listen Local Address
------------------------------------------------------------------------
fstat
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0xc00000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read file 10 at 0x780000ffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0xa00000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read file 10 at 0x780000ffff
fstat: can't read file 11 at 0xa00000000
fstat: can't read file 13 at 0x20007ffffffffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0xa00000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read file 10 at 0x780000ffff
fstat: can't read file 11 at 0xa00000000
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0xa00000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read file 10 at 0x780000ffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x800000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read file 10 at 0x780000ffff
fstat: can't read file 11 at 0x800000000
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0xe00000000
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x600000000
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x400000000
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x600000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read file 10 at 0x780000ffff
fstat: can't read file 11 at 0x600000000
fstat: can't read file 13 at 0x20007ffffffffff
fstat: can't read file 14 at 0x4000000001fffff
fstat: can't read file 16 at 0x780000ffff
fstat: can't read file 17 at 0x600000000
fstat: can't read file 19 at 0x20007ffffffffff
fstat: can't read file 20 at 0x4000000001fffff
fstat: can't read file 22 at 0x780000ffff
fstat: can't read file 23 at 0x4e00000001
fstat: can't read file 29 at 0x2c000000001
fstat: can't read file 35 at 0x400000000
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x400000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x400000000
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x400000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x400000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read file 10 at 0x780000ffff
fstat: can't read file 11 at 0x400000000
fstat: can't read file 13 at 0x20007ffffffffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x400000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read file 10 at 0x780000ffff
fstat: can't read file 11 at 0x400000000
fstat: can't read file 13 at 0x20007ffffffffff
fstat: can't read file 14 at 0x4000000001fffff
fstat: can't read file 16 at 0x780000ffff
fstat: can't read file 17 at 0x400000000
fstat: can't read file 19 at 0x20007ffffffffff
fstat: can't read file 20 at 0x4000000001fffff
fstat: can't read file 22 at 0x780000ffff
fstat: can't read file 23 at 0x2600000001
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x600000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x600000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x600000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x600000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x400000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read file 10 at 0x780000ffff
fstat: can't read file 11 at 0x400000000
fstat: can't read file 13 at 0x20007ffffffffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x800000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x200000000000000
fstat: can't read file 2 at 0x400000000000000
fstat: can't read file 5 at 0xa00000000
fstat: can't read file 7 at 0x200000000000002
fstat: can't read file 8 at 0x400000000000000
fstat: can't read file 11 at 0x600000000
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x800000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read file 10 at 0x780000ffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x800000000
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x200000000000000
fstat: can't read file 2 at 0x400000000000000
fstat: can't read file 5 at 0xa00000000
fstat: can't read file 7 at 0x200000000000002
fstat: can't read file 8 at 0x400000000000000
fstat: can't read file 11 at 0x600000000
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x800000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read file 10 at 0x780000ffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x800000000
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read file 1 at 0x20007ffffffffff
fstat: can't read file 2 at 0x4000000001fffff
fstat: can't read file 4 at 0x780000ffff
fstat: can't read file 5 at 0x400000000
fstat: can't read file 7 at 0x20007ffffffffff
fstat: can't read file 8 at 0x4000000001fffff
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
fstat: can't read znode_phys at 0x1
USER CMD PID FD MOUNT INUM MODE SZ|DV R/W
root hccontrol 2034 root - - error -
root hccontrol 2034 wd - - error -
root hccontrol 2034 text - - error -
root hccontrol 2034 ctty /dev 212 crw--w---- pts/1 rw
root hccontrol 2034 0 /dev 212 crw--w---- pts/1 rw
root sh 2031 root - - error -
root sh 2031 wd - - error -
root sh 2031 text - - error -
root sh 2031 ctty /dev 212 crw--w---- pts/1 rw
root sh 2031 0 /dev 212 crw--w---- pts/1 rw
root sh 2031 6 /dev 212 crw--w---- pts/1 rw
root sudo 2030 root - - error -
root sudo 2030 wd - - error -
root sudo 2030 text - - error -
root sudo 2030 ctty /dev 212 crw--w---- pts/1 rw
root sudo 2030 0 /dev 210 crw--w---- pts/0 rw
root sudo 2030 6 /dev 210 crw--w---- pts/0 rw
root sudo 2030 12 /dev 210 crw--w---- pts/0 rw
root sudo 2029 root - - error -
root sudo 2029 wd - - error -
root sudo 2029 text - - error -
root sudo 2029 ctty /dev 210 crw--w---- pts/0 rw
root sudo 2029 0 /dev 210 crw--w---- pts/0 rw
root sudo 2029 6 /dev 210 crw--w---- pts/0 rw
root sudo 2029 12 /dev 210 crw--w---- pts/0 rw
marc sh 2026 root - - error -
marc sh 2026 wd - - error -
marc sh 2026 text - - error -
marc sh 2026 ctty /dev 210 crw--w---- pts/0 rw
marc sh 2026 0 /dev 210 crw--w---- pts/0 rw
marc sh 2026 6 /dev 210 crw--w---- pts/0 rw
marc sshd 2025 root - - error -
marc sshd 2025 wd - - error -
marc sshd 2025 text - - error -
marc sshd 2025 0 /dev 36 crw-rw-rw- null rw
marc sshd 2025 6 /dev 36 crw-rw-rw- null rw
root sshd 2023 root - - error -
root sshd 2023 wd - - error -
root sshd 2023 text - - error -
root sshd 2023 0 /dev 36 crw-rw-rw- null r
root sshd 2023 6 /dev 36 crw-rw-rw- null rw
root getty 2020 root - - error -
root getty 2020 wd - - error -
root getty 2020 text - - error -
root getty 2020 ctty /dev 99 crw------- ttyv7 rw
root getty 2020 0 /dev 99 crw------- ttyv7 rw
root getty 2019 root - - error -
root getty 2019 wd - - error -
root getty 2019 text - - error -
root getty 2019 ctty /dev 98 crw------- ttyv6 rw
root getty 2019 0 /dev 98 crw------- ttyv6 rw
root getty 2018 root - - error -
root getty 2018 wd - - error -
root getty 2018 text - - error -
root getty 2018 ctty /dev 97 crw------- ttyv5 rw
root getty 2018 0 /dev 97 crw------- ttyv5 rw
root getty 2017 root - - error -
root getty 2017 wd - - error -
root getty 2017 text - - error -
root getty 2017 ctty /dev 96 crw------- ttyv4 rw
root getty 2017 0 /dev 96 crw------- ttyv4 rw
root getty 2016 root - - error -
root getty 2016 wd - - error -
root getty 2016 text - - error -
root getty 2016 ctty /dev 95 crw------- ttyv3 rw
root getty 2016 0 /dev 95 crw------- ttyv3 rw
root getty 2015 root - - error -
root getty 2015 wd - - error -
root getty 2015 text - - error -
root getty 2015 ctty /dev 94 crw------- ttyv2 rw
root getty 2015 0 /dev 94 crw------- ttyv2 rw
root getty 2014 root - - error -
root getty 2014 wd - - error -
root getty 2014 text - - error -
root getty 2014 ctty /dev 93 crw------- ttyv1 rw
root getty 2014 0 /dev 93 crw------- ttyv1 rw
root getty 2013 root - - error -
root getty 2013 wd - - error -
root getty 2013 text - - error -
root getty 2013 ctty /dev 92 crw------- ttyv0 rw
root getty 2013 0 /dev 92 crw------- ttyv0 rw
root cron 1947 root - - error -
root cron 1947 wd - - error -
root cron 1947 text - - error -
root cron 1947 0 /dev 36 crw-rw-rw- null rw
smmsp sendmail 1943 root - - error -
smmsp sendmail 1943 wd - - error -
smmsp sendmail 1943 text - - error -
smmsp sendmail 1943 0 /dev 36 crw-rw-rw- null r
root sendmail 1940 root - - error -
root sendmail 1940 wd - - error -
root sendmail 1940 text - - error -
root sendmail 1940 0 /dev 36 crw-rw-rw- null r
root sshd 1937 root - - error -
root sshd 1937 wd - - error -
root sshd 1937 text - - error -
root sshd 1937 0 /dev 36 crw-rw-rw- null rw
root powerd 1909 root - - error -
root powerd 1909 wd - - error -
root powerd 1909 text - - error -
root powerd 1909 0 /dev 36 crw-rw-rw- null rw
ntpd ntpd 1900 root - - error -
ntpd ntpd 1900 wd - - error -
ntpd ntpd 1900 text - - error -
ntpd ntpd 1900 0 /dev 36 crw-rw-rw- null r
ntpd ntpd 1900 6 /dev 36 crw-rw-rw- null r
ntpd ntpd 1900 12 /dev 36 crw-rw-rw- null r
ntpd ntpd 1900 18* local dgram fffff8001580c600 <-> fffff80015989c00
root rpc.lockd 1845 root - - error -
root rpc.lockd 1845 wd - - error -
root rpc.lockd 1845 text - - error -
root rpc.lockd 1845 0 /dev 36 crw-rw-rw- null rw
root rpc.statd 1837 root - - error -
root rpc.statd 1837 wd - - error -
root rpc.statd 1837 text - - error -
root rpc.statd 1837 0 /dev 36 crw-rw-rw- null rw
root rpc.statd 1837 6 /dev 36 crw-rw-rw- null rw
root nfsd 1831 root - - error -
root nfsd 1831 wd - - error -
root nfsd 1831 text - - error -
root nfsd 1831 0 /dev 36 crw-rw-rw- null rw
root nfsd 1828 root - - error -
root nfsd 1828 wd - - error -
root nfsd 1828 text - - error -
root nfsd 1828 0 /dev 36 crw-rw-rw- null rw
root nfsd 1828 6 /dev 36 crw-rw-rw- null rw
root mountd 1826 root - - error -
root mountd 1826 wd - - error -
root mountd 1826 text - - error -
root mountd 1826 0 /dev 36 crw-rw-rw- null rw
root mountd 1826 6 /dev 36 crw-rw-rw- null rw
root rpcbind 1811 root - - error -
root rpcbind 1811 wd - - error -
root rpcbind 1811 text - - error -
root rpcbind 1811 0 /dev 36 crw-rw-rw- null rw
root rpcbind 1811 6 /dev 36 crw-rw-rw- null rw
root rpcbind 1811 12 /dev 36 crw-rw-rw- null rw
root nfsuserd 1792 root - - error -
root nfsuserd 1792 wd - - error -
root nfsuserd 1792 text - - error -
root nfsuserd 1792 0 /dev 36 crw-rw-rw- null rw
root nfsuserd 1791 root - - error -
root nfsuserd 1791 wd - - error -
root nfsuserd 1791 text - - error -
root nfsuserd 1791 0 /dev 36 crw-rw-rw- null rw
root nfsuserd 1790 root - - error -
root nfsuserd 1790 wd - - error -
root nfsuserd 1790 text - - error -
root nfsuserd 1790 0 /dev 36 crw-rw-rw- null rw
root nfsuserd 1789 root - - error -
root nfsuserd 1789 wd - - error -
root nfsuserd 1789 text - - error -
root nfsuserd 1789 0 /dev 36 crw-rw-rw- null rw
root nfsuserd 1788 root - - error -
root nfsuserd 1788 wd - - error -
root nfsuserd 1788 text - - error -
root nfsuserd 1788 0 /dev 36 crw-rw-rw- null rw
root syslogd 1736 root - - error -
root syslogd 1736 wd - - error -
root syslogd 1736 text - - error -
root syslogd 1736 0 /dev 36 crw-rw-rw- null rw
root syslogd 1736 6 /dev 36 crw-rw-rw- null rw
root syslogd 1736 12 /dev 36 crw-rw-rw- null rw
root syslogd 1736 18* pipe fffff800152788e8 <-> fffff80015278a50 0 rw
root syslogd 1736 24* pipe fffff80015278a50 <-> fffff800152788e8 0 rw
root rtsold 1623 root - - error -
root rtsold 1623 wd - - error -
root rtsold 1623 text - - error -
root rtsold 1623 0 /dev 36 crw-rw-rw- null rw
root rtsold 1623 6 /dev 36 crw-rw-rw- null rw
root rtsold 1622 root - - error -
root rtsold 1622 wd - - error -
root rtsold 1622 text - - error -
root rtsold 1622 0 /dev 36 crw-rw-rw- null rw
root rtsold 1622 6 /dev 36 crw-rw-rw- null rw
root rtsold 1621 root - - error -
root rtsold 1621 wd - - error -
root rtsold 1621 text - - error -
root rtsold 1621 0 /dev 36 crw-rw-rw- null rw
root rtsold 1621 6 /dev 36 crw-rw-rw- null rw
root rtsold 1619 root - - error -
root rtsold 1619 wd - - error -
root rtsold 1619 text - - error -
root rtsold 1619 0 /dev 36 crw-rw-rw- null rw
root rtsold 1619 6 /dev 36 crw-rw-rw- null rw
root rtsold 1615 root - - error -
root rtsold 1615 wd - - error -
root rtsold 1615 text - - error -
root rtsold 1615 0 /dev 36 crw-rw-rw- null rw
root rtsold 1615 6 /dev 36 crw-rw-rw- null rw
root rtsold 1615 12 /dev 36 crw-rw-rw- null rw
root devd 1551 root - - error -
root devd 1551 wd - - error -
root devd 1551 text - - error -
root devd 1551 0 /dev 36 crw-rw-rw- null rw
root devd 1551 6 /dev 36 crw-rw-rw- null rw
_dhcp dhclient 1026 root - - error -
_dhcp dhclient 1026 wd - - error -
_dhcp dhclient 1026 text - - error -
_dhcp dhclient 1026 0 /dev 36 crw-rw-rw- null rw
_dhcp dhclient 1026 6 /dev 36 crw-rw-rw- null rw
root dhclient 1004 root - - error -
root dhclient 1004 wd - - error -
root dhclient 1004 text - - error -
root dhclient 1004 0 /dev 36 crw-rw-rw- null rw
root dhclient 1004 6 /dev 36 crw-rw-rw- null rw
root dhclient 1001 root - - error -
root dhclient 1001 wd - - error -
root dhclient 1001 text - - error -
root dhclient 1001 0 /dev 36 crw-rw-rw- null rw
root dhclient 1001 6 /dev 36 crw-rw-rw- null rw
_dhcp dhclient 990 root - - error -
_dhcp dhclient 990 wd - - error -
_dhcp dhclient 990 text - - error -
_dhcp dhclient 990 0 /dev 36 crw-rw-rw- null rw
_dhcp dhclient 990 6 /dev 36 crw-rw-rw- null rw
root dhclient 910 root - - error -
root dhclient 910 wd - - error -
root dhclient 910 text - - error -
root dhclient 910 0 /dev 36 crw-rw-rw- null rw
root dhclient 910 6 /dev 36 crw-rw-rw- null rw
root dhclient 907 root - - error -
root dhclient 907 wd - - error -
root dhclient 907 text - - error -
root dhclient 907 0 /dev 36 crw-rw-rw- null rw
root dhclient 907 6 /dev 36 crw-rw-rw- null rw
root ng_queue 709 root - - error -
root ng_queue 709 wd - - error -
root wpa_supplicant 368 root - - error -
root wpa_supplicant 368 wd - - error -
root wpa_supplicant 368 text - - error -
root wpa_supplicant 368 0 /dev 36 crw-rw-rw- null rw
root wpa_supplicant 368 6 /dev 36 crw-rw-rw- null rw
root zfskern 18 root - - error -
root zfskern 18 wd - - error -
root init 1 root - - error -
root init 1 wd - - error -
root init 1 text - - error -
root kernel 0 root - - error -
root kernel 0 wd - - error -
------------------------------------------------------------------------
dmesg
m Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 0
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 4
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 3
EP Num Reports (start): 1
EP Num Reports (in loop): 1
Event type: 2
ugen1.2: <vendor 0x0a12 CSR8510 A10> at usbus1 (disconnected)
ubt0: at uhub1, port 4, addr 1 (disconnected)
ubt0: detached
ugen1.2: <vendor 0x0a12 CSR8510 A10> at usbus1
ubt0 on uhub1
ubt0: <vendor 0x0a12 CSR8510 A10, class 224/1, rev 2.00/88.91, addr 1> on usbus1
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
Apr 1 17:58:46 devnovo login[2005]: ROOT LOGIN (root) ON ttyv0
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
Apr 1 18:22:56 devnovo reboot[52605]: rebooted by marc
Apr 1 18:22:56 devnovo syslogd: exiting on signal 15
wlan0: link state changed to DOWN
lock order reversal:
1st 0xfffffe00b43a6030 filedesc structure (filedesc structure) @ /usr/src/sys/kern/sys_generic.c:1493
2nd 0xfffff8020c5e9250 devfs (devfs) @ /usr/src/sys/kern/vfs_vnops.c:1553
stack backtrace:
#0 0xffffffff80c29f61 at witness_debugger+0x71
#1 0xffffffff80b901a8 at lockmgr_lock_flags+0x188
#2 0xffffffff80caa6e4 at _vn_lock+0x54
#3 0xffffffff80ca907a at vn_poll+0x3a
#4 0xffffffff80a7286b at devfs_poll_f+0x9b
#5 0xffffffff80c308e3 at kern_poll+0x563
#6 0xffffffff80c30a5f at sys_ppoll+0x6f
#7 0xffffffff8105ea6d at amd64_syscall+0x16d
#8 0xffffffff81034940 at fast_syscall_common+0x101
Waiting (max 60 seconds) for system process `vnlru' to stop... done
Waiting (max 60 seconds) for system process `syncer' to stop...
Syncing disks, vnodes remaining... 0 0 0 0 0 done
Waiting (max 60 seconds) for system thread `bufdaemon' to stop... done
Waiting (max 60 seconds) for system thread `bufspacedaemon-3' to stop... done
Waiting (max 60 seconds) for system thread `bufspacedaemon-0' to stop... done
Waiting (max 60 seconds) for system thread `bufspacedaemon-1' to stop... done
Waiting (max 60 seconds) for system thread `bufspacedaemon-2' to stop... done
Waiting (max 60 seconds) for system thread `bufspacedaemon-4' to stop... done
Waiting (max 60 seconds) for system thread `bufspacedaemon-5' to stop... done
Waiting (max 60 seconds) for system thread `bufspacedaemon-6' to stop... done
All buffers synced.
lock order reversal:
1st 0xfffff8000cf1cdc0 zfs (zfs) @ /usr/src/sys/kern/vfs_mount.c:1631
2nd 0xfffff8000c42a620 devfs (devfs) @ /usr/src/sys/kern/vfs_subr.c:2930
stack backtrace:
#0 0xffffffff80c29f61 at witness_debugger+0x71
#1 0xffffffff80b901a8 at lockmgr_lock_flags+0x188
#2 0xffffffff80caa6e4 at _vn_lock+0x54
#3 0xffffffff80c94fc2 at vget_finish+0x42
#4 0xffffffff80a6f6fb at devfs_allocv+0xcb
#5 0xffffffff80a6f233 at devfs_root+0x43
#6 0xffffffff80c9a0b1 at vfs_cache_root_fallback+0x131
#7 0xffffffff80c96a48 at vflush+0x48
#8 0xffffffff80a6f13e at devfs_unmount+0x3e
#9 0xffffffff80c8d713 at dounmount+0x423
#10 0xffffffff80c98131 at vfs_unmountall+0xc1
#11 0xffffffff80c7291b at bufshutdown+0x2cb
#12 0xffffffff80bbdb73 at kern_reboot+0x213
#13 0xffffffff80bbd909 at sys_reboot+0x379
#14 0xffffffff8105ea6d at amd64_syscall+0x16d
#15 0xffffffff81034940 at fast_syscall_common+0x101
Uptime: 29m14s
GEOM_ELI: Device ada0p3.eli destroyed.
GEOM_ELI: Detached ada0p3.eli on last close.
---<<BOOT>>---
Copyright (c) 1992-2020 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 13.0-CURRENT #1 r359500: Wed Apr 1 18:05:32 CEST 2020
root@devnovo:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64
FreeBSD clang version 10.0.0 (git@github.com:llvm/llvm-project.git llvmorg-10.0.0-0-gd32170dbd5b)
WARNING: WITNESS option enabled, expect reduced performance.
VT(vga): resolution 640x480
CPU: Intel(R) Core(TM) i7-2760QM CPU @ 2.40GHz (2392.28-MHz K8-class CPU)
Origin="GenuineIntel" Id=0x206a7 Family=0x6 Model=0x2a Stepping=7
Features=0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>
Features2=0x1fbae3ff<SSE3,PCLMULQDQ,DTES64,MON,DS_CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,TSCDLT,AESNI,XSAVE,OSXSAVE,AVX>
AMD Features=0x28100800<SYSCALL,NX,RDTSCP,LM>
AMD Features2=0x1<LAHF>
XSAVE Features=0x1<XSAVEOPT>
VT-x: PAT,HLT,MTF,PAUSE,EPT,UG,VPID
TSC: P-state invariant, performance statistics
real memory = 17179869184 (16384 MB)
avail memory = 16528601088 (15762 MB)
Event timer "LAPIC" quality 600
ACPI APIC Table: <LENOVO TP-8B >
FreeBSD/SMP: Multiprocessor System Detected: 8 CPUs
FreeBSD/SMP: 1 package(s) x 4 core(s) x 2 hardware threads
random: unblocking device.
ioapic0 <Version 2.0> irqs 0-23
Launching APs: 1 6 5 4 3 7 2
Timecounter "TSC-low" frequency 1196139704 Hz quality 1000
random: entropy device external interface
WARNING: Device "kbd" is Giant locked and may be deleted before FreeBSD 13.0.
kbd1 at kbdmux0
000.000049 [4342] netmap_init netmap: loaded module
[ath_hal] loaded
nexus0
vtvga0: <VT VGA driver>
cryptosoft0: <software crypto>
aesni0: <AES-CBC,AES-CCM,AES-GCM,AES-ICM,AES-XTS>
acpi0: <LENOVO TP-8B>
acpi_ec0: <Embedded Controller: GPE 0x11, ECDT> port 0x62,0x66 on acpi0
acpi0: Power Button (fixed)
cpu0: <ACPI CPU> on acpi0
attimer0: <AT timer> port 0x40-0x43 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
Event timer "i8254" frequency 1193182 Hz quality 100
hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0
Timecounter "HPET" frequency 14318180 Hz quality 950
Event timer "HPET" frequency 14318180 Hz quality 550
atrtc0: <AT realtime clock> port 0x70-0x71 irq 8 on acpi0
atrtc0: registered as a time-of-day clock, resolution 1.000000s
Event timer "RTC" frequency 32768 Hz quality 0
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0
acpi_lid0: <Control Method Lid Switch> on acpi0
acpi_button0: <Sleep Button> on acpi0
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pci0: <ACPI PCI bus> on pcib0
pcib1: <ACPI PCI-PCI bridge> irq 16 at device 1.0 on pci0
pci1: <ACPI PCI bus> on pcib1
vgapci0: <VGA-compatible display> port 0x5000-0x507f mem 0xd2000000-0xd2ffffff,0xc0000000-0xcfffffff,0xd0000000-0xd1ffffff irq 16 at device 0.0 on pci1
vgapci0: Boot video device
hdac0: <NVIDIA GT108 HDA Controller> mem 0xd3000000-0xd3003fff irq 17 at device 0.1 on pci1
pci0: <simple comms> at device 22.0 (no driver attached)
uart2: <Intel AMT - KT Controller> port 0x6070-0x6077 mem 0xd532c000-0xd532cfff irq 19 at device 22.3 on pci0
uart2: Using 1 MSI message
em0: <Intel(R) PRO/1000 Network Connection> port 0x6040-0x605f mem 0xd5300000-0xd531ffff,0xd532b000-0xd532bfff irq 20 at device 25.0 on pci0
em0: Using 1024 TX descriptors and 1024 RX descriptors
em0: Using an MSI interrupt
em0: Ethernet address: f0:de:f1:98:8c:9a
em0: netmap queues/slots: TX 1/1024, RX 1/1024
ehci0: <Intel Cougar Point USB 2.0 controller> mem 0xd532a000-0xd532a3ff irq 16 at device 26.0 on pci0
usbus0: EHCI version 1.0
usbus0 on ehci0
usbus0: 480Mbps High Speed USB v2.0
hdac1: <Intel Cougar Point HDA Controller> mem 0xd5320000-0xd5323fff irq 22 at device 27.0 on pci0
pcib2: <ACPI PCI-PCI bridge> irq 16 at device 28.0 on pci0
pci2: <ACPI PCI bus> on pcib2
pcib3: <ACPI PCI-PCI bridge> irq 17 at device 28.1 on pci0
pci3: <ACPI PCI bus> on pcib3
iwn0: <Intel Centrino Ultimate-N 6300> mem 0xd5200000-0xd5201fff irq 17 at device 0.0 on pci3
pcib4: <ACPI PCI-PCI bridge> irq 19 at device 28.3 on pci0
pcib5: <ACPI PCI-PCI bridge> irq 16 at device 28.4 on pci0
pci4: <ACPI PCI bus> on pcib5
sdhci_pci0: <RICOH R5CE823 SD> mem 0xd4201000-0xd42010ff irq 16 at device 0.0 on pci4
sdhci_pci0: 1 slot(s) allocated
pci4: <serial bus, FireWire> at device 0.3 (no driver attached)
pcib6: <ACPI PCI-PCI bridge> irq 18 at device 28.6 on pci0
pci5: <ACPI PCI bus> on pcib6
xhci0: <NEC uPD720200 USB 3.0 controller> mem 0xd4100000-0xd4101fff irq 18 at device 0.0 on pci5
xhci0: 32 bytes context size, 32-bit DMA
xhci0: Unable to map MSI-X table
usbus1 on xhci0
usbus1: 5.0Gbps Super Speed USB v3.0
ehci1: <Intel Cougar Point USB 2.0 controller> mem 0xd5329000-0xd53293ff irq 23 at device 29.0 on pci0
usbus2: EHCI version 1.0
usbus2 on ehci1
usbus2: 480Mbps High Speed USB v2.0
isab0: <PCI-ISA bridge> at device 31.0 on pci0
isa0: <ISA bus> on isab0
ahci0: <Intel Cougar Point AHCI SATA controller> port 0x6068-0x606f,0x607c-0x607f,0x6060-0x6067,0x6078-0x607b,0x6020-0x603f mem 0xd5328000-0xd53287ff irq 19 at device 31.2 on pci0
ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not supported
ahcich0: <AHCI channel> at channel 0 on ahci0
ahcich1: <AHCI channel> at channel 1 on ahci0
ahcich3: <AHCI channel> at channel 3 on ahci0
ahcich4: <AHCI channel> at channel 4 on ahci0
ahciem0: <AHCI enclosure management bridge> on ahci0
acpi_tz0: <Thermal Zone> on acpi0
atkbdc0: <Keyboard controller (i8042)> port 0x60,0x64 irq 1 on acpi0
atkbd0: <AT Keyboard> irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
psm0: <PS/2 Mouse> irq 12 on atkbdc0
psm0: [GIANT-LOCKED]
WARNING: Device "psm" is Giant locked and may be deleted before FreeBSD 13.0.
psm0: model Synaptics Touchpad, device ID 0
battery0: <ACPI Control Method Battery> on acpi0
acpi_acad0: <AC Adapter> on acpi0
est0: <Enhanced SpeedStep Frequency Control> on cpu0
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
Timecounters tick every 1.000 msec
Obsolete code will be removed soon: random(9) is the obsolete Park-Miller LCG from 1988
hdacc0: <NVIDIA GT440 HDA CODEC> at cad 0 on hdac0
hdaa0: <NVIDIA GT440 Audio Function Group> at nid 1 on hdacc0
pcm0: <NVIDIA GT440 (HDMI/DP 8ch)> at nid 5 on hdaa0
hdacc1: <NVIDIA GT440 HDA CODEC> at cad 1 on hdac0
hdaa1: <NVIDIA GT440 Audio Function Group> at nid 1 on hdacc1
pcm1: <NVIDIA GT440 (HDMI/DP 8ch)> at nid 5 on hdaa1
hdacc2: <NVIDIA GT440 HDA CODEC> at cad 2 on hdac0
hdaa2: <NVIDIA GT440 Audio Function Group> at nid 1 on hdacc2
pcm2: <NVIDIA GT440 (HDMI/DP 8ch)> at nid 5 on hdaa2
hdacc3: <NVIDIA GT440 HDA CODEC> at cad 3 on hdac0
hdaa3: <NVIDIA GT440 Audio Function Group> at nid 1 on hdacc3
pcm3: <NVIDIA GT440 (HDMI/DP 8ch)> at nid 5 on hdaa3
hdacc4: <Conexant CX20590 HDA CODEC> at cad 0 on hdac1
hdaa4: <Conexant CX20590 Audio Function Group> at nid 1 on hdacc4
pcm4: <Conexant CX20590 (Analog 2.0+HP/2.0)> at nid 31,25 and 35,27 on hdaa4
Trying to mount root from zfs:zroot/ROOT/default []...
Root mount waiting for: usbus0 usbus1 usbus2 CAM
WARNING: WITNESS option enabled, expect reduced performance.
ugen0.1: <Intel EHCI root HUB> at usbus0
ugen1.1: <0x1033 XHCI root HUB> at usbus1
ugen2.1: <Intel EHCI root HUB> at usbus2
uhub0 on usbus0
uhub0: <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus0
ses0 at ahciem0 bus 0 scbus4 target 0 lun 0
ses0: <AHCI SGPIO Enclosure 2.00 0001> SEMB S-E-S 2.00 device
ses0: SEMB SES Device
ada0 at ahcich0 bus 0 scbus0 target 0 lun 0
ada0: <SanDisk SD8TB8U256G1001 X4120101> ACS-2 ATA SATA 3.x device
ada0: Serial Number 170729803766
ada0: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 512bytes)
ada0: Command Queueing enabled
ada0: 244198MB (500118192 512 byte sectors)
uhub1 on usbus2
uhub1: <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus2
uhub2 on usbus1
uhub2: <0x1033 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus1
ses0: ada0,pass0 in 'Slot 00', SATA Slot: scbus0 target 0
ses0: cd0,pass1 in 'Slot 01', SATA Slot: scbus1 target 0
cd0 at ahcich1 bus 0 scbus1 target 0 lun 0
cd0: <HL-DT-ST DVDRAM GT33N LT30> Removable CD-ROM SCSI device
cd0: Serial Number M00B8B05958
cd0: 150.000MB/s transfers (SATA 1.x, UDMA4, ATAPI 12bytes, PIO 8192bytes)
cd0: Attempt to query device size failed: NOT READY, Medium not present - tray closed
uhub2: 4 ports with 4 removable, self powered
ugen1.2: <vendor 0x0a12 CSR8510 A10> at usbus1
GEOM_ELI: Device ada0p3.eli created.
GEOM_ELI: Encryption: AES-XTS 256
GEOM_ELI: Crypto: software
Root mount waiting for: usbus0 usbus2
uhub1: 3 ports with 3 removable, self powered
uhub0: 3 ports with 3 removable, self powered
Root mount waiting for: usbus0 usbus2
ugen2.2: <vendor 0x8087 product 0x0024> at usbus2
uhub3 on uhub1
uhub3: <vendor 0x8087 product 0x0024, class 9/0, rev 2.00/0.00, addr 2> on usbus2
ugen0.2: <vendor 0x8087 product 0x0024> at usbus0
uhub4 on uhub0
uhub4: <vendor 0x8087 product 0x0024, class 9/0, rev 2.00/0.00, addr 2> on usbus0
uhub4: 6 ports with 6 removable, self powered
Root mount waiting for: usbus0 usbus2
uhub3: 8 ports with 8 removable, self powered
ugen0.3: <vendor 0x0765 product 0x5001> at usbus0
ugen2.3: <Lenovo F5521gw> at usbus2
Root mount waiting for: usbus0 usbus2
ugen0.4: <UPEK Biometric Coprocessor> at usbus0
ugen2.4: <Lenovo Integrated Smart Card Reader> at usbus2
ugen0.5: <Broadcom Corp Broadcom Bluetooth Device> at usbus0
ugen0.6: <Ricoh Company Ltd. Integrated Camera> at usbus0
Setting hostuuid: e8b0e681-511d-11cb-9b3c-ea30ba907816.
Setting hostid: 0x293542d3.
Starting file system checks:
Mounting local filesystems:.
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/perl5/5.30/mach/CORE
32-bit compatibility ldconfig path: /usr/lib32
Setting hostname: devnovo.
Setting up harvesting: [UMA],[FS_ATIME],SWI,INTERRUPT,NET_NG,[NET_ETHER],NET_TUN,MOUSE,KEYBOARD,ATTACH,CACHED
Feeding entropy: .
wlan0: Ethernet address: 24:77:03:1e:ba:14
Created wlan(4) interfaces: wlan0.
lo0: link state changed to UP
em0: link state changed to UP
Starting wpa_supplicant.
iwn0: iwn_read_firmware: ucode rev=0x09dd0401
wlan0: link state changed to UP
Starting Network: lo0 em0 wlan0.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2
inet 127.0.0.1 netmask 0xff000000
groups: lo
nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
em0: flags=8863<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=481249b<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,LRO,WOL_MAGIC,VLAN_HWFILTER,NOMAP>
ether f0:de:f1:98:8c:9a
inet6 fe80::f2de:f1ff:fe98:8c9a%em0 prefixlen 64 scopeid 0x1
inet6 2001:981:3350:1:f2de:f1ff:fe98:8c9a prefixlen 64 autoconf
inet6 2001:981:3350:1::1001 prefixlen 64
inet6 2001:981:3350:1::1002 prefixlen 64
media: Ethernet autoselect (1000baseT <full-duplex>)
status: active
nd6 options=23<PERFORMNUD,ACCEPT_RTADV,AUTO_LINKLOCAL>
wlan0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
ether 24:77:03:1e:ba:14
inet6 fe80::2677:3ff:fe1e:ba14%wlan0 prefixlen 64 scopeid 0x3
inet6 2001:981:3350:1:2677:3ff:fe1e:ba14 prefixlen 64 autoconf
inet6 2001:981:3350:1::1101 prefixlen 64
groups: wlan
ssid VeldNet channel 1 (2412 MHz 11g ht/20) bssid 00:1f:f3:c0:55:5d
regdomain NONE country NL authmode WPA2/802.11i privacy ON
deftxkey UNDEF TKIP 2:128-bit txpower 30 bmiss 10 scanvalid 60
protmode CTS ampdulimit 64k ampdudensity 8 -amsdutx amsdurx shortgi
-stbc -ldpc wme roaming MANUAL
media: IEEE 802.11 Wireless Ethernet MCS mode 11ng
status: associated
nd6 options=23<PERFORMNUD,ACCEPT_RTADV,AUTO_LINKLOCAL>
Starting devd.
Autoloading module: ng_ubt.ko
ubt0 on uhub2
ubt0: <vendor 0x0a12 CSR8510 A10, class 224/1, rev 2.00/88.91, addr 1> on usbus1
ubt1 on uhub4
ubt1: <Broadcom Corp Broadcom Bluetooth Device, class 224/1, rev 2.00/7.48, addr 5> on usbus0
Autoloading module: ng_ubt.ko
Autoloading module: uhid.ko
Autoloading module: wmt.ko
uhid0 on uhub4
uhid0: <vendor 0x0765 product 0x5001, class 0/0, rev 1.10/0.01, addr 3> on usbus0
Autoloading module: umodem.ko
umodem0 on uhub3
umodem0: <F5521gw Mobile Broadband Modem> on usbus2
umodem0: data interface 2, has CM over data, has break
umodem1 on uhub3
umodem1: <F5521gw Mobile Broadband Data Modem> on usbus2
umodem1: data interface 4, has CM over data, has break
umodem2 on uhub3
umodem2: <F5521gw Mobile Broadband GPS Port> on usbus2
umodem2: data interface 10, has CM over data, has break
Autoloading module: umodem.ko
Autoloading module: if_cdce.ko
cdce0 on uhub3
cdce0: <F5521gw Mobile Broadband Network Adapter> on usbus2
ue0: <USB Ethernet> on cdce0
ue0: Ethernet address: 02:80:37:ec:02:00
Autoloading module: umodem.ko
Autoloading module: ng_ubt.ko
Autoloading module: ng_ubt.ko
Starting dhclient.
DHCPREQUEST on em0 to 255.255.255.255 port 67
DHCPACK from 192.168.178.1
bound to 192.168.178.37 -- renewal in 432000 seconds.
Starting dhclient.
DHCPREQUEST on wlan0 to 255.255.255.255 port 67
DHCPACK from 192.168.178.1
bound to 192.168.178.38 -- renewal in 432000 seconds.
Autoloading module: umodem.ko
Autoloading module: umodem.ko
Autoloading module: if_cdce.ko
Autoloading module: umodem.ko
WARNING: attempt to domain_add(bluetooth) after domainfinalize()
WARNING: attempt to domain_add(netgraph) after domainfinalize()
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
Autoloading module: uhid.ko
Autoloading module: wmt.ko
Autoloading module: umodem.ko
Autoloading module: umodem.ko
Autoloading module: if_cdce.ko
Autoloading module: umodem.ko
Autoloading module: if_cdce.ko
Starting Network: ue0.
ue0: flags=8802<BROADCAST,SIMPLEX,MULTICAST> metric 0 mtu 1500
ether 02:80:37:ec:02:00
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Starting rtsold.
Creating and/or trimming log files.
Starting syslogd.
No core dumps found.
Clearing /tmp (X related).
Starting nfsuserd.
Starting rpcbind.
Starting mountd.
Starting nfsd.
Starting statd.
Starting lockd.
Updating motd:.
Mounting late filesystems:.
Security policy loaded: MAC/ntpd (mac_ntpd)
Starting ntpd.
Updating /var/run/os-release done.
Starting powerd.
Configuring vt: blanktime.
Performing sanity check on sshd configuration.
Starting sshd.
Starting sendmail_submit.
Starting sendmail_msp_queue.
Starting cron.
Starting background file system checks in 60 seconds.
Wed Apr 1 18:24:59 CEST 2020
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
ubt0: ubt_ctrl_write_callback:906: control transfer failed: USB_ERR_TIMEOUT
le_advertizing_report: ubt0hci - m_pullup(1) failed
Fatal trap 12: page fault while in kernel mode
cpuid = 2; apic id = 02
fault virtual address = 0x18
fault code = supervisor read data, page not present
instruction pointer = 0x20:0xffffffff8273334d
stack pointer = 0x28:0xfffffe00b4678a80
frame pointer = 0x28:0xfffffe00b4678ac0
code segment = base 0x0, limit 0xfffff, type 0x1b
= DPL 0, pres 1, long 1, def32 0, gran 1
processor eflags = interrupt enabled, resume, IOPL = 0
current process = 709 (ng_queue2)
trap number = 12
panic: page fault
cpuid = 2
time = 1585758485
KDB: stack backtrace:
db_trace_self_wrapper() at db_trace_self_wrapper+0x2b/frame 0xfffffe00b4678730
vpanic() at vpanic+0x182/frame 0xfffffe00b4678780
panic() at panic+0x43/frame 0xfffffe00b46787e0
trap_fatal() at trap_fatal+0x387/frame 0xfffffe00b4678840
trap_pfault() at trap_pfault+0x99/frame 0xfffffe00b46788a0
trap() at trap+0x2a5/frame 0xfffffe00b46789b0
calltrap() at calltrap+0x8/frame 0xfffffe00b46789b0
--- trap 0xc, rip = 0xffffffff8273334d, rsp = 0xfffffe00b4678a80, rbp = 0xfffffe00b4678ac0 ---
ng_hci_process_event() at ng_hci_process_event+0xd7d/frame 0xfffffe00b4678ac0
ng_apply_item() at ng_apply_item+0xa8/frame 0xfffffe00b4678b40
ngthread() at ngthread+0x26e/frame 0xfffffe00b4678bb0
fork_exit() at fork_exit+0x80/frame 0xfffffe00b4678bf0
fork_trampoline() at fork_trampoline+0xe/frame 0xfffffe00b4678bf0
--- trap 0, rip = 0, rsp = 0, rbp = 0 ---
KDB: enter: panic
------------------------------------------------------------------------
kernel config
options CONFIG_AUTOGENERATED
ident GENERIC
machine amd64
cpu HAMMER
makeoptions WITH_CTF=1
makeoptions DEBUG=-g
options EVDEV_SUPPORT
options XENHVM
options USB_DEBUG
options ATH_ENABLE_11N
options AH_AR5416_INTERRUPT_MITIGATION
options IEEE80211_SUPPORT_MESH
options IEEE80211_DEBUG
options SC_PIXEL_MODE
options VESA
options PCI_IOV
options PCI_HP
options ACPI_DMAR
options EARLY_AP_STARTUP
options SMP
options NETGDB
options NETDUMP
options DEBUGNET
options ZSTDIO
options GZIO
options EKCD
options VERBOSE_SYSINIT=0
options MALLOC_DEBUG_MAXZONES=8
options WITNESS_SKIPSPIN
options WITNESS
options INVARIANT_SUPPORT
options INVARIANTS
options DEADLKRES
options GDB
options FULL_BUF_TRACKING
options DDB
options BUF_TRACKING
options KDB_TRACE
options KDB
options RCTL
options RACCT_DEFAULT_TO_DISABLED
options RACCT
options INCLUDE_CONFIG_FILE
options DDB_CTF
options KDTRACE_HOOKS
options KDTRACE_FRAME
options MAC
options CAPABILITIES
options CAPABILITY_MODE
options AUDIT
options HWPMC_HOOKS
options KBD_INSTALL_CDEV
options PRINTF_BUFR_SIZE=128
options _KPOSIX_PRIORITY_SCHEDULING
options SYSVSEM
options SYSVMSG
options SYSVSHM
options STACK
options KTRACE
options SCSI_DELAY=5000
options COMPAT_FREEBSD12
options COMPAT_FREEBSD11
options COMPAT_FREEBSD10
options COMPAT_FREEBSD9
options COMPAT_FREEBSD7
options COMPAT_FREEBSD6
options COMPAT_FREEBSD5
options COMPAT_FREEBSD4
options COMPAT_FREEBSD32
options EFIRT
options GEOM_LABEL
options GEOM_RAID
options PSEUDOFS
options PROCFS
options CD9660
options MSDOSFS
options NFS_ROOT
options NFSLOCKD
options NFSD
options NFSCL
options MD_ROOT
options QUOTA
options UFS_GJOURNAL
options UFS_DIRHASH
options UFS_ACL
options SOFTUPDATES
options FFS
options SCTP
options TCP_RFC7413
options TCP_HHOOK
options TCP_BLACKBOX
options TCP_OFFLOAD
options IPSEC_SUPPORT
options INET6
options INET
options VIMAGE
options PREEMPTION
options NUMA
options SCHED_ULE
options NEW_PCIB
options GEOM_PART_GPT
options GEOM_PART_MBR
options GEOM_PART_EBR_COMPAT
options GEOM_PART_EBR
options GEOM_PART_BSD
device isa
device mem
device io
device uart_ns8250
device cpufreq
device acpi
device pci
device fdc
device ahci
device ata
device mvs
device siis
device ahc
device ahd
device esp
device hptiop
device isp
device mpt
device mps
device mpr
device sym
device isci
device ocs_fc
device pvscsi
device scbus
device ch
device da
device sa
device cd
device pass
device ses
device amr
device arcmsr
device ciss
device iir
device ips
device mly
device twa
device smartpqi
device tws
device aac
device aacp
device aacraid
device ida
device mfi
device mlx
device mrsas
device pmspcv
device twe
device nvme
device nvd
device vmd
device vmd_bus
device atkbdc
device atkbd
device psm
device kbdmux
device vga
device splash
device sc
device vt
device vt_vga
device vt_efifb
device agp
device cbb
device pccard
device cardbus
device uart
device ppc
device ppbus
device lpt
device ppi
device puc
device iflib
device em
device ix
device ixv
device ixl
device iavf
device vmx
device bxe
device le
device ti
device miibus
device ae
device age
device alc
device ale
device bce
device bfe
device bge
device cas
device dc
device et
device fxp
device gem
device hme
device jme
device lge
device msk
device nfe
device nge
device re
device rl
device sge
device sis
device sk
device ste
device stge
device vge
device vr
device xl
device wlan
device wlan_wep
device wlan_ccmp
device wlan_tkip
device wlan_amrr
device an
device ath
device ath_pci
device ath_hal
device ath_rate_sample
device ipw
device iwi
device iwn
device malo
device mwl
device ral
device wi
device wpi
device crypto
device loop
device padlock_rng
device rdrand_rng
device ether
device vlan
device tuntap
device md
device gif
device firmware
device bpf
device uhci
device ohci
device ehci
device xhci
device usb
device ukbd
device umass
device sound
device snd_cmi
device snd_csa
device snd_emu10kx
device snd_es137x
device snd_hda
device snd_ich
device snd_via8233
device mmc
device mmcsd
device sdhci
device virtio
device virtio_pci
device vtnet
device virtio_blk
device virtio_scsi
device virtio_balloon
device hyperv
device xenpci
device netmap
device evdev
device uinput
------------------------------------------------------------------------
ddb capture buffer
help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CABaTypHcmMsQgTuzHrT-NYkca6ZC_c1yx0Z%2BZ98mU=S5oH6%2BAQ>
