On Mon, Nov 22, 2021 at 04:28:54PM +0100, Gerhard Roth wrote:
> 
> Your OpenBSD pcap contains not "URB_CONTROL in" packets. Don't know where
> they got lost but since you cannot see any data sent by the function on the
> control pipe, it is almost impossible to do any debugging here. You only see
> what the host sends to the function by miss the replies.
> 

I did some more investigation and patched ehci.c to dump qTDs and USB
registers in ehci_idone function, dump shows that transaction is HALTED
and has XACTERR, also sometimes I see such errors:

Nov 27 17:55:00 edge /bsd: uhub3: device problem, disabling port 2

Spec[1] says the following about XactErr:

> Transaction Error (XactErr). Set to a 1 by the Host Controller during
> status update in the case where the host did not receive a valid
> response from the device (Timeout, CRC, Bad PID, etc.). This bit will
> only be set for IN transactions.

I also tested latest FreeBSD and NetBSD, but they didn't even show
description string, and NetBSD ended with the same "device problem"
output as above.

The modem works on Debian Linux 11, but in journal it says that it uses
CDC.

qTD dump follows, maybe someone will have quick clue what's happening (I
added a comment about a thing which looks strange), but I tend to an
idea of changing the modem.

[1] - 
https://www.intel.com/content/dam/www/public/us/en/documents/technical-specifications/ehci-specification-for-usb.pdf

Nov 26 21:30:49 edge /bsd: urndis0 at uhub3 port 2 configuration 2 interface 0 
"Yota Devices LTD Modem YOTA 4G LTE" rev 2.00/3.34 addr 5
Nov 26 21:30:49 edge /bsd: urndis0: using RNDIS
Nov 26 21:30:50 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:50 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:50 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:50 edge /bsd:   buffer[0]=0xd8439ac8
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:50 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:50 edge /bsd:   status=0x80008148: toggle=1 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=0 pid=1 stat=0x48<HALTED,XACTERR>
Nov 26 21:30:50 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:50 edge /bsd: frindex=0x00003712 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:50 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:50 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:50 edge /bsd: port 3 status=0x00001000

Nov 26 21:30:50 edge /bsd: ehci_check_qh_intr: status & EHCI_QTD_HALTED
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:50 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:50 edge /bsd:   status=0x00080248: toggle=0 bytes=0x8 ioc=0 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=0 pid=2 stat=0x48<HALTED,XACTERR>
                                      ^^^^^
This is strange, the spec says that XactErr can be set only for IN
transactions, but pid=2 means it's SETUP. Also, this qTD address is the
same (0xfffffd80d8438e80) as previous one, which was also HALTED and
XACTERR.

