Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Aug 2009 22:07:47 -0700
From:      Kip Macy <kmacy@freebsd.org>
To:        "Arno J. Klaassen" <arno@heho.snv.jussieu.fr>
Cc:        Ed Schouten <ed@80386.nl>, current@freebsd.org, Robert Noland <rnoland@freebsd.org>, Julian Elischer <julian@elischer.org>
Subject:   Re: 8.0-BETA2: mi_startup() panic on VIA C7 diskless
Message-ID:  <3c1674c90908112207k7aa4ce4age21ce6538d7e5367@mail.gmail.com>
In-Reply-To: <wpocqmkk60.fsf@heho.snv.jussieu.fr>
References:  <wp8whraago.fsf@heho.snv.jussieu.fr> <1250004330.1773.223.camel@balrog.2hip.net> <wpws5atixy.fsf@heho.snv.jussieu.fr> <3c1674c90908111235m158227a3q86af8b1d7235a7a2@mail.gmail.com> <wpocqmkk60.fsf@heho.snv.jussieu.fr>

next in thread | previous in thread | raw e-mail | index | archive | help
The patch on freefall was updated to have that earlier today. I'll
pass it on to re@

Thanks,
Kip

On Tue, Aug 11, 2009 at 4:25 PM, Arno J.
Klaassen<arno@heho.snv.jussieu.fr> wrote:
> Kip Macy <kmacy@freebsd.org> writes:
>
>> Please try the following patch:
>>
>> http://people.freebsd.org/~kmacy/flowtable_boot.patch
>
> yeah, this works over here. Thank you very much.
>
> Just for completeness, here is my local patch; apart
> from the parenthesis issue I also needed to add
> the
> =A0#define V_flowtable_ready VNET(flowtable_ready)
> in order to make it compile
>
> Best regards,
>
> Arno
>
> ###
> Index: net/flowtable.c
> =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
> --- net/flowtable.c =A0 =A0 (revision 196087)
> +++ net/flowtable.c =A0 =A0 (working copy)
> @@ -203,8 +203,10 @@
> =A0static VNET_DEFINE(int, flowtable_fin_wait_expire) =3D FIN_WAIT_IDLE;
> =A0static VNET_DEFINE(int, flowtable_tcp_expire) =3D TCP_IDLE;
> =A0static VNET_DEFINE(int, flowtable_nmbflows) =3D 4096;
> +static VNET_DEFINE(int, flowtable_ready) =3D 0;
>
> =A0#define =A0 =A0 =A0 =A0V_flowtable_enable =A0 =A0 =A0 =A0 =A0 =A0 =A0V=
NET(flowtable_enable)
> +#define =A0 =A0 =A0 =A0V_flowtable_ready =A0 =A0 =A0 =A0 =A0 =A0 =A0 VNE=
T(flowtable_ready)
> =A0#define =A0 =A0 =A0 =A0V_flowtable_hits =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0VNET(flowtable_hits)
> =A0#define =A0 =A0 =A0 =A0V_flowtable_lookups =A0 =A0 =A0 =A0 =A0 =A0 VNE=
T(flowtable_lookups)
> =A0#define =A0 =A0 =A0 =A0V_flowtable_misses =A0 =A0 =A0 =A0 =A0 =A0 =A0V=
NET(flowtable_misses)
> @@ -345,7 +347,7 @@
> =A0 =A0 =A0 =A0struct udphdr *uh;
> =A0 =A0 =A0 =A0struct sctphdr *sh;
>
> - =A0 =A0 =A0 if (V_flowtable_enable =3D=3D 0)
> + =A0 =A0 =A0 if ((V_flowtable_enable =3D=3D 0) || (V_flowtable_ready =3D=
=3D 0))
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0return (0);
>
> =A0 =A0 =A0 =A0key[1] =3D key[0] =3D 0;
> @@ -799,6 +801,7 @@
> =A0 =A0 =A0 =A0 =A0 =A0NULL, NULL, NULL, NULL, 64, UMA_ZONE_MAXBUCKET);
> =A0 =A0 =A0 =A0uma_zone_set_max(V_flow_ipv4_zone, V_flowtable_nmbflows);
> =A0 =A0 =A0 =A0uma_zone_set_max(V_flow_ipv6_zone, V_flowtable_nmbflows);
> + =A0 =A0 =A0 V_flowtable_ready =3D 1;
> =A0}
>
> =A0VNET_SYSINIT(flowtable_init, SI_SUB_KTHREAD_INIT, SI_ORDER_ANY,
>
>>
>>
>> On Tue, Aug 11, 2009 at 9:27 AM, Arno J.
>> Klaassen<arno@heho.snv.jussieu.fr> wrote:
>>>
>>> Robert Noland <rnoland@FreeBSD.org> writes:
>>>
>>>> On Mon, 2009-08-10 at 18:40 +0200, Arno J. Klaassen wrote:
>>>>> Hello,
>>>>>
>>>>> I get the following panic when pxebooting a 8.0-BETA2 on a
>>>>> VIA-C7-MB. The kernel is cross-build from a clean amd64-7-stable
>>>>> and I defined CPUTYPE?=3Dpentiumpro in make.conf.
>>>>>
>>>>> Let me know what I can provide more as info to get around this.
>>>>
>>>> I've seen this as well. =A0You can disable apic which I see has been
>>>> suggested. =A0The NMI seems to be generated by HWPMC_HOOKS, in my case
>>>> removing it from the GENERIC config allows it to boot and use apic. =
=A0I'm
>>>> not certain what the correct fix is, but after talking to jkoshy@ we d=
id
>>>> find the specific point in the HWPMC_HOOKS code that triggers this,
>>>> which can be disabled by testing for CPU_VENDOR_CENTAUR.
>>>>
>>>> The attached hack should get things booting...
>>>
>>>
>>> Correct. It now boots OK with apic enabled (but still panics
>>> at the 'flowtable bug').
>>> Thanks.
>>>
>>> Arno
>>>
>>>
>>>> robert.
>>>>
>>>>> Thanks in advance.
>>>>>
>>>>> Best, Arno
>>>>>
>>>>>
>>>>>
>>>>> #####
>>>>>
>>>>> OK boot -sv
>>>>> KDB: debugger backends: ddb
>>>>> KDB: current backend: ddb
>>>>> SMAP type=3D01 base=3D0000000000000000 len=3D000000000009f800
>>>>> SMAP type=3D02 base=3D000000000009f800 len=3D0000000000000800
>>>>> SMAP type=3D02 base=3D00000000000f0000 len=3D0000000000010000
>>>>> SMAP type=3D01 base=3D0000000000100000 len=3D000000007bde0000
>>>>> SMAP type=3D04 base=3D000000007bee0000 len=3D0000000000003000
>>>>> SMAP type=3D03 base=3D000000007bee3000 len=3D000000000000d000
>>>>> SMAP type=3D02 base=3D000000007bef0000 len=3D0000000000010000
>>>>> SMAP type=3D02 base=3D00000000e0000000 len=3D0000000010000000
>>>>> SMAP type=3D02 base=3D00000000fec00000 len=3D0000000000001000
>>>>> SMAP type=3D02 base=3D00000000fee00000 len=3D0000000000001000
>>>>> SMAP type=3D02 base=3D00000000ffff0000 len=3D0000000000010000
>>>>> Copyright (c) 1992-2009 The FreeBSD Project.
>>>>> Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1=
994
>>>>> =A0 =A0 =A0 =A0 The Regents of the University of California. All righ=
ts reserved.
>>>>> FreeBSD is a registered trademark of The FreeBSD Foundation.
>>>>> FreeBSD 8.0-BETA2 #1 r196087M: Mon Aug 10 15:16:20 CEST 2009
>>>>> =A0 =A0 toor@push:/raid1/obj/i386/raid1/bsd/8/src/sys/C7-FW
>>>>> WARNING: WITNESS option enabled, expect reduced performance.
>>>>> WARNING: DIAGNOSTIC option enabled, expect reduced performance.
>>>>> MEMGUARD DEBUGGING ALLOCATOR INITIALIZED:
>>>>> =A0 =A0 =A0 =A0 MEMGUARD map base: 0xc4c00000
>>>>> =A0 =A0 =A0 =A0 MEMGUARD map limit: 0xc6c01000
>>>>> =A0 =A0 =A0 =A0 MEMGUARD map size: 33558528 (Bytes)
>>>>> Preloaded elf kernel "/boot/kernel/kernel" at 0xc0bdc000.
>>>>> Timecounter "i8254" frequency 1193182 Hz quality 0
>>>>> Calibrating TSC clock ... TSC clock: 999896638 Hz
>>>>> CPU: VIA C7 Processor 1000MHz (999.90-MHz 686-class CPU)
>>>>> =A0 Origin =3D "CentaurHauls" =A0Id =3D 0x6d0 =A0Stepping =3D 0
>>>>> =A0 Features=3D0xa7c9bbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP=
,MTRR,PGE,CMOV,PAT,CLFLUSH,ACPI,MMX,FXSR,SSE,SSE2,TM,PBE>
>>>>> =A0 Features2=3D0x4181<SSE3,EST,TM2,xTPR>
>>>>> =A0 VIA Padlock Features=3D0xffcc<RNG,AES,AES-CTR,SHA1,SHA256,RSA>
>>>>> real memory =A0=3D 2079195136 (1982 MB)
>>>>> Physical memory chunk(s):
>>>>> 0x0000000000001000 - 0x000000000009efff, 647168 bytes (158 pages)
>>>>> 0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages)
>>>>> 0x0000000000c26000 - 0x0000000079baffff, 2029559808 bytes (495498 pag=
es)
>>>>> avail memory =3D 2027855872 (1933 MB)
>>>>> Table 'FACP' at 0x7bee3080
>>>>> Table 'MCFG' at 0x7bee6ec0
>>>>> Table 'APIC' at 0x7bee6e40
>>>>> MADT: Found table at 0x7bee6e40
>>>>> MP Configuration Table version 1.4 found at 0xc00f1ce0
>>>>> APIC: Using the MADT enumerator.
>>>>> MADT: Found CPU APIC ID 0 ACPI ID 0: enabled
>>>>> SMP: Added CPU 0 (AP)
>>>>> ACPI APIC Table: <VX800 =A0AWRDACPI>
>>>>> APIC: CPU 0 has ACPI ID 0
>>>>> bios32: Found BIOS32 Service Directory header at 0xc00f8f70
>>>>> bios32: Entry =3D 0xf9580 (c00f9580) =A0Rev =3D 0 =A0Len =3D 1
>>>>> pcibios: PCI BIOS entry at 0xf0000+0x95d0
>>>>> pnpbios: Found PnP BIOS data at 0xc00fa110
>>>>> pnpbios: Entry =3D f0000:a140 =A0Rev =3D 1.0
>>>>> Other BIOS signatures found:
>>>>> ULE: setup cpu 0
>>>>> ACPI: RSDP 0xf79d0 00014 (v0 VX800 )
>>>>> ACPI: RSDT 0x7bee3000 00030 (v1 VX800 =A0AWRDACPI 42302E31 AWRD 00000=
000)
>>>>> ACPI: FACP 0x7bee3080 00074 (v1 VX800 =A0AWRDACPI 42302E31 AWRD 00000=
000)
>>>>> ACPI: DSDT 0x7bee3100 03D16 (v1 VX800 =A0AWRDACPI 00001000 MSFT 03000=
000)
>>>>> ACPI: FACS 0x7bee0000 00040
>>>>> ACPI: MCFG 0x7bee6ec0 0003C (v1 VX800 =A0AWRDACPI 42302E31 AWRD 00000=
000)
>>>>> ACPI: APIC 0x7bee6e40 00066 (v1 VX800 =A0AWRDACPI 42302E31 AWRD 00000=
000)
>>>>> MADT: Found IO APIC ID 2, Interrupt 0 at 0xfec00000
>>>>> ioapic0: Routing external 8259A's -> intpin 0
>>>>> MADT: Found IO APIC ID 3, Interrupt 24 at 0xfecc0000
>>>>> MADT: Interrupt override: source 0, irq 2
>>>>> ioapic0: Routing IRQ 0 -> intpin 2
>>>>> MADT: Interrupt override: source 9, irq 9
>>>>> ioapic0: intpin 9 trigger: level
>>>>> ioapic0: intpin 9 polarity: low
>>>>> lapic0: Routing NMI -> LINT1
>>>>> lapic0: LINT1 trigger: edge
>>>>> lapic0: LINT1 polarity: high
>>>>> ioapic0 <Version 0.3> irqs 0-23 on motherboard
>>>>> ioapic1 <Version 0.3> irqs 24-47 on motherboard
>>>>> cpu0 BSP:
>>>>> =A0 =A0 =A0ID: 0x00000000 =A0 VER: 0x00050014 LDR: 0x00000000 DFR: 0x=
ffffffff
>>>>> =A0 lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001=
ff
>>>>> =A0 timer: 0x000100ef therm: 0x00010000 err: 0x00010000 pcm: 0x000004=
00
>>>>> null: <null device, zero device>
>>>>> nfslock: pseudo-device
>>>>> random: <entropy source, Hardware, VIA Nehemiah>
>>>>> io: <I/O>
>>>>> kbd: new array size 4
>>>>> kbd1 at kbdmux0
>>>>> mem: <memory>
>>>>> npx0: INT 16 interface
>>>>> acpi0: <VX800 AWRDACPI> on motherboard
>>>>> PCIe: Memory Mapped configuration base @ 0xe0000000
>>>>> pcibios: BIOS version 3.00
>>>>> ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48
>>>>> acpi0: [MPSAFE]
>>>>> acpi0: [ITHREAD]
>>>>> acpi0: Power Button (fixed)
>>>>> acpi0: wakeup code va 0xc4b9c000 pa 0x1000
>>>>> AcpiOsDerivePciId: \_SB_.PCI0.IDEC.SAPR -> bus 0 dev 15 func 0
>>>>> AcpiOsDerivePciId: \_SB_.PCI0.USB1.U2F0 -> bus 0 dev 16 func 0
>>>>> AcpiOsDerivePciId: \_SB_.PCI0.USB2.U2F1 -> bus 0 dev 16 func 1
>>>>> AcpiOsDerivePciId: \_SB_.PCI0.USB3.U2F2 -> bus 0 dev 16 func 2
>>>>> AcpiOsDerivePciId: \_SB_.PCI0.EHCI.U2F4 -> bus 0 dev 16 func 4
>>>>> AcpiOsDerivePciId: \_SB_.PCI0.AZAC.AZAR -> bus 0 dev 20 func 0
>>>>> AcpiOsDerivePciId: \_SB_.PCI0.PEXG.RPXG -> bus 0 dev 2 func 0
>>>>> AcpiOsDerivePciId: \_SB_.PCI0.PEX0.RPX0 -> bus 0 dev 3 func 0
>>>>> AcpiOsDerivePciId: \_SB_.PCI0.PEX1.RPX1 -> bus 0 dev 3 func 1
>>>>> AcpiOsDerivePciId: \_SB_.PCI0.P2PB.P2PR -> bus 0 dev 19 func 0
>>>>> AcpiOsDerivePciId: \_SB_.PCI0.VT86.VTSB -> bus 0 dev 17 func 0
>>>>> acpi0: reservation of 0, a0000 (3) failed
>>>>> acpi0: reservation of 100000, 7bde0000 (3) failed
>>>>> 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 0x408-0x40b on acpi0
>>>>> pci_link0: =A0 =A0 =A0 =A0Index =A0IRQ =A0Rtd =A0Ref =A0IRQs
>>>>> =A0 Initial Probe =A0 =A0 =A0 0 =A0 10 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> =A0 Validation =A0 =A0 =A0 =A0 =A00 =A0 10 =A0 N =A0 =A0 0 =A03 4 6 7=
 10 11 12
