>Synopsis: <Pf Queueing: Everything ends up to default queue>
>Category: <Packet Filter Queueing>
>Environment:
System : OpenBSD 6.0
Details : OpenBSD 6.0-current (GENERIC.MP) #2568: Fri Oct 14
07:39:58 MDT 2016
[email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP
Architecture: OpenBSD.amd64
Machine : amd64
>Description:
It seems that when PF creates a state from a matched rule with the “set queue”
command,
the state is created without the required queue assignment. Then, all network
packets
that match the newly created state are assigned to the default queue.
Adding the “no state” command to the same PF rule fixes the problem.
>How-To-Repeat:
pf.conf code:
=======
queue root_up on em0 bandwidth 1560K
queue standard_up parent root_up bandwidth 1024K
queue background_up parent root_up bandwidth 512K max 512K default
pass out on em0 inet proto tcp to any port ssh set queue standard_up
=======
With this sample code, the ssh traffic flowing out em0 is assigned to the wrong
background_up queue
>Fix:
pf.conf code:
=======
queue root_up on em0 bandwidth 1560K
queue standard_up parent root_up bandwidth 1024K
queue background_up parent root_up bandwidth 512K max 512K default
pass out on em0 inet proto tcp to any port ssh no state set queue standard_up
=======
Adding the “no state” command to the same rule, the ssh traffic is assigned to
the right queue. Of course this is not a solution; It’s just to show you the
issue.
dmesg:
OpenBSD 6.0-current (GENERIC.MP) #2568: Fri Oct 14 07:39:58 MDT 2016
[email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 788463616 (751MB)
avail mem = 760090624 (724MB)
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.4 @ 0xe0010 (248 entries)
bios0: vendor Phoenix Technologies LTD version "6.00" date 07/02/2015
bios0: VMware, Inc. VMware Virtual Platform
acpi0 at bios0: rev 2
acpi0: sleep states S0 S1 S4 S5
acpi0: tables DSDT FACP BOOT APIC MCFG SRAT HPET WAET
acpi0: wakeup devices PCI0(S3) USB_(S1) P2P0(S3) S1F0(S3) S2F0(S3) S8F0(S3)
S16F(S3) S17F(S3) S18F(S3) S22F(S3) S23F(S3) S24F(S3) S25F(S3) PE40(S3)
S1F0(S3) PE50(S3) [...]
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Core(TM) i7-4850HQ CPU @ 2.30GHz, 2294.14 MHz
cpu0:
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,MMX,FXSR,SSE,SSE2,SS,SSE3,PCLMUL,SSSE3,FMA3,CX16,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,HV,NXE,PAGE1GB,LONG,LAHF,ABM,PERF,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,SENSOR,ARAT
cpu0: 256KB 64b/line 8-way L2 cache
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges
cpu0: apic clock running at 65MHz
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Core(TM) i7-4850HQ CPU @ 2.30GHz, 2293.99 MHz
cpu1:
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,MMX,FXSR,SSE,SSE2,SS,SSE3,PCLMUL,SSSE3,FMA3,CX16,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,HV,NXE,PAGE1GB,LONG,LAHF,ABM,PERF,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,SENSOR,ARAT
cpu1: 256KB 64b/line 8-way L2 cache
cpu1: smt 0, core 0, package 2
cpu2 at mainbus0: apid 4 (application processor)
cpu2: Intel(R) Core(TM) i7-4850HQ CPU @ 2.30GHz, 2293.97 MHz
cpu2:
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,MMX,FXSR,SSE,SSE2,SS,SSE3,PCLMUL,SSSE3,FMA3,CX16,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,HV,NXE,PAGE1GB,LONG,LAHF,ABM,PERF,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,SENSOR,ARAT
cpu2: 256KB 64b/line 8-way L2 cache
cpu2: smt 0, core 0, package 4
cpu3 at mainbus0: apid 6 (application processor)
cpu3: Intel(R) Core(TM) i7-4850HQ CPU @ 2.30GHz, 2293.79 MHz
cpu3:
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,MMX,FXSR,SSE,SSE2,SS,SSE3,PCLMUL,SSSE3,FMA3,CX16,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,HV,NXE,PAGE1GB,LONG,LAHF,ABM,PERF,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,SENSOR,ARAT
cpu3: 256KB 64b/line 8-way L2 cache
cpu3: smt 0, core 0, package 6
ioapic0 at mainbus0: apid 1 pa 0xfec00000, version 11, 24 pins
acpimcfg0 at acpi0 addr 0xf0000000, bus 0-127
acpihpet0 at acpi0: 14318179 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpicpu0 at acpi0: C1(@1 halt!)
acpicpu1 at acpi0: C1(@1 halt!)
acpicpu2 at acpi0: C1(@1 halt!)
acpicpu3 at acpi0: C1(@1 halt!)
"PNP0001" at acpi0 not configured
"PNP0303" at acpi0 not configured
"VMW0003" at acpi0 not configured
"PNP0A05" at acpi0 not configured
acpiac0 at acpi0: AC unit online
pvbus0 at mainbus0: VMware
vmt0 at pvbus0
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel 82443BX AGP" rev 0x01
ppb0 at pci0 dev 1 function 0 "Intel 82443BX AGP" rev 0x01
pci1 at ppb0 bus 1
pcib0 at pci0 dev 7 function 0 "Intel 82371AB PIIX4 ISA" rev 0x08
pciide0 at pci0 dev 7 function 1 "Intel 82371AB IDE" rev 0x01: DMA, channel 0
configured to compatibility, channel 1 configured to compatibility
pciide0: channel 0 disabled (no drives)
atapiscsi0 at pciide0 channel 1 drive 0
scsibus1 at atapiscsi0: 2 targets
cd0 at scsibus1 targ 0 lun 0: <NECVMWar, VMware IDE CDR10, 1.00> ATAPI 5/cdrom
removable
cd0(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 2
piixpm0 at pci0 dev 7 function 3 "Intel 82371AB Power" rev 0x08: SMBus disabled
"VMware VMCI" rev 0x10 at pci0 dev 7 function 7 not configured
vga1 at pci0 dev 15 function 0 "VMware SVGA II" rev 0x00
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
mpi0 at pci0 dev 16 function 0 "Symbios Logic 53c1030" rev 0x01: apic 1 int 17
mpi0: 0, firmware 1.3.41.32
scsibus2 at mpi0: 16 targets, initiator 7
sd0 at scsibus2 targ 0 lun 0: <VMware,, VMware Virtual S, 1.0> SCSI2 0/direct
fixed
sd0: 8192MB, 512 bytes/sector, 16777216 sectors
mpi0: target 0 Sync at 160MHz width 16bit offset 127 QAS 1 DT 1 IU 1
ppb1 at pci0 dev 17 function 0 "VMware PCI" rev 0x02
pci2 at ppb1 bus 2
uhci0 at pci2 dev 0 function 0 "VMware UHCI" rev 0x00: apic 1 int 18
ehci0 at pci2 dev 3 function 0 "VMware EHCI" rev 0x00: apic 1 int 17
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 configuration 1 interface 0 "VMware EHCI root hub" rev 2.00/1.00
addr 1
usb1 at uhci0: USB revision 1.0
uhub1 at usb1 configuration 1 interface 0 "VMware UHCI root hub" rev 1.00/1.00
addr 1
ppb2 at pci0 dev 21 function 0 "VMware PCIE" rev 0x01
pci3 at ppb2 bus 3
xhci0 at pci3 dev 0 function 0 "VMware xHCI" rev 0x00: apic 1 int 18
usb2 at xhci0: USB revision 3.0
uhub2 at usb2 configuration 1 interface 0 "VMware xHCI root hub" rev 3.00/1.00
addr 1
ppb3 at pci0 dev 21 function 1 "VMware PCIE" rev 0x01
pci4 at ppb3 bus 4
ppb4 at pci0 dev 21 function 2 "VMware PCIE" rev 0x01
pci5 at ppb4 bus 5
ppb5 at pci0 dev 21 function 3 "VMware PCIE" rev 0x01
pci6 at ppb5 bus 6
ppb6 at pci0 dev 21 function 4 "VMware PCIE" rev 0x01
pci7 at ppb6 bus 7
ppb7 at pci0 dev 21 function 5 "VMware PCIE" rev 0x01
pci8 at ppb7 bus 8
ppb8 at pci0 dev 21 function 6 "VMware PCIE" rev 0x01
pci9 at ppb8 bus 9
ppb9 at pci0 dev 21 function 7 "VMware PCIE" rev 0x01
pci10 at ppb9 bus 10
ppb10 at pci0 dev 22 function 0 "VMware PCIE" rev 0x01
pci11 at ppb10 bus 11
em0 at pci11 dev 0 function 0 "Intel 82574L" rev 0x00: apic 1 int 19, address
00:0c:29:9a:38:5c
ppb11 at pci0 dev 22 function 1 "VMware PCIE" rev 0x01
pci12 at ppb11 bus 12
ppb12 at pci0 dev 22 function 2 "VMware PCIE" rev 0x01
pci13 at ppb12 bus 13
ppb13 at pci0 dev 22 function 3 "VMware PCIE" rev 0x01
pci14 at ppb13 bus 14
ppb14 at pci0 dev 22 function 4 "VMware PCIE" rev 0x01
pci15 at ppb14 bus 15
ppb15 at pci0 dev 22 function 5 "VMware PCIE" rev 0x01
pci16 at ppb15 bus 16
ppb16 at pci0 dev 22 function 6 "VMware PCIE" rev 0x01
pci17 at ppb16 bus 17
ppb17 at pci0 dev 22 function 7 "VMware PCIE" rev 0x01
pci18 at ppb17 bus 18
ppb18 at pci0 dev 23 function 0 "VMware PCIE" rev 0x01
pci19 at ppb18 bus 19
em1 at pci19 dev 0 function 0 "Intel 82574L" rev 0x00: apic 1 int 16, address
00:0c:29:9a:38:66
ppb19 at pci0 dev 23 function 1 "VMware PCIE" rev 0x01
pci20 at ppb19 bus 20
ppb20 at pci0 dev 23 function 2 "VMware PCIE" rev 0x01
pci21 at ppb20 bus 21
ppb21 at pci0 dev 23 function 3 "VMware PCIE" rev 0x01
pci22 at ppb21 bus 22
ppb22 at pci0 dev 23 function 4 "VMware PCIE" rev 0x01
pci23 at ppb22 bus 23
ppb23 at pci0 dev 23 function 5 "VMware PCIE" rev 0x01
pci24 at ppb23 bus 24
ppb24 at pci0 dev 23 function 6 "VMware PCIE" rev 0x01
pci25 at ppb24 bus 25
ppb25 at pci0 dev 23 function 7 "VMware PCIE" rev 0x01
pci26 at ppb25 bus 26
ppb26 at pci0 dev 24 function 0 "VMware PCIE" rev 0x01
pci27 at ppb26 bus 27
ppb27 at pci0 dev 24 function 1 "VMware PCIE" rev 0x01
pci28 at ppb27 bus 28
ppb28 at pci0 dev 24 function 2 "VMware PCIE" rev 0x01
pci29 at ppb28 bus 29
ppb29 at pci0 dev 24 function 3 "VMware PCIE" rev 0x01
pci30 at ppb29 bus 30
ppb30 at pci0 dev 24 function 4 "VMware PCIE" rev 0x01
pci31 at ppb30 bus 31
ppb31 at pci0 dev 24 function 5 "VMware PCIE" rev 0x01
pci32 at ppb31 bus 32
ppb32 at pci0 dev 24 function 6 "VMware PCIE" rev 0x01
pci33 at ppb32 bus 33
ppb33 at pci0 dev 24 function 7 "VMware PCIE" rev 0x01
pci34 at ppb33 bus 34
isa0 at pcib0
isadma0 at isa0
pckbc0 at isa0 port 0x60/5 irq 1 irq 12
pckbd0 at pckbc0 (kbd slot)
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pms0 at pckbc0 (aux slot)
wsmouse0 at pms0 mux 0
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm disabled by firmware
vmm at mainbus0 not configured
uhidev0 at uhub2 port 5 configuration 1 interface 0 "VMware VMware Virtual USB
Mouse" rev 1.10/1.02 addr 2
uhidev0: iclass 3/0
ums0 at uhidev0: 16 buttons, Z and W dir
wsmouse1 at ums0 mux 0
uhidev1 at uhub2 port 5 configuration 1 interface 1 "VMware VMware Virtual USB
Mouse" rev 1.10/1.02 addr 2
uhidev1: iclass 3/0
ums1 at uhidev1: 16 buttons, Z and W dir
wsmouse2 at ums1 mux 0
vscsi0 at root
scsibus3 at vscsi0: 256 targets
softraid0 at root
scsibus4 at softraid0: 256 targets
root on sd0a (4d5a6c2e679bd2aa.a) swap on sd0b dump on sd0b
usbdevs:
Controller /dev/usb0:
addr 1: high speed, self powered, config 1, EHCI root hub(0x0000),
VMware(0x15ad), rev 1.00
port 1 powered
port 2 powered
port 3 powered
port 4 powered
port 5 powered
port 6 powered
Controller /dev/usb1:
addr 1: full speed, self powered, config 1, UHCI root hub(0x0000),
VMware(0x15ad), rev 1.00
port 1 powered
port 2 powered
Controller /dev/usb2:
addr 1: super speed, self powered, config 1, xHCI root hub(0x0000),
VMware(0x15ad), rev 1.00
port 1 disabled
port 2 disabled
port 3 disabled
port 4 disabled
port 5 addr 2: full speed, self powered, config 1, VMware Virtual USB
Mouse(0x0003), VMware(0x0e0f), rev 1.02
port 6 disabled
port 7 disabled
port 8 disabled
pcidump:
Domain /dev/pci0:
0:0:0: Intel 82443BX AGP
0x0000: Vendor ID: 8086 Product ID: 7190
0x0004: Command: 0006 Status: 0200
0x0008: Class: 06 Subclass: 00 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 00 Latency Timer: 00 Cache Line Size: 00
0x0010: BAR empty (00000000)
0x0014: BAR empty (00000000)
0x0018: BAR empty (00000000)
0x001c: BAR empty (00000000)
0x0020: BAR empty (00000000)
0x0024: BAR empty (00000000)
0x0028: Cardbus CIS: 00000000
0x002c: Subsystem Vendor ID: 15ad Product ID: 1976
0x0030: Expansion ROM Base Address: 00000000
0x0038: 00000000
0x003c: Interrupt Pin: 00 Line: 00 Min Gnt: 00 Max Lat: 00
0x0000: 71908086 02000006 06000001 00000000
0x0010: 00000000 00000000 00000000 00000000
0x0020: 00000000 00000000 00000000 197615ad
0x0030: 00000000 00000000 00000000 00000000
0x0040: 0000fce1 fe800008 00000000 00000000
0x0050: ff008008 00000000 01111003 11333000
0x0060: 60504020 60606060 00000000 00000000
0x0070: 00080000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 00000000
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000013 f0000003 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00030000
0:1:0: Intel 82443BX AGP
0x0000: Vendor ID: 8086 Product ID: 7191
0x0004: Command: 011f Status: 0220
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 01 Latency Timer: 00 Cache Line Size: 00
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 1 Subordinate Bus: 1
Secondary Latency Timer: 40
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 02a0
0x0020: Memory Base: fff0 Memory Limit: 0000
0x0024: Prefetch Memory Base: fff0 Prefetch Memory Limit: 0000
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: 00 Bridge Control: 0084
0x0000: 71918086 0220011f 06040001 00010000
0x0010: 00000000 00000000 40010100 02a000f0
0x0020: 0000fff0 0000fff0 00000000 00000000
0x0030: 00000000 00000000 00000000 00840000
0x0040: 00000000 00000000 00000000 00000000
0x0050: 00000000 00000000 00000000 00000000
0x0060: 00000000 00000000 00000000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 00000000
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:7:0: Intel 82371AB PIIX4 ISA
0x0000: Vendor ID: 8086 Product ID: 7110
0x0004: Command: 0007 Status: 0280
0x0008: Class: 06 Subclass: 01 Interface: 00 Revision: 08
0x000c: BIST: 00 Header Type: 80 Latency Timer: 00 Cache Line Size: 00
0x0010: BAR empty (00000000)
0x0014: BAR empty (00000000)
0x0018: BAR empty (00000000)
0x001c: BAR empty (00000000)
0x0020: BAR empty (00000000)
0x0024: BAR empty (00000000)
0x0028: Cardbus CIS: 00000000
0x002c: Subsystem Vendor ID: 15ad Product ID: 1976
0x0030: Expansion ROM Base Address: 00000000
0x0038: 00000000
0x003c: Interrupt Pin: 00 Line: 00 Min Gnt: 00 Max Lat: 00
0x0000: 71108086 02800007 06010008 00800000
0x0010: 00000000 00000000 00000000 00000000
0x0020: 00000000 00000000 00000000 197615ad
0x0030: 00000000 00000000 00000000 00000000
0x0040: 00000000 00000000 00000000 00100000
0x0050: 00000000 00000000 00000000 00000000
0x0060: 070a0b09 00000000 00000000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 00000000
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:7:1: Intel 82371AB IDE
0x0000: Vendor ID: 8086 Product ID: 7111
0x0004: Command: 0005 Status: 0280
0x0008: Class: 01 Subclass: 01 Interface: 8a Revision: 01
0x000c: BIST: 00 Header Type: 00 Latency Timer: 40 Cache Line Size: 00
0x0010: BAR empty (00000000)
0x0014: BAR empty (00000000)
0x0018: BAR empty (00000000)
0x001c: BAR empty (00000000)
0x0020: BAR io addr: 0x00001060/0x0010
0x0024: BAR empty (00000000)
0x0028: Cardbus CIS: 00000000
0x002c: Subsystem Vendor ID: 15ad Product ID: 1976
0x0030: Expansion ROM Base Address: 00000000
0x0038: 00000000
0x003c: Interrupt Pin: 00 Line: ff Min Gnt: 00 Max Lat: 00
0x0000: 71118086 02800005 01018a01 00004000
0x0010: 00000000 00000000 00000000 00000000
0x0020: 00001061 00000000 00000000 197615ad
0x0030: 00000000 00000000 00000000 000000ff
0x0040: a3070000 00000000 00000004 00000000
0x0050: 00000000 00000000 00000000 00000000
0x0060: 00000000 00000000 00000000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 00000000
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:7:3: Intel 82371AB Power
0x0000: Vendor ID: 8086 Product ID: 7113
0x0004: Command: 0001 Status: 0280
0x0008: Class: 06 Subclass: 80 Interface: 00 Revision: 08
0x000c: BIST: 00 Header Type: 80 Latency Timer: 00 Cache Line Size: 00
0x0010: BAR empty (00000000)
0x0014: BAR empty (00000000)
0x0018: BAR empty (00000000)
0x001c: BAR empty (00000000)
0x0020: BAR empty (00000000)
0x0024: BAR empty (00000000)
0x0028: Cardbus CIS: 00000000
0x002c: Subsystem Vendor ID: 15ad Product ID: 1976
0x0030: Expansion ROM Base Address: 00000000
0x0038: 00000000
0x003c: Interrupt Pin: 00 Line: 00 Min Gnt: 00 Max Lat: 00
0x0000: 71138086 02800001 06800008 00800000
0x0010: 00000000 00000000 00000000 00000000
0x0020: 00000000 00000000 00000000 197615ad
0x0030: 00000000 00000000 00000000 00000000
0x0040: 00001001 00000000 00000000 00000000
0x0050: 00000000 00000000 02000077 00000000
0x0060: 00000000 00210cf0 00000000 00000000
0x0070: 00000000 00000000 00000000 0001002e
0x0080: 00000001 00000000 00000000 00000000
0x0090: 00001041 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:7:7: VMware VMCI
0x0000: Vendor ID: 15ad Product ID: 0740
0x0004: Command: 0003 Status: 0290
0x0008: Class: 08 Subclass: 80 Interface: 00 Revision: 10
0x000c: BIST: 00 Header Type: 00 Latency Timer: 40 Cache Line Size: 00
0x0010: BAR io addr: 0x00001080/0x0040
0x0014: BAR mem 64bit addr: 0x00000000febfe000/0x00002000
0x001c: BAR empty (00000000)
0x0020: BAR empty (00000000)
0x0024: BAR empty (00000000)
0x0028: Cardbus CIS: 00000000
0x002c: Subsystem Vendor ID: 15ad Product ID: 0740
0x0030: Expansion ROM Base Address: 00000000
0x0038: 00000000
0x003c: Interrupt Pin: 01 Line: 09 Min Gnt: 06 Max Lat: ff
0x0040: Capability 0x05: Message Signaled Interrupts (MSI)
0x0058: Capability 0x11: Extended Message Signaled Interrupts (MSI-X)
0x0000: 074015ad 02900003 08800010 00004000
0x0010: 00001081 febfe004 00000000 00000000
0x0020: 00000000 00000000 00000000 074015ad
0x0030: 00000000 00000040 00000000 ff060109
0x0040: 00805805 00000000 00000000 00000000
0x0050: 00000000 00000000 00010011 00000001
0x0060: 00001001 00000000 00000000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 00000000
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:15:0: VMware SVGA II
0x0000: Vendor ID: 15ad Product ID: 0405
0x0004: Command: 0007 Status: 0290
0x0008: Class: 03 Subclass: 00 Interface: 00 Revision: 00
0x000c: BIST: 00 Header Type: 00 Latency Timer: 40 Cache Line Size: 08
0x0010: BAR io addr: 0x00001070/0x0010
0x0014: BAR mem prefetchable 32bit addr: 0xe8000000/0x08000000
0x0018: BAR mem 32bit addr: 0xfe000000/0x00800000
0x001c: BAR empty (00000000)
0x0020: BAR empty (00000000)
0x0024: BAR empty (00000000)
0x0028: Cardbus CIS: 00000000
0x002c: Subsystem Vendor ID: 15ad Product ID: 0405
0x0030: Expansion ROM Base Address: 00000000
0x0038: 00000000
0x003c: Interrupt Pin: 01 Line: 09 Min Gnt: 00 Max Lat: 00
0x0040: Capability 0x09: Vendor Specific
0x0044: Capability 0x13: PCI Advanced Features
0x0000: 040515ad 02900007 03000000 00004008
0x0010: 00001071 e8000008 fe000000 00000000
0x0020: 00000000 00000000 00000000 040515ad
0x0030: 00000000 00000040 00000000 00000109
0x0040: 00004409 03060013 00000000 00000000
0x0050: 00000000 00000000 00000000 00000000
0x0060: 00000000 00000000 00000000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 00000000
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:16:0: Symbios Logic 53c1030
0x0000: Vendor ID: 1000 Product ID: 0030
0x0004: Command: 0007 Status: 0290
0x0008: Class: 01 Subclass: 00 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 00 Latency Timer: 40 Cache Line Size: 00
0x0010: BAR io addr: 0x00001400/0x0100
0x0014: BAR mem 64bit addr: 0x00000000feba0000/0x00020000
0x001c: BAR mem 64bit addr: 0x00000000febc0000/0x00020000
0x0024: BAR empty (00000000)
0x0028: Cardbus CIS: 00000000
0x002c: Subsystem Vendor ID: 15ad Product ID: 1976
0x0030: Expansion ROM Base Address: 00000000
0x0038: 00000000
0x003c: Interrupt Pin: 01 Line: 0b Min Gnt: 06 Max Lat: ff
0x00f8: Capability 0x13: PCI Advanced Features
0x0000: 00301000 02900007 01000001 00004000
0x0010: 00001401 feba0004 00000000 febc0004
0x0020: 00000000 00000000 00000000 197615ad
0x0030: 00000000 000000f8 00000000 ff06010b
0x0040: 00000000 00000000 00000000 00000000
0x0050: 00000000 00000000 00000000 00000000
0x0060: 00000000 00000000 00000000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 00000000
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 03060013 00000000
0:17:0: VMware PCI
0x0000: Vendor ID: 15ad Product ID: 0790
0x0004: Command: 0007 Status: 0290
0x0008: Class: 06 Subclass: 04 Interface: 01 Revision: 02
0x000c: BIST: 00 Header Type: 01 Latency Timer: 40 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 2 Subordinate Bus: 2
Secondary Latency Timer: 44
0x001c: I/O Base: 20 I/O Limit: 30 Secondary Status: 0280
0x0020: Memory Base: fd50 Memory Limit: fdf0
0x0024: Prefetch Memory Base: e7b1 Prefetch Memory Limit: e7f1
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0000: 079015ad 02900007 06040102 00014008
0x0010: 00000000 00000000 44020200 02803020
0x0020: fdf0fd50 e7f1e7b1 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000000d 079015ad 00000000 00000000
0x0050: 00000000 00000000 00000000 00000000
0x0060: 00000000 00000000 00000000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 00000000
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:21:0: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 3 Subordinate Bus: 3
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fd40 Memory Limit: fd40
0x0024: Prefetch Memory Base: fff1 Prefetch Memory Limit: 0001
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00030300 000000f0
0x0020: fd40fd40 0001fff1 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 22020000 05047843 01480000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:21:1: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 4 Subordinate Bus: 4
Secondary Latency Timer: 00
0x001c: I/O Base: 70 I/O Limit: 70 Secondary Status: 0000
0x0020: Memory Base: fd00 Memory Limit: fd00
0x0024: Prefetch Memory Base: e791 Prefetch Memory Limit: e791
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00040400 00007070
0x0020: fd00fd00 e791e791 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 050c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:21:2: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 5 Subordinate Bus: 5
Secondary Latency Timer: 00
0x001c: I/O Base: b0 I/O Limit: b0 Secondary Status: 0000
0x0020: Memory Base: fcc0 Memory Limit: fcc0
0x0024: Prefetch Memory Base: e751 Prefetch Memory Limit: e751
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00050500 0000b0b0
0x0020: fcc0fcc0 e751e751 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 05147843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:21:3: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 6 Subordinate Bus: 6
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fc80 Memory Limit: fc80
0x0024: Prefetch Memory Base: e711 Prefetch Memory Limit: e711
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00060600 000000f0
0x0020: fc80fc80 e711e711 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 051c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:21:4: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 7 Subordinate Bus: 7
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fc40 Memory Limit: fc40
0x0024: Prefetch Memory Base: e6d1 Prefetch Memory Limit: e6d1
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00070700 000000f0
0x0020: fc40fc40 e6d1e6d1 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 05247843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:21:5: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 8 Subordinate Bus: 8
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fc00 Memory Limit: fc00
0x0024: Prefetch Memory Base: e691 Prefetch Memory Limit: e691
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00080800 000000f0
0x0020: fc00fc00 e691e691 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 052c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:21:6: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 9 Subordinate Bus: 9
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fbc0 Memory Limit: fbc0
0x0024: Prefetch Memory Base: e651 Prefetch Memory Limit: e651
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00090900 000000f0
0x0020: fbc0fbc0 e651e651 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 05347843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:21:7: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 10 Subordinate Bus: 10
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fb80 Memory Limit: fb80
0x0024: Prefetch Memory Base: e611 Prefetch Memory Limit: e611
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 000a0a00 000000f0
0x0020: fb80fb80 e611e611 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 053c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:22:0: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 11 Subordinate Bus: 11
Secondary Latency Timer: 00
0x001c: I/O Base: 40 I/O Limit: 40 Secondary Status: 0000
0x0020: Memory Base: fd30 Memory Limit: fd30
0x0024: Prefetch Memory Base: fff1 Prefetch Memory Limit: 0001
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 000b0b00 00004040
0x0020: fd30fd30 0001fff1 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 22020000 06047843 01480000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:22:1: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 12 Subordinate Bus: 12
Secondary Latency Timer: 00
0x001c: I/O Base: 80 I/O Limit: 80 Secondary Status: 0000
0x0020: Memory Base: fcf0 Memory Limit: fcf0
0x0024: Prefetch Memory Base: e781 Prefetch Memory Limit: e781
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 000c0c00 00008080
0x0020: fcf0fcf0 e781e781 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 060c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:22:2: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 13 Subordinate Bus: 13
Secondary Latency Timer: 00
0x001c: I/O Base: c0 I/O Limit: c0 Secondary Status: 0000
0x0020: Memory Base: fcb0 Memory Limit: fcb0
0x0024: Prefetch Memory Base: e741 Prefetch Memory Limit: e741
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 000d0d00 0000c0c0
0x0020: fcb0fcb0 e741e741 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 06147843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:22:3: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 14 Subordinate Bus: 14
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fc70 Memory Limit: fc70
0x0024: Prefetch Memory Base: e701 Prefetch Memory Limit: e701
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 000e0e00 000000f0
0x0020: fc70fc70 e701e701 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 061c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:22:4: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 15 Subordinate Bus: 15
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fc30 Memory Limit: fc30
0x0024: Prefetch Memory Base: e6c1 Prefetch Memory Limit: e6c1
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 000f0f00 000000f0
0x0020: fc30fc30 e6c1e6c1 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 06247843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:22:5: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 16 Subordinate Bus: 16
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fbf0 Memory Limit: fbf0
0x0024: Prefetch Memory Base: e681 Prefetch Memory Limit: e681
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00101000 000000f0
0x0020: fbf0fbf0 e681e681 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 062c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:22:6: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 17 Subordinate Bus: 17
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fbb0 Memory Limit: fbb0
0x0024: Prefetch Memory Base: e641 Prefetch Memory Limit: e641
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00111100 000000f0
0x0020: fbb0fbb0 e641e641 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 06347843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:22:7: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 18 Subordinate Bus: 18
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fb70 Memory Limit: fb70
0x0024: Prefetch Memory Base: e601 Prefetch Memory Limit: e601
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00121200 000000f0
0x0020: fb70fb70 e601e601 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 063c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:23:0: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 19 Subordinate Bus: 19
Secondary Latency Timer: 00
0x001c: I/O Base: 50 I/O Limit: 50 Secondary Status: 0000
0x0020: Memory Base: fd20 Memory Limit: fd20
0x0024: Prefetch Memory Base: fff1 Prefetch Memory Limit: 0001
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00131300 00005050
0x0020: fd20fd20 0001fff1 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 22020000 07047843 01480000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:23:1: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 20 Subordinate Bus: 20
Secondary Latency Timer: 00
0x001c: I/O Base: 90 I/O Limit: 90 Secondary Status: 0000
0x0020: Memory Base: fce0 Memory Limit: fce0
0x0024: Prefetch Memory Base: e771 Prefetch Memory Limit: e771
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00141400 00009090
0x0020: fce0fce0 e771e771 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 070c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:23:2: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 21 Subordinate Bus: 21
Secondary Latency Timer: 00
0x001c: I/O Base: d0 I/O Limit: d0 Secondary Status: 0000
0x0020: Memory Base: fca0 Memory Limit: fca0
0x0024: Prefetch Memory Base: e731 Prefetch Memory Limit: e731
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00151500 0000d0d0
0x0020: fca0fca0 e731e731 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 07147843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:23:3: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 22 Subordinate Bus: 22
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fc60 Memory Limit: fc60
0x0024: Prefetch Memory Base: e6f1 Prefetch Memory Limit: e6f1
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00161600 000000f0
0x0020: fc60fc60 e6f1e6f1 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 071c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:23:4: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 23 Subordinate Bus: 23
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fc20 Memory Limit: fc20
0x0024: Prefetch Memory Base: e6b1 Prefetch Memory Limit: e6b1
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00171700 000000f0
0x0020: fc20fc20 e6b1e6b1 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 07247843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:23:5: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 24 Subordinate Bus: 24
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fbe0 Memory Limit: fbe0
0x0024: Prefetch Memory Base: e671 Prefetch Memory Limit: e671
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00181800 000000f0
0x0020: fbe0fbe0 e671e671 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 072c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:23:6: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 25 Subordinate Bus: 25
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fba0 Memory Limit: fba0
0x0024: Prefetch Memory Base: e631 Prefetch Memory Limit: e631
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00191900 000000f0
0x0020: fba0fba0 e631e631 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 07347843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:23:7: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 26 Subordinate Bus: 26
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fb60 Memory Limit: fb60
0x0024: Prefetch Memory Base: e5f1 Prefetch Memory Limit: e5f1
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 001a1a00 000000f0
0x0020: fb60fb60 e5f1e5f1 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 073c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:24:0: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 27 Subordinate Bus: 27
Secondary Latency Timer: 00
0x001c: I/O Base: 60 I/O Limit: 60 Secondary Status: 0000
0x0020: Memory Base: fd10 Memory Limit: fd10
0x0024: Prefetch Memory Base: e7a1 Prefetch Memory Limit: e7a1
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 001b1b00 00006060
0x0020: fd10fd10 e7a1e7a1 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 08047843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:24:1: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 28 Subordinate Bus: 28
Secondary Latency Timer: 00
0x001c: I/O Base: a0 I/O Limit: a0 Secondary Status: 0000
0x0020: Memory Base: fcd0 Memory Limit: fcd0
0x0024: Prefetch Memory Base: e761 Prefetch Memory Limit: e761
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 001c1c00 0000a0a0
0x0020: fcd0fcd0 e761e761 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 080c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:24:2: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 29 Subordinate Bus: 29
Secondary Latency Timer: 00
0x001c: I/O Base: e0 I/O Limit: e0 Secondary Status: 0000
0x0020: Memory Base: fc90 Memory Limit: fc90
0x0024: Prefetch Memory Base: e721 Prefetch Memory Limit: e721
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 001d1d00 0000e0e0
0x0020: fc90fc90 e721e721 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 08147843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:24:3: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 30 Subordinate Bus: 30
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fc50 Memory Limit: fc50
0x0024: Prefetch Memory Base: e6e1 Prefetch Memory Limit: e6e1
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 001e1e00 000000f0
0x0020: fc50fc50 e6e1e6e1 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 081c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:24:4: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 31 Subordinate Bus: 31
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fc10 Memory Limit: fc10
0x0024: Prefetch Memory Base: e6a1 Prefetch Memory Limit: e6a1
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 001f1f00 000000f0
0x0020: fc10fc10 e6a1e6a1 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 08247843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:24:5: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 32 Subordinate Bus: 32
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fbd0 Memory Limit: fbd0
0x0024: Prefetch Memory Base: e661 Prefetch Memory Limit: e661
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00202000 000000f0
0x0020: fbd0fbd0 e661e661 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 082c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:24:6: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 33 Subordinate Bus: 33
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fb90 Memory Limit: fb90
0x0024: Prefetch Memory Base: e621 Prefetch Memory Limit: e621
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00212100 000000f0
0x0020: fb90fb90 e621e621 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 08347843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
0:24:7: VMware PCIE
0x0000: Vendor ID: 15ad Product ID: 07a0
0x0004: Command: 0007 Status: 0010
0x0008: Class: 06 Subclass: 04 Interface: 00 Revision: 01
0x000c: BIST: 00 Header Type: 81 Latency Timer: 00 Cache Line Size: 08
0x0010: 00000000
0x0014: 00000000
0x0018: Primary Bus: 0 Secondary Bus: 34 Subordinate Bus: 34
Secondary Latency Timer: 00
0x001c: I/O Base: f0 I/O Limit: 00 Secondary Status: 0000
0x0020: Memory Base: fb50 Memory Limit: fb50
0x0024: Prefetch Memory Base: e5e1 Prefetch Memory Limit: e5e1
0x0028: Prefetch Memory Base Upper 32 Bits: 00000000
0x002c: Prefetch Memory Limit Upper 32 Bits: 00000000
0x0030: I/O Base Upper 16 Bits: 0000 I/O Limit Upper 16 Bits: 0000
0x0038: Expansion ROM Base Address: 00000000
0x003c: Interrupt Pin: 00 Line: ff Bridge Control: 0004
0x0040: Capability 0x0d: PCI-PCI
0x0048: Capability 0x01: Power Management
State: D0
0x0050: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x008c: Capability 0x05: Message Signaled Interrupts (MSI)
0x0000: 07a015ad 00100007 06040001 00810008
0x0010: 00000000 00000000 00222200 000000f0
0x0020: fb50fb50 e5e1e5e1 00000000 00000000
0x0030: 00000000 00000040 00000000 000400ff
0x0040: 0000480d 07a015ad c8035001 00000000
0x0050: 01428c10 00000000 00000000 00100602
0x0060: 02020000 083c7843 00000400 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 01800005
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
2:0:0: VMware UHCI
0x0000: Vendor ID: 15ad Product ID: 0774
0x0004: Command: 0005 Status: 0290
0x0008: Class: 0c Subclass: 03 Interface: 00 Revision: 00
0x000c: BIST: 00 Header Type: 00 Latency Timer: 40 Cache Line Size: 00
0x0010: BAR empty (00000000)
0x0014: BAR empty (00000000)
0x0018: BAR empty (00000000)
0x001c: BAR empty (00000000)
0x0020: BAR io addr: 0x00002000/0x0020
0x0024: BAR empty (00000000)
0x0028: Cardbus CIS: 00000000
0x002c: Subsystem Vendor ID: 15ad Product ID: 1976
0x0030: Expansion ROM Base Address: 00000000
0x0038: 00000000
0x003c: Interrupt Pin: 01 Line: 0a Min Gnt: 00 Max Lat: 00
0x0040: Capability 0x13: PCI Advanced Features
0x0000: 077415ad 02900005 0c030000 00004000
0x0010: 00000000 00000000 00000000 00000000
0x0020: 00002001 00000000 00000000 197615ad
0x0030: 00000000 00000040 00000000 0000010a
0x0040: 03060013 00000000 00000000 00000000
0x0050: 00000000 00000000 00000000 00000000
0x0060: 00000010 00000000 00000000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 00000000
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00002000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
2:3:0: VMware EHCI
0x0000: Vendor ID: 15ad Product ID: 0770
0x0004: Command: 0006 Status: 0010
0x0008: Class: 0c Subclass: 03 Interface: 20 Revision: 00
0x000c: BIST: 00 Header Type: 00 Latency Timer: 40 Cache Line Size: 00
0x0010: BAR mem 32bit addr: 0xfd5ff000/0x00001000
0x0014: BAR empty (00000000)
0x0018: BAR empty (00000000)
0x001c: BAR empty (00000000)
0x0020: BAR empty (00000000)
0x0024: BAR empty (00000000)
0x0028: Cardbus CIS: 00000000
0x002c: Subsystem Vendor ID: 15ad Product ID: 0770
0x0030: Expansion ROM Base Address: 00000000
0x0038: 00000000
0x003c: Interrupt Pin: 01 Line: 0b Min Gnt: 06 Max Lat: ff
0x0040: Capability 0x13: PCI Advanced Features
0x0000: 077015ad 00100006 0c032000 00004000
0x0010: fd5ff000 00000000 00000000 00000000
0x0020: 00000000 00000000 00000000 077015ad
0x0030: 00000000 00000040 00000000 ff06010b
0x0040: 03060013 00000000 00000000 00000000
0x0050: 00000000 00000000 00000000 00000000
0x0060: 00000020 00000000 00000000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 00000000
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 00000000 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 00000000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
3:0:0: VMware xHCI
0x0000: Vendor ID: 15ad Product ID: 0779
0x0004: Command: 0006 Status: 0010
0x0008: Class: 0c Subclass: 03 Interface: 30 Revision: 00
0x000c: BIST: 00 Header Type: 00 Latency Timer: 40 Cache Line Size: 00
0x0010: BAR mem 64bit addr: 0x00000000fd4e0000/0x00020000
0x0018: BAR empty (00000000)
0x001c: BAR empty (00000000)
0x0020: BAR empty (00000000)
0x0024: BAR empty (00000000)
0x0028: Cardbus CIS: 00000000
0x002c: Subsystem Vendor ID: 15ad Product ID: 0779
0x0030: Expansion ROM Base Address: 00000000
0x0038: 00000000
0x003c: Interrupt Pin: 01 Line: 0a Min Gnt: 06 Max Lat: ff
0x0064: Capability 0x01: Power Management
State: D0
0x006c: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x00a8: Capability 0x05: Message Signaled Interrupts (MSI)
0x00c0: Capability 0x11: Extended Message Signaled Interrupts (MSI-X)
0x0000: 077915ad 00100006 0c033000 00004000
0x0010: fd4e0004 00000000 00000000 00000000
0x0020: 00000000 00000000 00000000 077915ad
0x0030: 00000000 00000064 00000000 ff06010a
0x0040: 00000000 00000000 00000000 00000000
0x0050: 00000000 00000000 00000000 00000000
0x0060: 00000030 c8036c01 00000000 0002a810
0x0070: 10000000 00000000 00000602 02020000
0x0080: 00000000 00000000 00000000 00000000
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00000000 00000000 0180c005 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 001e0011 00010000 00011000 00000000
0x00d0: 00000000 00000000 00000000 00000000
0x00e0: 00000000 00000000 00000000 00000000
0x00f0: 00000000 00000000 00000000 00000000
11:0:0: Intel 82574L
0x0000: Vendor ID: 8086 Product ID: 10d3
0x0004: Command: 0107 Status: 0010
0x0008: Class: 02 Subclass: 00 Interface: 00 Revision: 00
0x000c: BIST: 00 Header Type: 00 Latency Timer: 00 Cache Line Size: 10
0x0010: BAR mem 32bit addr: 0xfd3a0000/0x00020000
0x0014: BAR mem 32bit addr: 0xfd3c0000/0x00020000
0x0018: BAR io addr: 0x00004000/0x0020
0x001c: BAR mem 32bit addr: 0xfd3fc000/0x00004000
0x0020: BAR empty (00000000)
0x0024: BAR empty (00000000)
0x0028: Cardbus CIS: 00000000
0x002c: Subsystem Vendor ID: 15ad Product ID: 07d0
0x0030: Expansion ROM Base Address: 00000000
0x0038: 00000000
0x003c: Interrupt Pin: 01 Line: 07 Min Gnt: 00 Max Lat: 00
0x00c8: Capability 0x01: Power Management
State: D0
0x00d0: Capability 0x05: Message Signaled Interrupts (MSI)
0x00e0: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x00a0: Capability 0x11: Extended Message Signaled Interrupts (MSI-X)
0x0000: 10d38086 00100107 02000000 00000010
0x0010: fd3a0000 fd3c0000 00004001 fd3fc000
0x0020: 00000000 00000000 00000000 07d015ad
0x0030: 00000000 000000c8 00000000 00000107
0x0040: 00000000 00000000 00000000 00000000
0x0050: 00000000 00000000 00000000 00000000
0x0060: 00000000 00000000 00000000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 00000000
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00040011 00000003 00002003 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 0022d001 00000000
0x00d0: 0080e005 00000000 00000000 00000000
0x00e0: 0001a010 00008cc1 00000000 00000602
0x00f0: 02020000 00000000 00000000 00000000
19:0:0: Intel 82574L
0x0000: Vendor ID: 8086 Product ID: 10d3
0x0004: Command: 0107 Status: 0010
0x0008: Class: 02 Subclass: 00 Interface: 00 Revision: 00
0x000c: BIST: 00 Header Type: 00 Latency Timer: 00 Cache Line Size: 10
0x0010: BAR mem 32bit addr: 0xfd2a0000/0x00020000
0x0014: BAR mem 32bit addr: 0xfd2c0000/0x00020000
0x0018: BAR io addr: 0x00005000/0x0020
0x001c: BAR mem 32bit addr: 0xfd2fc000/0x00004000
0x0020: BAR empty (00000000)
0x0024: BAR empty (00000000)
0x0028: Cardbus CIS: 00000000
0x002c: Subsystem Vendor ID: 15ad Product ID: 07d0
0x0030: Expansion ROM Base Address: 00000000
0x0038: 00000000
0x003c: Interrupt Pin: 01 Line: 09 Min Gnt: 00 Max Lat: 00
0x00c8: Capability 0x01: Power Management
State: D0
0x00d0: Capability 0x05: Message Signaled Interrupts (MSI)
0x00e0: Capability 0x10: PCI Express
Link Speed: 5.0 / 5.0 GT/s Link Width: x32 / x32
0x00a0: Capability 0x11: Extended Message Signaled Interrupts (MSI-X)
0x0000: 10d38086 00100107 02000000 00000010
0x0010: fd2a0000 fd2c0000 00005001 fd2fc000
0x0020: 00000000 00000000 00000000 07d015ad
0x0030: 00000000 000000c8 00000000 00000109
0x0040: 00000000 00000000 00000000 00000000
0x0050: 00000000 00000000 00000000 00000000
0x0060: 00000000 00000000 00000000 00000000
0x0070: 00000000 00000000 00000000 00000000
0x0080: 00000000 00000000 00000000 00000000
0x0090: 00000000 00000000 00000000 00000000
0x00a0: 00040011 00000003 00002003 00000000
0x00b0: 00000000 00000000 00000000 00000000
0x00c0: 00000000 00000000 0022d001 00000000
0x00d0: 0080e005 00000000 00000000 00000000
0x00e0: 0001a010 00008cc1 00000000 00000602
0x00f0: 02020000 00000000 00000000 00000000
acpidump: