Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Jun 2013 14:21:12 -0700
From:      Justin Hibbits <jhibbits@freebsd.org>
To:        Nathan Whitehorn <nwhitehorn@freebsd.org>
Cc:        FreeBSD PowerPC ML <freebsd-ppc@freebsd.org>
Subject:   Re: Strange panic on ppc64
Message-ID:  <CAHSQbTACtejaRKiG4qScSV_EdTC8y_k5Qghx_FYebWzstBP61g@mail.gmail.com>
In-Reply-To: <51B4A389.4020607@freebsd.org>
References:  <CAHSQbTAZTc9puGaH0rbhyY11s0%2BL0xGjSabK1kj65UMm1t7j3w@mail.gmail.com> <51AF6661.3060007@freebsd.org> <CAHSQbTBjza0u7nZf4z%2BxpTCcWj-TW-ZigV2-CZexuBOYQX5=3A@mail.gmail.com> <CAHSQbTCvFXDZPsOnmogc0FkZeMXwOP6h40F2kFUu2s6UmffyPw@mail.gmail.com> <51B345BE.5030905@freebsd.org> <CAHSQbTDnwne3KJWN7xjcUw4PhF-uiD4B-4y1Lf90Bfou-2Ppvw@mail.gmail.com> <51B4A389.4020607@freebsd.org>

index | next in thread | previous in thread | raw e-mail