>>>>> =A0 After Disable =A0 =A0 =A0 0 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> pci_link1: =A0 =A0 =A0 =A0Index =A0IRQ =A0Rtd =A0Ref =A0IRQs
>>>>> =A0 Initial Probe =A0 =A0 =A0 0 =A0 11 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> =A0 Validation =A0 =A0 =A0 =A0 =A00 =A0 11 =A0 N =A0 =A0 0 =A03 4 6 7=
 10 11 12
>>>>> =A0 After Disable =A0 =A0 =A0 0 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> pci_link2: =A0 =A0 =A0 =A0Index =A0IRQ =A0Rtd =A0Ref =A0IRQs
>>>>> =A0 Initial Probe =A0 =A0 =A0 0 =A0 =A07 =A0 N =A0 =A0 0 =A03 4 6 7 1=
0 11 12
>>>>> =A0 Validation =A0 =A0 =A0 =A0 =A00 =A0 =A07 =A0 N =A0 =A0 0 =A03 4 6=
 7 10 11 12
>>>>> =A0 After Disable =A0 =A0 =A0 0 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> pci_link3: =A0 =A0 =A0 =A0Index =A0IRQ =A0Rtd =A0Ref =A0IRQs
>>>>> =A0 Initial Probe =A0 =A0 =A0 0 =A0 =A05 =A0 N =A0 =A0 0 =A03 4 6 7 1=
0 11 12
>>>>> =A0 Validation =A0 =A0 =A0 =A0 =A00 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7=
 10 11 12
