[email protected] (Jacob Meuser), 2010.12.03 (Fri) 03:15 (CET):
> On Thu, Dec 02, 2010 at 11:31:46PM +0000, Jacob Meuser wrote:
> > On Sat, Nov 27, 2010 at 11:33:15AM +0100, MERIGHI Marcus wrote:
> > > # unplug pcmcia uhub
> > > uhci3: host system error
> > > uhci3: host controller process error
> > > uhci3: host controller halted
> > > uhci4: host system error
> > > uhci4: host controller process error
> > > uhci4: host controller halted
> > > ehci0: unrecoverable error, controller halted
> > > ehci0: blocking intrs 0x10
> > > uhub3 detached
> > > usb3 detached
> > > uhci3 detached
> > > uhub4 detached
> > > usb4 detached
> > > uhci4 detached
> > > uhub5 detached
> > > uvm_fault(0xd0a1a040, 0x0, 0, 1) -> e
> > > kernel: page fault trap, code=0
> > > Stopped at usbd_do_request_flags_pipe+0x18: movl
> > > 0x258(%eax),%ec
> > > x
> > > ddb>
> >
> > 1) it is impossible to ever fully close the race between when the device
> > is physically detached and when the kernel will notice.
> > 2) something odd is happening here. why is it in uhub_explore() in the
> > frst place?
> >
> > I now have a cardbus card with the same chipset. thanks to whoever sent
> > that to me. interestingly, it crashes one machine immediately when
> > inserted (cardbus layer issues), attaches uhci/ehci but doesn't recognize
> > USB devices and eventually freezes another machine (no crash, just totally
> > unresponsive), and behaves exactly like what you see on another machine.
> > so, at least now I can reproduce this to further investigate.
>
> this stops the crash for me.
for me too, with and without using the uhub. thanks!
there are two console logs at the end of my message, first one is just
to show your code at work and that it is working.
second one is the console log when running usbdevs via hotplugd
instantly after attaching pcmcia uhub (kernel panic). since I have no
idea whether that is related I seek your advice on what to do with this.
look for "Session" and "note: "
> Index: ehci.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/usb/ehci.c,v
> retrieving revision 1.113
> diff -u -p ehci.c
> --- ehci.c 23 Oct 2010 15:42:09 -0000 1.113
> +++ ehci.c 3 Dec 2010 02:12:22 -0000
> @@ -585,6 +585,13 @@ ehci_intr1(ehci_softc_t *sc)
> EOWRITE4(sc, EHCI_USBSTS, intrs); /* Acknowledge */
> sc->sc_bus.intr_context++;
> sc->sc_bus.no_intrs++;
> + if (eintrs & EHCI_STS_HSE) {
> + printf("%s: unrecoverable error, controller halted\n",
> + sc->sc_bus.bdev.dv_xname);
> + sc->sc_dying = 1;
> + sc->sc_bus.intr_context--;
> + return (1);
> + }
> if (eintrs & EHCI_STS_IAA) {
> DPRINTF(("ehci_intr1: door bell\n"));
> wakeup(&sc->sc_async_head);
> @@ -597,11 +604,6 @@ ehci_intr1(ehci_softc_t *sc)
> usb_schedsoftintr(&sc->sc_bus);
> eintrs &= ~(EHCI_STS_INT | EHCI_STS_ERRINT);
> }
> - if (eintrs & EHCI_STS_HSE) {
> - printf("%s: unrecoverable error, controller halted\n",
> - sc->sc_bus.bdev.dv_xname);
> - /* XXX what else */
> - }
> if (eintrs & EHCI_STS_PCD) {
> ehci_pcd(sc, sc->sc_intrxfer);
> eintrs &= ~EHCI_STS_PCD;
> @@ -655,6 +657,9 @@ ehci_softintr(void *v)
> DPRINTFN(10,("%s: ehci_softintr (%d)\n", sc->sc_bus.bdev.dv_xname,
> sc->sc_bus.intr_context));
>
> + if (sc->sc_dying)
> + return;
> +
> sc->sc_bus.intr_context++;
>
> /*
> @@ -3091,11 +3096,13 @@ void
> ehci_intrlist_timeout(void *arg)
> {
> ehci_softc_t *sc = arg;
> - int s = splusb();
>
> + if (sc->sc_dying)
> + return;
> +
> + int s = splusb();
> DPRINTFN(1, ("ehci_intrlist_timeout\n"));
> usb_schedsoftintr(&sc->sc_bus);
> -
> splx(s);
> }
>
> Index: uhci.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/usb/uhci.c,v
> retrieving revision 1.86
> diff -u -p uhci.c
> --- uhci.c 21 Nov 2010 01:29:07 -0000 1.86
> +++ uhci.c 3 Dec 2010 02:12:21 -0000
> @@ -605,6 +605,11 @@ uhci_detach(struct uhci_softc *sc, int flags)
> if (rv != 0)
> return (rv);
>
> + if (sc->sc_intr_xfer != NULL) {
> + timeout_del(&sc->sc_poll_handle);
> + sc->sc_intr_xfer = NULL;
> + }
> +
> if (sc->sc_shutdownhook != NULL)
> shutdownhook_disestablish(sc->sc_shutdownhook);
>
> @@ -924,6 +929,9 @@ uhci_poll_hub(void *addr)
>
> DPRINTFN(20, ("uhci_poll_hub\n"));
>
> + if (sc->sc_dying)
> + return;
> +
> timeout_del(&sc->sc_poll_handle);
> timeout_set(&sc->sc_poll_handle, uhci_poll_hub, xfer);
> timeout_add(&sc->sc_poll_handle, sc->sc_ival);
> @@ -1215,6 +1223,9 @@ uhci_softintr(void *v)
>
> DPRINTFN(10,("%s: uhci_softintr (%d)\n", sc->sc_bus.bdev.dv_xname,
> sc->sc_bus.intr_context));
> +
> + if (sc->sc_dying)
> + return;
>
> sc->sc_bus.intr_context++;
Session1: attach uhub + umass, detach umass + uhub.
>> OpenBSD/i386 BOOT 3.02
boot>
booting hd0a:/bsd: 8186428+1090024 [61+369648+355552]=0x989ed0
entry point at 0x200120
[ using 725676 bytes of bsd ELF symbol table ]
Copyright (c) 1982, 1986, 1989, 1991, 1993
The Regents of the University of California. All rights reserved.
Copyright (c) 1995-2010 OpenBSD. All rights reserved. http://www.OpenBSD.org
OpenBSD 4.8-current (GENERIC) #8: Fri Dec 3 13:42:18 CET 2010
[email protected]:/mnt/openbsd/src/sys/arch/i386/compile/GENERIC
cpu0: Mobile Intel(R) Pentium(R) 4 - M CPU 2.00GHz ("GenuineIntel" 686-class) 2
GHz
cpu0: FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,
DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,CNXT-ID,xTPR
real mem = 1072721920 (1023MB)
avail mem = 1045127168 (996MB)
mainbus0 at root
bios0 at mainbus0: AT/286+ BIOS, date 06/12/03, BIOS32 rev. 0 @ 0xfd7e0, SMBIOS
rev. 2.31 @ 0xe0010 (48 entries)
bios0: vendor IBM version "1IET66WW (2.05 )" date 06/12/2003
bios0: IBM 2366EG9
acpi0 at bios0: rev 2
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP SSDT ECDT TCPA BOOT
acpi0: wakeup devices LID_(S3) SLPB(S3) UART(S3) PCI0(S4) PCI1(S4) DOCK(S4) USB0
(S3) USB1(S3) USB2(S3) AC97(S4)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpiec0 at acpi0
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 1 (AGP_)
acpiprt2 at acpi0: bus 2 (PCI1)
acpicpu0 at acpi0: C3, C2, FVS, 2000, 1200 MHz
acpipwrres0 at acpi0: PUBS
acpitz0 at acpi0: critical temperature 94 degC
acpibtn0 at acpi0: LID_
acpibtn1 at acpi0: SLPB
acpibat0 at acpi0: BAT0 model "IBM-COMPATIBLE" serial 20884 type LION oem "GW"
acpibat1 at acpi0: BAT1 not present
acpiac0 at acpi0: AC unit online
acpithinkpad0 at acpi0
acpidock0 at acpi0: DOCK not docked (0)
bios0: ROM list: 0xc0000/0x10000 0xdc000/0x4000! 0xe0000/0x10000
cpu0 at mainbus0: (uniprocessor)
pci0 at mainbus0 bus 0: configuration mode 1 (bios)
pchb0 at pci0 dev 0 function 0 "Intel 82845 Host" rev 0x04
intelagp0 at pchb0
agp0 at intelagp0: aperture at 0xe0000000, size 0x4000000
ppb0 at pci0 dev 1 function 0 "Intel 82845 AGP" rev 0x04
pci1 at ppb0 bus 1
vga1 at pci1 dev 0 function 0 "ATI Radeon Mobility M7" rev 0x00
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
radeondrm0 at vga1: irq 11
drm0 at radeondrm0
uhci0 at pci0 dev 29 function 0 "Intel 82801CA/CAM USB" rev 0x02: irq 11
uhci1 at pci0 dev 29 function 1 "Intel 82801CA/CAM USB" rev 0x02: irq 11
uhci2 at pci0 dev 29 function 2 "Intel 82801CA/CAM USB" rev 0x02: irq 11
ppb1 at pci0 dev 30 function 0 "Intel 82801BAM Hub-to-PCI" rev 0x42
pci2 at ppb1 bus 2
mem address conflict 0x50000000/0x1000
mem address conflict 0x51000000/0x1000
cbb0 at pci2 dev 0 function 0 "TI PCI1520 CardBus" rev 0x01: irq 11
cbb1 at pci2 dev 0 function 1 "TI PCI1520 CardBus" rev 0x01: irq 11
fxp0 at pci2 dev 8 function 0 "Intel PRO/100 VE" rev 0x42, i82562: irq 11, addre
ss 00:09:6b:3f:67:a8
inphy0 at fxp0 phy 1: i82562ET 10/100 PHY, rev. 0
cardslot0 at cbb0 slot 0 flags 0
cardbus0 at cardslot0: bus 3 device 0 cacheline 0x8, lattimer 0xb0
pcmcia0 at cardslot0
cardslot1 at cbb1 slot 1 flags 0
cardbus1 at cardslot1: bus 6 device 0 cacheline 0x8, lattimer 0xb0
pcmcia1 at cardslot1
ichpcib0 at pci0 dev 31 function 0 "Intel 82801CAM LPC" rev 0x02
pciide0 at pci0 dev 31 function 1 "Intel 82801CAM IDE" rev 0x02: DMA, channel 0
configured to compatibility, channel 1 configured to compatibility
wd0 at pciide0 channel 0 drive 0: <WDC WD3200BEVE-00A0HT0>
wd0: 16-sector PIO, LBA48, 305245MB, 625142448 sectors
wd0(pciide0:0:0): using PIO mode 4, Ultra-DMA mode 5
wd1 at pciide0 channel 1 drive 0: <WDC WD1600BEVE-00WZT0>
wd1: 16-sector PIO, LBA48, 152627MB, 312581808 sectors
wd1(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 5
ichiic0 at pci0 dev 31 function 3 "Intel 82801CA/CAM SMBus" rev 0x02: irq 11
iic0 at ichiic0
auich0 at pci0 dev 31 function 5 "Intel 82801CA/CAM AC97" rev 0x02: irq 11, ICH3
AC97
ac97: codec id 0x41445348 (Analog Devices AD1881A)
ac97: codec features headphone, Analog Devices Phat Stereo
audio0 at auich0
usb0 at uhci0: USB revision 1.0
uhub0 at usb0 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb1 at uhci1: USB revision 1.0
uhub1 at usb1 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb2 at uhci2: USB revision 1.0
uhub2 at usb2 "Intel UHCI root hub" rev 1.00/1.00 addr 1
isa0 at ichpcib0
isadma0 at isa0
com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo
com0: console
pckbc0 at isa0 port 0x60/5
pckbd0 at pckbc0 (kbd slot)
pckbc0: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pms0 at pckbc0 (aux slot)
pckbc0: using irq 12 for aux slot
wsmouse0 at pms0 mux 0
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
npx0 at isa0 port 0xf0/16: reported by CPUID; using exception 16
biomask eded netmask eded ttymask ffff
mtrr: Pentium Pro MTRR support
vscsi0 at root
scsibus0 at vscsi0: 256 targets
softraid0 at root
uhci3 at cardbus0 dev 0 function 0 "VIA VT83C572 USB" rev 0x62: irq 11
usb3 at uhci3: USB revision 1.0
uhub3 at usb3 "VIA UHCI root hub" rev 1.00/1.00 addr 1
uhci4 at cardbus0 dev 0 function 1 "VIA VT83C572 USB" rev 0x62: irq 11
usb4 at uhci4: USB revision 1.0
uhub4 at usb4 "VIA UHCI root hub" rev 1.00/1.00 addr 1
root on wd0a swap on wd0b dump on wd0b
ehci0 at cardbus0 dev 0 function 2 "VIA VT6202 USB" rev 0x65: irq 11
usb5 at ehci0: USB revision 2.0
uhub5 at usb5 "VIA EHCI root hub" rev 2.00/1.00 addr 1
com3 at pcmcia1 function 1 "Sierra Wireless, AC850, 3G Network Adapter" port 0x3
3f8/8: ns16550a, 16 byte fifo
Automatic boot in progress: starting file system checks.
/dev/wd0a (10a8ab1121377141.a): file system is clean; not checking
/dev/wd0j (10a8ab1121377141.j): file system is clean; not checking
/dev/wd0e (10a8ab1121377141.e): file system is clean; not checking
/dev/wd0f (10a8ab1121377141.f): file system is clean; not checking
/dev/wd0g (10a8ab1121377141.g): file system is clean; not checking
/dev/wd0h (10a8ab1121377141.h): file system is clean; not checking
/dev/wd0k (10a8ab1121377141.k): file system is clean; not checking
setting tty flags
kbd: keyboard mapping set to de
keyboard.encoding -> de
pf enabled
ddb.console: 0 -> 1
machdep.allowaperture: 0 -> 2
machdep.kbdreset: 0 -> 1
machdep.lidsuspend: 0 -> 0
starting network
starting system logger
starting initial daemons: portmap amd ntpd.
savecore: no core dump
checking quotas: done.
building ps databases: kvm dev.
clearing /tmp
starting pre-securelevel daemons:.
setting kernel security level: kern.securelevel: 0 -> 1
turning on accounting
creating runtime link editor directory cache.
preserving editor files.
starting network daemons: sshd ifstated lpd ldapd smtpd inetd.
mount_ffs: 1b7ba332f009b306.a on /mnt/asfer: No such file or directory
starting local daemons: smartd freedt squid.
standard daemons: apmd sensorsd cron.
Fri Dec 3 14:03:51 CET 2010
uhci3: host system error
uhci3: host controller process error
uhci3: host controller halted
uhci4: host system error
uhci4: host controller process error
uhci4: host controller halted
ehci0: unrecoverable error, controller halted
uhub3 detached
usb3 detached
uhci3 detached
uhub4 detached
usb4 detached
uhci4 detached
uhub5 detached
usb5 detached
ehci0 detached
uhci3 at cardbus0 dev 0 function 0 "VIA VT83C572 USB" rev 0x62: irq 11
usb3 at uhci3: USB revision 1.0
uhub3 at usb3 "VIA UHCI root hub" rev 1.00/1.00 addr 1
uhci4 at cardbus0 dev 0 function 1 "VIA VT83C572 USB" rev 0x62: irq 11
usb4 at uhci4: USB revision 1.0
uhub4 at usb4 "VIA UHCI root hub" rev 1.00/1.00 addr 1
ehci0 at cardbus0 dev 0 function 2 "VIA VT6202 USB" rev 0x65: irq 11
usb5 at ehci0: USB revision 2.0
uhub5 at usb5 "VIA EHCI root hub" rev 2.00/1.00 addr 1
umass0 at uhub5 port 3 configuration 1 interface 0 " " rev 2.00/1.41 addr 2
umass0: using SCSI over Bulk-Only
scsibus1 at umass0: 2 targets, initiator 0
sd0 at scsibus1 targ 1 lun 0: <Generic, Flash Disk, 8.10> SCSI2 0/direct removab
le
sd0: 3992MB, 512 bytes/sec, 8175616 sec total
sd0 detached
scsibus1 detached
umass0 detached
uhci3: host system error
uhci3: host controller process error
uhci3: host controller halted
uhci4: host system error
uhci4: host controller process error
uhci4: host controller halted
ehci0: unrecoverable error, controller halted
uhub3 detached
usb3 detached
uhci3 detached
uhub4 detached
usb4 detached
uhci4 detached
uhub5 detached
usb5 detached
ehci0 detached
/etc/rc.shutdown in progress...
stopping local daemons:.
/etc/rc.shutdown complete.
Dsyncing disks... done
The operating system has halted.
Please press any key to reboot.
rebooting...
Session2 is incomplete but the relevant (I think) parts are there:
I have a script that is called by hotplugd that runs /usr/sbin/usbdevs
-v -d and causes a kernel panic. If I put a "sleep 1" ahead of usbdevs
everything is fine.
# note: without hotplugd running
uhci3 at cardbus0 dev 0 function 0 "VIA VT83C572 USB" rev 0x62: irq 11
usb3 at uhci3: USB revision 1.0
uhub3 at usb3 "VIA UHCI root hub" rev 1.00/1.00 addr 1
uhci4 at cardbus0 dev 0 function 1 "VIA VT83C572 USB" rev 0x62: irq 11
usb4 at uhci4: USB revision 1.0
uhub4 at usb4 "VIA UHCI root hub" rev 1.00/1.00 addr 1
ehci0 at cardbus0 dev 0 function 2 "VIA VT6202 USB" rev 0x65: irq 11
usb5 at ehci0: USB revision 2.0
uhub5 at usb5 "VIA EHCI root hub" rev 2.00/1.00 addr 1
uhci3: host system error
uhci3: host controller process error
uhci3: host controller halted
uhci4: host system error
uhci4: host controller process error
uhci4: host controller halted
ehci0: unrecoverable error, controller halted
uhub3 detached
usb3 detached
uhci3 detached
uhub4 detached
usb4 detached
uhci4 detached
uhub5 detached
usb5 detached
ehci0 detached
# note: now hotplugd is running
uhci3 at cardbus0 dev 0 function 0 "VIA VT83C572 USB" rev 0x62: irq 11
usb3 at uhci3: USB revision 1.0
uhub3 at usb3 "VIA UHCI root hub" rev 1.00/1.00 addr 1
uhci4 at cardbus0 dev 0 function 1 "VIA VT83C572 USB" rev 0x62: irq 11
usb4 at uhci4: USB revision 1.0
uhub4 at usb4 "VIA UHCI root hub" rev 1.00/1.00 addr 1
uvm_fault(0xd09f7ee0, 0xefffe000, 0, 1) -> d
kernel: page fault trap, code=0
Stopped at usbd_fill_deviceinfo+0x186: movzbl 0x8(%eax),%eax
ddb> trace
usbd_fill_deviceinfo(d1f0d480,d1f31600,1,d041df93,d6a8ced4) at usbd_fill_device
info+0x186
usbioctl(3d04,c1745504,d1f31600,3,d6a07b2c,3,d6d8a9b0,d6a07b2c) at usbioctl+0x2
18
spec_ioctl(dc2aeda0,d0a19fa0,d69228f0,d09afc10,d6a8ced4) at spec_ioctl+0x8c
VOP_IOCTL(d6a8ced4,c1745504,d1f31600,3,d6d8a9b0) at VOP_IOCTL+0x42
vn_ioctl(d69228f0,c1745504,d1f31600,d6a07b2c,174) at vn_ioctl+0x61
sys_ioctl(d6a07b2c,dc2aef64,dc2aef84,d0736fae,d6a07b2c) at sys_ioctl+0x1b8
syscall() at syscall+0x2f0
--- syscall (number 0) ---
0x2:
ddb> ps
PID PPID PGRP UID S FLAGS WAIT COMMAND
638 13472 25772 0 2 0 sh
2869 13472 25772 0 2 0 sh
10305 13472 25772 0 2 0 sh
30027 13472 25772 0 2 0 sh
3113 13472 25772 0 2 0 sh
* 4364 13472 25772 0 7 0x4000 usbdevs
26777 1 25772 0 3 0x4080 piperd logger
13472 1 25772 0 3 0x80 piperd sh
25772 1 25772 0 3 0x80 htplev hotplugd
25062 14343 29858 515 3 0x4080 piperd unlinkd
29250 14343 29858 515 3 0x4080 poll ncsa_auth
20254 14343 29858 515 3 0x4080 poll ncsa_auth
20193 1 20193 0 3 0x4080 ttyin getty
2981 1 2981 0 3 0x4080 ttyin getty
24730 1 24730 0 3 0x4080 ttyin getty
10892 1 10892 0 3 0x4080 ttyin getty
7036 1 7036 0 3 0x4080 ttyin ksh
22999 1 22999 0 3 0x80 select cron
31261 1 31261 0 3 0x80080 nanosleep sensorsd
1808 1 1808 0 3 0x80 kqread apmd
14343 29858 29858 515 3 0x4180 poll squid
29858 1 29858 0 3 0x80 poll squid
25020 1 32267 0 3 0x80 nanosleep smartd
20035 2725 20035 510 3 0x4080 piperd logger
2725 10873 10873 0 3 0x4080 select supervise
213 5390 213 510 3 0x4180 poll pdnsd
5390 10873 10873 0 3 0x4080 select supervise
10873 1 10873 0 3 0x4080 nanosleep svscan
17258 1 17258 99 3 0x180 poll aucat
27225 1 27225 0 3 0x180 select inetd
24707 20641 20641 95 3 0x180 kqread smtpd
12254 20641 20641 95 3 0x180 kqread smtpd
29208 20641 20641 95 3 0x180 kqread smtpd
6635 20641 20641 95 3 0x180 kqread smtpd
1612 20641 20641 95 3 0x180 kqread smtpd
2933 20641 20641 95 3 0x180 kqread smtpd
1257 20641 20641 95 3 0x180 kqread smtpd
18569 20641 20641 95 3 0x180 kqread smtpd
20641 1 20641 0 3 0x80 kqread smtpd
18987 21534 21534 100 3 0x180 kqread ldapd
21534 1 21534 0 3 0x80 kqread ldapd
18542 1 18542 0 3 0x40180 select lpd
11121 1 11121 0 3 0x80 kqread ifstated
20109 1 20109 0 3 0x80 select sshd
26766 0 0 0 3 0x100200 acct acct
18930 27485 15203 83 3 0x180 poll ntpd
27485 15203 15203 83 3 0x180 poll ntpd
15203 1 15203 0 3 0x80 poll ntpd
7450 0 0 0 3 0x100280 nfsidl nfsio
11134 0 0 0 3 0x100280 nfsidl nfsio
8112 0 0 0 3 0x100280 nfsidl nfsio
5583 0 0 0 3 0x100280 nfsidl nfsio
31285 1 8391 0 3 0x80 select amd
4091 1 4091 28 3 0x180 poll portmap
4947 14243 14243 74 3 0x180 bpf pflogd
14243 1 14243 0 3 0x80 netio pflogd
16073 14745 14745 73 2 0x180 syslogd
14745 1 14745 0 3 0x88 netio syslogd
14 0 0 0 3 0x100200 aiodoned aiodoned
13 0 0 0 2 0x100200 update
12 0 0 0 3 0x100200 cleaner cleaner
11 0 0 0 3 0x100200 reaper reaper
10 0 0 0 3 0x100200 pgdaemon pagedaemon
9 0 0 0 3 0x100200 bored crypto
8 0 0 0 3 0x100200 pftm pfpurge
7 0 0 0 3 0x100200 usbtsk usbtask
6 0 0 0 3 0x100200 usbatsk usbatsk
5 0 0 0 3 0x100200 acpi0 acpi0
4 0 0 0 3 0x100200 usbdly syswq
3 0 0 0 3 0x40100200 idle0
2 0 0 0 3 0x100200 kmalloc kmthread
1 0 1 0 3 0x4080 wait init
0 -1 0 0 3 0x80200 scheduler swapper
ddb> boot sync
syncing disks... ehci0 at cardbus0 dev 0 function 2 "VIA VT6202 USB" rev 0x65: i
rq 11
usb5 at ehci0: USB revision 2.0
uhub5 at usb5 "VIA EHCI root hub" rev 2.00/1.00 addr 1
done
WARNING: not updating battery clock
rebooting...