Date: Mon, 13 Oct 2008 22:08:05 +0100 From: "Thomas Sparrevohn" <Thomas.Sparrevohn@btinternet.com> To: =?iso-8859-1?Q?'S=F8ren_Schmidt'?= <sos@deepcore.dk>, <Current@freebsd.org> Subject: Out of bounce buffers Message-ID: <000001c92d77$cbfaf6f0$63f0e4d0$@Sparrevohn@btinternet.com> In-Reply-To: <EA835B0D-9298-4645-8BFB-7916EB88E0F6@deepcore.dk> References: <EA835B0D-9298-4645-8BFB-7916EB88E0F6@deepcore.dk>
next in thread | previous in thread | raw e-mail | index | archive | help
This is a multipart message in MIME format. ------=_NextPart_000_0001_01C92D80.2DBF5EF0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hi I have had a weird issue since the change in April where the SATA Port multipliers was introduced. The system started issuing "DATA load FAILURE" in the ata-dmaload every time that disk subsystem got loaded. Because the code prior from 10/04-2008 worked fine and Ignored the problem and simply used the code prior to the SATA Port multiplier was introduced. The reason was twofold - One I did not time to investigate and two I suspected it could be a hw error - using cheap SATA disks. Well finally I have had time to investigate and the problem occurs because the system "runs out of bounce buffers" I have tested the entire disk for errors using a Hitachi tools and there seems to no problems - down to the degree that I can get the system to work with the current ATA subsystem as long as I only use one disk ;-) Regardless of which of the 4 disks - however if I add a second disk to the subsystem it will eventually (after 17-40GB of restores) give me a "DATA load failures" - Naturally I suspected the disk drives - however as I said - I can fully restore without the error occurring as long as I only use one disk Puzzled by this I started plastering the code with printf's to see what happened - patch included just FYI - It turns out that the kernel runs out of bounce buffers - which is very surprising - Can anybody give any advice on this? ------=_NextPart_000_0001_01C92D80.2DBF5EF0 Content-Type: application/octet-stream; name="debug.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="debug.patch" Index: amd64/amd64/busdma_machdep.c=0A=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=0ARCS file: /home/ncvs/src/sys/amd64/amd64/busdma_machdep.c= ,v=0Aretrieving revision 1.86=0Adiff -u -u -r1.86 busdma_machdep.c=0A--- am= d64/amd64/busdma_machdep.c 15 Jul 2008 03:34:49 -0000 1.86=0A+++ amd64/amd6= 4/busdma_machdep.c 12 Oct 2008 15:09:53 -0000=0A@@ -616,6 +616,7 @@=0A if= (flags & BUS_DMA_NOWAIT) {=0A if (reserve_bounce_pages(dmat, map, 0) != =3D 0) {=0A mtx_unlock(&bounce_lock);=0A+ CTR0(KTR_BUSDMA, "*** NO B= OUNCE ***\n");=0A return (ENOMEM);=0A }=0A } else {=0A@@ -727,11 += 728,24 @@=0A __func__, dmat, dmat->flags, error, nsegs + 1);=0A=20=0A = if (error =3D=3D EINPROGRESS) {=0A+ CTR0(KTR_BUSDMA, "*** IN PROGRESS");= =0A return (error);=0A }=0A+=20=0A+ if (error =3D=3D EFBIG) {=0A+ CTR0(= KTR_BUSDMA, "*** 2 BIG");=0A+ }=0A+=0A+ if (error =3D=3D ENOMEM) {=0A+ CTR= 0(KTR_BUSDMA, "*** NOMEM");=0A+ }=0A+=0A=20=0A- if (error)=0A+ if (error) {= =0A+ CTR3(KTR_BUSDMA, "%s: *** CALLBACK called with error %x (%d)",=0A+ = __func__, error, error);=0A (*callback)(callback_arg, dmat->segments, = 0, error);=0A+ }=0A else=0A (*callback)(callback_arg, dmat->segments, ns= egs + 1, 0);=0A=20=0A@@ -739,8 +753,10 @@=0A * Return ENOMEM to the calle= r so that it can pass it up the stack.=0A * This error only happens when = NOWAIT is set, so deferal is disabled.=0A */=0A- if (error =3D=3D ENOMEM)= =0A+ if (error =3D=3D ENOMEM) {=0A+ CTR0(KTR_BUSDMA, "*** NOMEM");=0A re= turn (error);=0A+ }=0A=20=0A return (0);=0A }=0AIndex: dev/ata/ata-dma.c= =0A=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0ARCS file: /home/nc= vs/src/sys/dev/ata/ata-dma.c,v=0Aretrieving revision 1.157=0Adiff -u -u -r1= 157 ata-dma.c=0A--- dev/ata/ata-dma.c 9 Oct 2008 12:56:57 -0000 1.157=0A++= + dev/ata/ata-dma.c 13 Oct 2008 15:28:23 -0000=0A@@ -263,6 +263,9 @@=0A = struct ata_dmasetprd_args dspa;=0A int error;=0A=20=0A+ error =3D 0= ;=20=0A+ bzero(&dspa, sizeof(struct ata_dmasetprd_args));=0A+=0A ATA= _DEBUG_RQ(request, "dmaload");=0A=20=0A if (request->dma) {=0A@@ -291,1= 6 +294,31 @@=0A /* set our slot, unit for simplicity XXX SOS NCQ will c= hange that */=0A request->dma =3D &ch->dma.slot[atadev->unit];=0A=20=0A= - if (addr)=0A- dspa.dmatab =3D addr;=0A- else=0A- dspa.dmatab =3D re= quest->dma->sg;=0A+ if (addr)=20=0A+ dspa.dmatab =3D addr;=0A+ e= lse=20=0A+ dspa.dmatab =3D request->dma->sg;=0A+ =20=0A+ if (dspa= error)=20=0A+ device_printf(request->dev, "ATA DMA dspa error set \n");= =0A=20=0A if ((error =3D bus_dmamap_load(request->dma->data_tag, reques= t->dma->data_map,=0A request->data, request->bytecount,=0A ch->dm= a.setprd, &dspa, BUS_DMA_NOWAIT)) ||=0A (error =3D dspa.error)) {=0A- = device_printf(request->dev, "FAILURE - load data\n");=0A+ device_printf= (request->dev, "FAILURE - load data\n");=0A+ device_printf(request->dev= , "ATA error %x\n", error);=0A+ device_printf(request->dev, "ATA dspa e= rror %x\n", dspa.error);=0A+=0A+ device_printf(request->dev, "ATA reque= st dma %p dspa %p\n",=20=0A+ request->dma, dspa.dmatab);=0A+=0A+=0A+ if (a= ddr)=20=0A+ device_printf(request->dev, "ATA DMA addr set\n");=0A+ else=20= =0A+ device_printf(request->dev, "ATA DMA addr not set\n");=0A+ panic("SHO= ULD NOT HAPPEN");=0A goto error;=0A }=0A=20=0A ------=_NextPart_000_0001_01C92D80.2DBF5EF0 Content-Type: text/plain; name="dmesg.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="dmesg.txt" Copyright (c) 1992-2008 The FreeBSD Project.=0ACopyright (c) 1979, 1980, 19= 83, 1986, 1988, 1989, 1991, 1992, 1993, 1994=0A The Regents of the Universi= ty of California. All rights reserved.=0AFreeBSD is a registered trademark = of The FreeBSD Foundation.=0AFreeBSD 8.0-CURRENT #6: Mon Oct 13 16:45:39 BS= T 2008=0A sandbox@w2fzz0vc03.aah-go-on.com:/usr/home/sandbox/debug/obj/u= sr/home/sandbox/debug/src/sys/GENERIC_KTR=0AWARNING: WITNESS option enabled= , expect reduced performance.=0APreloaded elf kernel "/boot/debug/kernel" a= t 0xffffffff8104c000.=0APreloaded elf obj module "/boot/debug/zfs.ko" at 0x= ffffffff8104c208.=0APreloaded elf obj module "/boot/debug/opensolaris.ko" a= t 0xffffffff8104c870.=0APreloaded /boot/zfs/zpool.cache "/boot/zfs/zpool.ca= che" at 0xffffffff8104ce60.=0ATimecounter "i8254" frequency 1193182 Hz qual= ity 0=0ACalibrating TSC clock ... TSC clock: 3192053232 Hz=0ACPU: Intel(R) = Core(TM)2 Quad CPU @ 2.66GHz (3192.05-MHz K8-class CPU)=0A Origi= n =3D "GenuineIntel" Id =3D 0x6f7 Stepping =3D 7=0A Features=3D0xbfebfbf= f<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,C= LFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>=0A Features2=3D0xe3bd<SSE= 3,DTES64,MON,DS_CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM>=0A AMD Features=3D0x= 20100800<SYSCALL,NX,LM>=0A AMD Features2=3D0x1<LAHF>=0A Cores per package= : 4=0Ausable memory =3D 4275945472 (4077 MB)=0APhysical memory chunk(s):=0A= 0x0000000000001000 - 0x000000000009bfff, 634880 bytes (155 pages)=0A0x00000= 0000107b000 - 0x0000000096333fff, 2502660096 bytes (611001 pages)=0A0x00000= 00100000000 - 0x000000015ffeffff, 1610547200 bytes (393200 pages)=0Aavail m= emory =3D 4091334656 (3901 MB)=0AACPI APIC Table: <DELL B8K >=0AINTR:= Adding local APIC 1 as a target=0AINTR: Adding local APIC 2 as a target=0A= INTR: Adding local APIC 3 as a target=0AFreeBSD/SMP: Multiprocessor System = Detected: 4 CPUs=0A cpu0 (BSP): APIC ID: 0=0A cpu1 (AP): APIC ID: 1=0A cp= u2 (AP): APIC ID: 2=0A cpu3 (AP): APIC ID: 3=0AAPIC: CPU 0 has ACPI ID 1= =0AAPIC: CPU 1 has ACPI ID 2=0AAPIC: CPU 2 has ACPI ID 3=0AAPIC: CPU 3 has = ACPI ID 4=0AULE: setup cpu 0=0AULE: setup cpu 1=0AULE: setup cpu 2=0AULE: s= etup cpu 3=0AThis module (opensolaris) contains code covered by the=0ACommo= n Development and Distribution License (CDDL)=0Asee http://opensolaris.org/= os/licensing/opensolaris_license/=0AACPI: RSDP @ 0x0xfebf0/0x0024 (v 2 DEL= L )=0AACPI: XSDT @ 0x0xfd0b9/0x0064 (v 1 DELL B8K 0x00000014 ASL = 0x00000061)=0AACPI: FACP @ 0x0xfd191/0x00F4 (v 3 DELL B8K 0x0000001= 4 ASL 0x00000061)=0AACPI: DSDT @ 0x0xfffc13b6/0x3F25 (v 1 DELL dt_ex= 0x00001000 INTL 0x20050624)=0AACPI: FACS @ 0x0x9fdbcc00/0x0040=0AACPI: SSD= T @ 0x0xfffc52db/0x0099 (v 1 DELL st_ex 0x00001000 INTL 0x20050624)= =0AACPI: APIC @ 0x0xfd285/0x0092 (v 1 DELL B8K 0x00000014 ASL 0x00= 000061)=0AACPI: BOOT @ 0x0xfd317/0x0028 (v 1 DELL B8K 0x00000014 AS= L 0x00000061)=0AACPI: MCFG @ 0x0xfd33f/0x003E (v 1 DELL B8K 0x0000= 0014 ASL 0x00000061)=0AACPI: HPET @ 0x0xfd37d/0x0038 (v 1 DELL B8K = 0x00000014 ASL 0x00000061)=0AACPI: DUMY @ 0x0x9fdbec00/0x0024 (v 1 DELL = B8K 0x00000014 ASL 0x00000061)=0AACPI: SLIC @ 0x0xfd3b5/0x0176 (v = 1 DELL B8K 0x00000014 ASL 0x00000061)=0AMADT: Found IO APIC ID 8, I= nterrupt 0 at 0xfec00000=0Aioapic0: Changing APIC ID to 8=0Aioapic0: Routin= g external 8259A's -> intpin 0=0AMADT: Interrupt override: source 0, irq 2= =0Aioapic0: Routing IRQ 0 -> intpin 2=0AMADT: Interrupt override: source 9,= irq 9=0Aioapic0: intpin 9 trigger: level=0Alapic: Routing NMI -> LINT1=0Al= apic: LINT1 trigger: level=0Alapic: LINT1 polarity: high=0Aioapic0 <Version= 1.1> irqs 0-23 on motherboard=0Alapic0: Forcing LINT1 to edge trigger=0Acp= u0 BSP:=0A ID: 0x00000000 VER: 0x00050014 LDR: 0x00000000 DFR: 0xffff= ffff=0A lint0: 0x00010700 lint1: 0x00008400 TPR: 0x00000000 SVR: 0x000001f= f=0A timer: 0x000100ef therm: 0x00010000 err: 0x00010000 pcm: 0x00000400= =0Aath_rate: version 1.2 <SampleRate bit-rate selection algorithm>=0Awlan: = <802.11 Link Layer>=0Arandom: <entropy source, Software, Yarrow>=0Anfslock:= pseudo-device=0Akbd: new array size 4=0Akbd1 at kbdmux0=0Amem: <memory>=0A= io: <I/O>=0Anull: <null device, zero device>=0Aath_hal: 0.10.5.10 (AR5210, = AR5211, AR5212, AR5416, RF5111, RF5112, RF2413, RF5413, RF2133, RF2425, RF2= 417)=0Ahptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2 (Oct 13 2008= 16:45:36)=0Aacpi0: <DELL B8K > on motherboard=0APCIe: Memory Mapped con= figuration base @ 0xe0000000=0Aioapic0: routing intpin 9 (ISA IRQ 9) to vec= tor 48=0Aacpi0: [MPSAFE]=0Aacpi0: [ITHREAD]=0Aacpi0: Power Button (fixed)= =0Aacpi_bus_number: root bus has no _BBN, assuming 0=0AAcpiOsDerivePciId: \= \_SB_.PCI0.ISA_.P40C -> bus 0 dev 10 func 0=0Aacpi0: reservation of 0, a000= 0 (3) failed=0Aacpi0: reservation of 100000, f00000 (3) failed=0Aacpi0: res= ervation of 1000000, 9edbcc00 (3) failed=0AACPI timer: 1/1 1/1 1/1 1/1 1/1 = 1/1 1/1 1/1 1/1 1/1 -> 10=0ATimecounter "ACPI-fast" frequency 3579545 Hz qu= ality 1000=0Aacpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b = on acpi0=0Apci_link0: Index IRQ Rtd Ref IRQs=0A Initial Probe = 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 = 11 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N = 0 3 4 5 6 7 9 10 11 12 15=0Apci_link1: Index IRQ Rtd Ref IRQs= =0A Initial Probe 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A Vali= dation 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable= 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link2: Index = IRQ Rtd Ref IRQs=0A Initial Probe 0 9 N 0 3 4 5 6 7 9 = 10 11 12 15=0A Validation 0 9 N 0 3 4 5 6 7 9 10 11 12 = 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_= link3: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 255 N= 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 255 N 0 3= 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 = 9 10 11 12 15=0Apci_link4: Index IRQ Rtd Ref IRQs=0A Initial Pr= obe 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation = 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 = N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link5: Index IRQ Rtd Ref = IRQs=0A Initial Probe 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A = Validation 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A After Di= sable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link6: I= ndex IRQ Rtd Ref IRQs=0A Initial Probe 0 9 N 0 3 4 5 6= 7 9 10 11 12 15=0A Validation 0 9 N 0 3 4 5 6 7 9 10 1= 1 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15= =0Apci_link7: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 = 255 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 255 N = 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4= 5 6 7 9 10 11 12 15=0Apci_link8: Index IRQ Rtd Ref IRQs=0A Ini= tial Probe 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation = 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0= 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link9: Index IRQ Rt= d Ref IRQs=0A Initial Probe 0 10 N 0 3 4 5 6 7 9 10 11 12= 15=0A Validation 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A A= fter Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link10: = Index IRQ Rtd Ref IRQs=0A Initial Probe 0 255 N 0 = 3 4 5 6 7 9 10 11 12 15=0A Validation 0 255 N 0 3 4 5 6 7= 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 = 12 15=0Apci_link11: Index IRQ Rtd Ref IRQs=0A Initial Probe = 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 11 = N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0= 3 4 5 6 7 9 10 11 12 15=0Apci_link12: Index IRQ Rtd Ref IRQs=0A= Initial Probe 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A Validat= ion 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable = 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link13: Index IR= Q Rtd Ref IRQs=0A Initial Probe 0 10 N 0 3 4 5 6 7 9 10 = 11 12 15=0A Validation 0 10 N 0 3 4 5 6 7 9 10 11 12 15= =0A After Disable 0 255 N 0 3 4 5 6 7 9Copyright (c) 1992-20= 08 The FreeBSD Project.=0ACopyright (c) 1979, 1980, 1983, 1986, 1988, 1989,= 1991, 1992, 1993, 1994=0A The Regents of the University of California. All= rights reserved.=0AFreeBSD is a registered trademark of The FreeBSD Founda= tion.=0AFreeBSD 8.0-CURRENT #6: Mon Oct 13 16:45:39 BST 2008=0A sandbox@= w2fzz0vc03.aah-go-on.com:/usr/home/sandbox/debug/obj/usr/home/sandbox/debug= /src/sys/GENERIC_KTR=0AWARNING: WITNESS option enabled, expect reduced perf= ormance.=0APreloaded elf kernel "/boot/debug/kernel" at 0xffffffff8104c000.= =0APreloaded elf obj module "/boot/debug/zfs.ko" at 0xffffffff8104c208.=0AP= reloaded elf obj module "/boot/debug/opensolaris.ko" at 0xffffffff8104c870.= =0APreloaded /boot/zfs/zpool.cache "/boot/zfs/zpool.cache" at 0xffffffff810= 4ce60.=0ATimecounter "i8254" frequency 1193182 Hz quality 0=0ACalibrating T= SC clock ... TSC clock: 3192053232 Hz=0ACPU: Intel(R) Core(TM)2 Quad CPU = @ 2.66GHz (3192.05-MHz K8-class CPU)=0A Origin =3D "GenuineIntel" = Id =3D 0x6f7 Stepping =3D 7=0A Features=3D0xbfebfbff<FPU,VME,DE,PSE,TSC,= MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,F= XSR,SSE,SSE2,SS,HTT,TM,PBE>=0A Features2=3D0xe3bd<SSE3,DTES64,MON,DS_CPL,V= MX,EST,TM2,SSSE3,CX16,xTPR,PDCM>=0A AMD Features=3D0x20100800<SYSCALL,NX,L= M>=0A AMD Features2=3D0x1<LAHF>=0A Cores per package: 4=0Ausable memory = =3D 4275945472 (4077 MB)=0APhysical memory chunk(s):=0A0x0000000000001000 -= 0x000000000009bfff, 634880 bytes (155 pages)=0A0x000000000107b000 - 0x0000= 000096333fff, 2502660096 bytes (611001 pages)=0A0x0000000100000000 - 0x0000= 00015ffeffff, 1610547200 bytes (393200 pages)=0Aavail memory =3D 409133465= 6 (3901 MB)=0AACPI APIC Table: <DELL B8K >=0AINTR: Adding local APIC 1= as a target=0AINTR: Adding local APIC 2 as a target=0AINTR: Adding local A= PIC 3 as a target=0AFreeBSD/SMP: Multiprocessor System Detected: 4 CPUs=0A = cpu0 (BSP): APIC ID: 0=0A cpu1 (AP): APIC ID: 1=0A cpu2 (AP): APIC ID: 2= =0A cpu3 (AP): APIC ID: 3=0AAPIC: CPU 0 has ACPI ID 1=0AAPIC: CPU 1 has AC= PI ID 2=0AAPIC: CPU 2 has ACPI ID 3=0AAPIC: CPU 3 has ACPI ID 4=0AULE: setu= p cpu 0=0AULE: setup cpu 1=0AULE: setup cpu 2=0AULE: setup cpu 3=0AThis mod= ule (opensolaris) contains code covered by the=0ACommon Development and Dis= tribution License (CDDL)=0Asee http://opensolaris.org/os/licensing/opensola= ris_license/=0AACPI: RSDP @ 0x0xfebf0/0x0024 (v 2 DELL )=0AACPI: XSDT @ 0= x0xfd0b9/0x0064 (v 1 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: F= ACP @ 0x0xfd191/0x00F4 (v 3 DELL B8K 0x00000014 ASL 0x00000061)=0A= ACPI: DSDT @ 0x0xfffc13b6/0x3F25 (v 1 DELL dt_ex 0x00001000 INTL 0x20= 050624)=0AACPI: FACS @ 0x0x9fdbcc00/0x0040=0AACPI: SSDT @ 0x0xfffc52db/0x00= 99 (v 1 DELL st_ex 0x00001000 INTL 0x20050624)=0AACPI: APIC @ 0x0xfd2= 85/0x0092 (v 1 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: BOOT @ = 0x0xfd317/0x0028 (v 1 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: = MCFG @ 0x0xfd33f/0x003E (v 1 DELL B8K 0x00000014 ASL 0x00000061)= =0AACPI: HPET @ 0x0xfd37d/0x0038 (v 1 DELL B8K 0x00000014 ASL 0x00= 000061)=0AACPI: DUMY @ 0x0x9fdbec00/0x0024 (v 1 DELL B8K 0x00000014= ASL 0x00000061)=0AACPI: SLIC @ 0x0xfd3b5/0x0176 (v 1 DELL B8K 0x0= 0000014 ASL 0x00000061)=0AMADT: Found IO APIC ID 8, Interrupt 0 at 0xfec00= 000=0Aioapic0: Changing APIC ID to 8=0Aioapic0: Routing external 8259A's ->= intpin 0=0AMADT: Interrupt override: source 0, irq 2=0Aioapic0: Routing IR= Q 0 -> intpin 2=0AMADT: Interrupt override: source 9, irq 9=0Aioapic0: intp= in 9 trigger: level=0Alapic: Routing NMI -> LINT1=0Alapic: LINT1 trigger: l= evel=0Alapic: LINT1 polarity: high=0Aioapic0 <Version 1.1> irqs 0-23 on mot= herboard=0Alapic0: Forcing LINT1 to edge trigger=0Acpu0 BSP:=0A ID: 0x0= 0000000 VER: 0x00050014 LDR: 0x00000000 DFR: 0xffffffff=0A lint0: 0x0001= 0700 lint1: 0x00008400 TPR: 0x00000000 SVR: 0x000001ff=0A timer: 0x000100e= f therm: 0x00010000 err: 0x00010000 pcm: 0x00000400=0Aath_rate: version 1.2= <SampleRate bit-rate selection algorithm>=0Awlan: <802.11 Link Layer>=0Ara= ndom: <entropy source, Software, Yarrow>=0Anfslock: pseudo-device=0Akbd: ne= w array size 4=0Akbd1 at kbdmux0=0Amem: <memory>=0Aio: <I/O>=0Anull: <null = device, zero device>=0Aath_hal: 0.10.5.10 (AR5210, AR5211, AR5212, AR5416, = RF5111, RF5112, RF2413, RF5413, RF2133, RF2425, RF2417)=0Ahptrr: RocketRAID= 17xx/2xxx SATA controller driver v1.2 (Oct 13 2008 16:45:36)=0Aacpi0: <DEL= L B8K > on motherboard=0APCIe: Memory Mapped configuration base @ 0xe000= 0000=0Aioapic0: routing intpin 9 (ISA IRQ 9) to vector 48=0Aacpi0: [MPSAFE]= =0Aacpi0: [ITHREAD]=0Aacpi0: Power Button (fixed)=0Aacpi_bus_number: root b= us has no _BBN, assuming 0=0AAcpiOsDerivePciId: \\_SB_.PCI0.ISA_.P40C -> bu= s 0 dev 10 func 0=0Aacpi0: reservation of 0, a0000 (3) failed=0Aacpi0: rese= rvation of 100000, f00000 (3) failed=0Aacpi0: reservation of 1000000, 9edbc= c00 (3) failed=0AACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10= =0ATimecounter "ACPI-fast" frequency 3579545 Hz quality 1000=0Aacpi_timer0:= <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0=0Apci_link0: = Index IRQ Rtd Ref IRQs=0A Initial Probe 0 11 N 0 3 = 4 5 6 7 9 10 11 12 15=0A Validation 0 11 N 0 3 4 5 6 7 9= 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12= 15=0Apci_link1: Index IRQ Rtd Ref IRQs=0A Initial Probe = 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 10 = N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 = 3 4 5 6 7 9 10 11 12 15=0Apci_link2: Index IRQ Rtd Ref IRQs=0A = Initial Probe 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A Validatio= n 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable = 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link3: Index IRQ = Rtd Ref IRQs=0A Initial Probe 0 255 N 0 3 4 5 6 7 9 10 11= 12 15=0A Validation 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A= After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link4= : Index IRQ Rtd Ref IRQs=0A Initial Probe 0 11 N = 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 11 N 0 3 4 5 = 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 = 11 12 15=0Apci_link5: Index IRQ Rtd Ref IRQs=0A Initial Probe = 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 = 10 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N = 0 3 4 5 6 7 9 10 11 12 15=0Apci_link6: Index IRQ Rtd Ref IRQs= =0A Initial Probe 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A Vali= dation 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable= 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link7: Index = IRQ Rtd Ref IRQs=0A Initial Probe 0 255 N 0 3 4 5 6 7 9 = 10 11 12 15=0A Validation 0 255 N 0 3 4 5 6 7 9 10 11 12 = 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_= link8: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 9 N= 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 9 N 0 3= 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 = 9 10 11 12 15=0Apci_link9: Index IRQ Rtd Ref IRQs=0A Initial Pr= obe 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation = 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 = N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link10: Index IRQ Rtd Ref = IRQs=0A Initial Probe 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A = Validation 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A After Di= sable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link11: I= ndex IRQ Rtd Ref IRQs=0A Initial Probe 0 11 N 0 3 4 5 6= 7 9 10 11 12 15=0A Validation 0 11 N 0 3 4 5 6 7 9 10 1= 1 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15= =0Apci_link12: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 = 11 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 11 N = 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4= 5 6 7 9 10 11 12 15=0Apci_link13: Index IRQ Rtd Ref IRQs=0A Ini= tial Probe 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation = 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0= 255 N 0 3 4 5 6 7 9Copyright (c) 1992-2008 The FreeBSD Project.=0A= Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994=0A= The Regents of the University of California. All rights reserved.=0AFreeBS= D is a registered trademark of The FreeBSD Foundation.=0AFreeBSD 8.0-CURREN= T #6: Mon Oct 13 16:45:39 BST 2008=0A sandbox@w2fzz0vc03.aah-go-on.com:/= usr/home/sandbox/debug/obj/usr/home/sandbox/debug/src/sys/GENERIC_KTR=0AWAR= NING: WITNESS option enabled, expect reduced performance.=0APreloaded elf k= ernel "/boot/debug/kernel" at 0xffffffff8104c000.=0APreloaded elf obj modul= e "/boot/debug/zfs.ko" at 0xffffffff8104c208.=0APreloaded elf obj module "/= boot/debug/opensolaris.ko" at 0xffffffff8104c870.=0APreloaded /boot/zfs/zpo= ol.cache "/boot/zfs/zpool.cache" at 0xffffffff8104ce60.=0ATimecounter "i825= 4" frequency 1193182 Hz quality 0=0ACalibrating TSC clock ... TSC clock: 31= 92053232 Hz=0ACPU: Intel(R) Core(TM)2 Quad CPU @ 2.66GHz (3192.05= -MHz K8-class CPU)=0A Origin =3D "GenuineIntel" Id =3D 0x6f7 Stepping = =3D 7=0A Features=3D0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP= ,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,P= BE>=0A Features2=3D0xe3bd<SSE3,DTES64,MON,DS_CPL,VMX,EST,TM2,SSSE3,CX16,xT= PR,PDCM>=0A AMD Features=3D0x20100800<SYSCALL,NX,LM>=0A AMD Features2=3D0= x1<LAHF>=0A Cores per package: 4=0Ausable memory =3D 4275945472 (4077 MB)= =0APhysical memory chunk(s):=0A0x0000000000001000 - 0x000000000009bfff, 634= 880 bytes (155 pages)=0A0x000000000107b000 - 0x0000000096333fff, 2502660096= bytes (611001 pages)=0A0x0000000100000000 - 0x000000015ffeffff, 1610547200= bytes (393200 pages)=0Aavail memory =3D 4091334656 (3901 MB)=0AACPI APIC = Table: <DELL B8K >=0AINTR: Adding local APIC 1 as a target=0AINTR: Add= ing local APIC 2 as a target=0AINTR: Adding local APIC 3 as a target=0AFree= BSD/SMP: Multiprocessor System Detected: 4 CPUs=0A cpu0 (BSP): APIC ID: 0= =0A cpu1 (AP): APIC ID: 1=0A cpu2 (AP): APIC ID: 2=0A cpu3 (AP): APIC ID:= 3=0AAPIC: CPU 0 has ACPI ID 1=0AAPIC: CPU 1 has ACPI ID 2=0AAPIC: CPU 2 h= as ACPI ID 3=0AAPIC: CPU 3 has ACPI ID 4=0AULE: setup cpu 0=0AULE: setup cp= u 1=0AULE: setup cpu 2=0AULE: setup cpu 3=0AThis module (opensolaris) conta= ins code covered by the=0ACommon Development and Distribution License (CDDL= )=0Asee http://opensolaris.org/os/licensing/opensolaris_license/=0AACPI: RS= DP @ 0x0xfebf0/0x0024 (v 2 DELL )=0AACPI: XSDT @ 0x0xfd0b9/0x0064 (v 1 D= ELL B8K 0x00000014 ASL 0x00000061)=0AACPI: FACP @ 0x0xfd191/0x00F4 = (v 3 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: DSDT @ 0x0xfffc13= b6/0x3F25 (v 1 DELL dt_ex 0x00001000 INTL 0x20050624)=0AACPI: FACS @ = 0x0x9fdbcc00/0x0040=0AACPI: SSDT @ 0x0xfffc52db/0x0099 (v 1 DELL st_e= x 0x00001000 INTL 0x20050624)=0AACPI: APIC @ 0x0xfd285/0x0092 (v 1 DELL = B8K 0x00000014 ASL 0x00000061)=0AACPI: BOOT @ 0x0xfd317/0x0028 (v 1 = DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: MCFG @ 0x0xfd33f/0x003E= (v 1 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: HPET @ 0x0xfd37d= /0x0038 (v 1 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: DUMY @ 0x= 0x9fdbec00/0x0024 (v 1 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI:= SLIC @ 0x0xfd3b5/0x0176 (v 1 DELL B8K 0x00000014 ASL 0x00000061)= =0AMADT: Found IO APIC ID 8, Interrupt 0 at 0xfec00000=0Aioapic0: Changing = APIC ID to 8=0Aioapic0: Routing external 8259A's -> intpin 0=0AMADT: Interr= upt override: source 0, irq 2=0Aioapic0: Routing IRQ 0 -> intpin 2=0AMADT: = Interrupt override: source 9, irq 9=0Aioapic0: intpin 9 trigger: level=0Ala= pic: Routing NMI -> LINT1=0Alapic: LINT1 trigger: level=0Alapic: LINT1 pola= rity: high=0Aioapic0 <Version 1.1> irqs 0-23 on motherboard=0Alapic0: Forci= ng LINT1 to edge trigger=0Acpu0 BSP:=0A ID: 0x00000000 VER: 0x0005001= 4 LDR: 0x00000000 DFR: 0xffffffff=0A lint0: 0x00010700 lint1: 0x00008400 T= PR: 0x00000000 SVR: 0x000001ff=0A timer: 0x000100ef therm: 0x00010000 err:= 0x00010000 pcm: 0x00000400=0Aath_rate: version 1.2 <SampleRate bit-rate se= lection algorithm>=0Awlan: <802.11 Link Layer>=0Arandom: <entropy source, S= oftware, Yarrow>=0Anfslock: pseudo-device=0Akbd: new array size 4=0Akbd1 at= kbdmux0=0Amem: <memory>=0Aio: <I/O>=0Anull: <null device, zero device>=0Aa= th_hal: 0.10.5.10 (AR5210, AR5211, AR5212, AR5416, RF5111, RF5112, RF2413, = RF5413, RF2133, RF2425, RF2417)=0Ahptrr: RocketRAID 17xx/2xxx SATA controll= er driver v1.2 (Oct 13 2008 16:45:36)=0Aacpi0: <DELL B8K > on motherboar= d=0APCIe: Memory Mapped configuration base @ 0xe0000000=0Aioapic0: routing = intpin 9 (ISA IRQ 9) to vector 48=0Aacpi0: [MPSAFE]=0Aacpi0: [ITHREAD]=0Aac= pi0: Power Button (fixed)=0Aacpi_bus_number: root bus has no _BBN, assuming= 0=0AAcpiOsDerivePciId: \\_SB_.PCI0.ISA_.P40C -> bus 0 dev 10 func 0=0Aacpi= 0: reservation of 0, a0000 (3) failed=0Aacpi0: reservation of 100000, f0000= 0 (3) failed=0Aacpi0: reservation of 1000000, 9edbcc00 (3) failed=0AACPI ti= mer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10=0ATimecounter "ACPI-fast= " frequency 3579545 Hz quality 1000=0Aacpi_timer0: <24-bit timer at 3.57954= 5MHz> port 0x4008-0x400b on acpi0=0Apci_link0: Index IRQ Rtd Ref = IRQs=0A Initial Probe 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A = Validation 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A After Di= sable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link1: I= ndex IRQ Rtd Ref IRQs=0A Initial Probe 0 10 N 0 3 4 5 6= 7 9 10 11 12 15=0A Validation 0 10 N 0 3 4 5 6 7 9 10 1= 1 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15= =0Apci_link2: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 = 9 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 9 N = 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4= 5 6 7 9 10 11 12 15=0Apci_link3: Index IRQ Rtd Ref IRQs=0A Ini= tial Probe 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation = 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0= 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link4: Index IRQ Rt= d Ref IRQs=0A Initial Probe 0 11 N 0 3 4 5 6 7 9 10 11 12= 15=0A Validation 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A A= fter Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link5: = Index IRQ Rtd Ref IRQs=0A Initial Probe 0 10 N 0 = 3 4 5 6 7 9 10 11 12 15=0A Validation 0 10 N 0 3 4 5 6 7= 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 = 12 15=0Apci_link6: Index IRQ Rtd Ref IRQs=0A Initial Probe = 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 9 = N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0= 3 4 5 6 7 9 10 11 12 15=0Apci_link7: Index IRQ Rtd Ref IRQs=0A= Initial Probe 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A Validat= ion 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable = 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link8: Index IR= Q Rtd Ref IRQs=0A Initial Probe 0 9 N 0 3 4 5 6 7 9 10 = 11 12 15=0A Validation 0 9 N 0 3 4 5 6 7 9 10 11 12 15= =0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_li= nk9: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 10 N = 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 10 N 0 3 4= 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 = 10 11 12 15=0Apci_link10: Index IRQ Rtd Ref IRQs=0A Initial Prob= e 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0= 255 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N= 0 3 4 5 6 7 9 10 11 12 15=0Apci_link11: Index IRQ Rtd Ref I= RQs=0A Initial Probe 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A V= alidation 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disa= ble 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link12: Ind= ex IRQ Rtd Ref IRQs=0A Initial Probe 0 11 N 0 3 4 5 6 7= 9 10 11 12 15=0A Validation 0 11 N 0 3 4 5 6 7 9 10 11 = 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Ap= ci_link13: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 10 = N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 10 N 0= 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6= 7 9Copyright (c) 1992-2008 The FreeBSD Project.=0ACopyright (c) 1979, 1980= , 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994=0A The Regents of the Univ= ersity of California. All rights reserved.=0AFreeBSD is a registered tradem= ark of The FreeBSD Foundation.=0AFreeBSD 8.0-CURRENT #6: Mon Oct 13 16:45:3= 9 BST 2008=0A sandbox@w2fzz0vc03.aah-go-on.com:/usr/home/sandbox/debug/o= bj/usr/home/sandbox/debug/src/sys/GENERIC_KTR=0AWARNING: WITNESS option ena= bled, expect reduced performance.=0APreloaded elf kernel "/boot/debug/kerne= l" at 0xffffffff8104c000.=0APreloaded elf obj module "/boot/debug/zfs.ko" a= t 0xffffffff8104c208.=0APreloaded elf obj module "/boot/debug/opensolaris.k= o" at 0xffffffff8104c870.=0APreloaded /boot/zfs/zpool.cache "/boot/zfs/zpoo= l.cache" at 0xffffffff8104ce60.=0ATimecounter "i8254" frequency 1193182 Hz = quality 0=0ACalibrating TSC clock ... TSC clock: 3192053232 Hz=0ACPU: Intel= (R) Core(TM)2 Quad CPU @ 2.66GHz (3192.05-MHz K8-class CPU)=0A O= rigin =3D "GenuineIntel" Id =3D 0x6f7 Stepping =3D 7=0A Features=3D0xbfe= bfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE= 36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>=0A Features2=3D0xe3bd= <SSE3,DTES64,MON,DS_CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM>=0A AMD Features= =3D0x20100800<SYSCALL,NX,LM>=0A AMD Features2=3D0x1<LAHF>=0A Cores per pa= ckage: 4=0Ausable memory =3D 4275945472 (4077 MB)=0APhysical memory chunk(s= ):=0A0x0000000000001000 - 0x000000000009bfff, 634880 bytes (155 pages)=0A0x= 000000000107b000 - 0x0000000096333fff, 2502660096 bytes (611001 pages)=0A0x= 0000000100000000 - 0x000000015ffeffff, 1610547200 bytes (393200 pages)=0Aav= ail memory =3D 4091334656 (3901 MB)=0AACPI APIC Table: <DELL B8K >=0A= INTR: Adding local APIC 1 as a target=0AINTR: Adding local APIC 2 as a targ= et=0AINTR: Adding local APIC 3 as a target=0AFreeBSD/SMP: Multiprocessor Sy= stem Detected: 4 CPUs=0A cpu0 (BSP): APIC ID: 0=0A cpu1 (AP): APIC ID: 1= =0A cpu2 (AP): APIC ID: 2=0A cpu3 (AP): APIC ID: 3=0AAPIC: CPU 0 has ACPI= ID 1=0AAPIC: CPU 1 has ACPI ID 2=0AAPIC: CPU 2 has ACPI ID 3=0AAPIC: CPU 3= has ACPI ID 4=0AULE: setup cpu 0=0AULE: setup cpu 1=0AULE: setup cpu 2=0AU= LE: setup cpu 3=0AThis module (opensolaris) contains code covered by the=0A= Common Development and Distribution License (CDDL)=0Asee http://opensolaris= org/os/licensing/opensolaris_license/=0AACPI: RSDP @ 0x0xfebf0/0x0024 (v = 2 DELL )=0AACPI: XSDT @ 0x0xfd0b9/0x0064 (v 1 DELL B8K 0x00000014 = ASL 0x00000061)=0AACPI: FACP @ 0x0xfd191/0x00F4 (v 3 DELL B8K 0x00= 000014 ASL 0x00000061)=0AACPI: DSDT @ 0x0xfffc13b6/0x3F25 (v 1 DELL = dt_ex 0x00001000 INTL 0x20050624)=0AACPI: FACS @ 0x0x9fdbcc00/0x0040=0AACPI= : SSDT @ 0x0xfffc52db/0x0099 (v 1 DELL st_ex 0x00001000 INTL 0x200506= 24)=0AACPI: APIC @ 0x0xfd285/0x0092 (v 1 DELL B8K 0x00000014 ASL 0= x00000061)=0AACPI: BOOT @ 0x0xfd317/0x0028 (v 1 DELL B8K 0x00000014= ASL 0x00000061)=0AACPI: MCFG @ 0x0xfd33f/0x003E (v 1 DELL B8K 0x0= 0000014 ASL 0x00000061)=0AACPI: HPET @ 0x0xfd37d/0x0038 (v 1 DELL B8K = 0x00000014 ASL 0x00000061)=0AACPI: DUMY @ 0x0x9fdbec00/0x0024 (v 1 DE= LL B8K 0x00000014 ASL 0x00000061)=0AACPI: SLIC @ 0x0xfd3b5/0x0176 (= v 1 DELL B8K 0x00000014 ASL 0x00000061)=0AMADT: Found IO APIC ID 8= , Interrupt 0 at 0xfec00000=0Aioapic0: Changing APIC ID to 8=0Aioapic0: Rou= ting external 8259A's -> intpin 0=0AMADT: Interrupt override: source 0, irq= 2=0Aioapic0: Routing IRQ 0 -> intpin 2=0AMADT: Interrupt override: source = 9, irq 9=0Aioapic0: intpin 9 trigger: level=0Alapic: Routing NMI -> LINT1= =0Alapic: LINT1 trigger: level=0Alapic: LINT1 polarity: high=0Aioapic0 <Ver= sion 1.1> irqs 0-23 on motherboard=0Alapic0: Forcing LINT1 to edge trigger= =0Acpu0 BSP:=0A ID: 0x00000000 VER: 0x00050014 LDR: 0x00000000 DFR: 0= xffffffff=0A lint0: 0x00010700 lint1: 0x00008400 TPR: 0x00000000 SVR: 0x00= 0001ff=0A timer: 0x000100ef therm: 0x00010000 err: 0x00010000 pcm: 0x00000= 400=0Aath_rate: version 1.2 <SampleRate bit-rate selection algorithm>=0Awla= n: <802.11 Link Layer>=0Arandom: <entropy source, Software, Yarrow>=0Anfslo= ck: pseudo-device=0Akbd: new array size 4=0Akbd1 at kbdmux0=0Amem: <memory>= =0Aio: <I/O>=0Anull: <null device, zero device>=0Aath_hal: 0.10.5.10 (AR521= 0, AR5211, AR5212, AR5416, RF5111, RF5112, RF2413, RF5413, RF2133, RF2425, = RF2417)=0Ahptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2 (Oct 13 2= 008 16:45:36)=0Aacpi0: <DELL B8K > on motherboard=0APCIe: Memory Mapped = configuration base @ 0xe0000000=0Aioapic0: routing intpin 9 (ISA IRQ 9) to = vector 48=0Aacpi0: [MPSAFE]=0Aacpi0: [ITHREAD]=0Aacpi0: Power Button (fixed= )=0Aacpi_bus_number: root bus has no _BBN, assuming 0=0AAcpiOsDerivePciId: = \\_SB_.PCI0.ISA_.P40C -> bus 0 dev 10 func 0=0Aacpi0: reservation of 0, a00= 00 (3) failed=0Aacpi0: reservation of 100000, f00000 (3) failed=0Aacpi0: re= servation of 1000000, 9edbcc00 (3) failed=0AACPI timer: 1/1 1/1 1/1 1/1 1/1= 1/1 1/1 1/1 1/1 1/1 -> 10=0ATimecounter "ACPI-fast" frequency 3579545 Hz q= uality 1000=0Aacpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b= on acpi0=0Apci_link0: Index IRQ Rtd Ref IRQs=0A Initial Probe = 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 = 11 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N = 0 3 4 5 6 7 9 10 11 12 15=0Apci_link1: Index IRQ Rtd Ref IRQ= s=0A Initial Probe 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A Val= idation 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disabl= e 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link2: Index= IRQ Rtd Ref IRQs=0A Initial Probe 0 9 N 0 3 4 5 6 7 9= 10 11 12 15=0A Validation 0 9 N 0 3 4 5 6 7 9 10 11 12= 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci= _link3: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 255 = N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 255 N 0 = 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7= 9 10 11 12 15=0Apci_link4: Index IRQ Rtd Ref IRQs=0A Initial P= robe 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation = 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 = N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link5: Index IRQ Rtd Ref= IRQs=0A Initial Probe 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A= Validation 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A After D= isable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link6: = Index IRQ Rtd Ref IRQs=0A Initial Probe 0 9 N 0 3 4 5 = 6 7 9 10 11 12 15=0A Validation 0 9 N 0 3 4 5 6 7 9 10 = 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15= =0Apci_link7: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 = 255 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 255 N = 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4= 5 6 7 9 10 11 12 15=0Apci_link8: Index IRQ Rtd Ref IRQs=0A Ini= tial Probe 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation = 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0= 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link9: Index IRQ Rt= d Ref IRQs=0A Initial Probe 0 10 N 0 3 4 5 6 7 9 10 11 12= 15=0A Validation 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A A= fter Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link10: = Index IRQ Rtd Ref IRQs=0A Initial Probe 0 255 N 0 = 3 4 5 6 7 9 10 11 12 15=0A Validation 0 255 N 0 3 4 5 6 7= 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 = 12 15=0Apci_link11: Index IRQ Rtd Ref IRQs=0A Initial Probe = 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 11 = N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0= 3 4 5 6 7 9 10 11 12 15=0Apci_link12: Index IRQ Rtd Ref IRQs=0A= Initial Probe 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A Validat= ion 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable = 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link13: Index IR= Q Rtd Ref IRQs=0A Initial Probe 0 10 N 0 3 4 5 6 7 9 10 = 11 12 15=0A Validation 0 10 N 0 3 4 5 6 7 9 10 11 12 15= =0A After Disable 0 255 N 0 3 4 5 6 7 9Copyright (c) 1992-20= 08 The FreeBSD Project.=0ACopyright (c) 1979, 1980, 1983, 1986, 1988, 1989,= 1991, 1992, 1993, 1994=0A The Regents of the University of California. All= rights reserved.=0AFreeBSD is a registered trademark of The FreeBSD Founda= tion.=0AFreeBSD 8.0-CURRENT #6: Mon Oct 13 16:45:39 BST 2008=0A sandbox@= w2fzz0vc03.aah-go-on.com:/usr/home/sandbox/debug/obj/usr/home/sandbox/debug= /src/sys/GENERIC_KTR=0AWARNING: WITNESS option enabled, expect reduced perf= ormance.=0APreloaded elf kernel "/boot/debug/kernel" at 0xffffffff8104c000.= =0APreloaded elf obj module "/boot/debug/zfs.ko" at 0xffffffff8104c208.=0AP= reloaded elf obj module "/boot/debug/opensolaris.ko" at 0xffffffff8104c870.= =0APreloaded /boot/zfs/zpool.cache "/boot/zfs/zpool.cache" at 0xffffffff810= 4ce60.=0ATimecounter "i8254" frequency 1193182 Hz quality 0=0ACalibrating T= SC clock ... TSC clock: 3192053232 Hz=0ACPU: Intel(R) Core(TM)2 Quad CPU = @ 2.66GHz (3192.05-MHz K8-class CPU)=0A Origin =3D "GenuineIntel" = Id =3D 0x6f7 Stepping =3D 7=0A Features=3D0xbfebfbff<FPU,VME,DE,PSE,TSC,= MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,F= XSR,SSE,SSE2,SS,HTT,TM,PBE>=0A Features2=3D0xe3bd<SSE3,DTES64,MON,DS_CPL,V= MX,EST,TM2,SSSE3,CX16,xTPR,PDCM>=0A AMD Features=3D0x20100800<SYSCALL,NX,L= M>=0A AMD Features2=3D0x1<LAHF>=0A Cores per package: 4=0Ausable memory = =3D 4275945472 (4077 MB)=0APhysical memory chunk(s):=0A0x0000000000001000 -= 0x000000000009bfff, 634880 bytes (155 pages)=0A0x000000000107b000 - 0x0000= 000096333fff, 2502660096 bytes (611001 pages)=0A0x0000000100000000 - 0x0000= 00015ffeffff, 1610547200 bytes (393200 pages)=0Aavail memory =3D 409133465= 6 (3901 MB)=0AACPI APIC Table: <DELL B8K >=0AINTR: Adding local APIC 1= as a target=0AINTR: Adding local APIC 2 as a target=0AINTR: Adding local A= PIC 3 as a target=0AFreeBSD/SMP: Multiprocessor System Detected: 4 CPUs=0A = cpu0 (BSP): APIC ID: 0=0A cpu1 (AP): APIC ID: 1=0A cpu2 (AP): APIC ID: 2= =0A cpu3 (AP): APIC ID: 3=0AAPIC: CPU 0 has ACPI ID 1=0AAPIC: CPU 1 has AC= PI ID 2=0AAPIC: CPU 2 has ACPI ID 3=0AAPIC: CPU 3 has ACPI ID 4=0AULE: setu= p cpu 0=0AULE: setup cpu 1=0AULE: setup cpu 2=0AULE: setup cpu 3=0AThis mod= ule (opensolaris) contains code covered by the=0ACommon Development and Dis= tribution License (CDDL)=0Asee http://opensolaris.org/os/licensing/opensola= ris_license/=0AACPI: RSDP @ 0x0xfebf0/0x0024 (v 2 DELL )=0AACPI: XSDT @ 0= x0xfd0b9/0x0064 (v 1 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: F= ACP @ 0x0xfd191/0x00F4 (v 3 DELL B8K 0x00000014 ASL 0x00000061)=0A= ACPI: DSDT @ 0x0xfffc13b6/0x3F25 (v 1 DELL dt_ex 0x00001000 INTL 0x20= 050624)=0AACPI: FACS @ 0x0x9fdbcc00/0x0040=0AACPI: SSDT @ 0x0xfffc52db/0x00= 99 (v 1 DELL st_ex 0x00001000 INTL 0x20050624)=0AACPI: APIC @ 0x0xfd2= 85/0x0092 (v 1 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: BOOT @ = 0x0xfd317/0x0028 (v 1 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: = MCFG @ 0x0xfd33f/0x003E (v 1 DELL B8K 0x00000014 ASL 0x00000061)= =0AACPI: HPET @ 0x0xfd37d/0x0038 (v 1 DELL B8K 0x00000014 ASL 0x00= 000061)=0AACPI: DUMY @ 0x0x9fdbec00/0x0024 (v 1 DELL B8K 0x00000014= ASL 0x00000061)=0AACPI: SLIC @ 0x0xfd3b5/0x0176 (v 1 DELL B8K 0x0= 0000014 ASL 0x00000061)=0AMADT: Found IO APIC ID 8, Interrupt 0 at 0xfec00= 000=0Aioapic0: Changing APIC ID to 8=0Aioapic0: Routing external 8259A's ->= intpin 0=0AMADT: Interrupt override: source 0, irq 2=0Aioapic0: Routing IR= Q 0 -> intpin 2=0AMADT: Interrupt override: source 9, irq 9=0Aioapic0: intp= in 9 trigger: level=0Alapic: Routing NMI -> LINT1=0Alapic: LINT1 trigger: l= evel=0Alapic: LINT1 polarity: high=0Aioapic0 <Version 1.1> irqs 0-23 on mot= herboard=0Alapic0: Forcing LINT1 to edge trigger=0Acpu0 BSP:=0A ID: 0x0= 0000000 VER: 0x00050014 LDR: 0x00000000 DFR: 0xffffffff=0A lint0: 0x0001= 0700 lint1: 0x00008400 TPR: 0x00000000 SVR: 0x000001ff=0A timer: 0x000100e= f therm: 0x00010000 err: 0x00010000 pcm: 0x00000400=0Aath_rate: version 1.2= <SampleRate bit-rate selection algorithm>=0Awlan: <802.11 Link Layer>=0Ara= ndom: <entropy source, Software, Yarrow>=0Anfslock: pseudo-device=0Akbd: ne= w array size 4=0Akbd1 at kbdmux0=0Amem: <memory>=0Aio: <I/O>=0Anull: <null = device, zero device>=0Aath_hal: 0.10.5.10 (AR5210, AR5211, AR5212, AR5416, = RF5111, RF5112, RF2413, RF5413, RF2133, RF2425, RF2417)=0Ahptrr: RocketRAID= 17xx/2xxx SATA controller driver v1.2 (Oct 13 2008 16:45:36)=0Aacpi0: <DEL= L B8K > on motherboard=0APCIe: Memory Mapped configuration base @ 0xe000= 0000=0Aioapic0: routing intpin 9 (ISA IRQ 9) to vector 48=0Aacpi0: [MPSAFE]= =0Aacpi0: [ITHREAD]=0Aacpi0: Power Button (fixed)=0Aacpi_bus_number: root b= us has no _BBN, assuming 0=0AAcpiOsDerivePciId: \\_SB_.PCI0.ISA_.P40C -> bu= s 0 dev 10 func 0=0Aacpi0: reservation of 0, a0000 (3) failed=0Aacpi0: rese= rvation of 100000, f00000 (3) failed=0Aacpi0: reservation of 1000000, 9edbc= c00 (3) failed=0AACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10= =0ATimecounter "ACPI-fast" frequency 3579545 Hz quality 1000=0Aacpi_timer0:= <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0=0Apci_link0: = Index IRQ Rtd Ref IRQs=0A Initial Probe 0 11 N 0 3 = 4 5 6 7 9 10 11 12 15=0A Validation 0 11 N 0 3 4 5 6 7 9= 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12= 15=0Apci_link1: Index IRQ Rtd Ref IRQs=0A Initial Probe = 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 10 = N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 = 3 4 5 6 7 9 10 11 12 15=0Apci_link2: Index IRQ Rtd Ref IRQs=0A = Initial Probe 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A Validatio= n 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable = 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link3: Index IRQ = Rtd Ref IRQs=0A Initial Probe 0 255 N 0 3 4 5 6 7 9 10 11= 12 15=0A Validation 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A= After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link4= : Index IRQ Rtd Ref IRQs=0A Initial Probe 0 11 N = 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 11 N 0 3 4 5 = 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 = 11 12 15=0Apci_link5: Index IRQ Rtd Ref IRQs=0A Initial Probe = 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 = 10 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N = 0 3 4 5 6 7 9 10 11 12 15=0Apci_link6: Index IRQ Rtd Ref IRQs= =0A Initial Probe 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A Vali= dation 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable= 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link7: Index = IRQ Rtd Ref IRQs=0A Initial Probe 0 255 N 0 3 4 5 6 7 9 = 10 11 12 15=0A Validation 0 255 N 0 3 4 5 6 7 9 10 11 12 = 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_= link8: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 9 N= 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 9 N 0 3= 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 = 9 10 11 12 15=0Apci_link9: Index IRQ Rtd Ref IRQs=0A Initial Pr= obe 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation = 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 = N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link10: Index IRQ Rtd Ref = IRQs=0A Initial Probe 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A = Validation 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A After Di= sable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link11: I= ndex IRQ Rtd Ref IRQs=0A Initial Probe 0 11 N 0 3 4 5 6= 7 9 10 11 12 15=0A Validation 0 11 N 0 3 4 5 6 7 9 10 1= 1 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15= =0Apci_link12: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 = 11 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 11 N = 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4= 5 6 7 9 10 11 12 15=0Apci_link13: Index IRQ Rtd Ref IRQs=0A Ini= tial Probe 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation = 0 10 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0= 255 N 0 3 4 5 6 7 9Copyright (c) 1992-2008 The FreeBSD Project.=0A= Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994=0A= The Regents of the University of California. All rights reserved.=0AFreeBS= D is a registered trademark of The FreeBSD Foundation.=0AFreeBSD 8.0-CURREN= T #6: Mon Oct 13 16:45:39 BST 2008=0A sandbox@w2fzz0vc03.aah-go-on.com:/= usr/home/sandbox/debug/obj/usr/home/sandbox/debug/src/sys/GENERIC_KTR=0AWAR= NING: WITNESS option enabled, expect reduced performance.=0APreloaded elf k= ernel "/boot/debug/kernel" at 0xffffffff8104c000.=0APreloaded elf obj modul= e "/boot/debug/zfs.ko" at 0xffffffff8104c208.=0APreloaded elf obj module "/= boot/debug/opensolaris.ko" at 0xffffffff8104c870.=0APreloaded /boot/zfs/zpo= ol.cache "/boot/zfs/zpool.cache" at 0xffffffff8104ce60.=0ATimecounter "i825= 4" frequency 1193182 Hz quality 0=0ACalibrating TSC clock ... TSC clock: 31= 92053232 Hz=0ACPU: Intel(R) Core(TM)2 Quad CPU @ 2.66GHz (3192.05= -MHz K8-class CPU)=0A Origin =3D "GenuineIntel" Id =3D 0x6f7 Stepping = =3D 7=0A Features=3D0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP= ,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,P= BE>=0A Features2=3D0xe3bd<SSE3,DTES64,MON,DS_CPL,VMX,EST,TM2,SSSE3,CX16,xT= PR,PDCM>=0A AMD Features=3D0x20100800<SYSCALL,NX,LM>=0A AMD Features2=3D0= x1<LAHF>=0A Cores per package: 4=0Ausable memory =3D 4275945472 (4077 MB)= =0APhysical memory chunk(s):=0A0x0000000000001000 - 0x000000000009bfff, 634= 880 bytes (155 pages)=0A0x000000000107b000 - 0x0000000096333fff, 2502660096= bytes (611001 pages)=0A0x0000000100000000 - 0x000000015ffeffff, 1610547200= bytes (393200 pages)=0Aavail memory =3D 4091334656 (3901 MB)=0AACPI APIC = Table: <DELL B8K >=0AINTR: Adding local APIC 1 as a target=0AINTR: Add= ing local APIC 2 as a target=0AINTR: Adding local APIC 3 as a target=0AFree= BSD/SMP: Multiprocessor System Detected: 4 CPUs=0A cpu0 (BSP): APIC ID: 0= =0A cpu1 (AP): APIC ID: 1=0A cpu2 (AP): APIC ID: 2=0A cpu3 (AP): APIC ID:= 3=0AAPIC: CPU 0 has ACPI ID 1=0AAPIC: CPU 1 has ACPI ID 2=0AAPIC: CPU 2 h= as ACPI ID 3=0AAPIC: CPU 3 has ACPI ID 4=0AULE: setup cpu 0=0AULE: setup cp= u 1=0AULE: setup cpu 2=0AULE: setup cpu 3=0AThis module (opensolaris) conta= ins code covered by the=0ACommon Development and Distribution License (CDDL= )=0Asee http://opensolaris.org/os/licensing/opensolaris_license/=0AACPI: RS= DP @ 0x0xfebf0/0x0024 (v 2 DELL )=0AACPI: XSDT @ 0x0xfd0b9/0x0064 (v 1 D= ELL B8K 0x00000014 ASL 0x00000061)=0AACPI: FACP @ 0x0xfd191/0x00F4 = (v 3 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: DSDT @ 0x0xfffc13= b6/0x3F25 (v 1 DELL dt_ex 0x00001000 INTL 0x20050624)=0AACPI: FACS @ = 0x0x9fdbcc00/0x0040=0AACPI: SSDT @ 0x0xfffc52db/0x0099 (v 1 DELL st_e= x 0x00001000 INTL 0x20050624)=0AACPI: APIC @ 0x0xfd285/0x0092 (v 1 DELL = B8K 0x00000014 ASL 0x00000061)=0AACPI: BOOT @ 0x0xfd317/0x0028 (v 1 = DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: MCFG @ 0x0xfd33f/0x003E= (v 1 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: HPET @ 0x0xfd37d= /0x0038 (v 1 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI: DUMY @ 0x= 0x9fdbec00/0x0024 (v 1 DELL B8K 0x00000014 ASL 0x00000061)=0AACPI:= SLIC @ 0x0xfd3b5/0x0176 (v 1 DELL B8K 0x00000014 ASL 0x00000061)= =0AMADT: Found IO APIC ID 8, Interrupt 0 at 0xfec00000=0Aioapic0: Changing = APIC ID to 8=0Aioapic0: Routing external 8259A's -> intpin 0=0AMADT: Interr= upt override: source 0, irq 2=0Aioapic0: Routing IRQ 0 -> intpin 2=0AMADT: = Interrupt override: source 9, irq 9=0Aioapic0: intpin 9 trigger: level=0Ala= pic: Routing NMI -> LINT1=0Alapic: LINT1 trigger: level=0Alapic: LINT1 pola= rity: high=0Aioapic0 <Version 1.1> irqs 0-23 on motherboard=0Alapic0: Forci= ng LINT1 to edge trigger=0Acpu0 BSP:=0A ID: 0x00000000 VER: 0x0005001= 4 LDR: 0x00000000 DFR: 0xffffffff=0A lint0: 0x00010700 lint1: 0x00008400 T= PR: 0x00000000 SVR: 0x000001ff=0A timer: 0x000100ef therm: 0x00010000 err:= 0x00010000 pcm: 0x00000400=0Aath_rate: version 1.2 <SampleRate bit-rate se= lection algorithm>=0Awlan: <802.11 Link Layer>=0Arandom: <entropy source, S= oftware, Yarrow>=0Anfslock: pseudo-device=0Akbd: new array size 4=0Akbd1 at= kbdmux0=0Amem: <memory>=0Aio: <I/O>=0Anull: <null device, zero device>=0Aa= th_hal: 0.10.5.10 (AR5210, AR5211, AR5212, AR5416, RF5111, RF5112, RF2413, = RF5413, RF2133, RF2425, RF2417)=0Ahptrr: RocketRAID 17xx/2xxx SATA controll= er driver v1.2 (Oct 13 2008 16:45:36)=0Aacpi0: <DELL B8K > on motherboar= d=0APCIe: Memory Mapped configuration base @ 0xe0000000=0Aioapic0: routing = intpin 9 (ISA IRQ 9) to vector 48=0Aacpi0: [MPSAFE]=0Aacpi0: [ITHREAD]=0Aac= pi0: Power Button (fixed)=0Aacpi_bus_number: root bus has no _BBN, assuming= 0=0AAcpiOsDerivePciId: \\_SB_.PCI0.ISA_.P40C -> bus 0 dev 10 func 0=0Aacpi= 0: reservation of 0, a0000 (3) failed=0Aacpi0: reservation of 100000, f0000= 0 (3) failed=0Aacpi0: reservation of 1000000, 9edbcc00 (3) failed=0AACPI ti= mer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10=0ATimecounter "ACPI-fast= " frequency 3579545 Hz quality 1000=0Aacpi_timer0: <24-bit timer at 3.57954= 5MHz> port 0x4008-0x400b on acpi0=0Apci_link0: Index IRQ Rtd Ref = IRQs=0A Initial Probe 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A = Validation 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A After Di= sable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link1: I= ndex IRQ Rtd Ref IRQs=0A Initial Probe 0 10 N 0 3 4 5 6= 7 9 10 11 12 15=0A Validation 0 10 N 0 3 4 5 6 7 9 10 1= 1 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15= =0Apci_link2: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 = 9 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 9 N = 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4= 5 6 7 9 10 11 12 15=0Apci_link3: Index IRQ Rtd Ref IRQs=0A Ini= tial Probe 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation = 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0= 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link4: Index IRQ Rt= d Ref IRQs=0A Initial Probe 0 11 N 0 3 4 5 6 7 9 10 11 12= 15=0A Validation 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A A= fter Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link5: = Index IRQ Rtd Ref IRQs=0A Initial Probe 0 10 N 0 = 3 4 5 6 7 9 10 11 12 15=0A Validation 0 10 N 0 3 4 5 6 7= 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 = 12 15=0Apci_link6: Index IRQ Rtd Ref IRQs=0A Initial Probe = 0 9 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 9 = N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0= 3 4 5 6 7 9 10 11 12 15=0Apci_link7: Index IRQ Rtd Ref IRQs=0A= Initial Probe 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A Validat= ion 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable = 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link8: Index IR= Q Rtd Ref IRQs=0A Initial Probe 0 9 N 0 3 4 5 6 7 9 10 = 11 12 15=0A Validation 0 9 N 0 3 4 5 6 7 9 10 11 12 15= =0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_li= nk9: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 10 N = 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 10 N 0 3 4= 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 = 10 11 12 15=0Apci_link10: Index IRQ Rtd Ref IRQs=0A Initial Prob= e 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0= 255 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N= 0 3 4 5 6 7 9 10 11 12 15=0Apci_link11: Index IRQ Rtd Ref I= RQs=0A Initial Probe 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A V= alidation 0 11 N 0 3 4 5 6 7 9 10 11 12 15=0A After Disa= ble 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Apci_link12: Ind= ex IRQ Rtd Ref IRQs=0A Initial Probe 0 11 N 0 3 4 5 6 7= 9 10 11 12 15=0A Validation 0 11 N 0 3 4 5 6 7 9 10 11 = 12 15=0A After Disable 0 255 N 0 3 4 5 6 7 9 10 11 12 15=0Ap= ci_link13: Index IRQ Rtd Ref IRQs=0A Initial Probe 0 10 = N 0 3 4 5 6 7 9 10 11 12 15=0A Validation 0 10 N 0= 3 4 5 6 7 9 10 11 12 15=0A After Disable 0 255 N 0 3 4 5 6= 7 9Copyright (c) 1992-2008 The FreeBSD Project.=0ACopyright (c) 1979, 1980= , 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994=0A The Regents of the Univ= ersity of California. All rights reserved.=0AFreeBSD is a registered tradem= ark of The FreeBSD Foundation.=0AFreeBSD 8.0-CURRENT #6: Mon Oct 13 16:45:3= 9 BST 2008=0A sandbox@w2fzz0vc03.aah-go-on.com:/usr/home/sandbox/debug/o= bj/usr/home/sandbox/debug/src/sys/GENERIC_KTR=0AWARNING: WITNESS option ena= bled, expect reduced performance.=0APreloaded elf kernel "/boot/debug/kerne= l" at 0xffffffff8104c000.=0APreloaded elf obj module "/boot/debug/zfs.ko" a= t 0xffffffff8104c208.=0APreloaded elf obj module "/boot/debug/opensolaris.k= o" at 0xffffffff8104c870.=0APreloaded /boot/zfs/zpool.cache "/boot/zfs/zpoo= l.cache" at 0xffffffff8104ce60.=0ATimecounter "i8254" frequency 1193182 Hz = quality 0=0ACalibrating TSC clock ... TSC clock: 3192053232 Hz=0ACPU: Intel= (R) Core(TM)2 Quad CPU @ 2.66GHz (3192.05-MHz K8-class CPU)=0A O= rigin =3D "GenuineIntel" Id =3D 0x6f7 Stepping =3D 7=0A Features=3D0xbfe= bfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE= 36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>=0A Features2=3D0xe3bd= <SSE3,DTES64,MON,DS_CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM>=0A AMD Features= =3D0x20100800<SYSCALL,NX,LM>=0A AMD Features2=3D0x1<LAHF>=0A Cores per pa= ckage: 4=0Ausable memory =3D 4275945472 (4077 MB)=0APhysical memory chunk(s= ):=0A0x0000000000001000 - 0x000000000009bfff, 634880 bytes (155 pages)=0A0x= 000000000107b000 - 0x0000000096333fff, 2502660096 bytes (611001 pages)=0A0x= 0000000100000000 - 0x000000015ffeffff, 1610547200 bytes (393200 pages)=0Aav= ail memory =3D 4091334656 (3901 MB)=0AACPI APIC Table: <DELL B8K >=0A= INTR: Adding local APIC 1 as a target=0AINTR: Adding local APIC 2 as a targ= et=0AINTR: Adding local APIC 3 as a target=0AFreeBSD/SMP: Multiprocessor Sy= stem Detected: 4 CPUs=0A cpu0 (BSP): APIC ID: 0=0A cpu1 (AP): APIC ID: 1= =0A cpu2 (AP): APIC ID: 2=0A cpu3 (AP): APIC ID: 3=0AAPIC: CPU 0 has ACPI= ID 1=0AAPIC: CPU 1 has ACPI ID 2=0AAPIC: CPU 2 has ACPI ID 3=0AAPIC: CPU 3= has ACPI ID 4=0AULE: setup cpu 0=0AULE: setup cpu ------=_NextPart_000_0001_01C92D80.2DBF5EF0 Content-Type: text/plain; name="atacontrol-list.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="atacontrol-list.txt" ATA channel 0:=0A Master: no device present=0A Slave: no d= evice present=0AATA channel 1:=0A Master: no device present=0A S= lave: no device present=0AATA channel 2:=0A Master: ad4 <Hitachi = HDP725032GLA360/GM3OA52A> Serial ATA II=0A Slave: no device presen= t=0AATA channel 3:=0A Master: ad6 <Hitachi HDP725032GLA360/GM3OA52A> Se= rial ATA II=0A Slave: no device present=0AATA channel 4:=0A Mas= ter: acd0 <TSSTcorp CD-RW/DVD-ROM TS-H493A/D200> Serial ATA v1.0=0A Slav= e: no device present=0AATA channel 5:=0A Master: acd1 <TSSTcorp DV= D+/-RW TS-H653A/D500> Serial ATA v1.0=0A Slave: no device present= =0AATA channel 6:=0A Master: ad12 <Hitachi HDT725032VLA360/V54OA7EA> Ser= ial ATA II=0A Slave: no device present=0AATA channel 7:=0A Mast= er: ad14 <Hitachi HDT725032VLA360/V54OA7EA> Serial ATA II=0A Slave: = no device present=0A ------=_NextPart_000_0001_01C92D80.2DBF5EF0--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?000001c92d77$cbfaf6f0$63f0e4d0$>