>>>>> =A0 After Disable =A0 =A0 =A0 0 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> pci_link4: =A0 =A0 =A0 =A0Index =A0IRQ =A0Rtd =A0Ref =A0IRQs
>>>>> =A0 Initial Probe =A0 =A0 =A0 0 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> =A0 Validation =A0 =A0 =A0 =A0 =A00 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7=
 10 11 12
>>>>> =A0 After Disable =A0 =A0 =A0 0 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> pci_link5: =A0 =A0 =A0 =A0Index =A0IRQ =A0Rtd =A0Ref =A0IRQs
>>>>> =A0 Initial Probe =A0 =A0 =A0 0 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> =A0 Validation =A0 =A0 =A0 =A0 =A00 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7=
 10 11 12
>>>>> =A0 After Disable =A0 =A0 =A0 0 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> pci_link6: =A0 =A0 =A0 =A0Index =A0IRQ =A0Rtd =A0Ref =A0IRQs
>>>>> =A0 Initial Probe =A0 =A0 =A0 0 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> =A0 Validation =A0 =A0 =A0 =A0 =A00 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7=
 10 11 12
>>>>> =A0 After Disable =A0 =A0 =A0 0 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> pci_link7: =A0 =A0 =A0 =A0Index =A0IRQ =A0Rtd =A0Ref =A0IRQs
>>>>> =A0 Initial Probe =A0 =A0 =A0 0 =A0 11 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> =A0 Validation =A0 =A0 =A0 =A0 =A00 =A0 11 =A0 N =A0 =A0 0 =A03 4 6 7=
 10 11 12