Nov 26 21:30:50 edge /bsd:   buffer[0]=0xd8439ac0
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:50 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:50 edge /bsd:   status=0x80180c80: toggle=1 bytes=0x18 ioc=0 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=3 pid=0 stat=0x80<ACTIVE>
Nov 26 21:30:50 edge /bsd:   buffer[0]=0xd8459dc0
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:50 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:50 edge /bsd:   status=0x80008d80: toggle=1 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=3 pid=1 stat=0x80<ACTIVE>
Nov 26 21:30:50 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: ehci_idone: EHCI_QTD_ACTIVE break
Nov 26 21:30:50 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:50 edge /bsd: frindex=0x00003717 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8443000
Nov 26 21:30:50 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:50 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:50 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:50 edge /bsd: ehci_idone: set USBD_IOERROR
Nov 26 21:30:50 edge /bsd: urndis0: IOERROR
Nov 26 21:30:50 edge /bsd: urndis0: init failed
Nov 26 21:30:50 edge /bsd: ehci_check_qh_intr: status & EHCI_QTD_HALTED
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:50 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:50 edge /bsd:   status=0x00080248: toggle=0 bytes=0x8 ioc=0 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=0 pid=2 stat=0x48<HALTED,XACTERR>
Nov 26 21:30:50 edge /bsd:   buffer[0]=0xd8439ac0
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:50 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:50 edge /bsd:   status=0x801c0c80: toggle=1 bytes=0x1c ioc=0 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=3 pid=0 stat=0x80<ACTIVE>
Nov 26 21:30:50 edge /bsd:   buffer[0]=0xd8459dc0
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:50 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:50 edge /bsd:   status=0x80008d80: toggle=1 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=3 pid=1 stat=0x80<ACTIVE>
Nov 26 21:30:50 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: ehci_idone: EHCI_QTD_ACTIVE break
Nov 26 21:30:50 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:50 edge /bsd: frindex=0x0000371d ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8443000
Nov 26 21:30:50 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:50 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:50 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:50 edge /bsd: ehci_idone: set USBD_IOERROR
Nov 26 21:30:50 edge /bsd: urndis0: IOERROR
Nov 26 21:30:50 edge /bsd: urndis0: query failed
Nov 26 21:30:50 edge /bsd: : unable to get hardware address
Nov 26 21:30:50 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438f00) at 0xd8438f00:
Nov 26 21:30:50 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:50 edge /bsd:   status=0x80008d00: toggle=1 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:50 edge /bsd:   buffer[0]=0xd8459f01
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:50 edge /bsd: frindex=0x00003845 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8443000
Nov 26 21:30:50 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:50 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:50 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:50 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:50 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:50 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:50 edge /bsd:   buffer[0]=0xd8439f48
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:50 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:50 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:50 edge /bsd:   buffer[0]=0xd8459dc4
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:50 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:50 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:50 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:50 edge /bsd: frindex=0x0000384c ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:50 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:50 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:50 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:50 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:50 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:50 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:50 edge /bsd:   buffer[0]=0xd8439f48
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:50 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:50 edge /bsd:   status=0x00008d00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:50 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:50 edge /bsd: frindex=0x00003851 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437f80
Nov 26 21:30:50 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:50 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:50 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:50 edge /bsd: urndis0 detached
Nov 26 21:30:50 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:50 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:50 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:50 edge /bsd:   buffer[0]=0xd8439f48
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:50 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:50 edge /bsd:   status=0x00008d00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:50 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:50 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:50 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:50 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:50 edge /bsd: frindex=0x000001d0 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:50 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:50 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:50 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439f48
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dc4
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x000003b2 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439f48
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008d00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x000003b6 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439f48
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dc4
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000bd1 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a88
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dc8
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000bd8 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a48
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008d00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000bec ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dd2
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d11 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dc2
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d17 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437f80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dc4
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d1e ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dc2
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d26 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459de2
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d2e ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dc2
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d33 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459de2
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d3a ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dc2
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d41 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459de4
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d48 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dc9
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000e008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d50 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459de0
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d55 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dc2
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d5c ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e80<> altnext=0xd8438e80<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008d00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d89 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: umass0 at uhub3 port 2 configuration 1 interface 0 
"Yota Devices LTD Modem YOTA 4G LTE" rev 2.00/0.00 addr 5
Nov 26 21:30:51 edge /bsd: umass0: using SCSI over Bulk-Only
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e80) at 0xd8438e80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438f80<> altnext=0xd8438f80<>
Nov 26 21:30:51 edge /bsd:   status=0x80000e00: toggle=1 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=2 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8439a08
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438f80) at 0xd8438f80:
Nov 26 21:30:51 edge /bsd:   next=0xd8438e00<> altnext=0xd8438e00<>
Nov 26 21:30:51 edge /bsd:   status=0x00000d00: toggle=0 bytes=0x0 ioc=0 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dc1
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d91 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: scsibus4 at umass0: 2 targets, initiator 0
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x80008c00: toggle=1 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459ddf
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d95 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x80008d00: toggle=1 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dcd
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d99 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437f80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459ddf
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000d9d ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x00008d00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd6a0d012
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000da1 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:51 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:51 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:51 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:51 edge /bsd:   status=0x80008d00: toggle=1 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:51 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:51 edge /bsd:   buffer[0]=0xd8459dcd
Nov 26 21:30:51 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:51 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:51 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:51 edge /bsd: frindex=0x00000da6 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:51 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:51 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:51 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:52 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:52 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:52 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:52 edge /bsd:   status=0x80008c00: toggle=1 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:52 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:52 edge /bsd:   buffer[0]=0xd8459ddf
Nov 26 21:30:52 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:52 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:52 edge /bsd: frindex=0x00002cef ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:52 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:52 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:52 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:52 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:52 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:52 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:52 edge /bsd:   status=0x00008d00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:52 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:52 edge /bsd:   buffer[0]=0xd8459dcd
Nov 26 21:30:52 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:52 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:52 edge /bsd: frindex=0x00002cf3 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:52 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:52 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:52 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:52 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:52 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:52 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:52 edge /bsd:   status=0x00008c00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:52 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:52 edge /bsd:   buffer[0]=0xd8459ddf
Nov 26 21:30:52 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:52 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:52 edge /bsd: frindex=0x00002cf7 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:52 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:52 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:52 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:52 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:52 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:52 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:52 edge /bsd:   status=0x80008d00: toggle=1 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:52 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:52 edge /bsd:   buffer[0]=0xd6a0d024
Nov 26 21:30:52 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:52 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:52 edge /bsd: frindex=0x00002cfb ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:52 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:52 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:52 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:52 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:52 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:52 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:52 edge /bsd:   status=0x00008d00: toggle=0 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:52 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:52 edge /bsd:   buffer[0]=0xd8459dcd
Nov 26 21:30:52 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:52 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:52 edge /bsd: frindex=0x00002cff ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:52 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:52 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:52 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:52 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:52 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:52 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:52 edge /bsd:   status=0x80008c00: toggle=1 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:52 edge /bsd:     cerr=3 pid=0 stat=0x0
Nov 26 21:30:52 edge /bsd:   buffer[0]=0xd8459ddf
Nov 26 21:30:52 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:52 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:52 edge /bsd: frindex=0x00002d03 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:52 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:52 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:52 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:52 edge /bsd: ehci_check_qh_intr: no EHCI_QTD_ACTIVE
Nov 26 21:30:52 edge /bsd: QTD(0xfffffd80d8438e00) at 0xd8438e00:
Nov 26 21:30:52 edge /bsd:   next=0x00000001<T> altnext=0x00000001<T>
Nov 26 21:30:52 edge /bsd:   status=0x80008d00: toggle=1 bytes=0x0 ioc=1 
c_page=0x0
Nov 26 21:30:52 edge /bsd:     cerr=3 pid=1 stat=0x0
Nov 26 21:30:52 edge /bsd:   buffer[0]=0xd8459dcd
Nov 26 21:30:52 edge /bsd:   buffer[1]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[2]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[3]=0x00000000
Nov 26 21:30:52 edge /bsd:   buffer[4]=0x00000000
Nov 26 21:30:52 edge /bsd: cmd=0x00020031, sts=0x0000c008, ien=0x00000037
Nov 26 21:30:52 edge /bsd: frindex=0x00002d07 ctrdsegm=0x00000000 
periodic=0xd844b000 async=0xd8437e80
Nov 26 21:30:52 edge /bsd: port 1 status=0x00001005
Nov 26 21:30:52 edge /bsd: port 2 status=0x00001000
Nov 26 21:30:52 edge /bsd: port 3 status=0x00001000
Nov 26 21:30:52 edge /bsd: cd1 at scsibus4 targ 1 lun 0: <Linux, File-Stor 
Gadget, 0334> removable serial.15a9002cserial_num_0

Reply via email to