[-- Attachment #1 --]
On Sun, Jun 9, 2013 at 8:47 AM, Nathan Whitehorn <nwhitehorn@freebsd.org>wrote:

>  On 06/08/13 17:33, Justin Hibbits wrote:
>
>
>
>
> On Sat, Jun 8, 2013 at 7:54 AM, Nathan Whitehorn <nwhitehorn@freebsd.org>wrote:
>
>>   On 06/08/13 09:21, Justin Hibbits wrote:
>>
>>
>>
>>
>> On Wed, Jun 5, 2013 at 9:47 AM, Justin Hibbits <jhibbits@freebsd.org>wrote:
>>
>>> Will do, when I get it panicking again.
>>>
>>> - Justin
>>>   On Jun 5, 2013 9:46 AM, "Nathan Whitehorn" <nwhitehorn@freebsd.org>
>>> wrote:
>>>
>>>> On 06/04/13 22:35, Justin Hibbits wrote:
>>>>
>>>>> After a string of seemingly random hangs, I added invariants (but not
>>>>> witness) to my custom kernel config, and I get the following panic,
>>>>> recreated from a fuzzy cell phone picture:
>>>>>
>>>>>
>>>>> [thread pid -1 tid 1006665719 ]
>>>>> Stopped at 0: illegal instruction 0
>>>>> db> panic: mutex ohci1 owned at
>>>>> /usr/home/chmeee/freebsd/head/sys/dev/usb/usb_transfer.c:2280
>>>>> cpuid = 0
>>>>> Uptime: 9h8m1s
>>>>> <my dump code>
>>>>> ...
>>>>> panic: msleep1
>>>>> cpu = 0
>>>>> KDB: enter: panic
>>>>> [ thread pid -1 tid 100665719 ]
>>>>> ....
>>>>>
>>>>> The first question I have is how the hell it got such a strange
>>>>> PID/TID,
>>>>> memory corruption my guess, something is stomping on the pcpu or
>>>>> something,
>>>>> and I think these hangs have only happened since I added a lot more
>>>>> memory
>>>>> (up to 12G from 4G, Andreas Tobler was seeing hangs as well), so it
>>>>> might
>>>>> be something in the moea64 pmap code, but that's pure speculation on my
>>>>> part.  Then the other panic messages, owned mutex and panic in
>>>>> msleep1.  I
>>>>> enabled more trace code, so hopefully the next time it panics I can
>>>>> collect
>>>>> better data.
>>>>>
>>>>> - Justin
>>>>> _______________________________________________
>>>>> freebsd-ppc@freebsd.org mailing list
>>>>> http://lists.freebsd.org/mailman/listinfo/freebsd-ppc
>>>>> To unsubscribe, send any mail to "freebsd-ppc-unsubscribe@freebsd.org"
>>>>>
>>>>
>>>> Could you post the output from show reg? It looks like it tried to jump
>>>> to a null pointer there.
>>>> -Nathan
>>>>
>>>
>>  Well, it's hard to do get that output, because I just hit that 'mutex
>> owned' panic, and here's the backtrace:
>>
>>
>>
>>  The mutex thing is spurious -- it was already panicing and then paniced
>> again trying to panic. Can you get the backtrace for the original panic (it
>> should be different) and the values of the registers?
>> -Nathan
>>
>
>  Here you go:
>
> [ thread pid -1 tid 1006665719 ]
> Stopped at      0:      illegal instruction 0
> db:0:kdb.enter.default> show reg
> r0                   0
> r1                   0
> r2            0xab63d0  M_MACTEMP
> r3            0xbb12e0
> r4            0x741f18  .ofwcall+0xa8
> r5                   0
> r6            0xa4f1a8
> r7                 0x1
> r8                 0x1
> r9            0xc10500  __pcpu
> r10          0x1c35ec0
> r11                  0
> r12         0x2000d032
> r13         0x342eb000
> r14         0x10014200
> r15         0xffffffffffffcb58
> r16                0x2
> r17                0x2
> r18         0xffffffffffffcb50
> r19                  0
> r20         0xc000000013231478
> r21         0xc00000014c0ce200
> r22                  0
> r23               0x64  dbsize+0x10
> r24         0xc00000014c0cdf70
> r25           0xb62cb8  smp_no_rendevous_barrier
> r26                  0
> r27           0x741f18  .ofwcall+0xa8
> r28           0x741f18  .ofwcall+0xa8
> r29         0x2000d032
> r30         0x9000000000001032
> r31           0xc0cad8  mac_labeled
> srr0          0x102ca4  k_trap+0x28
> srr1        0x9000000000001032
> lr            0x102c74  u_trap+0x10
> ctr         0xff846d78
> cr          0x2000f1b0
> xer                  0
> dar         0xfffffffffffffd60
> dsisr       0x42000000
> 0:      illegal instruction 0
> db:0:kdb.enter.default>  bt
> Tracing pid -1 tid 1006665719 td 0
>  (nothing)
>
>
> Well, that is all kinds of messed up. It appears to have halted while
> handling a userland trap due to an implicit branch caused by bad
> translations when it restores the kernel SRs. Could you see what 'show
> pcpu' does? Does that information look valid at all? I suspect it has
> become corrupted somehow.
> -Nathan
>
>
Here's the full log from dconschat, from bootup to panic.  Unfortunately,
not everything I wanted to print would print, and I can't type anything
once it panics, because it panics when reading the keyboard, so I have to
add everything as a ddb enter script.  Here's what I've added so far
(doesn't do everything as you can see from the transcript):

    script kdb.enter.default=show reg; bt; show pcpu; ps; run lockinfo;
alltrace; show all procs; show files; show malloc; show allchains

- Justin

[-- Attachment #2 --]
Script started on Sun Jun  9 09:10:20 2013
command: dconschat -t 00-14-51-ff-fe-33-ca-b6 -e # -r
[dcons connected]

refetched decode
pci10: <OFW PCI bus> on pcib10
pci10: domain=1, physical bus=3
found->	vendor=0x1166, dev=0x0240, revid=0x00
	domain=1, bus=3, slot=12, func=0
	class=01-01-8f, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x10 (480 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	map[10]: type I/O Port, range 32, base 0, size  3, port disabled
	map[14]: type I/O Port, range 32, base 0, size  2, port disabled
	map[18]: type I/O Port, range 32, base 0, size  3, port disabled
	map[1c]: type I/O Port, range 32, base 0, size  2, port disabled
	map[20]: type I/O Port, range 32, base 0, size  4, port disabled
	map[24]: type Memory, range 32, base 0xfa402000, size 13, enabled
pcib10: allocated memory range (0xfa402000-0xfa403fff) for rid 24 of pci1:3:12:0
found->	vendor=0x106b, dev=0x0050, revid=0x00
	domain=1, bus=3, slot=13, func=0
	class=ff-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0004, statreg=0x8200, cachelnsz=16 (dwords)
	lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	map[10]: type Memory, range 32, base 0xfa404000, size 14, memory disabled
pcib10: allocated memory range (0xfa404000-0xfa407fff) for rid 10 of pci1:3:13:0
found->	vendor=0x106b, dev=0x0052, revid=0x00
	domain=1, bus=3, slot=14, func=0
	class=0c-00-10, hdrtype=0x00, mfdev=0
	cmdreg=0x0000, statreg=0x0290, cachelnsz=16 (dwords)
	lattimer=0xf8 (7440 ns), mingnt=0x0c (3000 ns), maxlat=0x18 (6000 ns)
	intpin=a, irq=0
	powerspec 2  supports D0 D1 D2 D3  current D0
	map[10]: type Memory, range 32, base 0xfa400000, size 12, memory disabled
pcib10: allocated memory range (0xfa400000-0xfa400fff) for rid 10 of pci1:3:14:0
atapci0: <ServerWorks K2 SATA150 controller> mem 0xfa402000-0xfa403fff irq 10 at device 12.0 on pci10
pcib1: failed to reserve resource for pcib10
pcib10: failed to allocate initial I/O port window (0-0xffffffff,0x1000)
atapci0: 0x10 bytes of rid 0x20 res 4 failed (0, 0xffffffffffffffff).
ofw_pci mapdev: start fa402000, len 8192
ata2: <ATA channel> at channel 0 on atapci0
ata3: <ATA channel> at channel 1 on atapci0
ata4: <ATA channel> at channel 2 on atapci0
ata5: <ATA channel> at channel 3 on atapci0
ofw_pci mapdev: start fa404000, len 16384
ata0: <Shasta Kauai ATA Controller> mem 0xfa404000-0xfa407fff irq 38 at device 13.0 on pci10
fwohci0: vendor=106b, dev=52
fwohci0: vendor=106b, dev=52
fwohci0: <1394 Open Host Controller Interface> mem 0xfa400000-0xfa400fff irq 39 at device 14.0 on pci10
ofw_pci mapdev: start fa400000, len 4096
fwohci0: OHCI version 1.0 (ROM=0)
fwohci0: No. of Isochronous channels is 8.
fwohci0: EUI64 00:14:51:ff:fe:33:ca:b6
fwohci0: invalid speed 7 (fixed to 3).
fwohci0: Phy 1394a available S800, 3 ports.
fwohci0: Link S800, max_rec 4096 bytes.
firewire0: <IEEE1394(FireWire) bus> on fwohci0
dcons_crom0: <dcons configuration ROM> on firewire0
dcons_crom0: bus_addr 0x30e8c000
fwe0: <Ethernet over FireWire> on firewire0
if_fwe0: Fake Ethernet address: 02:14:51:33:ca:b6
fwe0: bpf attached
fwe0: Ethernet address: 02:14:51:33:ca:b6
sbp0: <SBP-2/SCSI over FireWire> on firewire0
fwohci0: Initiate bus reset
fwohci0: fwohci_intr_core: BUS reset
fwohci0: fwohci_intr_core: node_id=0x00000001, SelfID Count=1, non CYCLEMASTER mode
sc1: no video adapter found.
smu0: <Apple System Management Unit> on nexus0
smu0: Fan: DRIVE BAY A INTAKE type: 0
smu0: Fan: BACKSIDE type: 0
smu0: Fan: CPU A INTAKE type: 0
smu0: Fan: CPU B INTAKE type: 0
smu0: Fan: CPU A EXHAUST type: 0
smu0: Fan: CPU B EXHAUST type: 0
smu0: Fan: EXPANSION SLOTS INTAKE type: 0
smu0: registered as a time-of-day clock (resolution 1000us, adjustment 0.000500000s)
iichb2: <SMU I2C controller> on smu0
iicbus2: <OFW I2C bus> on iichb2
smusat0: <SMU Satellite Sensors> at addr 0xb0 on iicbus2
iicbus2: <unknown card> at addr 0xd4
iichb3: <SMU I2C controller> on smu0
iicbus3: <OFW I2C bus> on iichb3
sc1: no video adapter found.
nexus0: <aliases>, type (unknown) (no driver attached)
sc0: <System console> on nexus0
sc0: Unknown <16 virtual consoles, flags=0x300>
sc0: fb0, kbd0, terminal emulator: scteken (teken terminal)
procfs registered
Timecounter "timebase" frequency 33333333 Hz quality 0
Event timer "decrementer" frequency 33333333 Hz quality 1000
Timecounters tick every 1.000 msec
firewire0: 3 nodes, maxhop <= 2 cable IRM irm(2) 
vlan: initialized, using hash tables with chaining
tcp_init: net.inet.tcp.tcbhashsize auto tuned to 131072
lo0: bpf attached
max66900: 2 sensors detected.
max66900: Sensors
max66900: Location : BACKSIDE ID: 6
max66900: Location : KODIAK DIODE ID: 7
max66901: 2 sensors detected.
max66901: Sensors
max66901: Location : TUNNEL ID: 1
max66901: Location : TUNNEL HEATSINK ID: 2
bge1: link state changed to UP
usbus0: 12Mbps Full Speed USB v1.0
usbus1: 12Mbps Full Speed USB v1.0
ugen0.1: <NEC> at usbus0
uhub0: <NEC OHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus0
ugen1.1: <NEC> at usbus1
uhub1: <NEC OHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus1
usbus2: 480Mbps High Speed USB v2.0
ata2: hard reset ...ugen2.1: <NEC> at usbus2
uhub2: <NEC EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus2

ata2: SATA connect time=10ms status=00000113
ata2: reset tp1 mask=01 ostat0=50 ostat1=00
fwohci0: txd err= 3 miss Ack err
uhub0: 3 ports with 3 removable, self powered
uhub1: 2 ports with 2 removable, self powered
firewire0: fw_explore_node: fwdev->speed(S800) decremented due to negotiation
ata2: stat0=0x50 err=0x01 lsb=0x00 msb=0x00firewire0: New S400 device ID:000a95fffe9f7ae8

ata2: reset tp2 stat0=50 stat1=00 devices=0x1
ata3: hard reset ...
ata3: SATA connect timeout status=00000004
ata4: hard reset ...
pcm0: Mixer "vol":
ata4: SATA connect timeout status=00000000
ata5: hard reset ...
uhub2: 5 ports with 5 removable, self powered
ata5: SATA connect timeout status=00000000
ata0: reset tp1 mask=03 ostat0=00 ostat1=00
ata0: stat0=0x00 err=0x01 lsb=0x14 msb=0xeb
ata0: stat1=0x00 err=0x00 lsb=0x00 msb=0x00
ata0: reset tp2 stat0=00 stat1=00 devices=0x10000
pass0 at ata2 bus 0 scbus0 target 0 lun 0
pass0: <WDC WD2500JS-41MVB1 10.02E01> ATA-7 SATA 2.x device
pass0: Serial Number WD-WCANY1122450
pass0: 150.000MB/s transfers (SATA 1.x, UDMA5, PIO 8192bytes)
pass1 at ata0 bus 0 scbus4 target 0 lun 0
pass1: <PIONEER DVD-RW  DVR-110D AA06> Removable CD-ROM SCSI-0 device 
pass1: Serial Number EIDL026857WL
pass1: 66.700MB/s transfers (UDMA4, ATAPI 12bytes, PIO 65534bytes)
ada0 at ata2 bus GEOM: new disk cd0
GEOM: new disk ada0
cd0 at ata0 bus 0 scbus4 target 0 lun 0
cd0: <PIONEER DVD-RW  DVR-110D AA06> Removable CD-ROM SCSI-0 device 
cd0: Serial Number EIDL026857WL
cd0: 66.700MB/s transfers (UDMA4, ATAPI 12bytes, PIO 65534bytes)
cd0: Attempt to query device size failed: NOT READY, Medium not present
0 scbus0 target 0 lun 0
ada0: <WDC WD2500JS-41MVB1 10.02E01> ATA-7 SATA 2.x device
ada0: Serial Number WD-WCANY1122450
ada0: 150.000MB/s transfers (SATA 1.x, UDMA5, PIO 8192bytes)
ada0: 238475MB (488397168 512 byte sectors: 1ugen2.2: <vendor 0x0424> at usbus2
uhub3: <vendor 0x0424 product 0x2514, class 9/0, rev 2.00/0.00, addr 2> on usbus2
6H 63S/uhub3: MTT enabled
T 16383C)
ada0: Previously was known as ad0
Adding CPU 0, pir=0, awake=1
Waking up CPU 1 (dev=ff89eb70)
Adding CPU 1, pir=1, awake=1
SMP: AP CPU #1 launched
ugen1.2: <Mitsumi Electric> at usbus1
uhub4: <Mitsumi Electric Hub in Apple Extended USB Keyboard, class 9/0, rev 1.10/1.22, addr 2> on usbus1
Root mount waiting for: usbus2
uhub4: 3 ports with 2 removable, bus powered
uhub3: 4 ports with 4 removable, self powered
Trying to mount root from ufs:/dev/ada0s3 [rw]...
WARNING: / was not properly dismounted
WARNING: /: mount pending error: blocks 0 files 562
start_init: trying /sbin/init
ugen1.3: <Mitsumi Electric> at usbus1
ukbd0: <Mitsumi Electric Apple Extended USB Keyboard, class 0/0, rev 1.10/1.22, addr 3> on usbus1
kbd: new array size 4
kbd1 at ukbd0
kbd1: ukbd0, generic (0), config:0x0, flags:0x3d0000
uhid0: <Mitsumi Electric Apple Extended USB Keyboard, class 0/0, rev 1.10/1.22, addr 3> on usbus1
ugen1.4: <Broadcom Corp> at usbus1
fwohci0: fwohci_intr_core: BUS reset
fwohci0: fwohci_intr_core: node_id=0x00000001, SelfID Count=2, CYCLEMASTER mode
firewire0: 2 nodes, maxhop <= 1 cable IRM irm(1)  (me) 
firewire0: bus manager 1 
firewire0: fw_attach_dev:Removing missing device ID:000a95fffe9f7ae8
bge0: link state changed to DOWN
bge1: link state changed to DOWN
bge1: link state changed to UP
ubt0: <Broadcom Corp ASUS Bluetooth Dongle, class 224/1, rev 2.00/1.00, addr 4> on usbus1
WARNING: attempt to domain_add(bluetooth) after domainfinalize()
WARNING: attempt to domain_add(netgraph) after domainfinalize()
fwohci0: fwohci_intr_core: BUS reset
fwohci0: fwohci_intr_core: node_id=0x00000002, SelfID Count=3, CYCLEMASTER mode
firewire0: 3 nodes, maxhop <= 2 cable IRM irm(2)  (me) 
firewire0: bus manager 2 
fwohci0: txd err= 3 miss Ack err
firewire0: fw_explore_node: fwdev->speed(S800) decremented due to negotiation
firewire0: New S400 device ID:000a95fffe9f7ae8
[ thread pid -1 tid 1006665719 ]
Stopped at      0:      illegal instruction 0
db:0:kdb.enter.default> show reg
r0                   0
r1                   0
r2            0xab63d0  M_MACTEMP
r3            0xbb12e0
r4            0x741f18  .ofwcall+0xa8
r5                   0
r6            0xa4f1a8
r7                 0x1
r8                 0x1
r9            0xc10500  __pcpu
r10          0x1c35ec0
r11                  0
r12         0x2000d032
r13         0x3422d000
r14         0x10014200
r15         0xffffffffffffcb58
r16                0x2
r17                0x2
r18         0xffffffffffffcb50
r19                  0
r20         0xc000000013231478
r21         0xc00000014c069200
r22                  0
r23               0x64  dbsize+0x10
r24         0xc00000014c068f70
r25           0xb62cb8  smp_no_rendevous_barrier
r26                  0
r27           0x741f18  .ofwcall+0xa8
r28           0x741f18  .ofwcall+0xa8
r29         0x2000d032
r30         0x9000000000001032
r31           0xc0cad8  mac_labeled
srr0          0x102ca4  k_trap+0x28
srr1        0x9000000000001032
lr            0x102c74  u_trap+0x10
ctr         0xff846d78
cr          0x2000f1b0
xer                  0
dar         0xfffffffffffffd60
dsisr       0x42000000
0:      illegal instruction 0
db:0:kdb.enter.default>  bt
Tracing pid -1 tid 1006665719 td 0
db:0:kdb.enter.default>  show pcpu
cpuid        = 0
dynamic pcpu = 0xbfffffffff4eaa00
curthread    = 0x3422d000: pid 1033 "powerd"
curpcb       = 0xc00000014c069bd0
fpcurthread  = none
idlethread   = 0x2fa58490: tid 100003 "idle: cpu0"
PPC: hwref   = 0xff89d680
PPC: ipimask = 0
PPC: pir     = 0
db:0:kdb.enter.default>  ps
  pid  ppid  pgrp   uid   state   wmesg         wchan        cmd
 2727  2726  2727  1001  Ss+     ttyin    0x339db8a8 tcsh
 2726  2724  2724  1001  S       select   0x3c1aedc0 sshd
 2724  1060  2724     0  Ss      select   0x3c1aec40 sshd
 1119     1     1     0  S       ttydcd   0x2faa04e8 getty
 1118     1  1118     0  Ss+     ttyin    0x339db0a8 getty
 1117     1  1117     0  Ss+     ttyin    0x339db4a8 getty
 1116     1  1116     0  Ss+     ttyin    0x2faa14a8 getty
 1115     1  1115     0  Ss+     ttyin    0x2faa18a8 getty
 1114     1  1114     0  Ss+     ttyin    0x2faa1ca8 getty
 1113     1  1113     0  Ss+     ttyin    0x339d90a8 getty
 1112     1  1112     0  Ss+     ttyin    0x339d94a8 getty
 1111     1  1111     0  Ss+     ttyin    0x339d98a8 getty
 1070     1  1070     0  Ss      nanslp   0xbe0aa1 cron
 1066     1  1066    25  Ss      pause    0x3423e9e8 sendmail
 1063     1  1063     0  Ss      select   0x343e9dc0 sendmail
 1060     1  1060     0  Ss      select   0x3429b540 sshd
 1033     1  1033     0  Rs      CPU 0                       powerd
 1030     1  1030     0  Ss      select   0x343e81c0 ntpd
  954     1   954     0  Ss      select   0x34374540 syslogd
  843     1   843     0  Ss      select   0x3c1ae9c0 devd
  800     0     0     0  DL      (threaded)                  [ng_queue]
100079                   D       sleep    0xc0000000142ac1d0 [ng_queue1]
100063                   D       sleep    0xc0000000142ac1d0 [ng_queue0]
  794     1   794    65  Ss      select   0x34374840 dhclient
  756     1   756     0  Ss      select   0x34374740 dhclient
   18     0     0     0  DL      smu      0xc00000014c0157b8 [pmac_thermal]
   17     0     0     0  DL      sdflush  0xc0cf00 [softdepflush]
   16     0     0     0  DL      syncer   0xc02220 [syncer]
    9     0     0     0  DL      vlruwt   0x341b2000 [vnlru]
    8     0     0     0  DL      psleep   0xc01da4 [bufdaemon]
    7     0     0     0  DL      pgzero   0xc0f424 [pagezero]
    6     0     0     0  DL      psleep   0xc0ece0 [vmdaemon]
    5     0     0     0  DL      psleep   0xc0eca8 [pagedaemon]
    4     0     0     0  DL      ccb_scan 0xbb9340 [xpt_thrd]
    3     0     0     0  DL      waiting_ 0xc077c0 [sctp_iterator]
    2     0     0     0  SL      -        0xc0000000132a6000 [fw0_probe]
   15     0     0     0  DL      (threaded)                  [usb]
100041                   D       -        0xc0000000132a3e18 [usbus2]
100040                   D       -        0xc0000000132a3dc0 [usbus2]
100039                   D       -        0xc0000000132a3d68 [usbus2]
100038                   D       -        0xc0000000132a3d10 [usbus2]
100037                   D       -        0xc00000001329b460 [usbus1]
100036                   D       -        0xc00000001329b408 [usbus1]
100035                   D       -        0xc00000001329b3b0 [usbus1]
100034                   D       -        0xc00000001329b358 [usbus1]
100033                   D       -        0xc000000013298460 [usbus0]
100032                   D       -        0xc000000013298408 [usbus0]
100031                   D       -        0xc0000000132983b0 [usbus0]
100030                   D       -        0xc000000013298358 [usbus0]
   14     0     0     0  DL      -        0xbc1390 [yarrow]
   13     0     0     0  DL      (threaded)                  [geom]
100011                   D       -        0xbdb038 [g_down]
100010                   D       -        0xbdb030 [g_up]
100009                   D       -        0xbdb020 [g_event]
   12     0     0     0  WL      (threaded)                  [intr]
100047                   I                                   [irq53: smudoorbell0]
100044                   I                                   [irq39: fwohci0]
100043                   I                                   [irq38: ata0]
100042                   I                                   [irq10: atapci0]
100029                   I                                   [irq70: ohci0 ohci1+]
100028                   I                                   [irq11: pcm0]
100027                   I                                   [irq27: iichb1]
100026                   I                                   [swi0: uart uart]
100025                   I                                   [irq75: aoagpio4]
100024                   I                                   [irq79: aoagpio1]
100023                   I                                   [irq9: bge1]
100022                   I                                   [irq8: bge0]
100021                   I                                   [irq0: iichb0]
100020                   I                                   [swi2: cambio]
100018                   I                                   [swi6: task queue]
100017                   I                                   [swi6: Giant taskq]
100014                   I                                   [swi5: fast taskq]
100008                   I                                   [swi1: netisr 0]
100007                   I                                   [swi3: vm]
100006                   I                                   [swi4: clock]
100005                   I                                   [swi4: clock]
   11     0     0     0  RL      (threaded)                  [idle]
100004                   Run     CPU 1                       [idle: cpu1]
100003                   CanRun                              [idle: cpu0]
    1     0     1     0  SLs     wait     0x2fa56940 [init]
   10     0     0     0  DL      audit_wo 0xc0c108 [audit]
    0     0     0     0  DLs     (threaded)                  [kernel]
100045                   D       -        0x33940a00 [fw0_taskq]
100019                   D       -        0x2fa73b00 [kqueue taskq]
100016                   D       -        0x2fb5e200 [thread taskq]
100015                   D       -        0x2fa4b200 [ffs_trim taskq]
100012                   D       -        0x2fa4a200 [firmware taskq]
100000                   D       sched    0xbdb620 [swapper]
db:0:kdb.enter.default>  run lockinfo
db:1:lockinfo> show locks
No such command
db:1:locks>  show alllocks
No such command
db:1:alllocks>  show lockedvnods
Locked vnodes

[dconschat exiting...]

Script done on Sun Jun  9 13:17:13 2013
help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAHSQbTACtejaRKiG4qScSV_EdTC8y_k5Qghx_FYebWzstBP61g>