>>>>> =A0 After Disable =A0 =A0 =A0 0 =A0255 =A0 N =A0 =A0 0 =A03 4 6 7 10 =
11 12
>>>>> acpi_button0: <Power Button> on acpi0
>>>>> acpi_button1: <Sleep Button> on acpi0
>>>>> pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
>>>>> pci0: <ACPI PCI bus> on pcib0
>>>>> pci0: domain=3D0, physical bus=3D0
>>>>> found-> vendor=3D0x1106, dev=3D0x0353, revid=3D0x11
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D0, func=3D0
>>>>> =A0 =A0 =A0 =A0 class=3D06-00-00, hdrtype=3D0x00, mfdev=3D1
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0006, statreg=3D0x0200, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x08 (240 ns), mingnt=3D0x00 (0 ns), maxla=
t=3D0x00 (0 ns)
>>>>> found-> vendor=3D0x1106, dev=3D0x1353, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D0, func=3D1
>>>>> =A0 =A0 =A0 =A0 class=3D06-00-00, hdrtype=3D0x00, mfdev=3D0
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0006, statreg=3D0x0200, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=
=3D0x00 (0 ns)
>>>>> found-> vendor=3D0x1106, dev=3D0x2353, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D0, func=3D2
>>>>> =A0 =A0 =A0 =A0 class=3D06-00-00, hdrtype=3D0x00, mfdev=3D0
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0006, statreg=3D0x0200, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=
=3D0x00 (0 ns)
>>>>> found-> vendor=3D0x1106, dev=3D0x3353, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D0, func=3D3
>>>>> =A0 =A0 =A0 =A0 class=3D06-00-00, hdrtype=3D0x00, mfdev=3D0
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0006, statreg=3D0x0200, cachelnsz=3D0 (dwo=
rds)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=
=3D0x00 (0 ns)
>>>>> found-> vendor=3D0x1106, dev=3D0x4353, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D0, func=3D4
>>>>> =A0 =A0 =A0 =A0 class=3D06-00-00, hdrtype=3D0x00, mfdev=3D0
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0006, statreg=3D0x0200, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=
=3D0x00 (0 ns)
>>>>> found-> vendor=3D0x1106, dev=3D0x5353, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D0, func=3D5
>>>>> =A0 =A0 =A0 =A0 class=3D08-00-20, hdrtype=3D0x00, mfdev=3D1
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0006, statreg=3D0x0000, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=
=3D0x00 (0 ns)
>>>>> found-> vendor=3D0x1106, dev=3D0x6353, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D0, func=3D6
>>>>> =A0 =A0 =A0 =A0 class=3D06-00-00, hdrtype=3D0x00, mfdev=3D1
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0006, statreg=3D0x0000, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=
=3D0x00 (0 ns)
>>>>> found-> vendor=3D0x1106, dev=3D0x7353, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D0, func=3D7
>>>>> =A0 =A0 =A0 =A0 class=3D06-00-00, hdrtype=3D0x00, mfdev=3D0
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0006, statreg=3D0x0200, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=
=3D0x00 (0 ns)
>>>>> found-> vendor=3D0x1106, dev=3D0x1122, revid=3D0x11
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D1, func=3D0
>>>>> =A0 =A0 =A0 =A0 class=3D03-00-00, hdrtype=3D0x00, mfdev=3D0
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0007, statreg=3D0x3010, cachelnsz=3D0 (dwo=
rds)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x20 (960 ns), mingnt=3D0x00 (0 ns), maxla=
t=3D0x00 (0 ns)
>>>>> =A0 =A0 =A0 =A0 intpin=3Da, irq=3D10
>>>>> =A0 =A0 =A0 =A0 powerspec 2 =A0supports D0 D1 D2 D3 =A0current D0
>>>>> =A0 =A0 =A0 =A0 MSI supports 1 message
>>>>> =A0 =A0 =A0 =A0 map[10]: type Prefetchable Memory, range 32, base 0xd=
8000000, size 26, enabled
>>>>> =A0 =A0 =A0 =A0 map[14]: type Memory, range 32, base 0xde000000, size=
 24, enabled
