After upgrade from 5.2.1 to 5.3 (and 5-STABLE after that), my both machines would always hang on panic (with and without acpi, dumps, sync on panic), just after printing uptime. This problem looks identical to the one described here: http://lists.freebsd.org/pipermail/freebsd-current/2004-May/026881.html I've also reproduced it on most recent 6-CURRENT kernel from ftp://snapshots.jp.freebsd.org/pub/FreeBSD/snapshots/i386/livetree/ With ata debugging enabled I got this output: > Uptime: 1m41s > eventhandler_invoke("shutdown_post_sync") > eventhandler_invoke: executing 0xc066dbd0 # kproc_shutdown() > eventhandler_invoke: executing 0xc04d0dc0 # ata_shutdown() > ad0: req=0xc23e8258 FLUSHCACHE queued > ad0: req=0xc23e8258 FLUSHCACHE starting > ad0: req=0xc23e8258 FLUSHCACHE begin transaction > ad0: req=0xc23e8258 FLUSHCACHE wait for completition And then it locks up. I've tried single stepping from the line after the last ATA_DEBUG_RQ printf and found this loop: > Breakpoint at cv_wait: pushl %ebp > db> tr > cv_wait(c23e8750,c08a6272,67,c08a694f,c23e8708) at cv_wait # missing _sema_wait() (at the end of ata_queue_reqeust()) ? > ata_queue_request(c23e8708,0,101,0,3af0) at ata_queue_request+0x254 > ata_controlcmd(c21608ac,e7,0,0,0) at ata_controlcmd+0x8b > ata_shutdown(0,104,194,c089d209,c04d0d40) at ata_shutdown+0x7b > boot(104,0,c08d251c,233,100) at boot+0x727 > panic(c24ae5ad,d57e3bac,0,d57e3bf8,1) at panic+0x138 ... kern/kern_sema.c:_sema_wait(): 95 while (sema->sema_value == 0) { 96 sema->sema_waiters++; ->97 cv_wait(&sema->sema_cv, &sema->sema_mtx); 98 sema->sema_waiters--; 99 } But because panicstr is set, cv_wait() immediately returns, so _sema_wait() goes into a tight loop. kern/kern_condvar.c:cv_wait(): 111 if (cold || panicstr) { 112 /* 113 * During autoconfiguration, just give interrupts 114 * a chance, then just return. Don't run any other 115 * thread or panic below, in case this is the idle 116 * process and already asleep. 117 */ 118 return; 119 } As a workaround I tried the following change: ------------------------------------------------------------------- --- src/sys/kern/kern_condvar.c.orig Tue Nov 9 23:51:16 2004 +++ src/sys/kern/kern_condvar.c Thu Dec 23 18:04:46 2004 _at__at_ -108,7 +108,7 _at__at_ "Waiting on \"%s\"", cvp->cv_description); WITNESS_SAVE(&mp->mtx_object, mp); - if (cold || panicstr) { + if (cold) { /* * During autoconfiguration, just give interrupts * a chance, then just return. Don't run any other ------------------------------------------------------------------- This is what I get now instead of hang: > ad0: req=0xc23e8708 FLUSHCACHE interrupt > ad0: req=0xc23e8708 FLUSHCACHE end transaction > ad0: req=0xc23e8708 FLUSHCACHE finish taskqueue_thread > ad0: req=0xc23e8708 FLUSHCACHE completed entered > ad0: req=0xc23e8708 FLUSHCACHE completed callback/wakeup And it almost works now, normal panics (like "uhci_abort_xfer: not in process context" that I sometimes get under heavy load or a panic triggered by sysctl using a simple module) succeed, including crashdumps (even if panic happened while I was in X). There is a following problem when I call panic from ddb with this, so I guess a proper fix is more complicated but I don't know much about kernel programming. # sysctl debug.kdb.enter=1 debug.kdb.enter:K D0B: enter: sysctl debug.kdb.enter [thread 100036] Stopped at kdb_enter+0x30: leave db> panic panic: from debugger Uptime: 22s panic: mi_switch: switch in a critical section KDB: enter: panic [thread 100036] Stopped at kdb_enter+0x30: leave db> tr kdb_enter(c08d24f8,d57dd7b4,d57dd804,c068d3fe,104) at kdb_enter+0x30 panic(c08d2e6c,2,c08d2e04,11d,c08ef77c) at panic+0xcc mi_switch(1,0,c08d5556,196,127) at mi_switch+0xbc sleepq_switch(c23e81fc,1,c21a1960,c23e81fc,d57dd8a0) at sleepq_switch +0x134 sleepq_wait(c23e81fc,c23e81fc,c23e81d8,c08a6261,1) at sleepq_wait+0x41 cv_wait(c23e81fc,c23e81d8,c08d23f9,5e,d57dd8d8) at cv_wait+0x1e7 _sema_wait(c23e81d8,c08a6272,67,5b,c23e8190) at _sema_wait+0x43 ata_queue_request(c23e8190,0,101,0,d920) at ata_queue_request+0x254 ata_controlcmd(c21608ac,e7,0,0,0) at ata_controlcmd+0x8b ata_shutdown(0,104,194,c089d209,c04d0d40) at ata_shutdown+0x7b boot(104,0,c08d251c,233,100) at boot+0x727 panic(c089d08e,d57dda88,c046c2d2,c068a090,0) at panic+0x138 db_panic(c068a090,0,ffffffff,d57dd9fc,d57dd9f8) at db_panic+0x12 db_command(c0979124,c0902060,c08f90ec,c08f9108,d57ddaf4) at db_command +0x2b2 db_command_loop(c068a090,0,0,0,0) at db_command_loop+0x6a db_trap(3,0,3,d57ddb40,c086457a) at db_trap+0xe5 kdb_trap(3,0,d57ddb48,1,0) at kdb_trap+0x77 trap(18,10,10,0,0) at trap+0x4ea calltrap() at calltrap+0x5 --- trap 0x3, eip = 0xc068a090, esp = 0xd57ddb88, ebp = 0xd57ddb90 --- kdb_enter(c08d4b7a,d57ddba8,0,d57ddbf8,1) at kdb_enter+0x30 kdb_sysctl_enter(c0933dc0,0,0,d57ddbf8,d57ddbf8) at kdb_sysctl_enter +0x67 sysctl_root(0,d57ddc64,3,d57ddbf8,c21a1960) at sysctl_root+0x14e userland_sysctl(c21a1960,d57ddc64,3,0,0) at userland_sysctl+0x11f __sysctl(c21a1960,d57ddd14,3d8,c08f38de,c21a1960) at __sysctl+0xaf syscall(2f,2f,2f,0,0) at syscall+0x2c2 Xint0x80_syscall() at Xint0x80_syscall+0x1f --- syscall (202, FreeBSD ELF32, __sysctl), eip = 0x280c82ef, esp = 0xbfbfe53c, ebp = 0xbfbfe568 ---db> Attachments: DEBUG: kernel configuration /usr/src/sys/i386/conf/DEBUG dmesg-verbose-ghost.txt: verbose dmesg from the first machine dmesg-verbose-wisnia.txt: verbose dmesg from the second machine ktr-hang-wisnia.txt: ktr output [ktr.mask=KTR_ALL] from the second machine, with DEBUG kernel, without workaround. This is from after print_uptime() up to hang include GENERIC ident GENERIC_DEBUG makeoptions DEBUG=-g options KDB options DDB options GDB options INVARIANTS options INVARIANT_SUPPORT options WITNESS options WITNESS_SKIPSPIN options KTR options KTR_COMPILE=(KTR_ALL) options KTR_ENTRIES=131072 options KTR_VERBOSE Copyright (c) 1992-2004 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.3-STABLE #6: Thu Dec 23 18:59:09 CET 2004 root_at_ghost.pnet.one.pl:/usr/obj/usr/src/sys/DEBUG WARNING: WITNESS option enabled, expect reduced performance. Preloaded elf kernel "/boot/gendebug/kernel" at 0xc111c000. Preloaded elf module "/boot/gendebug/acpi.ko" at 0xc111c27c. Calibrating clock(s) ... i8254 clock: 1193255 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz quality 0 Calibrating TSC clock ... TSC clock: 1000046717 Hz CPU: AMD Duron(tm) (1000.05-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x670 Stepping = 0 Features=0x383f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE> AMD Features=0xc0440000<RSVD,AMIE,DSP,3DNow!> Data TLB: 32 entries, fully associative Instruction TLB: 16 entries, fully associative L1 data cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L1 instruction cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L2 internal cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 8-way associative real memory = 528416768 (503 MB) Physical memory chunk(s): 0x0000000000001000 - 0x000000000009efff, 647168 bytes (158 pages) 0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages) 0x0000000001426000 - 0x000000001eee3fff, 497803264 bytes (121534 pages) avail memory = 499052544 (475 MB) bios32: Found BIOS32 Service Directory header at 0xc00fdac0 bios32: Entry = 0xfdad0 (c00fdad0) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xf0000+0xdaf1 pnpbios: Found PnP BIOS data at 0xc00f7790 pnpbios: Entry = f0000:65ab Rev = 1.0 Other BIOS signatures found: wlan: <802.11 Link Layer> random: <entropy source, Software, Yarrow> io: <I/O> mem: <memory> Pentium Pro MTRR support enabled null: <null device, zero device> npx0: [FAST] npx0: <math processor> on motherboard npx0: INT 16 interface acpi0: <AMIINT VIA_K7> on motherboard acpi0: [MPSAFE] pci_open(1): mode 1 addr port (0x0cf8) is 0x80008840 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=31161106) pcibios: BIOS version 2.10 Found $PIR table, 6 entries at 0xc00f7e00 PCI-Only Interrupts: none Location Bus Device Pin Link IRQs embedded 0 1 A 0x01 3 4 5 6 7 10 11 12 14 15 embedded 0 1 B 0x02 3 4 5 6 7 10 11 12 14 15 embedded 0 17 A 0xfe 14 embedded 0 17 B 0xff 15 embedded 0 17 C 0x03 3 4 5 6 7 10 11 12 14 15 slot 1 0 8 A 0x01 3 4 5 6 7 10 11 12 14 15 slot 1 0 8 B 0x02 3 4 5 6 7 10 11 12 14 15 slot 1 0 8 C 0x03 3 4 5 6 7 10 11 12 14 15 slot 1 0 8 D 0x05 3 4 5 6 7 10 11 12 14 15 slot 2 0 9 A 0x02 3 4 5 6 7 10 11 12 14 15 slot 2 0 9 B 0x03 3 4 5 6 7 10 11 12 14 15 slot 2 0 9 C 0x05 3 4 5 6 7 10 11 12 14 15 slot 2 0 9 D 0x01 3 4 5 6 7 10 11 12 14 15 embedded 0 16 A 0x01 3 4 5 6 7 10 11 12 14 15 embedded 0 16 B 0x02 3 4 5 6 7 10 11 12 14 15 embedded 0 16 C 0x03 3 4 5 6 7 10 11 12 14 15 embedded 0 16 D 0x05 3 4 5 6 7 10 11 12 14 15 embedded 0 18 A 0x01 3 4 5 6 7 10 11 12 14 15 AcpiOsDerivePciId: bus 0 dev 17 func 0 AcpiOsDerivePciId: bus 0 dev 17 func 0 acpi0: Power Button (fixed) atpic: Programming IRQ9 as level/low AcpiOsDerivePciId: bus 0 dev 0 func 0 ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10 Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 unknown: not probed (disabled) unknown: not probed (disabled) cpu0: <ACPI CPU> on acpi0 acpi_button0: <Power Button> on acpi0 pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0 ACPI PCI link initial configuration: \\_SB_.LNKA irq 0: [ 3 4 5 6 7 10 11 12 14 15] 11+ low,level,sharable 0.1.0 \\_SB_.LNKB irq 0: [ 3 4 5 6 7 10 11 12 14 15] 6+ low,level,sharable 0.1.1 \\_SB_.LNKC irq 0: [ 3 4 5 6 7 10 11 12 14 15] 5+ low,level,sharable 0.17.2 \\_SB_.LNKA irq 0: [ 3 4 5 6 7 10 11 12 14 15] 11+ low,level,sharable 0.8.0 \\_SB_.LNKB irq 0: [ 3 4 5 6 7 10 11 12 14 15] 6+ low,level,sharable 0.8.1 \\_SB_.LNKC irq 0: [ 3 4 5 6 7 10 11 12 14 15] 5+ low,level,sharable 0.8.2 \\_SB_.LNKD irq 0: [ 3 4 5 6 7 10 11 12 14 15] 10+ low,level,sharable 0.8.3 \\_SB_.LNKB irq 0: [ 3 4 5 6 7 10 11 12 14 15] 6+ low,level,sharable 0.9.0 \\_SB_.LNKC irq 0: [ 3 4 5 6 7 10 11 12 14 15] 5+ low,level,sharable 0.9.1 \\_SB_.LNKD irq 0: [ 3 4 5 6 7 10 11 12 14 15] 10+ low,level,sharable 0.9.2 \\_SB_.LNKA irq 0: [ 3 4 5 6 7 10 11 12 14 15] 11+ low,level,sharable 0.9.3 \\_SB_.LNKA irq 0: [ 3 4 5 6 7 10 11 12 14 15] 11+ low,level,sharable 0.16.0 \\_SB_.LNKB irq 0: [ 3 4 5 6 7 10 11 12 14 15] 6+ low,level,sharable 0.16.1 \\_SB_.LNKC irq 0: [ 3 4 5 6 7 10 11 12 14 15] 5+ low,level,sharable 0.16.2 \\_SB_.LNKD irq 0: [ 3 4 5 6 7 10 11 12 14 15] 10+ low,level,sharable 0.16.3 \\_SB_.LNKA irq 0: [ 3 4 5 6 7 10 11 12 14 15] 11+ low,level,sharable 0.18.0 pci0: <ACPI PCI bus> on pcib0 pci0: physical bus=0 map[10]: type 3, range 32, base e0000000, size 26, enabled found-> vendor=0x1106, dev=0x3116, revid=0x00 bus=0, slot=0, func=0 class=06-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0006, statreg=0x2230, cachelnsz=0 (dwords) lattimer=0x08 (240 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) powerspec 2 supports D0 D3 current D0 found-> vendor=0x1106, dev=0xb091, revid=0x00 bus=0, slot=1, func=0 class=06-04-00, hdrtype=0x01, mfdev=0 cmdreg=0x0107, statreg=0xa230, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x0c (3000 ns), maxlat=0x00 (0 ns) map[20]: type 4, range 32, base 0000e400, size 5, enabled pcib0: matched entry for 0.16.INTA (src \\_SB_.LNKA) pcib0: possible interrupts: 3 4 5 6 7 10 11 12 14 15 ACPI PCI link arbitrated settings: \\_SB_.LNKA (references 5, priority 63325): interrupts: 11 10 5 12 7 6 4 3 15 14 penalty: 160 160 210 5160 5160 5160 5160 5160 50160 50160 \\_SB_.LNKB (references 4, priority 50660): interrupts: 11 10 5 12 7 6 4 3 15 14 penalty: 160 160 210 5160 5160 5160 5160 5160 50160 50160 \\_SB_.LNKC (references 4, priority 50660): interrupts: 11 10 5 12 7 6 4 3 15 14 penalty: 160 160 210 5160 5160 5160 5160 5160 50160 50160 \\_SB_.LNKD (references 3, priority 37995): interrupts: 11 10 5 12 7 6 4 3 15 14 penalty: 160 160 210 5160 5160 5160 5160 5160 50160 50160 pcib0: slot 16 INTA routed to irq 11 via \\_SB_.LNKA found-> vendor=0x1106, dev=0x3038, revid=0x80 bus=0, slot=16, func=0 class=0c-03-00, hdrtype=0x00, mfdev=1 cmdreg=0x0017, statreg=0x0210, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 powerspec 2 supports D0 D1 D2 D3 current D0 map[20]: type 4, range 32, base 0000e800, size 5, enabled pcib0: matched entry for 0.16.INTB (src \\_SB_.LNKB) pcib0: possible interrupts: 3 4 5 6 7 10 11 12 14 15 ACPI PCI link arbitrated settings: \\_SB_.LNKB (references 4, priority 51320): interrupts: 10 11 5 12 7 6 4 3 15 14 penalty: 320 370 370 5320 5320 5320 5320 5320 50320 50320 \\_SB_.LNKC (references 4, priority 51320): interrupts: 10 11 5 12 7 6 4 3 15 14 penalty: 320 370 370 5320 5320 5320 5320 5320 50320 50320 \\_SB_.LNKD (references 3, priority 38490): interrupts: 10 11 5 12 7 6 4 3 15 14 penalty: 320 370 370 5320 5320 5320 5320 5320 50320 50320 pcib0: slot 16 INTB routed to irq 6 via \\_SB_.LNKB found-> vendor=0x1106, dev=0x3038, revid=0x80 bus=0, slot=16, func=1 class=0c-03-00, hdrtype=0x00, mfdev=1 cmdreg=0x0017, statreg=0x0210, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=b, irq=6 powerspec 2 supports D0 D1 D2 D3 current D0 map[20]: type 4, range 32, base 0000ec00, size 5, enabled pcib0: matched entry for 0.16.INTC (src \\_SB_.LNKC) pcib0: possible interrupts: 3 4 5 6 7 10 11 12 14 15 ACPI PCI link arbitrated settings: \\_SB_.LNKC (references 4, priority 51976): interrupts: 10 11 5 12 7 4 3 6 15 14 penalty: 480 530 530 5480 5480 5480 5480 5520 50480 50480 \\_SB_.LNKD (references 3, priority 38982): interrupts: 10 11 5 12 7 4 3 6 15 14 penalty: 480 530 530 5480 5480 5480 5480 5520 50480 50480 pcib0: slot 16 INTC routed to irq 5 via \\_SB_.LNKC found-> vendor=0x1106, dev=0x3038, revid=0x80 bus=0, slot=16, func=2 class=0c-03-00, hdrtype=0x00, mfdev=1 cmdreg=0x0017, statreg=0x0210, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=c, irq=5 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type 1, range 32, base dfffff00, size 8, enabled pcib0: matched entry for 0.16.INTD (src \\_SB_.LNKD) pcib0: possible interrupts: 3 4 5 6 7 10 11 12 14 15 ACPI PCI link arbitrated settings: \\_SB_.LNKD (references 3, priority 39474): interrupts: 10 11 5 12 7 4 3 6 15 14 penalty: 640 690 730 5640 5640 5640 5640 5680 50640 50640 pcib0: slot 16 INTD routed to irq 10 via \\_SB_.LNKD found-> vendor=0x1106, dev=0x3104, revid=0x82 bus=0, slot=16, func=3 class=0c-03-20, hdrtype=0x00, mfdev=0 cmdreg=0x0017, statreg=0x0210, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=d, irq=10 powerspec 2 supports D0 D1 D2 D3 current D0 found-> vendor=0x1106, dev=0x3177, revid=0x00 bus=0, slot=17, func=0 class=06-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x0087, statreg=0x0210, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) powerspec 2 supports D0 D3 current D0 map[20]: type 4, range 32, base 0000fc00, size 4, enabled found-> vendor=0x1106, dev=0x0571, revid=0x06 bus=0, slot=17, func=1 class=01-01-8a, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=255 powerspec 2 supports D0 D3 current D0 map[10]: type 4, range 32, base 0000e000, size 8, enabled pcib0: matched entry for 0.17.INTC (src \\_SB_.LNKC) pcib0: slot 17 INTC is already routed to irq 5 found-> vendor=0x1106, dev=0x3059, revid=0x50 bus=0, slot=17, func=5 class=04-01-00, hdrtype=0x00, mfdev=0 cmdreg=0x0001, statreg=0x0210, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=c, irq=5 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type 4, range 32, base 0000dc00, size 8, enabled map[14]: type 1, range 32, base dffffe00, size 8, enabled pcib0: matched entry for 0.18.INTA (src \\_SB_.LNKA) pcib0: slot 18 INTA is already routed to irq 11 found-> vendor=0x1106, dev=0x3065, revid=0x74 bus=0, slot=18, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0017, statreg=0x0210, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x03 (750 ns), maxlat=0x08 (2000 ns) intpin=a, irq=11 powerspec 2 supports D0 D1 D2 D3 current D0 agp0: <VIA Generic host to PCI bridge> mem 0xe0000000-0xe3ffffff at device 0.0 on pci0 agp0: Reserved 0x4000000 bytes for rid 0x10 type 3 at 0xe0000000 agp0: allocating GATT for aperture of size 256M pcib1: <PCI-PCI bridge> at device 1.0 on pci0 pcib1: secondary bus 1 pcib1: subordinate bus 1 pcib1: I/O decode 0xf000-0xfff pcib1: memory decode 0xdfd00000-0xdfefffff pcib1: prefetched decode 0xcfc00000-0xdfbfffff pci1: <PCI bus> on pcib1 pci1: physical bus=1 map[10]: type 1, range 32, base dfe80000, size 19, enabled pcib1: device (null) requested decoded memory range 0xdfe80000-0xdfefffff map[14]: type 3, range 32, base d0000000, size 27, enabled pcib1: device (null) requested decoded memory range 0xd0000000-0xd7ffffff pcib0: matched entry for 0.1.INTA (src \\_SB_.LNKA) pcib0: slot 1 INTA is already routed to irq 11 pcib1: slot 0 INTA is routed to irq 11 found-> vendor=0x5333, dev=0x8d04, revid=0x00 bus=1, slot=0, func=0 class=03-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0230, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x04 (1000 ns), maxlat=0xff (63750 ns) intpin=a, irq=11 powerspec 2 supports D0 D1 D2 D3 current D0 pci1: <display, VGA> at device 0.0 (no driver attached) uhci0: <VIA 83C572 USB controller> port 0xe400-0xe41f irq 11 at device 16.0 on pci0 uhci0: Reserved 0x20 bytes for rid 0x20 type 4 at 0xe400 uhci0: [GIANT-LOCKED] usb0: <VIA 83C572 USB controller> on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered ulpt0: Hewlett-Packard DeskJet 920C, rev 1.10/1.00, addr 2, iclass 7/1 ulpt0: using bi-directional mode ugen0: Prolific Technology PL2303 Serial adapter (ATEN/IOGEAR UC232A), rev 1.10/2.02, addr 3 uhci1: <VIA 83C572 USB controller> port 0xe800-0xe81f irq 6 at device 16.1 on pci0 uhci1: Reserved 0x20 bytes for rid 0x20 type 4 at 0xe800 uhci1: [GIANT-LOCKED] usb1: <VIA 83C572 USB controller> on uhci1 usb1: USB revision 1.0 uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: <VIA 83C572 USB controller> port 0xec00-0xec1f irq 5 at device 16.2 on pci0 uhci2: Reserved 0x20 bytes for rid 0x20 type 4 at 0xec00 uhci2: [GIANT-LOCKED] usb2: <VIA 83C572 USB controller> on uhci2 usb2: USB revision 1.0 uhub2: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered pci0: <serial bus, USB> at device 16.3 (no driver attached) isab0: <PCI-ISA bridge> at device 17.0 on pci0 isa0: <ISA bus> on isab0 atapci0: <VIA 8235 UDMA133 controller> port 0xfc00-0xfc0f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 17.1 on pci0 atapci0: Reserved 0x10 bytes for rid 0x20 type 4 at 0xfc00 ata0: channel #0 on atapci0 atapci0: Reserved 0x8 bytes for rid 0x10 type 4 at 0x1f0 atapci0: Reserved 0x1 bytes for rid 0x14 type 4 at 0x3f6 ata0: reset tp1 mask=03 ostat0=50 ostat1=00 ata0-master: stat=0x50 err=0x01 lsb=0x00 msb=0x00 ata0-slave: stat=0x00 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=00 devices=0x1<ATA_MASTER> ata0: [MPSAFE] ata1: channel #1 on atapci0 atapci0: Reserved 0x8 bytes for rid 0x18 type 4 at 0x170 atapci0: Reserved 0x1 bytes for rid 0x1c type 4 at 0x376 ata1: reset tp1 mask=03 ostat0=20 ostat1=30 ata1-master: stat=0x20 err=0x20 lsb=0x20 msb=0x20 ata1-slave: stat=0x30 err=0x30 lsb=0x30 msb=0x30 ata1: reset tp2 stat0=20 stat1=30 devices=0x0 ata1: [MPSAFE] pci0: <multimedia, audio> at device 17.5 (no driver attached) vr0: <VIA VT6102 Rhine II 10/100BaseTX> port 0xdc00-0xdcff mem 0xdffffe00-0xdffffeff irq 11 at device 18.0 on pci0 vr0: Reserved 0x100 bytes for rid 0x10 type 4 at 0xdc00 miibus0: <MII bus> on vr0 ukphy0: <Generic IEEE 802.3u media interface> on miibus0 ukphy0: OUI 0x004063, model 0x0032, rev. 5 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto vr0: bpf attached vr0: Ethernet address: 42:00:e6:65:9b:11 vr0: [MPSAFE] acpi_button1: <Sleep Button> on acpi0 unknown: not probed (disabled) psmcpnp0: <PS/2 mouse port> irq 12 on acpi0 atkbdc0: <Keyboard controller (i8042)> port 0x64,0x60 irq 1 on acpi0 atkbd0: <AT Keyboard> irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0065 atkbd: keyboard ID 0x41ab (2) kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x3d0000 atkbd0: [GIANT-LOCKED] psm0: current command byte:0065 psm0: <PS/2 Mouse> irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model IntelliMouse Explorer, device ID 4-00, 5 buttons psm0: config:00000000, flags:00000008, packet size:4 psm0: syncmask:08, syncbits:00 fdc0: <floppy drive controller> port 0x3f7,0x3f4-0x3f5,0x3f2-0x3f3 irq 6 drq 2 on acpi0 atpic: Programming IRQ6 as edge/high fdc0: does not respond device_attach: fdc0 attach returned 6 sio0: irq maps: 0x1 0x11 0x1 0x1 sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A unknown: not probed (disabled) unknown: not probed (disabled) unknown: not probed (disabled) ppc0: using extended I/O port range ppc0: ECP SPP SPP ppc0: <ECP parallel printer port> port 0x778-0x77b,0x378-0x37f irq 7 drq 3 on acpi0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/16 bytes threshold ppbus0: <Parallel port bus> on ppc0 plip0: <PLIP network interface> on ppbus0 plip0: bpf attached lpt0: <Printer> on ppbus0 lpt0: Interrupt-driven port ppi0: <Parallel I/O> on ppbus0 unknown: not probed (disabled) unknown: not probed (disabled) unknown: not probed (disabled) unknown: not probed (disabled) fdc0: <floppy drive controller> port 0x3f7,0x3f4-0x3f5,0x3f2-0x3f3 irq 6 drq 2 on acpi0 fdc0: does not respond device_attach: fdc0 attach returned 6 unknown: not probed (disabled) unknown: not probed (disabled) unknown: not probed (disabled) unknown: not probed (disabled) ata: ata0 already exists; skipping it ata: ata1 already exists; skipping it atkbdc: atkbdc0 already exists; skipping it fdc: fdc0 already exists; skipping it ppc: ppc0 already exists; skipping it sio: sio0 already exists; skipping it Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 ex_isa_identify() unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff ahc_isa_probe 13: ioport 0xdc00 alloc failed ahc_isa_probe 14: ioport 0xec00 alloc failed sc: sc0 already exists; skipping it vga: vga0 already exists; skipping it isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices orm0: <ISA Option ROMs> at iomem 0xcc000-0xdbfff,0xc0000-0xcbfff on isa0 pmtimer0 on isa0 adv0: not probed (disabled) aha0: not probed (disabled) aic0: not probed (disabled) bt0: not probed (disabled) cs0: not probed (disabled) ed0: not probed (disabled) fe0: not probed (disabled) ie0: not probed (disabled) lnc0: not probed (disabled) pcic0 failed to probe at port 0x3e0 iomem 0xd0000 on isa0 pcic1: not probed (disabled) sc0: <System console> at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled sio1: irq maps: 0x1 0x1 0x1 0x1 sio1: probe failed test(s): 0 1 2 4 6 7 9 sio1 failed to probe at port 0x2f8-0x2ff irq 3 on isa0 sio2: not probed (disabled) sio3: not probed (disabled) sn0: not probed (disabled) vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 fb0: vga0, vga, type:VGA (5), flags:0x7007f fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000 fb0: init mode:24, bios mode:3, current mode:24 fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k VGA parameters upon power-up 50 18 10 00 00 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 07 80 9c 0e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff VGA parameters in BIOS for mode 24 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff EGA/VGA parameters to be used for mode 24 50 18 10 00 00 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 07 80 9c 0e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff vt0: not probed (disabled) isa_probe_children: probing PnP devices Device configuration finished. procfs registered Timecounter "TSC" frequency 1000046717 Hz quality 800 Timecounters tick every 1.000 msec lo0: bpf attached cpu0: set speed to 100.0% acpi_cpu: throttling enabled, 16 steps (100% to 6.2%), currently 100.0% ata0-master: pio=0x0c wdma=0x22 udma=0x45 cable=80pin ata0-master: setting PIO4 on VIA 8235 chip ata0-master: setting UDMA100 on VIA 8235 chip ad0: <WDC WD1200BB-00DAA3/75.13B75> ATA-6 disk at ata0-master ad0: 114473MB (234441648 sectors), 232581 C, 16 H, 63 S, 512 B ad0: 16 secs/int, 1 depth queue, UDMA100 GEOM: new disk ad0 ar: FreeBSD check1 failed [0] f:00 typ:131 s(CHS):0/1/1 e(CHS):3/254/63 s:63 l:64197 [1] f:00 typ:4 s(CHS):4/0/1 e(CHS):7/254/63 s:64260 l:64260 [2] f:80 typ:165 s(CHS):8/0/1 e(CHS):1023/254/63 s:128520 l:24579450 [3] f:00 typ:165 s(CHS):1023/255/63 e(CHS):1023/254/63 s:24707970 l:209728575 GEOM: Configure ad0s1, start 32256 length 32868864 end 32901119 GEOM: Configure ad0s2, start 32901120 length 32901120 end 65802239 GEOM: Configure ad0s3, start 65802240 length 12584678400 end 12650480639 GEOM: Configure ad0s4, start 12650480640 length 107381030400 end 120031511039 GEOM: Configure ad0s3a, start 0 length 268435456 end 268435455 GEOM: Configure ad0s3b, start 536870912 length 805306368 end 1342177279 GEOM: Configure ad0s3c, start 0 length 12584678400 end 12584678399 GEOM: Configure ad0s3d, start 268435456 length 268435456 end 536870911 GEOM: Configure ad0s3e, start 1342177280 length 268435456 end 1610612735 GEOM: Configure ad0s3f, start 1610612736 length 536870912 end 2147483647 GEOM: Configure ad0s3g, start 2147483648 length 2147483648 end 4294967295 GEOM: Configure ad0s3h, start 4294967296 length 8289711104 end 12584678399 GEOM: Configure ad0s4c, start 0 length 107381030400 end 107381030399 GEOM: Configure ad0s4d, start 0 length 80530636800 end 80530636799 GEOM: Configure ad0s4e, start 80530636800 length 26850393600 end 107381030399 Mounting root from ufs:/dev/ad0s3a start_init: trying /sbin/init OK boot -shv GDB: no debug ports present KDB: debugger backends: ddb KDB: current backend: ddb SMAP type=01 base=0000000000000000 len=00000000000a0000 SMAP type=02 base=00000000000f0000 len=0000000000010000 SMAP type=02 base=00000000ffff0000 len=0000000000010000 SMAP type=01 base=0000000000100000 len=000000001fef0000 SMAP type=03 base=000000001fff3000 len=000000000000d000 SMAP type=04 base=000000001fff0000 len=0000000000003000 Copyright (c) 1992-2004 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.3-STABLE #6: Thu Dec 23 18:59:09 CET 2004 root_at_ghost.pnet.one.pl:/usr/obj/usr/src/sys/DEBUG WARNING: WITNESS option enabled, expect reduced performance. Preloaded elf kernel "/boot/gendebug/kernel" at 0xc111e000. Preloaded elf module "/boot/gendebug/acpi.ko" at 0xc111e1e0. Calibrating clock(s) ... i8254 clock: 1193091 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz quality 0 Calibrating TSC clock ... TSC clock: 1750008683 Hz CPU: AMD Athlon(tm) XP 2100+ (1750.01-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x681 Stepping = 1 Features=0x383f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE> AMD Features=0xc0400000<AMIE,DSP,3DNow!> Data TLB: 32 entries, fully associative Instruction TLB: 16 entries, fully associative L1 data cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L1 instruction cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L2 internal cache: 256 kbytes, 64 bytes/line, 1 lines/tag, 8-way associative real memory = 536805376 (511 MB) Physical memory chunk(s): 0x0000000000001000 - 0x000000000009ffff, 651264 bytes (159 pages) 0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages) 0x0000000001426000 - 0x000000001f6bffff, 506044416 bytes (123546 pages) avail memory = 507363328 (483 MB) bios32: Found BIOS32 Service Directory header at 0xc00fafd0 bios32: Entry = 0xfb440 (c00fb440) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xf0000+0xb470 pnpbios: Found PnP BIOS data at 0xc00fbf30 pnpbios: Entry = f0000:bf60 Rev = 1.0 Other BIOS signatures found: wlan: <802.11 Link Layer> random: <entropy source, Software, Yarrow> io: <I/O> mem: <memory> Pentium Pro MTRR support enabled null: <null device, zero device> npx0: [FAST] npx0: <math processor> on motherboard npx0: INT 16 interface acpi0: <VIA694 AWRDACPI> on motherboard acpi0: [MPSAFE] pci_open(1): mode 1 addr port (0x0cf8) is 0x80008840 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=30991106) pcibios: BIOS version 2.10 Found $PIR table, 6 entries at 0xc00fdf10 PCI-Only Interrupts: 5 11 12 Location Bus Device Pin Link IRQs slot 1 0 10 A 0x02 3 4 5 7 9 10 11 12 14 15 slot 1 0 10 B 0x03 3 4 5 7 9 10 11 12 14 15 slot 1 0 10 C 0x04 3 4 5 7 9 10 11 12 14 15 slot 1 0 10 D 0x01 3 4 5 7 9 10 11 12 14 15 slot 2 0 11 A 0x03 3 4 5 7 9 10 11 12 14 15 slot 2 0 11 B 0x04 3 4 5 7 9 10 11 12 14 15 slot 2 0 11 C 0x01 3 4 5 7 9 10 11 12 14 15 slot 2 0 11 D 0x02 3 4 5 7 9 10 11 12 14 15 slot 3 0 12 A 0x04 3 4 5 7 9 10 11 12 14 15 slot 3 0 12 B 0x01 3 4 5 7 9 10 11 12 14 15 slot 3 0 12 C 0x02 3 4 5 7 9 10 11 12 14 15 slot 3 0 12 D 0x03 3 4 5 7 9 10 11 12 14 15 slot 4 0 9 A 0x01 3 4 5 7 9 10 11 12 14 15 slot 4 0 9 B 0x02 3 4 5 7 9 10 11 12 14 15 slot 4 0 9 C 0x03 3 4 5 7 9 10 11 12 14 15 slot 4 0 9 D 0x04 3 4 5 7 9 10 11 12 14 15 slot 5 0 14 A 0x02 3 4 5 7 9 10 11 12 14 15 slot 5 0 14 B 0x03 3 4 5 7 9 10 11 12 14 15 slot 5 0 14 C 0x04 3 4 5 7 9 10 11 12 14 15 slot 5 0 14 D 0x01 3 4 5 7 9 10 11 12 14 15 embedded 0 1 A 0x01 3 4 5 7 9 10 11 12 14 15 embedded 0 1 B 0x02 3 4 5 7 9 10 11 12 14 15 embedded 0 1 C 0x03 3 4 5 7 9 10 11 12 14 15 embedded 0 1 D 0x04 3 4 5 7 9 10 11 12 14 15 acpi_bus_number: root bus has no _BBN, assuming 0 AcpiOsDerivePciId: bus 0 dev 17 func 0 acpi0: Power Button (fixed) ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/2 1/1 1/1 1/1 -> 10 Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0 cpu0: <ACPI CPU (3 Cx states)> on acpi0 acpi_tz0: <Thermal Zone> on acpi0 acpi_button0: <Power Button> on acpi0 acpi_button1: <Sleep Button> on acpi0 pcib0: <ACPI Host-PCI bridge> port 0x5000-0x500f,0x4080-0x40ff,0x4000-0x407f,0xcf8-0xcff on acpi0 ACPI PCI link initial configuration: \_SB_.PCI0.LNKB irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 0+ low,level,sharable 0.10.0 \_SB_.PCI0.LNKC irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 12+ low,level,sharable 0.10.1 \_SB_.PCI0.LNKD irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 5+ low,level,sharable 0.10.2 \_SB_.PCI0.LNKA irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 11+ low,level,sharable 0.10.3 \_SB_.PCI0.LNKC irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 12+ low,level,sharable 0.11.0 \_SB_.PCI0.LNKD irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 5+ low,level,sharable 0.11.1 \_SB_.PCI0.LNKA irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 11+ low,level,sharable 0.11.2 \_SB_.PCI0.LNKB irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 0+ low,level,sharable 0.11.3 \_SB_.PCI0.LNKD irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 5+ low,level,sharable 0.12.0 \_SB_.PCI0.LNKA irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 11+ low,level,sharable 0.12.1 \_SB_.PCI0.LNKB irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 0+ low,level,sharable 0.12.2 \_SB_.PCI0.LNKC irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 12+ low,level,sharable 0.12.3 \_SB_.PCI0.LNKA irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 11+ low,level,sharable 0.9.0 \_SB_.PCI0.LNKB irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 0+ low,level,sharable 0.9.1 \_SB_.PCI0.LNKC irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 12+ low,level,sharable 0.9.2 \_SB_.PCI0.LNKD irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 5+ low,level,sharable 0.9.3 \_SB_.PCI0.LNKB irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 0+ low,level,sharable 0.14.0 \_SB_.PCI0.LNKC irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 12+ low,level,sharable 0.14.1 \_SB_.PCI0.LNKD irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 5+ low,level,sharable 0.14.2 \_SB_.PCI0.LNKA irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 11+ low,level,sharable 0.14.3 \_SB_.PCI0.LNKA irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 11+ low,level,sharable 0.17.0 \_SB_.PCI0.LNKB irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 0+ low,level,sharable 0.17.1 \_SB_.PCI0.LNKC irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 12+ low,level,sharable 0.17.2 \_SB_.PCI0.LNKD irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 5+ low,level,sharable 0.17.3 \_SB_.PCI0.LNKA irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 11+ low,level,sharable 0.1.0 \_SB_.PCI0.LNKB irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 0+ low,level,sharable 0.1.1 \_SB_.PCI0.LNKC irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 12+ low,level,sharable 0.1.2 \_SB_.PCI0.LNKD irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 5+ low,level,sharable 0.1.3 \_SB_.PCI0.LNKA irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 11+ low,level,sharable 0.18.0 \_SB_.PCI0.LNKB irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 0+ low,level,sharable 0.18.1 \_SB_.PCI0.LNKC irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 12+ low,level,sharable 0.18.2 \_SB_.PCI0.LNKD irq 0: [ 1 3 4 5 6 7 10 11 12 14 15] 5+ low,level,sharable 0.18.3 pci0: <ACPI PCI bus> on pcib0 pci0: physical bus=0 map[10]: type 3, range 32, base d0000000, size 27, enabled found-> vendor=0x1106, dev=0x3099, revid=0x00 bus=0, slot=0, func=0 class=06-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0006, statreg=0x2210, cachelnsz=0 (dwords) lattimer=0x08 (240 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) powerspec 2 supports D0 D3 current D0 found-> vendor=0x1106, dev=0xb099, revid=0x00 bus=0, slot=1, func=0 class=06-04-00, hdrtype=0x01, mfdev=0 cmdreg=0x0007, statreg=0x2230, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x0c (3000 ns), maxlat=0x00 (0 ns) map[10]: type 4, range 32, base 0000d000, size 8, enabled map[14]: type 1, range 32, base ea000000, size 8, enabled pcib0: matched entry for 0.11.INTA (src \_SB_.PCI0.LNKC) pcib0: possible interrupts: 1 3 4 5 6 7 10 11 12 14 15 ACPI PCI link arbitrated settings: \_SB_.PCI0.LNKB (references 8, priority 166232): interrupts: 11 10 5 12 7 6 4 3 15 14 1 penalty: 320 320 370 5320 5320 5320 5320 5320 50320 50320100320 \_SB_.PCI0.LNKC (references 8, priority 166232): interrupts: 11 10 5 12 7 6 4 3 15 14 1 penalty: 320 320 370 5320 5320 5320 5320 5320 50320 50320100320 \_SB_.PCI0.LNKD (references 8, priority 166232): interrupts: 11 10 5 12 7 6 4 3 15 14 1 penalty: 320 320 370 5320 5320 5320 5320 5320 50320 50320100320 \_SB_.PCI0.LNKA (references 8, priority 166232): interrupts: 11 10 5 12 7 6 4 3 15 14 1 penalty: 320 320 370 5320 5320 5320 5320 5320 50320 50320100320 pcib0: slot 11 INTA routed to irq 12 via \_SB_.PCI0.LNKC found-> vendor=0x10ec, dev=0x8139, revid=0x10 bus=0, slot=11, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x20 (8000 ns), maxlat=0x40 (16000 ns) intpin=a, irq=12 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type 3, range 32, base ea001000, size 12, enabled pcib0: matched entry for 0.12.INTA (src \_SB_.PCI0.LNKD) pcib0: possible interrupts: 1 3 4 5 6 7 10 11 12 14 15 ACPI PCI link arbitrated settings: \_SB_.PCI0.LNKB (references 8, priority 168850): interrupts: 11 10 5 7 6 4 3 12 15 14 1 penalty: 640 640 690 5640 5640 5640 5640 5720 50640 50640100640 \_SB_.PCI0.LNKD (references 8, priority 168850): interrupts: 11 10 5 7 6 4 3 12 15 14 1 penalty: 640 640 690 5640 5640 5640 5640 5720 50640 50640100640 \_SB_.PCI0.LNKA (references 8, priority 168850): interrupts: 11 10 5 7 6 4 3 12 15 14 1 penalty: 640 640 690 5640 5640 5640 5640 5720 50640 50640100640 pcib0: slot 12 INTA routed to irq 5 via \_SB_.PCI0.LNKD found-> vendor=0x109e, dev=0x036e, revid=0x11 bus=0, slot=12, func=0 class=04-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0006, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x10 (4000 ns), maxlat=0x28 (10000 ns) intpin=a, irq=5 powerspec 2 supports D0 D3 current D0 map[10]: type 3, range 32, base ea002000, size 12, enabled pcib0: matched entry for 0.12.INTA (src \_SB_.PCI0.LNKD) pcib0: slot 12 INTA is already routed to irq 5 found-> vendor=0x109e, dev=0x0878, revid=0x11 bus=0, slot=12, func=1 class=04-80-00, hdrtype=0x00, mfdev=1 cmdreg=0x0006, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x04 (1000 ns), maxlat=0xff (63750 ns) intpin=a, irq=5 powerspec 2 supports D0 D3 current D0 found-> vendor=0x1106, dev=0x3074, revid=0x00 bus=0, slot=17, func=0 class=06-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x0087, statreg=0x0210, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) powerspec 2 supports D0 D3 current D0 map[20]: type 4, range 32, base 0000d400, size 4, enabled found-> vendor=0x1106, dev=0x0571, revid=0x06 bus=0, slot=17, func=1 class=01-01-8a, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=255 powerspec 2 supports D0 D3 current D0 map[20]: type 4, range 32, base 0000d800, size 5, enabled pcib0: matched entry for 0.17.INTD (src \_SB_.PCI0.LNKD) pcib0: slot 17 INTD is already routed to irq 5 found-> vendor=0x1106, dev=0x3038, revid=0x1b bus=0, slot=17, func=2 class=0c-03-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0210, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=d, irq=5 powerspec 2 supports D0 D3 current D0 map[20]: type 4, range 32, base 0000dc00, size 5, enabled pcib0: matched entry for 0.17.INTD (src \_SB_.PCI0.LNKD) pcib0: slot 17 INTD is already routed to irq 5 found-> vendor=0x1106, dev=0x3038, revid=0x1b bus=0, slot=17, func=3 class=0c-03-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0210, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=d, irq=5 powerspec 2 supports D0 D3 current D0 map[20]: type 4, range 32, base 0000e000, size 5, enabled pcib0: matched entry for 0.17.INTD (src \_SB_.PCI0.LNKD) pcib0: slot 17 INTD is already routed to irq 5 found-> vendor=0x1106, dev=0x3038, revid=0x1b bus=0, slot=17, func=4 class=0c-03-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x0210, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=d, irq=5 powerspec 2 supports D0 D3 current D0 map[10]: type 4, range 32, base 0000e400, size 8, enabled pcib0: matched entry for 0.17.INTC (src \_SB_.PCI0.LNKC) pcib0: slot 17 INTC is already routed to irq 12 found-> vendor=0x1106, dev=0x3059, revid=0x30 bus=0, slot=17, func=5 class=04-01-00, hdrtype=0x00, mfdev=0 cmdreg=0x0001, statreg=0x0210, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=c, irq=12 powerspec 2 supports D0 D3 current D0 agp0: <VIA Generic host to PCI bridge> mem 0xd0000000-0xd7ffffff at device 0.0 on pci0 agp0: Reserved 0x8000000 bytes for rid 0x10 type 3 at 0xd0000000 agp0: allocating GATT for aperture of size 256M pcib1: <PCI-PCI bridge> at device 1.0 on pci0 pcib1: secondary bus 1 pcib1: subordinate bus 1 pcib1: I/O decode 0xf000-0xfff pcib1: memory decode 0xe8000000-0xe9ffffff pcib1: prefetched decode 0xd8000000-0xe7ffffff pci1: <PCI bus> on pcib1 pci1: physical bus=1 map[10]: type 1, range 32, base e8000000, size 24, enabled pcib1: device (null) requested decoded memory range 0xe8000000-0xe8ffffff map[14]: type 3, range 32, base d8000000, size 27, enabled pcib1: device (null) requested decoded memory range 0xd8000000-0xdfffffff map[18]: type 3, range 32, base e0000000, size 19, enabled pcib1: device (null) requested decoded memory range 0xe0000000-0xe007ffff pcib0: matched entry for 0.1.INTA (src \_SB_.PCI0.LNKA) pcib0: possible interrupts: 1 3 4 5 6 7 10 11 12 14 15 ACPI PCI link arbitrated settings: \_SB_.PCI0.LNKB (references 8, priority 171469): interrupts: 11 10 5 7 6 4 3 12 15 14 1 penalty: 960 960 1090 5960 5960 5960 5960 6040 50960 50960100960 \_SB_.PCI0.LNKA (references 8, priority 171469): interrupts: 11 10 5 7 6 4 3 12 15 14 1 penalty: 960 960 1090 5960 5960 5960 5960 6040 50960 50960100960 pcib0: slot 1 INTA routed to irq 11 via \_SB_.PCI0.LNKA pcib1: slot 0 INTA is routed to irq 11 found-> vendor=0x10de, dev=0x0253, revid=0xa3 bus=1, slot=0, func=0 class=03-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x02b0, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x05 (1250 ns), maxlat=0x01 (250 ns) intpin=a, irq=11 powerspec 2 supports D0 D3 current D0 pci1: <display, VGA> at device 0.0 (no driver attached) re0: Reserved 0x100 bytes for rid 0x10 type 4 at 0xd000 rl0: <RealTek 8139 10/100BaseTX> port 0xd000-0xd0ff mem 0xea000000-0xea0000ff irq 12 at device 11.0 on pci0 miibus0: <MII bus> on rl0 rlphy0: <RealTek internal media interface> on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto rl0: bpf attached rl0: Ethernet address: 00:e0:7d:b4:31:c2 rl0: [MPSAFE] pci0: <multimedia, video> at device 12.0 (no driver attached) pci0: <multimedia> at device 12.1 (no driver attached) isab0: <PCI-ISA bridge> at device 17.0 on pci0 isa0: <ISA bus> on isab0 atapci0: <VIA 8233 UDMA100 controller> port 0xd400-0xd40f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 17.1 on pci0 atapci0: Reserved 0x10 bytes for rid 0x20 type 4 at 0xd400 ata0: channel #0 on atapci0 atapci0: Reserved 0x8 bytes for rid 0x10 type 4 at 0x1f0 atapci0: Reserved 0x1 bytes for rid 0x14 type 4 at 0x3f6 ata0: reset tp1 mask=03 ostat0=50 ostat1=00 ata0-master: stat=0x50 err=0x01 lsb=0x00 msb=0x00 ata0-slave: stat=0x00 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=00 devices=0x1<ATA_MASTER> ata0: [MPSAFE] ata1: channel #1 on atapci0 atapci0: Reserved 0x8 bytes for rid 0x18 type 4 at 0x170 atapci0: Reserved 0x1 bytes for rid 0x1c type 4 at 0x376 ata1: reset tp1 mask=03 ostat0=50 ostat1=50 ata1-master: stat=0x90 err=0x01 lsb=0x14 msb=0xeb ata1-master: stat=0x90 err=0x01 lsb=0x14 msb=0xeb ata1-master: stat=0x00 err=0x01 lsb=0x14 msb=0xeb ata1-slave: stat=0x00 err=0x01 lsb=0x14 msb=0xeb ata1: reset tp2 stat0=00 stat1=00 devices=0xc<ATAPI_SLAVE,ATAPI_MASTER> ata1: [MPSAFE] uhci0: <VIA 83C572 USB controller> port 0xd800-0xd81f irq 5 at device 17.2 on pci0 uhci0: Reserved 0x20 bytes for rid 0x20 type 4 at 0xd800 uhci0: [GIANT-LOCKED] usb0: <VIA 83C572 USB controller> on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered ums0: Logitech USB Mouse, rev 1.10/6.20, addr 2, iclass 3/1 ums0: 3 buttons and Z dir. ukbd0: BTC USB Keyboard and Mouse, rev 1.00/21.10, addr 3, iclass 3/1 kbd0 at ukbd0 kbd0: ukbd0, generic (0), config:0x0, flags:0x1d0000 ums1: BTC USB Keyboard and Mouse, rev 1.00/21.10, addr 3, iclass 3/1 ums1: 3 buttons and Z dir. uhci1: <VIA 83C572 USB controller> port 0xdc00-0xdc1f irq 5 at device 17.3 on pci0 uhci1: Reserved 0x20 bytes for rid 0x20 type 4 at 0xdc00 uhci1: [GIANT-LOCKED] usb1: <VIA 83C572 USB controller> on uhci1 usb1: USB revision 1.0 uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: <VIA 83C572 USB controller> port 0xe000-0xe01f irq 5 at device 17.4 on pci0 uhci2: Reserved 0x20 bytes for rid 0x20 type 4 at 0xe000 uhci2: [GIANT-LOCKED] usb2: <VIA 83C572 USB controller> on uhci2 usb2: USB revision 1.0 uhub2: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered pci0: <multimedia, audio> at device 17.5 (no driver attached) fdc0: <floppy drive controller> port 0x3f7,0x3f2-0x3f5 irq 6 drq 2 on acpi0 fdc0: ic_type 90 part_id 80 fdc0: [MPSAFE] fdc0: [FAST] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 sio0: irq maps: 0x21 0x31 0x21 0x21 sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A, console sio1: irq maps: 0x21 0x29 0x21 0x21 sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A unknown: not probed (disabled) unknown: not probed (disabled) unknown: not probed (disabled) unknown: not probed (disabled) unknown: not probed (disabled) unknown: not probed (disabled) unknown: not probed (disabled) unknown: not probed (disabled) unknown: not probed (disabled) unknown: not probed (disabled) ata: ata0 already exists; skipping it ata: ata1 already exists; skipping it fdc: fdc0 already exists; skipping it sio: sio0 already exists; skipping it sio: sio1 already exists; skipping it Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 ex_isa_identify() unknown: status reg test failed fe unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff ahc_isa_probe 13: ioport 0xdc00 alloc failed sc: sc0 already exists; skipping it vga: vga0 already exists; skipping it isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices orm0: <ISA Option ROM> at iomem 0xc0000-0xcefff on isa0 pmtimer0 on isa0 adv0: not probed (disabled) aha0: not probed (disabled) aic0: not probed (disabled) atkbdc0: <Keyboard controller (i8042)> at port 0x64,0x60 on isa0 atkbd0: not probed (disabled) psm0: current command byte:0067 kbdc: TEST_AUX_PORT status:0000 kbdc: RESET_AUX return code:00fe kbdc: RESET_AUX return code:00fe kbdc: RESET_AUX return code:00fe kbdc: DIAGNOSE status:0055 kbdc: TEST_KBD_PORT status:0000 psm0: failed to reset the aux device. bt0: not probed (disabled) cs0: not probed (disabled) ed0: not probed (disabled) fe0: not probed (disabled) ie0: not probed (disabled) le0: not probed (disabled) lnc0: not probed (disabled) pcic0 failed to probe at port 0x3e0 iomem 0xd0000 on isa0 pcic1: not probed (disabled) ppc0: parallel port not found. ppc0: <Parallel port> failed to probe at irq 7 on isa0 sc0: <System console> at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x100> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) sio2: not probed (disabled) sio3: not probed (disabled) sn0: not probed (disabled) vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 fb0: vga0, vga, type:VGA (5), flags:0x7007f fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000 fb0: init mode:24, bios mode:3, current mode:24 fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k vga0: vga: WARNING: video mode switching is not fully supported on this adapter VGA parameters upon power-up 50 18 10 00 00 00 03 00 02 67 5e 4f 50 81 53 80 bf 1f 00 4f 0e 0f 00 00 07 80 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff VGA parameters in BIOS for mode 24 18 18 18 18 1f 00 00 00 18 18 18 18 ff 00 00 00 00 00 00 00 ff 18 18 18 18 18 18 18 1f 18 18 18 00 00 00 00 ff 00 00 00 18 18 18 18 ff 18 18 18 18 18 1f 18 1f 18 18 18 36 36 36 36 37 36 36 36 EGA/VGA parameters to be used for mode 24 50 18 10 00 00 00 03 00 02 67 5e 4f 50 81 53 80 bf 1f 00 4f 0e 0f 00 00 07 80 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff vt0: not probed (disabled) isa_probe_children: probing PnP devices Device configuration finished. procfs registered Timecounter "TSC" frequency 1750008683 Hz quality 800 Timecounters tick every 1.000 msec lo0: bpf attached cpu0: set speed to 100.0% acpi_cpu: throttling enabled, 2 steps (100% to 50.0%), currently 100.0% ata0-master: pio=0x0c wdma=0x22 udma=0x46 cable=80pin ata0-master: setting PIO4 on VIA 8233 chip ata0-master: setting UDMA100 on VIA 8233 chip ad0: <Maxtor 2F040L0/VAM51JJ0> ATA-7 disk at ata0-master ad0: 39205MB (80293248 sectors), 79656 C, 16 H, 63 S, 512 B ad0: 16 secs/int, 1 depth queue, UDMA100 GEOM: new disk ad0 ar: FreeBSD check1 failed ata1-slave: pio=0x0c wdma=0x22 udma=0x42 cable=40pin [0] f:00 typ:11 s(CHS):47/13/1 e(CHS):1023/7/63 s:48195 l:4192965 [1] f:00 typ:7 s(CHS):1023/255/63 e(CHS):1023/13/63 s:4241160 l:20980890 [2] f:00 typ:15 s(CHS):1023/255/63 e(CHS):1023/10/63 s:25222050 l:41945715 [3] f:80 typ:165 s(CHS):1023/255/63 e(CHS):1023/9/63 s:67167765 l:13125105 GEOM: Configure ad0s1, start 24675840 length 2146798080 end 2171473919 GEOM: Configure ad0s2, start 2171473920 length 10742215680 end 12913689599 GEOM: Configure ad0s3, start 12913689600 length 21476206080 end 343898956stray irq7 79 GEOM: Configure ad0s4, start 34389895680 length 6720053760 end 41109949439 ata1-master: pio=0x0c wdma=0x22 udma=0x42 cable=40pin MBREXT Slice 5 on ad0s3: [0] f:00 typ:11 s(CHS):1023/1/1 e(CHS):1023/254/63 s:63 l:41945652 [1] f:00 typ:0 s(CHS):0/0/0 e(CHS):0/0/0 s:0 l:0 GEOM: Configure ad0s5, start 32256 length 214stray irq7 76173824 end 21476206079 ata1-master: setting PIO4 on VIA 8233 chip GEOM: Configure ad0s4a, start 0 length 268435456 end 268435455 GEOM: Configure ad0s4b, start 268435456 length 805306368 end 1073741823 GEOM: Configure ad0s4c, start 0 length 6720053760 end 6720053759 GEOM: Configure ad0s4d, start 1073741824 length 268435456 end 1342177279 GEOM: Configure ad0s4e, start 1342177280 length 268435456 end 1610612735 GEOM: Configure ad0s4f, start 1610612736 length 5109441024 end 6720053759 ata1-master: setting UDMA33 on VIA 8233 chip ata1-slave: setting PIO4 on VIA 8233 chip ata1-slave: setting UDMA33 on VIA 8233 chip acd0: <LITE-ON DVDRW SOHW-832S/VS03> DVDR drive at ata1 as master acd0: read 6890KB/s (6890KB/s) write 6890KB/s (6890KB/s), 2048KB buffer, UDMA33 acd0: Reads: CDR, CDRW, CDDA stream, DVDROM, DVDR, packet acd0: Writes: CDR, CDRW, DVDR, test write, burnproof acd0: Audio: play, 256 volume levels acd0: Mechanism: ejectable tray, unlocked acd0: Medium: no/blank disc acd1: <LITE-ON LTR-40125S/ZS0J> CDRW drive at ata1 as slave acd1: read 33171KB/s (8250KB/s) write 172KB/s (6875KB/s), 1984KB buffer, UDMA33 acd1: Reads: CDR, CDRW, CDDA stream, packet acd1: Writes: CDR, CDRW, test write, burnproof acd1: Audio: play, 255 volume levels acd1: Mechanism: ejectable tray, unlocked acd1: Medium: no/blank disc Mounting root from ufs:/dev/ad0s4a start_init: trying /sbin/init Uptime: 33s LOCK (sleep mutex) eventhandler r = 0 at /usr/src/sys/kern/subr_eventhandler.c:213 LOCK (sleep mutex) shutdown_post_sync r = 0 at /usr/src/sys/kern/subr_eventhandler.c:216 UNLOCK (sleep mutex) eventhandler r = 0 at /usr/src/sys/kern/subr_eventhandler.c:217 eventhandler_invoke("shutdown_post_sync") UNLOCK (sleep mutex) shutdown_post_sync r = 0 at /usr/src/sys/kern/kern_shutdown.c:416 eventhandler_invoke: executing 0xc066d8e0 # % addr2line -e /usr/obj/usr/src/sys/DEBUG/kernel.debug -f 0xc066d8e0 # kproc_shutdown # /usr/src/sys/kern/kern_shutdown.c:625 LOCK (sleep mutex) shutdown_post_sync r = 0 at /usr/src/sys/kern/kern_shutdown.c:416 UNLOCK (sleep mutex) shutdown_post_sync r = 0 at /usr/src/sys/kern/kern_shutdown.c:416 eventhandler_invoke: executing 0xc04d0da0 # % addr2line -e /usr/obj/usr/src/sys/DEBUG/kernel.debug -f 0xc04d0da0 # ata_shutdown # /usr/src/sys/dev/ata/ata-all.c:374 uma_zalloc_arg thread c2181c80 zone ata_request flags 257 LOCK (sleep mutex) UMA pcpu r = 0 at /usr/src/sys/vm/uma_core.c:1803 LOCK (sleep mutex) ata_request r = 0 at /usr/src/sys/vm/uma_core.c:1820 UNLOCK (sleep mutex) ata_request r = 0 at /usr/src/sys/vm/uma_core.c:1822 UNLOCK (sleep mutex) UMA pcpu r = 0 at /usr/src/sys/vm/uma_core.c:1824 LOCK (sleep mutex) All locks list r = 0 at /usr/src/sys/kern/subr_witness.c:528 UNLOCK (sleep mutex) All locks list r = 0 at /usr/src/sys/kern/subr_witness.c:534 sema_init(0xc23ec048, 0, "ATA request done") LOCK (sleep mutex) ATA queue lock r = 0 at /usr/src/sys/dev/ata/ata-queue.c:86 UNLOCK (sleep mutex) ATA queue lock r = 0 at /usr/src/sys/dev/ata/ata-queue.c:91 LOCK (sleep mutex) ATA queue lock r = 0 at /usr/src/sys/dev/ata/ata-queue.c:166 LOCK (sleep mutex) ATA state lock r = 0 at /usr/src/sys/dev/ata/ata-queue.c:183 LOCK (spin mutex) callout r = 0 at /usr/src/sys/kern/kern_timeout.c:398 UNLOCK (spin mutex) callout r = 0 at /usr/src/sys/kern/kern_timeout.c:439 LOCK (spin mutex) clk r = 0 at /usr/src/sys/i386/isa/clock.c:404 UNLOCK (spin mutex) clk r = 0 at /usr/src/sys/i386/isa/clock.c:412 LOCK (spin mutex) clk r = 0 at /usr/src/sys/i386/isa/clock.c:404 UNLOCK (spin mutex) clk r = 0 at /usr/src/sys/i386/isa.clock.c:412 UNLOCK (sleep mutex) ATA queue lock r = 0 at /usr/src/sys/dev/ata/ata-queue.c:202 UNLOCK (sleep mutex) ATA queue lock r = 0 at /usr/src/sys/dev/ata/ata-queue.c:205Received on Sun Dec 26 2004 - 18:00:36 UTC
This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:38:25 UTC