>>>>> =A0 =A0 =A0 =A0 map[18]: type Memory, range 32, base 0xc0000000, size=
 28, enabled
>>>>> pcib0: matched entry for 0.1.INTA
>>>>> pcib0: slot 1 INTA hardwired to IRQ 16
>>>>> found-> vendor=3D0x1106, dev=3D0xc353, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D2, func=3D0
>>>>> =A0 =A0 =A0 =A0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x00 (0 ns), mingnt=3D0x04 (1000 ns), maxl=
at=3D0x00 (0 ns)
>>>>> =A0 =A0 =A0 =A0 intpin=3Da, irq=3D11
>>>>> =A0 =A0 =A0 =A0 powerspec 2 =A0supports D0 D3 =A0current D0
>>>>> =A0 =A0 =A0 =A0 MSI supports 1 message, 64 bit, vector masks
>>>>> pcib0: matched entry for 0.2.INTA
>>>>> pcib0: slot 2 INTA hardwired to IRQ 27
>>>>> found-> vendor=3D0x1106, dev=3D0xe353, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D3, func=3D0
>>>>> =A0 =A0 =A0 =A0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x00 (0 ns), mingnt=3D0x04 (1000 ns), maxl=
at=3D0x00 (0 ns)
>>>>> =A0 =A0 =A0 =A0 intpin=3Da, irq=3D11
>>>>> =A0 =A0 =A0 =A0 powerspec 2 =A0supports D0 D3 =A0current D0
>>>>> =A0 =A0 =A0 =A0 MSI supports 1 message, 64 bit, vector masks
>>>>> pcib0: matched entry for 0.3.INTA
>>>>> pcib0: slot 3 INTA hardwired to IRQ 31
>>>>> found-> vendor=3D0x1106, dev=3D0xf353, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D3, func=3D1
>>>>> =A0 =A0 =A0 =A0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x00 (0 ns), mingnt=3D0x04 (1000 ns), maxl=
at=3D0x00 (0 ns)
>>>>> =A0 =A0 =A0 =A0 intpin=3Db, irq=3D11
>>>>> =A0 =A0 =A0 =A0 powerspec 2 =A0supports D0 D3 =A0current D0
>>>>> =A0 =A0 =A0 =A0 MSI supports 1 message, 64 bit, vector masks
>>>>> pcib0: matched entry for 0.3.INTB
>>>>> pcib0: slot 3 INTB hardwired to IRQ 39
>>>>> found-> vendor=3D0x1106, dev=3D0x5324, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D15, func=3D0
>>>>> =A0 =A0 =A0 =A0 class=3D01-01-8a, hdrtype=3D0x00, mfdev=3D0
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0007, statreg=3D0x0290, cachelnsz=3D0 (dwo=
rds)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x20 (960 ns), mingnt=3D0x00 (0 ns), maxla=
t=3D0x00 (0 ns)
>>>>> =A0 =A0 =A0 =A0 powerspec 2 =A0supports D0 D3 =A0current D0
>>>>> =A0 =A0 =A0 =A0 map[20]: type I/O Port, range 32, base 0xfc00, size =
=A04, enabled
>>>>> found-> vendor=3D0x1106, dev=3D0x3038, revid=3D0xa0
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D16, func=3D0
>>>>> =A0 =A0 =A0 =A0 class=3D0c-03-00, hdrtype=3D0x00, mfdev=3D1
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0007, statreg=3D0x0218, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x20 (960 ns), mingnt=3D0x00 (0 ns), maxla=
t=3D0x00 (0 ns)
>>>>> =A0 =A0 =A0 =A0 intpin=3Da, irq=3D10
>>>>> =A0 =A0 =A0 =A0 powerspec 2 =A0supports D0 D1 D2 D3 =A0current D0
>>>>> =A0 =A0 =A0 =A0 map[20]: type I/O Port, range 32, base 0xf800, size =
=A05, enabled
>>>>> pcib0: matched entry for 0.16.INTA
>>>>> pcib0: slot 16 INTA hardwired to IRQ 20
>>>>> found-> vendor=3D0x1106, dev=3D0x3038, revid=3D0xa0
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D16, func=3D1
>>>>> =A0 =A0 =A0 =A0 class=3D0c-03-00, hdrtype=3D0x00, mfdev=3D1
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0007, statreg=3D0x0210, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x20 (960 ns), mingnt=3D0x00 (0 ns), maxla=
t=3D0x00 (0 ns)
>>>>> =A0 =A0 =A0 =A0 intpin=3Db, irq=3D11
>>>>> =A0 =A0 =A0 =A0 powerspec 2 =A0supports D0 D1 D2 D3 =A0current D0
>>>>> =A0 =A0 =A0 =A0 map[20]: type I/O Port, range 32, base 0xf400, size =
=A05, enabled
>>>>> pcib0: matched entry for 0.16.INTB
>>>>> pcib0: slot 16 INTB hardwired to IRQ 22
>>>>> found-> vendor=3D0x1106, dev=3D0x3038, revid=3D0xa0
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D16, func=3D2
>>>>> =A0 =A0 =A0 =A0 class=3D0c-03-00, hdrtype=3D0x00, mfdev=3D1
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0007, statreg=3D0x0210, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x20 (960 ns), mingnt=3D0x00 (0 ns), maxla=
t=3D0x00 (0 ns)
>>>>> =A0 =A0 =A0 =A0 intpin=3Dc, irq=3D7
>>>>> =A0 =A0 =A0 =A0 powerspec 2 =A0supports D0 D1 D2 D3 =A0current D0
>>>>> =A0 =A0 =A0 =A0 map[20]: type I/O Port, range 32, base 0xf000, size =
=A05, enabled
>>>>> pcib0: matched entry for 0.16.INTC
>>>>> pcib0: slot 16 INTC hardwired to IRQ 21
>>>>> found-> vendor=3D0x1106, dev=3D0x3104, revid=3D0x90
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D16, func=3D4
>>>>> =A0 =A0 =A0 =A0 class=3D0c-03-20, hdrtype=3D0x00, mfdev=3D1
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0007, statreg=3D0x0210, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x20 (960 ns), mingnt=3D0x00 (0 ns), maxla=
t=3D0x00 (0 ns)
>>>>> =A0 =A0 =A0 =A0 intpin=3Dd, irq=3D5
>>>>> =A0 =A0 =A0 =A0 powerspec 2 =A0supports D0 D1 D2 D3 =A0current D0
>>>>> =A0 =A0 =A0 =A0 map[10]: type Memory, range 32, base 0xdffff000, size=
 =A08, enabled
>>>>> pcib0: matched entry for 0.16.INTD
>>>>> pcib0: slot 16 INTD hardwired to IRQ 23
>>>>> found-> vendor=3D0x1106, dev=3D0x8353, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D17, func=3D0
>>>>> =A0 =A0 =A0 =A0 class=3D06-01-00, hdrtype=3D0x00, mfdev=3D1
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0003, statreg=3D0x0210, cachelnsz=3D0 (dwo=
rds)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=
=3D0x00 (0 ns)
>>>>> =A0 =A0 =A0 =A0 powerspec 2 =A0supports D0 D3 =A0current D0
>>>>> found-> vendor=3D0x1106, dev=3D0xa353, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D17, func=3D7
>>>>> =A0 =A0 =A0 =A0 class=3D06-00-00, hdrtype=3D0x00, mfdev=3D0
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0000, statreg=3D0x2200, cachelnsz=3D0 (dwo=
rds)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x20 (960 ns), mingnt=3D0x00 (0 ns), maxla=
t=3D0x00 (0 ns)
>>>>> found-> vendor=3D0x1106, dev=3D0xb353, revid=3D0x00
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D19, func=3D0
>>>>> =A0 =A0 =A0 =A0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0007, statreg=3D0x2010, cachelnsz=3D0 (dwo=
rds)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x00 (0 ns), mingnt=3D0x04 (1000 ns), maxl=
at=3D0x00 (0 ns)
>>>>> found-> vendor=3D0x1106, dev=3D0x3288, revid=3D0x10
>>>>> =A0 =A0 =A0 =A0 domain=3D0, bus=3D0, slot=3D20, func=3D0
>>>>> =A0 =A0 =A0 =A0 class=3D04-03-00, hdrtype=3D0x00, mfdev=3D0
>>>>> =A0 =A0 =A0 =A0 cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D16 (dw=
ords)
>>>>> =A0 =A0 =A0 =A0 lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=
=3D0x00 (0 ns)
>>>>> =A0 =A0 =A0 =A0 intpin=3Da, irq=3D10
>>>>> =A0 =A0 =A0 =A0 powerspec 2 =A0supports D0 D3 =A0current D0
>>>>> =A0 =A0 =A0 =A0 MSI supports 1 message, 64 bit
>>>>> =A0 =A0 =A0 =A0 map[10]: type Memory, range 64, base 0xdfff8000, size=
 14, enabled
>>>>> pcib0: matched entry for 0.20.INTA
>>>>> pcib0: slot 20 INTA hardwired to IRQ 17
>>>>> NMI ISA 3c, EISA 0
>>>>> NMI ... going to debugger
>>>>> [thread pid 0 tid 100000 ]
>>>>> Stopped at =A0 =A0 =A00xc060098f =3D vsscanf+0x98f: =A0 =A0 movl =A0 =
=A0%edx,0xfffffe8c(%ebp)
>>>>> db> ps
>>>>> =A0 pid =A0ppid =A0pgrp =A0 uid =A0 state =A0 wmesg =A0 =A0 wchan =A0=
 =A0cmd
>>>>> =A0 =A0 5 =A0 =A0 0 =A0 =A0 0 =A0 =A0 0 =A0RL =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 =A0 =A0 =A0 =A0 =A0[xpt_thrd]
>>>>> =A0 =A0 4 =A0 =A0 0 =A0 =A0 0 =A0 =A0 0 =A0RL =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 =A0 =A0 =A0 =A0 =A0[g_down]
>>>>> =A0 =A0 3 =A0 =A0 0 =A0 =A0 0 =A0 =A0 0 =A0RL =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 =A0 =A0 =A0 =A0 =A0[g_up]
>>>>> =A0 =A0 2 =A0 =A0 0 =A0 =A0 0 =A0 =A0 0 =A0RL =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 =A0 =A0 =A0 =A0 =A0[g_event]
>>>>> =A0 =A012 =A0 =A0 0 =A0 =A0 0 =A0 =A0 0 =A0WL =A0 =A0 =A0(threaded) =
=A0 =A0 =A0 =A0 =A0intr
>>>>> 100021 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 I =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 [irq9: acpi0]
>>>>> 100016 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 I =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 [swi2: cambio]
>>>>> 100014 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 I =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 [swi6: task queue]
>>>>> 100013 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 I =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 [swi6: Giant taskq]
>>>>> 100011 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 I =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 [swi5: +]
>>>>> 100006 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 I =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 [swi1: netisr 0]
>>>>> 100005 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 I =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 [swi4: clock]
>>>>> 100004 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 I =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 [swi3: vm]
>>>>> =A0 =A011 =A0 =A0 0 =A0 =A0 0 =A0 =A0 0 =A0RL =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 =A0 =A0 =A0 =A0 =A0[idle: cpu0]
>>>>> =A0 =A0 1 =A0 =A0 0 =A0 =A0 0 =A0 =A0 0 =A0?L =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 =A0 =A0 =A0 =A0 =A0[kernel]
>>>>> =A0 =A010 =A0 =A0 0 =A0 =A0 0 =A0 =A0 0 =A0RL =A0 =A0 =A0 =A0 =A0 =A0=
 =A0 =A0 =A0 =A0 =A0 =A0 =A0[audit]
>>>>> =A0 =A0 0 =A0 =A0 0 =A0 =A0 0 =A0 =A0 0 =A0RLs =A0 =A0 (threaded) =A0=
 =A0 =A0 =A0 =A0kernel
>>>>> 100020 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 RunQ =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0[acpi_task_2]
>>>>> 100019 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 RunQ =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0[acpi_task_1]
>>>>> 100018 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 RunQ =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0[acpi_task_0]
>>>>> 100017 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 RunQ =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0[kqueue taskq]
>>>>> 100012 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 RunQ =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0[thread taskq]
>>>>> 100010 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 RunQ =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0[firmware taskq]
>>>>> 100000 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 Run =A0 =A0 CPU 0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 [swapper]
>>>>> db> where
>>>>> Tracing pid 0 tid 100000 td 0xc0934590
>>>>> vsscanf(c6ce5440,c089c6a3,c0c207b0,c0c207b0,c0c208c4,...) at 0xc06009=
8f =3D vsscanf+0x98f
>>>>> sscanf(c6ce5440,c089c6a3,c0c20894,c0c207f0,c0c20874,...) at 0xc0600a2=
2 =3D sscanf+0x22
>>>>> res_find(c0c20940,c089252b,0,0,0,...) at 0xc05f7ba9 =3D res_find+0x31=
9
>>>>> resource_find(c0c20940,c089252b,0,0,0,...) at 0xc05f7eda =3D resource=
_find+0x5a
>>>>> resource_string_value(c6d117b0,2,c089252b,c0c20964,ffffffff,...) at 0=
xc05f8041 =3D resource_string_value+0x61
>>>>> devclass_add_device(101,c6d0acc0,c6dffb80,c0c209c0,c05f3e6b,...) at 0=
xc05f071e =3D devclass_add_device+0x16e
>>>>> device_set_devclass(c6dffb80,c08852dc,c089d6c5,c6dffbbc,c6dffbbc,...)=
 at 0xc05f16af =3D device_set_devclass+0x6f
>>>>> device_probe_child(c6dff780,c6dffb80,0,c6d11780,c6dffb80,...) at 0xc0=
5f3e6b =3D device_probe_child+0xfb
>>>>> device_probe(c6dffb80,c0c20a1c,c048ebcc,c091efd4,c6dffb80,...) at 0xc=
05f4160 =3D device_probe+0xa0
>>>>> device_probe_and_attach(c6dffb80,c6dff780,0,c6df3080,c6df3080,...) at=
 0xc05f4238 =3D device_probe_and_attach+0x48
>>>>> bus_generic_attach(c6dff780,c6dd86c0,1,c04b21a0,c6dff780,0,c6dd86c0) =
at 0xc05f42a8 =3D bus_generic_attach+0x48
>>>>> acpi_pci_attach(c6dff780,c6dba05c,c08e9428,c089bed4,80000000,...) at =
0xc04b275c =3D acpi_pci_attach+0x18c
>>>>> device_attach(c6dff780,c6d10e88,c6d10e88,c6df3080) at 0xc05f34c7 =3D =
device_attach+0x3b7
>>>>> device_probe_and_attach(c6dff780,c04b4680,c6d77000,c6df3080,c6d77000,=
...) at 0xc05f4255 =3D device_probe_and_attach+0x65
>>>>> bus_generic_attach(c6df3080,c08c3e86,0,c0c20ae0,c6dd86c0,...) at 0xc0=
5f42a8 =3D bus_generic_attach+0x48
>>>>> acpi_pcib_attach(c6df3080,c6de82d4,0,c0c20b10,2,...) at 0xc04b4911 =
=3D acpi_pcib_attach+0x1a1
>>>>> acpi_pcib_acpi_attach(c6df3080,c6d8a85c,c08e9428,c089bed4,80000000,..=
.) at 0xc04b54a1 =3D acpi_pcib_acpi_attach+0x251
>>>>> device_attach(c6df3080,c0c20b84,c05f8cd1,c6d19ca0) at 0xc05f34c7 =3D =
device_attach+0x3b7
>>>>> device_probe_and_attach(c6df3080,c08e9418,fffeffff,c6dd1900,fffeffff,=
...) at 0xc05f4255 =3D device_probe_and_attach+0x65
>>>>> bus_generic_attach(c6d77000,fff80000,fffeffff,c6deb468,fff80000,...) =
at 0xc05f42a8 =3D bus_generic_attach+0x48
>>>>> acpi_attach(c6d77000,c6d8385c,c08e9428,c089bed4,80000000,...) at 0xc0=
4aa1ae =3D acpi_attach+0xbbe
>>>>> device_attach(c6d77000,c6ce4c50,0,c6d77500) at 0xc05f34c7 =3D device_=
attach+0x3b7
>>>>> device_probe_and_attach(c6d77000,c087ebd2,0,c6d77500,c6d77500,...) at=
 0xc05f4255 =3D device_probe_and_attach+0x65
>>>>> bus_generic_attach(c6d77500,a,c087ebd2,0) at 0xc05f42a8 =3D bus_gener=
ic_attach+0x48
>>>>> nexus_acpi_attach(c6d77500,c6da785c,c08e9428,c089bed4,80000000,...) a=
t 0xc081caae =3D nexus_acpi_attach+0x7e
>>>>> device_attach(c6d77500,c089df99,184,20000) at 0xc05f34c7 =3D device_a=
ttach+0x3b7
>>>>> device_probe_and_attach(c6d77500,c6d77c80,c6d77c80,c6d19100,c6d77c80,=
...) at 0xc05f4255 =3D device_probe_and_attach+0x65
>>>>> bus_generic_new_pass(c6d77c80,c6d79000,c08e9368,c08cf034,fffffff,...)=
 at 0xc05f449d =3D bus_generic_new_pass+0xcd
>>>>> bus_set_pass(7fffffff,c0c20d6c,c081efdc,fffffff,c0c20d88,...) at 0xc0=
5f2341 =3D bus_set_pass+0x81
>>>>> root_bus_configure(fffffff,c0c20d88,c05839d6,0,c1ec00,...) at 0xc05f2=
392 =3D root_bus_configure+0x12
>>>>> configure(0,c1ec00,c1ec00,c1e000,c25000,...) at 0xc081efdc =3D config=
ure+0xc
>>>>> mi_startup() at 0xc05839d6 =3D mi_startup+0xa6
>>>>> begin() at 0xc0453005 =3D begin+0x2c
>>>>> db>
>>>>> _______________________________________________
>>>>> freebsd-current@freebsd.org mailing list
>>>>> http://lists.freebsd.org/mailman/listinfo/freebsd-current
>>>>> To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd=
.org"
>>>
>>> --
>>>
>>> =A0Arno J. Klaassen
>>>
>>> =A0SCITO S.A.
>>> =A08 rue des Haies
>>> =A0F-75020 Paris, France
>>> =A0http://scito.com
>>> _______________________________________________
>>> freebsd-current@freebsd.org mailing list
>>> http://lists.freebsd.org/mailman/listinfo/freebsd-current
>>> To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.o=
rg"
>>>
>
> --
>
> =A0Arno J. Klaassen
>
> =A0SCITO S.A.
> =A08 rue des Haies
> =A0F-75020 Paris, France
> =A0http://scito.com
> _______________________________________________
> freebsd-current@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-current
> To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org=
"
>



--=20
When bad men combine, the good must associate; else they will fall one
by one, an unpitied sacrifice in a contemptible struggle.

    Edmund Burke



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