Re: [PATCH] KVM: vmx: fix MPX detection

From: Jet Chen
Date: Thu Mar 27 2014 - 04:33:05 EST


Hi Paolo,

I helped to test for your patch on our LKP system. It fixes the bug reported by Fengguang.

I applied your patch based on commit 93c4adc7afedf9b0ec190066d45b6d67db5270da.

commit e0d58133c21fd445e029fb43752998384fa4df5c
Author: Jet Chen <jet.chen@xxxxxxxxx>
Date: Thu Mar 27 13:15:34 2014 +0800

Test patch from Paolo Bonzini

Signed-off-by: Jet Chen <jet.chen@xxxxxxxxx>

diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index aa98695..ce2b572 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -5594,9 +5594,10 @@ int kvm_arch_init(void *opaque)
goto out_free_percpu;

kvm_set_mmio_spte_mask();
- kvm_init_msr_list();

kvm_x86_ops = ops;
+ kvm_init_msr_list();
+
kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
PT_DIRTY_MASK, PT64_NX_MASK, 0);

And here is test result on our LKP system

93c4adc7afedf9b e0d58133c21fd445e029fb437
--------------- -------------------------
1 ~ 0% -100.0% 0 ~ 0% TOTAL dmesg.BUG:unable_to_handle_kernel_NULL_pointer_dereference
1 ~ 0% -100.0% 0 ~ 0% TOTAL dmesg.Oops:SMP
1 ~ 0% -100.0% 0 ~ 0% TOTAL dmesg.RIP:kvm_arch_init
1 ~ 0% -100.0% 0 ~ 0% TOTAL dmesg.Kernel_panic-not_syncing:Fatal_exception

Legend:
~XX% - stddev percent
[+-]XX% - change percent

Kernel oops messages disappear after applying your patch.

Thanks,
-Jet

On 03/26/2014 10:54 PM, Paolo Bonzini wrote:
kvm_x86_ops is still NULL at this point. Since kvm_init_msr_list
cannot fail, it is safe to initialize it before the call.

Reported-by: Fengguang Wu <fengguang.wu@xxxxxxxxx>
Cc: kvm@xxxxxxxxxxxxxxx
Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>
---
arch/x86/kvm/x86.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 39c28f09dfd5..49b514f76b5d 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -5537,9 +5537,10 @@ int kvm_arch_init(void *opaque)
goto out_free_percpu;

kvm_set_mmio_spte_mask();
- kvm_init_msr_list();

kvm_x86_ops = ops;
+ kvm_init_msr_list();
+
kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
PT_DIRTY_MASK, PT64_NX_MASK, 0);


[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 3.14.0-rc3-00007-ge0d5813 (kbuild@inn) (gcc version 4.8.2 (Debian 4.8.2-16) ) #1 SMP Thu Mar 27 14:31:53 CST 2014
[ 0.000000] Command line: user=lkp job=/lkp/scheduled/lkp-sbx04/VIP_boot-1-x86_64-lkp-e0d58133c21fd445e029fb43752998384fa4df5c-4.yaml ARCH=x86_64 BOOT_IMAGE=/kernel/x86_64-lkp/e0d58133c21fd445e029fb43752998384fa4df5c/vmlinuz-3.14.0-rc3-00007-ge0d5813 kconfig=x86_64-lkp commit=e0d58133c21fd445e029fb43752998384fa4df5c modules_initrd=/kernel/x86_64-lkp/e0d58133c21fd445e029fb43752998384fa4df5c/modules.cgz RESULT_ROOT=/lkp/result/lkp-sbx04/fake/boot/1/x86_64-lkp/e0d58133c21fd445e029fb43752998384fa4df5c/0 initrd=/kernel-tests/initrd/lkp-rootfs.cgz root=/dev/ram0 ip=::::lkp-sbx04::dhcp oops=panic earlyprintk=ttyS0,115200 debug apic=debug sysrq_always_enabled rcupdate.rcu_cpu_stall_timeout=100 panic=10 softlockup_panic=1 nmi_watchdog=panic load_ramdisk=2 prompt_ramdisk=0 console=ttyS0,115200 console=tty0 vga=normal
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000100-0x000000000008f3ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000008f400-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bb3c6fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000bb3c7000-0x00000000bdd2efff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000bdd2f000-0x00000000bde26fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000bde27000-0x00000000bdea0fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000bdea1000-0x00000000bdf2efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000bdf2f000-0x00000000bdfaffff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000bdfb0000-0x00000000bdffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000be000000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed19000-0x00000000fed19fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffa20000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000103fffffff] usable
[ 0.000000] bootconsole [earlyser0] enabled
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.6 present.
[ 0.000000] DMI: Intel Corporation LH Pass/S4600LH...., BIOS SE5C600.86B.99.02.1047.032320122259 03/23/2012
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] No AGP bridge found
[ 0.000000] e820: last_pfn = 0x1040000 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-CFFFF write-through
[ 0.000000] D0000-D3FFF write-protect
[ 0.000000] D4000-E7FFF uncachable
[ 0.000000] E8000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000000 mask 3FFF80000000 write-back
[ 0.000000] 1 base 000080000000 mask 3FFFC0000000 write-back
[ 0.000000] 2 base 000100000000 mask 3FFF00000000 write-back
[ 0.000000] 3 base 000200000000 mask 3FFE00000000 write-back
[ 0.000000] 4 base 000400000000 mask 3FFC00000000 write-back
[ 0.000000] 5 base 000800000000 mask 3FF800000000 write-back
[ 0.000000] 6 base 001000000000 mask 3FFFC0000000 write-back
[ 0.000000] 7 base 0000FF800000 mask 3FFFFF800000 write-protect
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7010600070106, new 0x7010600070106
[ 0.000000] e820: last_pfn = 0xbe000 max_arch_pfn = 0x400000000
[ 0.000000] Scan for SMP in [mem 0x00000000-0x000003ff]
[ 0.000000] Scan for SMP in [mem 0x0009fc00-0x0009ffff]
[ 0.000000] Scan for SMP in [mem 0x000f0000-0x000fffff]
[ 0.000000] found SMP MP-table at [mem 0x000fd0f0-0x000fd0ff] mapped at [ffff8800000fd0f0]
[ 0.000000] mpc: fc870-fcf24
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff880000089000] 89000 size 24576
[ 0.000000] Using GB pages for direct mapping
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] BRK [0x0245d000, 0x0245dfff] PGTABLE
[ 0.000000] BRK [0x0245e000, 0x0245efff] PGTABLE
[ 0.000000] BRK [0x0245f000, 0x0245ffff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x103fe00000-0x103fffffff]
[ 0.000000] [mem 0x103fe00000-0x103fffffff] page 1G
[ 0.000000] init_memory_mapping: [mem 0x103c000000-0x103fdfffff]
[ 0.000000] [mem 0x103c000000-0x103fdfffff] page 1G
[ 0.000000] init_memory_mapping: [mem 0x1000000000-0x103bffffff]
[ 0.000000] [mem 0x1000000000-0x103bffffff] page 1G
[ 0.000000] init_memory_mapping: [mem 0x00100000-0xbb3c6fff]
[ 0.000000] [mem 0x00100000-0x001fffff] page 4k
[ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
[ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
[ 0.000000] [mem 0x80000000-0xbb1fffff] page 2M
[ 0.000000] [mem 0xbb200000-0xbb3c6fff] page 4k
[ 0.000000] init_memory_mapping: [mem 0xbdfb0000-0xbdffffff]
[ 0.000000] [mem 0xbdfb0000-0xbdffffff] page 4k
[ 0.000000] BRK [0x02460000, 0x02460fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x100000000-0xfffffffff]
[ 0.000000] [mem 0x100000000-0xfffffffff] page 1G
[ 0.000000] RAMDISK: [mem 0x72fa1000-0x7fff2fff]
[ 0.000000] ACPI: RSDP 00000000000f0410 000024 (v02 INTEL )
[ 0.000000] ACPI: XSDT 00000000bdfadd98 0000B4 (v01 INTEL S4600LH 06222004 INTL 20090903)
[ 0.000000] ACPI: FACP 00000000bdfad918 0000F4 (v04 INTEL S4600LH 06222004 INTL 20090903)
[ 0.000000] ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 32, using default 16 (20131218/tbfadt-684)
[ 0.000000] ACPI: DSDT 00000000bdf97018 014A76 (v02 INTEL S4600LH 00000002 INTL 20100331)
[ 0.000000] ACPI: FACS 00000000bdfadf40 000040
[ 0.000000] ACPI: APIC 00000000bdfac718 000682 (v03 INTEL S4600LH 06222004 INTL 20090903)
[ 0.000000] ACPI: SPMI 00000000bdfafc18 000040 (v05 INTEL S4600LH 06222004 INTL 20090903)
[ 0.000000] ACPI: MCFG 00000000bdfafb98 00003C (v01 INTEL S4600LH 06222004 INTL 20090903)
[ 0.000000] ACPI: WDDT 00000000bdfaff18 000040 (v01 INTEL S4600LH 06222004 INTL 20090903)
[ 0.000000] ACPI: SRAT 00000000bdf95598 0004F8 (v03 INTEL S4600LH 06222004 INTL 20090903)
[ 0.000000] ACPI: SLIT 00000000bdfafe98 00003C (v01 INTEL S4600LH 06222004 INTL 20090903)
[ 0.000000] ACPI: MSCT 00000000bdfaed18 000090 (v01 INTEL S4600LH 06222004 INTL 20090903)
[ 0.000000] ACPI: HPET 00000000bdfafe18 000038 (v01 INTEL S4600LH 06222004 INTL 20090903)
[ 0.000000] ACPI: SSDT 00000000bdfafd18 00002B (v02 INTEL S4600LH 00001000 INTL 20100331)
[ 0.000000] ACPI: SSDT 00000000bde27018 0794C4 (v02 INTEL S4600LH 00004000 INTL 20100331)
[ 0.000000] ACPI: HEST 00000000bdf96f18 0000A8 (v01 INTEL S4600LH 00000001 INTL 00000001)
[ 0.000000] ACPI: BERT 00000000bdfafd98 000030 (v01 INTEL S4600LH 00000001 INTL 00000001)
[ 0.000000] ACPI: ERST 00000000bdf96c98 000230 (v01 INTEL S4600LH 00000001 INTL 00000001)
[ 0.000000] ACPI: EINJ 00000000bdfad798 000130 (v01 INTEL S4600LH 00000001 INTL 00000001)
[ 0.000000] ACPI: SSDT 00000000bdf92018 000F41 (v02 INTEL S4600LH 00000002 INTL 20100331)
[ 0.000000] ACPI: SSDT 00000000bdf92f98 000045 (v02 INTEL S4600LH 00000001 INTL 20100331)
[ 0.000000] ACPI: SSDT 00000000bdface18 000181 (v02 INTEL S4600LH 00000003 INTL 20100331)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] mapped APIC to ffffffffff5f3000 ( fee00000)
[ 0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0b -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0d -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0f -> Node 0
[ 0.000000] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x27 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x28 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x29 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x2a -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x2b -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x2c -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x2d -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x2e -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x2f -> Node 1
[ 0.000000] SRAT: PXM 2 -> APIC 0x40 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x41 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x42 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x43 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x44 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x45 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x46 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x47 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x48 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x49 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x4a -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x4b -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x4c -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x4d -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x4e -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x4f -> Node 2
[ 0.000000] SRAT: PXM 3 -> APIC 0x60 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x61 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x62 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x63 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x64 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x65 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x66 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x67 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x68 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x69 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x6a -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x6b -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x6c -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x6d -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x6e -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x6f -> Node 3
[ 0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0xbfffffff]
[ 0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x43fffffff]
[ 0.000000] SRAT: Node 1 PXM 1 [mem 0x440000000-0x83fffffff]
[ 0.000000] SRAT: Node 2 PXM 2 [mem 0x840000000-0xc3fffffff]
[ 0.000000] SRAT: Node 3 PXM 3 [mem 0xc40000000-0x103fffffff]
[ 0.000000] NUMA: Initialized distance table, cnt=4
[ 0.000000] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x43fffffff] -> [mem 0x00000000-0x43fffffff]
[ 0.000000] Initmem setup node 0 [mem 0x00000000-0x43fffffff]
[ 0.000000] NODE_DATA [mem 0x43fffb000-0x43fffffff]
[ 0.000000] Initmem setup node 1 [mem 0x440000000-0x83fffffff]
[ 0.000000] NODE_DATA [mem 0x83fffb000-0x83fffffff]
[ 0.000000] Initmem setup node 2 [mem 0x840000000-0xc3fffffff]
[ 0.000000] NODE_DATA [mem 0xc3fffb000-0xc3fffffff]
[ 0.000000] Initmem setup node 3 [mem 0xc40000000-0x103fffffff]
[ 0.000000] NODE_DATA [mem 0x103fff8000-0x103fffcfff]
[ 0.000000] [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042fe00000-ffff88043fdfffff] on node 0
[ 0.000000] [ffffea0011000000-ffffea0020ffffff] PMD -> [ffff88082fe00000-ffff88083fdfffff] on node 1
[ 0.000000] [ffffea0021000000-ffffea0030ffffff] PMD -> [ffff880c2fe00000-ffff880c3fdfffff] on node 2
[ 0.000000] [ffffea0031000000-ffffea0040ffffff] PMD -> [ffff88102f600000-ffff88103f5fffff] on node 3
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
[ 0.000000] Normal [mem 0x100000000-0x103fffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00001000-0x0008efff]
[ 0.000000] node 0: [mem 0x00100000-0xbb3c6fff]
[ 0.000000] node 0: [mem 0xbdfb0000-0xbdffffff]
[ 0.000000] node 0: [mem 0x100000000-0x43fffffff]
[ 0.000000] node 1: [mem 0x440000000-0x83fffffff]
[ 0.000000] node 2: [mem 0x840000000-0xc3fffffff]
[ 0.000000] node 3: [mem 0xc40000000-0x103fffffff]
[ 0.000000] On node 0 totalpages: 4174757
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3982 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 11921 pages used for memmap
[ 0.000000] DMA32 zone: 762903 pages, LIFO batch:31
[ 0.000000] Normal zone: 53248 pages used for memmap
[ 0.000000] Normal zone: 3407872 pages, LIFO batch:31
[ 0.000000] On node 1 totalpages: 4194304
[ 0.000000] Normal zone: 65536 pages used for memmap
[ 0.000000] Normal zone: 4194304 pages, LIFO batch:31
[ 0.000000] On node 2 totalpages: 4194304
[ 0.000000] Normal zone: 65536 pages used for memmap
[ 0.000000] Normal zone: 4194304 pages, LIFO batch:31
[ 0.000000] On node 3 totalpages: 4194304
[ 0.000000] Normal zone: 65536 pages used for memmap
[ 0.000000] Normal zone: 4194304 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] mapped APIC to ffffffffff5f3000 ( fee00000)
[ 0.000000] ACPI: X2APIC (apic_id[0x00] uid[0x00] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x01] uid[0x01] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x02] uid[0x02] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x03] uid[0x03] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x04] uid[0x04] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x05] uid[0x05] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x06] uid[0x06] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x07] uid[0x07] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x08] uid[0x08] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x09] uid[0x09] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x0a] uid[0x0a] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x0b] uid[0x0b] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x0c] uid[0x0c] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x0d] uid[0x0d] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x0e] uid[0x0e] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x0f] uid[0x0f] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x10] uid[0x10] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x11] uid[0x11] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x12] uid[0x12] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x13] uid[0x13] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x14] uid[0x14] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x15] uid[0x15] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x16] uid[0x16] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x17] uid[0x17] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x18] uid[0x18] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x19] uid[0x19] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x1a] uid[0x1a] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x1b] uid[0x1b] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x1c] uid[0x1c] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x1d] uid[0x1d] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x1e] uid[0x1e] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x1f] uid[0x1f] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x20] uid[0x20] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x21] uid[0x21] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x22] uid[0x22] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x23] uid[0x23] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x24] uid[0x24] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x25] uid[0x25] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x26] uid[0x26] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x27] uid[0x27] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x28] uid[0x28] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x29] uid[0x29] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x2a] uid[0x2a] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x2b] uid[0x2b] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x2c] uid[0x2c] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x2d] uid[0x2d] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x2e] uid[0x2e] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x2f] uid[0x2f] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x30] uid[0x30] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x31] uid[0x31] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x32] uid[0x32] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x33] uid[0x33] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x34] uid[0x34] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x35] uid[0x35] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x36] uid[0x36] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x37] uid[0x37] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x38] uid[0x38] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x39] uid[0x39] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x3a] uid[0x3a] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x3b] uid[0x3b] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x3c] uid[0x3c] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x3d] uid[0x3d] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x3e] uid[0x3e] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: X2APIC (apic_id[0x3f] uid[0x3f] disabled)
[ 0.000000] ACPI: x2apic entry ignored
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x08] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x0a] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x0c] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x0e] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x20] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x22] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x24] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x26] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x28] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x2a] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x2c] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x2e] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x40] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x42] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x44] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x46] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x48] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x4a] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x4c] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x4e] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x60] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x62] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x64] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x66] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x68] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x6a] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x6c] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x6e] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x21] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x22] lapic_id[0x05] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x23] lapic_id[0x07] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x24] lapic_id[0x09] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x25] lapic_id[0x0b] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x26] lapic_id[0x0d] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x27] lapic_id[0x0f] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x28] lapic_id[0x21] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x29] lapic_id[0x23] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2a] lapic_id[0x25] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2b] lapic_id[0x27] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2c] lapic_id[0x29] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2d] lapic_id[0x2b] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2e] lapic_id[0x2d] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2f] lapic_id[0x2f] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x30] lapic_id[0x41] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x31] lapic_id[0x43] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x32] lapic_id[0x45] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x33] lapic_id[0x47] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x34] lapic_id[0x49] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x35] lapic_id[0x4b] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x36] lapic_id[0x4d] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x37] lapic_id[0x4f] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x38] lapic_id[0x61] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x39] lapic_id[0x63] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3a] lapic_id[0x65] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3b] lapic_id[0x67] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3c] lapic_id[0x69] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3d] lapic_id[0x6b] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3e] lapic_id[0x6d] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3f] lapic_id[0x6f] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec3f000] gsi_base[24])
[ 0.000000] IOAPIC[1]: apic_id 1, version 32, address 0xfec3f000, GSI 24-47
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec7f000] gsi_base[48])
[ 0.000000] IOAPIC[2]: apic_id 2, version 32, address 0xfec7f000, GSI 48-71
[ 0.000000] ACPI: IOAPIC (id[0x03] address[0xfecbf000] gsi_base[72])
[ 0.000000] IOAPIC[3]: apic_id 3, version 32, address 0xfecbf000, GSI 72-95
[ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfecff000] gsi_base[96])
[ 0.000000] IOAPIC[4]: apic_id 4, version 32, address 0xfecff000, GSI 96-119
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 00, APIC ID 0, APIC INT 02
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 09, APIC ID 0, APIC INT 09
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 01, APIC ID 0, APIC INT 01
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 03, APIC ID 0, APIC INT 03
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 04, APIC ID 0, APIC INT 04
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 05, APIC ID 0, APIC INT 05
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 06, APIC ID 0, APIC INT 06
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 07, APIC ID 0, APIC INT 07
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 08, APIC ID 0, APIC INT 08
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0a, APIC ID 0, APIC INT 0a
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0b, APIC ID 0, APIC INT 0b
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0c, APIC ID 0, APIC INT 0c
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0d, APIC ID 0, APIC INT 0d
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0e, APIC ID 0, APIC INT 0e
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0f, APIC ID 0, APIC INT 0f
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.000000] smpboot: Allowing 64 CPUs, 0 hotplug CPUs
[ 0.000000] mapped IOAPIC to ffffffffff5f2000 (fec00000)
[ 0.000000] mapped IOAPIC to ffffffffff5f1000 (fec3f000)
[ 0.000000] mapped IOAPIC to ffffffffff5f0000 (fec7f000)
[ 0.000000] mapped IOAPIC to ffffffffff5ef000 (fecbf000)
[ 0.000000] mapped IOAPIC to ffffffffff5ee000 (fecff000)
[ 0.000000] nr_irqs_gsi: 136
[ 0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x00090000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbb3c7000-0xbdd2efff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbdd2f000-0xbde26fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbde27000-0xbdea0fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbdea1000-0xbdf2efff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbdf2f000-0xbdfaffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbe000000-0xcfffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd0000000-0xfebfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed18fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed19000-0xfed19fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffa1ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xffa20000-0xffffffff]
[ 0.000000] e820: [mem 0xd0000000-0xfebfffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:64 nr_node_ids:4
[ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff88042fc00000 s81088 r8192 d21312 u131072
[ 0.000000] pcpu-alloc: s81088 r8192 d21312 u131072 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 32 33 34 35 36 37 38 39
[ 0.000000] pcpu-alloc: [1] 08 09 10 11 12 13 14 15 40 41 42 43 44 45 46 47
[ 0.000000] pcpu-alloc: [2] 16 17 18 19 20 21 22 23 48 49 50 51 52 53 54 55
[ 0.000000] pcpu-alloc: [3] 24 25 26 27 28 29 30 31 56 57 58 59 60 61 62 63
[ 0.000000] Built 4 zonelists in Zone order, mobility grouping on. Total pages: 16495807
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: user=lkp job=/lkp/scheduled/lkp-sbx04/VIP_boot-1-x86_64-lkp-e0d58133c21fd445e029fb43752998384fa4df5c-4.yaml ARCH=x86_64 BOOT_IMAGE=/kernel/x86_64-lkp/e0d58133c21fd445e029fb43752998384fa4df5c/vmlinuz-3.14.0-rc3-00007-ge0d5813 kconfig=x86_64-lkp commit=e0d58133c21fd445e029fb43752998384fa4df5c modules_initrd=/kernel/x86_64-lkp/e0d58133c21fd445e029fb43752998384fa4df5c/modules.cgz RESULT_ROOT=/lkp/result/lkp-sbx04/fake/boot/1/x86_64-lkp/e0d58133c21fd445e029fb43752998384fa4df5c/0 initrd=/kernel-tests/initrd/lkp-rootfs.cgz root=/dev/ram0 ip=::::lkp-sbx04::dhcp oops=panic earlyprintk=ttyS0,115200 debug apic=debug sysrq_always_enabled rcupdate.rcu_cpu_stall_timeout=100 panic=10 softlockup_panic=1 nmi_watchdog=panic load_ramdisk=2 prompt_ramdisk=0 console=ttyS0,115200 console=tty0 vga=normal
[ 0.000000] sysrq: sysrq always enabled.
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[ 0.000000] Checking aperture...
[ 0.000000] No AGP bridge found
[ 0.000000] Memory: 65674192K/67030676K available (10030K kernel code, 1240K rwdata, 4112K rodata, 1424K init, 1748K bss, 1356484K reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=64, Nodes=4
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
[ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=64.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=64
[ 0.000000] NR_IRQS:33024 nr_irqs:2824 16
[ 0.000000] ACPI: Core revision 20131218
[ 0.000000] ACPI: All ACPI Tables successfully acquired
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] bootconsole [earlyser0] disabled
[ 0.000000] console [ttyS0] enabled
[ 0.000000] allocated 268435456 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] Disabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2693.326 MHz processor
[ 0.000071] Calibrating delay loop (skipped), value calculated using timer frequency.. 5386.65 BogoMIPS (lpj=10773304)
[ 0.012219] pid_max: default: 65536 minimum: 512
[ 0.027121] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes)
[ 0.066088] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[ 0.087099] Mount-cache hash table entries: 256
[ 0.093010] Initializing cgroup subsys memory
[ 0.098029] Initializing cgroup subsys devices
[ 0.103464] Initializing cgroup subsys freezer
[ 0.108890] Initializing cgroup subsys blkio
[ 0.114114] Initializing cgroup subsys perf_event
[ 0.119849] Initializing cgroup subsys hugetlb
[ 0.125395] CPU: Physical Processor ID: 0
[ 0.130328] CPU: Processor Core ID: 0
[ 0.134899] mce: CPU supports 20 MCE banks
[ 0.139982] CPU0: Thermal LVT vector (0xfa) already installed
[ 0.146891] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[ 0.146891] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[ 0.146891] tlb_flushall_shift: 6
[ 0.165196] Freeing SMP alternatives memory: 40K (ffffffff8229c000 - ffffffff822a6000)
[ 0.178336] ftrace: allocating 39020 entries in 153 pages
[ 0.223658] Getting VERSION: 1060015
[ 0.228101] Getting VERSION: 1060015
[ 0.232559] Getting ID: 0
[ 0.235944] Getting ID: 0
[ 0.239337] Switched APIC routing to physical flat.
[ 0.245248] masked ExtINT on CPU#0
[ 0.250299] ENABLING IO-APIC IRQs
[ 0.254467] init IO_APIC IRQs
[ 0.258237] apic 0 pin 0 not connected
[ 0.263003] IOAPIC[0]: Set routing entry (0-1 -> 0x31 -> IRQ 1 Mode:0 Active:0 Dest:0)
[ 0.272719] IOAPIC[0]: Set routing entry (0-2 -> 0x30 -> IRQ 0 Mode:0 Active:0 Dest:0)
[ 0.282431] IOAPIC[0]: Set routing entry (0-3 -> 0x33 -> IRQ 3 Mode:0 Active:0 Dest:0)
[ 0.292162] IOAPIC[0]: Set routing entry (0-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:0)
[ 0.301882] IOAPIC[0]: Set routing entry (0-5 -> 0x35 -> IRQ 5 Mode:0 Active:0 Dest:0)
[ 0.311590] IOAPIC[0]: Set routing entry (0-6 -> 0x36 -> IRQ 6 Mode:0 Active:0 Dest:0)
[ 0.321293] IOAPIC[0]: Set routing entry (0-7 -> 0x37 -> IRQ 7 Mode:0 Active:0 Dest:0)
[ 0.330998] IOAPIC[0]: Set routing entry (0-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:0)
[ 0.340695] IOAPIC[0]: Set routing entry (0-9 -> 0x39 -> IRQ 9 Mode:1 Active:0 Dest:0)
[ 0.350392] IOAPIC[0]: Set routing entry (0-10 -> 0x3a -> IRQ 10 Mode:0 Active:0 Dest:0)
[ 0.360280] IOAPIC[0]: Set routing entry (0-11 -> 0x3b -> IRQ 11 Mode:0 Active:0 Dest:0)
[ 0.370180] IOAPIC[0]: Set routing entry (0-12 -> 0x3c -> IRQ 12 Mode:0 Active:0 Dest:0)
[ 0.380071] IOAPIC[0]: Set routing entry (0-13 -> 0x3d -> IRQ 13 Mode:0 Active:0 Dest:0)
[ 0.389961] IOAPIC[0]: Set routing entry (0-14 -> 0x3e -> IRQ 14 Mode:0 Active:0 Dest:0)
[ 0.399850] IOAPIC[0]: Set routing entry (0-15 -> 0x3f -> IRQ 15 Mode:0 Active:0 Dest:0)
[ 0.409739] apic 0 pin 16 not connected
[ 0.414578] apic 0 pin 17 not connected
[ 0.419421] apic 0 pin 18 not connected
[ 0.424264] apic 0 pin 19 not connected
[ 0.429109] apic 0 pin 20 not connected
[ 0.433951] apic 0 pin 21 not connected
[ 0.438791] apic 0 pin 22 not connected
[ 0.443636] apic 0 pin 23 not connected
[ 0.448473] apic 1 pin 0 not connected
[ 0.453212] apic 1 pin 1 not connected
[ 0.457956] apic 1 pin 2 not connected
[ 0.462696] apic 1 pin 3 not connected
[ 0.467445] apic 1 pin 4 not connected
[ 0.472184] apic 1 pin 5 not connected
[ 0.476915] apic 1 pin 6 not connected
[ 0.481658] apic 1 pin 7 not connected
[ 0.486405] apic 1 pin 8 not connected
[ 0.491144] apic 1 pin 9 not connected
[ 0.495888] apic 1 pin 10 not connected
[ 0.500725] apic 1 pin 11 not connected
[ 0.505566] apic 1 pin 12 not connected
[ 0.510398] apic 1 pin 13 not connected
[ 0.515235] apic 1 pin 14 not connected
[ 0.520071] apic 1 pin 15 not connected
[ 0.524913] apic 1 pin 16 not connected
[ 0.529752] apic 1 pin 17 not connected
[ 0.534589] apic 1 pin 18 not connected
[ 0.539416] apic 1 pin 19 not connected
[ 0.544263] apic 1 pin 20 not connected
[ 0.549100] apic 1 pin 21 not connected
[ 0.553934] apic 1 pin 22 not connected
[ 0.558775] apic 1 pin 23 not connected
[ 0.563620] apic 2 pin 0 not connected
[ 0.568359] apic 2 pin 1 not connected
[ 0.573099] apic 2 pin 2 not connected
[ 0.577842] apic 2 pin 3 not connected
[ 0.582588] apic 2 pin 4 not connected
[ 0.587327] apic 2 pin 5 not connected
[ 0.592067] apic 2 pin 6 not connected
[ 0.596809] apic 2 pin 7 not connected
[ 0.601555] apic 2 pin 8 not connected
[ 0.606295] apic 2 pin 9 not connected
[ 0.611038] apic 2 pin 10 not connected
[ 0.615875] apic 2 pin 11 not connected
[ 0.620710] apic 2 pin 12 not connected
[ 0.625549] apic 2 pin 13 not connected
[ 0.630387] apic 2 pin 14 not connected
[ 0.635221] apic 2 pin 15 not connected
[ 0.640058] apic 2 pin 16 not connected
[ 0.644897] apic 2 pin 17 not connected
[ 0.649731] apic 2 pin 18 not connected
[ 0.654576] apic 2 pin 19 not connected
[ 0.659422] apic 2 pin 20 not connected
[ 0.664258] apic 2 pin 21 not connected
[ 0.669093] apic 2 pin 22 not connected
[ 0.673932] apic 2 pin 23 not connected
[ 0.678768] apic 3 pin 0 not connected
[ 0.683508] apic 3 pin 1 not connected
[ 0.688252] apic 3 pin 2 not connected
[ 0.692992] apic 3 pin 3 not connected
[ 0.697733] apic 3 pin 4 not connected
[ 0.702475] apic 3 pin 5 not connected
[ 0.707214] apic 3 pin 6 not connected
[ 0.711956] apic 3 pin 7 not connected
[ 0.716698] apic 3 pin 8 not connected
[ 0.721436] apic 3 pin 9 not connected
[ 0.726177] apic 3 pin 10 not connected
[ 0.731017] apic 3 pin 11 not connected
[ 0.735852] apic 3 pin 12 not connected
[ 0.740689] apic 3 pin 13 not connected
[ 0.745527] apic 3 pin 14 not connected
[ 0.750364] apic 3 pin 15 not connected
[ 0.755200] apic 3 pin 16 not connected
[ 0.760038] apic 3 pin 17 not connected
[ 0.764875] apic 3 pin 18 not connected
[ 0.769712] apic 3 pin 19 not connected
[ 0.774551] apic 3 pin 20 not connected
[ 0.779387] apic 3 pin 21 not connected
[ 0.784214] apic 3 pin 22 not connected
[ 0.789054] apic 3 pin 23 not connected
[ 0.793892] apic 4 pin 0 not connected
[ 0.798638] apic 4 pin 1 not connected
[ 0.803381] apic 4 pin 2 not connected
[ 0.808124] apic 4 pin 3 not connected
[ 0.812853] apic 4 pin 4 not connected
[ 0.817598] apic 4 pin 5 not connected
[ 0.822339] apic 4 pin 6 not connected
[ 0.827078] apic 4 pin 7 not connected
[ 0.831820] apic 4 pin 8 not connected
[ 0.836550] apic 4 pin 9 not connected
[ 0.841290] apic 4 pin 10 not connected
[ 0.846130] apic 4 pin 11 not connected
[ 0.850968] apic 4 pin 12 not connected
[ 0.855804] apic 4 pin 13 not connected
[ 0.860646] apic 4 pin 14 not connected
[ 0.865482] apic 4 pin 15 not connected
[ 0.870326] apic 4 pin 16 not connected
[ 0.875166] apic 4 pin 17 not connected
[ 0.880003] apic 4 pin 18 not connected
[ 0.884839] apic 4 pin 19 not connected
[ 0.889685] apic 4 pin 20 not connected
[ 0.894523] apic 4 pin 21 not connected
[ 0.899358] apic 4 pin 22 not connected
[ 0.904195] apic 4 pin 23 not connected
[ 0.909186] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.956034] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-4650 0 @ 2.70GHz (fam: 06, model: 2d, stepping: 07)
[ 0.967573] TSC deadline timer enabled
[ 0.972274] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[ 0.985281] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
[ 0.995075] ... version: 3
[ 1.000019] ... bit width: 48
[ 1.005059] ... generic registers: 4
[ 1.010002] ... value mask: 0000ffffffffffff
[ 1.016400] ... max period: 0000ffffffffffff
[ 1.022792] ... fixed-purpose events: 3
[ 1.027739] ... event mask: 000000070000000f
[ 1.038652] x86: Booting SMP configuration:
[ 1.043793] .... node #0, CPUs: #1
[ 1.063168] masked ExtINT on CPU#1
[ 1.067280] CPU1: Thermal LVT vector (0xfa) already installed
[ 1.076137] #2
[ 1.089500] masked ExtINT on CPU#2
[ 1.093603] CPU2: Thermal LVT vector (0xfa) already installed
[ 1.102381] #3
[ 1.116139] masked ExtINT on CPU#3
[ 1.120229] CPU3: Thermal LVT vector (0xfa) already installed
[ 1.128996] #4
[ 1.142364] masked ExtINT on CPU#4
[ 1.146457] CPU4: Thermal LVT vector (0xfa) already installed
[ 1.155234] #5
[ 1.168604] masked ExtINT on CPU#5
[ 1.172717] CPU5: Thermal LVT vector (0xfa) already installed
[ 1.181573] #6
[ 1.194928] masked ExtINT on CPU#6
[ 1.199040] CPU6: Thermal LVT vector (0xfa) already installed
[ 1.207851] #7
[ 1.221192] masked ExtINT on CPU#7
[ 1.225305] CPU7: Thermal LVT vector (0xfa) already installed
[ 1.234161]
[ 1.236666] .... node #1, CPUs: #8
[ 1.253866] masked ExtINT on CPU#8
[ 1.257975] CPU8: Thermal LVT vector (0xfa) already installed
[ 1.364758] #9
[ 1.377844] masked ExtINT on CPU#9
[ 1.381985] CPU9: Thermal LVT vector (0xfa) already installed
[ 1.390785] #10
[ 1.403875] masked ExtINT on CPU#10
[ 1.408106] CPU10: Thermal LVT vector (0xfa) already installed
[ 1.417027] #11
[ 1.430498] masked ExtINT on CPU#11
[ 1.434737] CPU11: Thermal LVT vector (0xfa) already installed
[ 1.443640] #12
[ 1.456752] masked ExtINT on CPU#12
[ 1.460983] CPU12: Thermal LVT vector (0xfa) already installed
[ 1.469880] #13
[ 1.482960] masked ExtINT on CPU#13
[ 1.487164] CPU13: Thermal LVT vector (0xfa) already installed
[ 1.495991] #14
[ 1.509081] masked ExtINT on CPU#14
[ 1.513285] CPU14: Thermal LVT vector (0xfa) already installed
[ 1.522119] #15
[ 1.535830] masked ExtINT on CPU#15
[ 1.540052] CPU15: Thermal LVT vector (0xfa) already installed
[ 1.549005]
[ 1.560450] .... node #2, CPUs: #16
[ 1.577133] masked ExtINT on CPU#16
[ 1.581376] CPU16: Thermal LVT vector (0xfa) already installed
[ 1.685175] #17
[ 1.698541] masked ExtINT on CPU#17
[ 1.702791] CPU17: Thermal LVT vector (0xfa) already installed
[ 1.711736] #18
[ 1.725124] masked ExtINT on CPU#18
[ 1.729368] CPU18: Thermal LVT vector (0xfa) already installed
[ 1.738309] #19
[ 1.752074] masked ExtINT on CPU#19
[ 1.756318] CPU19: Thermal LVT vector (0xfa) already installed
[ 1.765208] #20
[ 1.778608] masked ExtINT on CPU#20
[ 1.782851] CPU20: Thermal LVT vector (0xfa) already installed
[ 1.791781] #21
[ 1.805152] masked ExtINT on CPU#21
[ 1.809402] CPU21: Thermal LVT vector (0xfa) already installed
[ 1.818300] #22
[ 1.831654] masked ExtINT on CPU#22
[ 1.835901] CPU22: Thermal LVT vector (0xfa) already installed
[ 1.844739] #23
[ 1.858451] masked ExtINT on CPU#23
[ 1.862667] CPU23: Thermal LVT vector (0xfa) already installed
[ 1.871612]
[ 1.873758] .... node #3, CPUs: #24
[ 1.891210] masked ExtINT on CPU#24
[ 1.895431] CPU24: Thermal LVT vector (0xfa) already installed
[ 2.002349] #25
[ 2.015719] masked ExtINT on CPU#25
[ 2.019961] CPU25: Thermal LVT vector (0xfa) already installed
[ 2.028859] #26
[ 2.042251] masked ExtINT on CPU#26
[ 2.046487] CPU26: Thermal LVT vector (0xfa) already installed
[ 2.055427] #27
[ 2.069185] masked ExtINT on CPU#27
[ 2.073420] CPU27: Thermal LVT vector (0xfa) already installed
[ 2.082350] #28
[ 2.095734] masked ExtINT on CPU#28
[ 2.099969] CPU28: Thermal LVT vector (0xfa) already installed
[ 2.108865] #29
[ 2.122223] masked ExtINT on CPU#29
[ 2.126457] CPU29: Thermal LVT vector (0xfa) already installed
[ 2.135275] #30
[ 2.148641] masked ExtINT on CPU#30
[ 2.152862] CPU30: Thermal LVT vector (0xfa) already installed
[ 2.161709] #31
[ 2.175416] masked ExtINT on CPU#31
[ 2.179623] CPU31: Thermal LVT vector (0xfa) already installed
[ 2.188522]
[ 2.190659] .... node #0, CPUs: #32
[ 2.206837] masked ExtINT on CPU#32
[ 2.211064] CPU32: Thermal LVT vector (0xfa) already installed
[ 2.220115] #33
[ 2.233488] masked ExtINT on CPU#33
[ 2.237710] CPU33: Thermal LVT vector (0xfa) already installed
[ 2.246677] #34
[ 2.260086] masked ExtINT on CPU#34
[ 2.264302] CPU34: Thermal LVT vector (0xfa) already installed
[ 2.273261] #35
[ 2.287029] masked ExtINT on CPU#35
[ 2.291259] CPU35: Thermal LVT vector (0xfa) already installed
[ 2.300190] #36
[ 2.313584] masked ExtINT on CPU#36
[ 2.317785] CPU36: Thermal LVT vector (0xfa) already installed
[ 2.326739] #37
[ 2.340110] masked ExtINT on CPU#37
[ 2.344324] CPU37: Thermal LVT vector (0xfa) already installed
[ 2.353275] #38
[ 2.366657] masked ExtINT on CPU#38
[ 2.370871] CPU38: Thermal LVT vector (0xfa) already installed
[ 2.379849] #39
[ 2.393578] masked ExtINT on CPU#39
[ 2.397787] CPU39: Thermal LVT vector (0xfa) already installed
[ 2.406797]
[ 2.408935] .... node #1, CPUs: #40
[ 2.424235] masked ExtINT on CPU#40
[ 2.428465] CPU40: Thermal LVT vector (0xfa) already installed
[ 2.437326] #41
[ 2.450422] masked ExtINT on CPU#41
[ 2.454650] CPU41: Thermal LVT vector (0xfa) already installed
[ 2.463568] #42
[ 2.476674] masked ExtINT on CPU#42
[ 2.480903] CPU42: Thermal LVT vector (0xfa) already installed
[ 2.489807] #43
[ 2.503276] masked ExtINT on CPU#43
[ 2.507520] CPU43: Thermal LVT vector (0xfa) already installed
[ 2.516374] #44
[ 2.529491] masked ExtINT on CPU#44
[ 2.533726] CPU44: Thermal LVT vector (0xfa) already installed
[ 2.542623] #45
[ 2.555705] masked ExtINT on CPU#45
[ 2.559913] CPU45: Thermal LVT vector (0xfa) already installed
[ 2.568840] #46
[ 2.581940] masked ExtINT on CPU#46
[ 2.586147] CPU46: Thermal LVT vector (0xfa) already installed
[ 2.594996] #47
[ 2.608442] masked ExtINT on CPU#47
[ 2.612641] CPU47: Thermal LVT vector (0xfa) already installed
[ 2.621541]
[ 2.623676] .... node #2, CPUs: #48
[ 2.639256] masked ExtINT on CPU#48
[ 2.643501] CPU48: Thermal LVT vector (0xfa) already installed
[ 2.652455] #49
[ 2.665818] masked ExtINT on CPU#49
[ 2.670058] CPU49: Thermal LVT vector (0xfa) already installed
[ 2.679015] #50
[ 2.692397] masked ExtINT on CPU#50
[ 2.696637] CPU50: Thermal LVT vector (0xfa) already installed
[ 2.705560] #51
[ 2.719317] masked ExtINT on CPU#51
[ 2.723530] CPU51: Thermal LVT vector (0xfa) already installed
[ 2.732449] #52
[ 2.745842] masked ExtINT on CPU#52
[ 2.750083] CPU52: Thermal LVT vector (0xfa) already installed
[ 2.759009] #53
[ 2.772369] masked ExtINT on CPU#53
[ 2.776604] CPU53: Thermal LVT vector (0xfa) already installed
[ 2.785529] #54
[ 2.798898] masked ExtINT on CPU#54
[ 2.803140] CPU54: Thermal LVT vector (0xfa) already installed
[ 2.812087] #55
[ 2.825800] masked ExtINT on CPU#55
[ 2.830048] CPU55: Thermal LVT vector (0xfa) already installed
[ 2.839026]
[ 2.841171] .... node #3, CPUs: #56
[ 2.856739] masked ExtINT on CPU#56
[ 2.860946] CPU56: Thermal LVT vector (0xfa) already installed
[ 2.869856] #57
[ 2.883230] masked ExtINT on CPU#57
[ 2.887448] CPU57: Thermal LVT vector (0xfa) already installed
[ 2.896391] #58
[ 2.909774] masked ExtINT on CPU#58
[ 2.913978] CPU58: Thermal LVT vector (0xfa) already installed
[ 2.922826] #59
[ 2.936577] masked ExtINT on CPU#59
[ 2.940783] CPU59: Thermal LVT vector (0xfa) already installed
[ 2.949703] #60
[ 2.963091] masked ExtINT on CPU#60
[ 2.967324] CPU60: Thermal LVT vector (0xfa) already installed
[ 2.976245] #61
[ 2.989608] masked ExtINT on CPU#61
[ 2.993832] CPU61: Thermal LVT vector (0xfa) already installed
[ 3.002768] #62
[ 3.016133] masked ExtINT on CPU#62
[ 3.020343] CPU62: Thermal LVT vector (0xfa) already installed
[ 3.029210] #63
[ 3.042924] masked ExtINT on CPU#63
[ 3.047121] CPU63: Thermal LVT vector (0xfa) already installed
[ 3.055880] x86: Booted up 4 nodes, 64 CPUs
[ 3.061034] smpboot: Total of 64 processors activated (345116.94 BogoMIPS)
[ 3.343943] devtmpfs: initialized
[ 3.373664] PM: Registering ACPI NVS region [mem 0xbdd2f000-0xbde26fff] (1015808 bytes)
[ 3.383580] PM: Registering ACPI NVS region [mem 0xbdea1000-0xbdf2efff] (581632 bytes)
[ 3.396673] xor: automatically using best checksumming function:
[ 3.443956] avx : 8934.000 MB/sec
[ 3.449117] atomic64 test passed for x86-64 platform with CX8 and with SSE
[ 3.457568] NET: Registered protocol family 16
[ 3.464626] cpuidle: using governor ladder
[ 3.469683] cpuidle: using governor menu
[ 3.475588] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 3.484904] ACPI: bus type PCI registered
[ 3.489859] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 3.497738] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
[ 3.509015] PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
[ 3.537394] PCI: Using configuration type 1 for base access
[ 3.577795] bio: create slab <bio-0> at 0
[ 3.650944] raid6: sse2x1 3093 MB/s
[ 3.723799] raid6: sse2x2 3943 MB/s
[ 3.796486] raid6: sse2x4 4553 MB/s
[ 3.801146] raid6: using algorithm sse2x4 (4553 MB/s)
[ 3.807266] raid6: using ssse3x2 recovery algorithm
[ 3.813647] ACPI: Added _OSI(Module Device)
[ 3.818804] ACPI: Added _OSI(Processor Device)
[ 3.824234] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 3.829956] ACPI: Added _OSI(Processor Aggregator Device)
[ 3.864172] ACPI: Executed 1 blocks of module-level executable AML code
[ 4.092485] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 4.132378] ACPI: Interpreter enabled
[ 4.136969] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131218/hwxface-580)
[ 4.148318] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20131218/hwxface-580)
[ 4.159659] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20131218/hwxface-580)
[ 4.171006] ACPI: (supports S0 S1 S5)
[ 4.175569] ACPI: Using IOAPIC for interrupt routing
[ 4.181869] HEST: Table parsing has been initialized.
[ 4.187985] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 4.202729] ACPI: No dock devices found.
[ 4.287021] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 4.294425] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 4.305014] acpi PNP0A08:00: _OSC: platform does not support [AER]
[ 4.312855] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 4.322828] acpi PNP0A08:00: ignoring host bridge window [mem 0x000d0000-0x000d3fff] (conflicts with Adapter ROM [mem 0x000c8000-0x000d15ff])
[ 4.338444] PCI host bridge to bus 0000:00
[ 4.343491] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 4.350095] pci_bus 0000:00: root bus resource [io 0x0000-0x5fff]
[ 4.357471] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 4.365624] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
[ 4.373778] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
[ 4.381936] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
[ 4.390092] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
[ 4.398248] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[ 4.406403] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[ 4.414559] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
[ 4.422716] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[ 4.430869] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
[ 4.439027] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
[ 4.447185] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
[ 4.455343] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
[ 4.463500] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xdfffffff]
[ 4.471661] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3c007fffffff]
[ 4.480987] pci 0000:00:00.0: [8086:3c00] type 00 class 0x060000
[ 4.488253] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[ 4.495779] pci 0000:00:01.0: [8086:3c02] type 01 class 0x060400
[ 4.503058] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 4.510439] pci 0000:00:01.0: System wakeup disabled by ACPI
[ 4.517404] pci 0000:00:02.0: [8086:3c04] type 01 class 0x060400
[ 4.524684] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[ 4.532072] pci 0000:00:02.0: System wakeup disabled by ACPI
[ 4.539061] pci 0000:00:03.0: [8086:3c08] type 01 class 0x060400
[ 4.546353] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[ 4.553744] pci 0000:00:03.0: System wakeup disabled by ACPI
[ 4.560698] pci 0000:00:03.2: [8086:3c0a] type 01 class 0x060400
[ 4.567992] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[ 4.575381] pci 0000:00:03.2: System wakeup disabled by ACPI
[ 4.582341] pci 0000:00:04.0: [8086:3c20] type 00 class 0x088000
[ 4.589539] pci 0000:00:04.0: reg 0x10: [mem 0xdff90000-0xdff93fff 64bit]
[ 4.597915] pci 0000:00:04.1: [8086:3c21] type 00 class 0x088000
[ 4.605135] pci 0000:00:04.1: reg 0x10: [mem 0xdff80000-0xdff83fff 64bit]
[ 4.613518] pci 0000:00:04.2: [8086:3c22] type 00 class 0x088000
[ 4.620713] pci 0000:00:04.2: reg 0x10: [mem 0xdff70000-0xdff73fff 64bit]
[ 4.629097] pci 0000:00:04.3: [8086:3c23] type 00 class 0x088000
[ 4.636292] pci 0000:00:04.3: reg 0x10: [mem 0xdff60000-0xdff63fff 64bit]
[ 4.644635] pci 0000:00:04.4: [8086:3c24] type 00 class 0x088000
[ 4.651847] pci 0000:00:04.4: reg 0x10: [mem 0xdff50000-0xdff53fff 64bit]
[ 4.660230] pci 0000:00:04.5: [8086:3c25] type 00 class 0x088000
[ 4.667443] pci 0000:00:04.5: reg 0x10: [mem 0xdff40000-0xdff43fff 64bit]
[ 4.675834] pci 0000:00:04.6: [8086:3c26] type 00 class 0x088000
[ 4.683055] pci 0000:00:04.6: reg 0x10: [mem 0xdff30000-0xdff33fff 64bit]
[ 4.691426] pci 0000:00:04.7: [8086:3c27] type 00 class 0x088000
[ 4.698636] pci 0000:00:04.7: reg 0x10: [mem 0xdff20000-0xdff23fff 64bit]
[ 4.707025] pci 0000:00:05.0: [8086:3c28] type 00 class 0x088000
[ 4.714503] pci 0000:00:05.2: [8086:3c2a] type 00 class 0x088000
[ 4.721969] pci 0000:00:05.4: [8086:3c2c] type 00 class 0x080020
[ 4.729181] pci 0000:00:05.4: reg 0x10: [mem 0xd0f60000-0xd0f60fff]
[ 4.736949] pci 0000:00:05.6: [8086:3c40] type 00 class 0x110100
[ 4.744422] pci 0000:00:06.0: [8086:3c60] type 00 class 0x088000
[ 4.751931] pci 0000:00:06.1: [8086:3c61] type 00 class 0x060000
[ 4.759376] pci 0000:00:06.2: [8086:3c62] type 00 class 0x060000
[ 4.766851] pci 0000:00:06.3: [8086:3c63] type 00 class 0x060000
[ 4.774329] pci 0000:00:06.4: [8086:3c64] type 00 class 0x060000
[ 4.781798] pci 0000:00:06.5: [8086:3c65] type 00 class 0x060000
[ 4.789278] pci 0000:00:06.6: [8086:3c66] type 00 class 0x060000
[ 4.796734] pci 0000:00:06.7: [8086:3c67] type 00 class 0x060000
[ 4.804200] pci 0000:00:07.0: [8086:3c68] type 00 class 0x060000
[ 4.811693] pci 0000:00:07.1: [8086:3c69] type 00 class 0x060000
[ 4.819139] pci 0000:00:07.2: [8086:3c6a] type 00 class 0x060000
[ 4.826608] pci 0000:00:07.3: [8086:3c6b] type 00 class 0x060000
[ 4.834100] pci 0000:00:07.4: [8086:3c6c] type 00 class 0x060000
[ 4.841625] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000
[ 4.848820] pci 0000:00:16.0: reg 0x10: [mem 0xd0f50000-0xd0f5000f 64bit]
[ 4.856951] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 4.864485] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000
[ 4.871701] pci 0000:00:16.1: reg 0x10: [mem 0xd0f40000-0xd0f4000f 64bit]
[ 4.879844] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[ 4.887430] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320
[ 4.894646] pci 0000:00:1a.0: reg 0x10: [mem 0xd0f20000-0xd0f203ff]
[ 4.902242] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 4.909669] pci 0000:00:1a.0: System wakeup disabled by ACPI
[ 4.916637] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400
[ 4.923967] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 4.931357] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 4.938321] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400
[ 4.945616] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[ 4.952993] pci 0000:00:1c.7: System wakeup disabled by ACPI
[ 4.959935] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[ 4.967137] pci 0000:00:1d.0: reg 0x10: [mem 0xd0f10000-0xd0f103ff]
[ 4.974738] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 4.982151] pci 0000:00:1d.0: System wakeup disabled by ACPI
[ 4.989076] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[ 4.996432] pci 0000:00:1e.0: System wakeup disabled by ACPI
[ 5.003369] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[ 5.010900] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601
[ 5.018119] pci 0000:00:1f.2: reg 0x10: [io 0x3070-0x3077]
[ 5.024822] pci 0000:00:1f.2: reg 0x14: [io 0x3060-0x3063]
[ 5.031521] pci 0000:00:1f.2: reg 0x18: [io 0x3050-0x3057]
[ 5.038233] pci 0000:00:1f.2: reg 0x1c: [io 0x3040-0x3043]
[ 5.044934] pci 0000:00:1f.2: reg 0x20: [io 0x3020-0x303f]
[ 5.051633] pci 0000:00:1f.2: reg 0x24: [mem 0xd0f00000-0xd0f007ff]
[ 5.059173] pci 0000:00:1f.2: PME# supported from D3hot
[ 5.065744] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500
[ 5.072944] pci 0000:00:1f.3: reg 0x10: [mem 0xdff10000-0xdff100ff 64bit]
[ 5.081022] pci 0000:00:1f.3: reg 0x20: [io 0x3000-0x301f]
[ 5.088124] pci 0000:01:00.0: [8086:1d74] type 01 class 0x060400
[ 5.095335] pci 0000:01:00.0: reg 0x10: [mem 0xd0e00000-0xd0e03fff]
[ 5.102900] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 5.118247] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 5.124572] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 5.131851] pci 0000:00:01.0: bridge window [mem 0xd0d00000-0xd0efffff]
[ 5.139908] pci 0000:00:01.0: bridge window [mem 0xdc800000-0xdd1fffff 64bit pref]
[ 5.158969] pci 0000:02:08.0: [8086:1d3f] type 01 class 0x060400
[ 5.166285] pci 0000:02:08.0: PME# supported from D0 D3hot D3cold
[ 5.173776] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 5.180100] pci 0000:01:00.0: bridge window [io 0x2000-0x2fff]
[ 5.187381] pci 0000:01:00.0: bridge window [mem 0xd0d00000-0xd0dfffff]
[ 5.195445] pci 0000:01:00.0: bridge window [mem 0xdc800000-0xdd1fffff 64bit pref]
[ 5.205151] pci 0000:03:00.0: [8086:1d60] type 00 class 0x010700
[ 5.212354] pci 0000:03:00.0: reg 0x10: [mem 0xdd000000-0xdd007fff 64bit pref]
[ 5.221289] pci 0000:03:00.0: reg 0x18: [mem 0xdc800000-0xdcffffff 64bit pref]
[ 5.230228] pci 0000:03:00.0: reg 0x20: [io 0x2100-0x21ff]
[ 5.236927] pci 0000:03:00.0: reg 0x24: [io 0x2000-0x20ff]
[ 5.243742] pci 0000:03:00.0: reg 0x164: [mem 0xdd010000-0xdd017fff 64bit pref]
[ 5.252973] pci 0000:03:00.3: [8086:1d70] type 00 class 0x0c0500
[ 5.260185] pci 0000:03:00.3: reg 0x10: [mem 0xd0d20000-0xd0d20fff]
[ 5.267705] pci 0000:03:00.3: reg 0x20: [io 0x2240-0x225f]
[ 5.274483] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[ 5.281952] pci 0000:03:00.4: [8086:1d71] type 00 class 0x0c0500
[ 5.289152] pci 0000:03:00.4: reg 0x10: [mem 0xd0d10000-0xd0d10fff]
[ 5.296659] pci 0000:03:00.4: reg 0x20: [io 0x2220-0x223f]
[ 5.303449] pci 0000:03:00.4: PME# supported from D0 D3hot D3cold
[ 5.310909] pci 0000:03:00.5: [8086:1d72] type 00 class 0x0c0500
[ 5.318120] pci 0000:03:00.5: reg 0x10: [mem 0xd0d00000-0xd0d00fff]
[ 5.325633] pci 0000:03:00.5: reg 0x20: [io 0x2200-0x221f]
[ 5.332411] pci 0000:03:00.5: PME# supported from D0 D3hot D3cold
[ 5.339929] pci 0000:02:08.0: PCI bridge to [bus 03]
[ 5.345959] pci 0000:02:08.0: bridge window [io 0x2000-0x2fff]
[ 5.353234] pci 0000:02:08.0: bridge window [mem 0xd0d00000-0xd0dfffff]
[ 5.361296] pci 0000:02:08.0: bridge window [mem 0xdc800000-0xdd1fffff 64bit pref]
[ 5.371138] pci 0000:00:02.0: PCI bridge to [bus 04]
[ 5.377434] pci 0000:00:03.0: PCI bridge to [bus 05]
[ 5.383818] pci 0000:06:00.0: [8086:1528] type 00 class 0x020000
[ 5.391020] pci 0000:06:00.0: reg 0x10: [mem 0xdd600000-0xdd7fffff 64bit pref]
[ 5.399972] pci 0000:06:00.0: reg 0x18: [io 0x1020-0x103f]
[ 5.406689] pci 0000:06:00.0: reg 0x20: [mem 0xdd810000-0xdd813fff 64bit pref]
[ 5.415688] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
[ 5.423002] pci 0000:06:00.0: reg 0x184: [mem 0xd0c00000-0xd0c03fff 64bit]
[ 5.431170] pci 0000:06:00.0: reg 0x190: [mem 0xd0b00000-0xd0b03fff 64bit]
[ 5.439531] pci 0000:06:00.1: [8086:1528] type 00 class 0x020000
[ 5.446735] pci 0000:06:00.1: reg 0x10: [mem 0xdd400000-0xdd5fffff 64bit pref]
[ 5.455676] pci 0000:06:00.1: reg 0x18: [io 0x1000-0x101f]
[ 5.462401] pci 0000:06:00.1: reg 0x20: [mem 0xdd800000-0xdd803fff 64bit pref]
[ 5.471386] pci 0000:06:00.1: PME# supported from D0 D3hot D3cold
[ 5.478697] pci 0000:06:00.1: reg 0x184: [mem 0xd0a00000-0xd0a03fff 64bit]
[ 5.486865] pci 0000:06:00.1: reg 0x190: [mem 0xd0900000-0xd0903fff 64bit]
[ 5.503077] pci 0000:00:03.2: PCI bridge to [bus 06-07]
[ 5.509379] pci 0000:00:03.2: bridge window [io 0x1000-0x1fff]
[ 5.516660] pci 0000:00:03.2: bridge window [mem 0xd0900000-0xd0cfffff]
[ 5.524720] pci 0000:00:03.2: bridge window [mem 0xdd400000-0xdd8fffff 64bit pref]
[ 5.534438] pci 0000:00:1c.0: PCI bridge to [bus 08]
[ 5.540665] pci 0000:09:00.0: [102b:0522] type 00 class 0x030000
[ 5.547884] pci 0000:09:00.0: reg 0x10: [mem 0xde000000-0xdeffffff pref]
[ 5.555856] pci 0000:09:00.0: reg 0x14: [mem 0xd0810000-0xd0813fff]
[ 5.563354] pci 0000:09:00.0: reg 0x18: [mem 0xd0000000-0xd07fffff]
[ 5.570901] pci 0000:09:00.0: reg 0x30: [mem 0xd0800000-0xd080ffff pref]
[ 5.579014] pci 0000:09:00.0: System wakeup disabled by ACPI
[ 5.593821] pci 0000:00:1c.7: PCI bridge to [bus 09]
[ 5.599853] pci 0000:00:1c.7: bridge window [mem 0xd0000000-0xd08fffff]
[ 5.607927] pci 0000:00:1c.7: bridge window [mem 0xde000000-0xdeffffff 64bit pref]
[ 5.617604] pci 0000:00:1e.0: PCI bridge to [bus 0a] (subtractive decode)
[ 5.625672] pci 0000:00:1e.0: bridge window [io 0x0000-0x5fff] (subtractive decode)
[ 5.635384] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[ 5.645877] pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000c3fff] (subtractive decode)
[ 5.656376] pci 0000:00:1e.0: bridge window [mem 0x000c4000-0x000c7fff] (subtractive decode)
[ 5.666869] pci 0000:00:1e.0: bridge window [mem 0x000c8000-0x000cbfff] (subtractive decode)
[ 5.677350] pci 0000:00:1e.0: bridge window [mem 0x000cc000-0x000cffff] (subtractive decode)
[ 5.687843] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[ 5.698345] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
[ 5.708837] pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
[ 5.719324] pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
[ 5.729835] pci 0000:00:1e.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
[ 5.740332] pci 0000:00:1e.0: bridge window [mem 0x000e8000-0x000ebfff] (subtractive decode)
[ 5.750827] pci 0000:00:1e.0: bridge window [mem 0x000ec000-0x000effff] (subtractive decode)
[ 5.761319] pci 0000:00:1e.0: bridge window [mem 0x000f0000-0x000fffff] (subtractive decode)
[ 5.771815] pci 0000:00:1e.0: bridge window [mem 0xd0000000-0xdfffffff] (subtractive decode)
[ 5.782321] pci 0000:00:1e.0: bridge window [mem 0x3c0000000000-0x3c007fffffff] (subtractive decode)
[ 5.793654] pci_bus 0000:00: on NUMA node 0 (pxm 0)
[ 5.799575] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
[ 5.809390] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15), disabled.
[ 5.820172] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 *11 12 14 15), disabled.
[ 5.830929] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *10 11 12 14 15), disabled.
[ 5.841686] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 10 11 12 14 15), disabled.
[ 5.852451] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 10 11 12 14 15), disabled.
[ 5.863196] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15), disabled.
[ 5.873961] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *10 11 12 14 15), disabled.
[ 5.884695] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *10 11 12 14 15), disabled.
[ 5.895665] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 40-7e])
[ 5.903046] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 5.913375] acpi PNP0A08:01: _OSC: platform does not support [AER]
[ 5.921046] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 5.931237] PCI host bridge to bus 0000:40
[ 5.936314] pci_bus 0000:40: root bus resource [bus 40-7e]
[ 5.942912] pci_bus 0000:40: root bus resource [io 0x03b0-0x03df]
[ 5.950288] pci_bus 0000:40: root bus resource [io 0x6000-0x7fff]
[ 5.957660] pci_bus 0000:40: root bus resource [mem 0x000a0000-0x000bffff]
[ 5.965807] pci_bus 0000:40: root bus resource [mem 0xe0000000-0xebffffff]
[ 5.973952] pci_bus 0000:40: root bus resource [mem 0x3c0080000000-0x3c00ffffffff]
[ 5.983298] pci 0000:40:01.0: [8086:3c02] type 01 class 0x060400
[ 5.990588] pci 0000:40:01.0: PME# supported from D0 D3hot D3cold
[ 5.997935] pci 0000:40:01.0: System wakeup disabled by ACPI
[ 6.004908] pci 0000:40:02.0: [8086:3c04] type 01 class 0x060400
[ 6.012201] pci 0000:40:02.0: PME# supported from D0 D3hot D3cold
[ 6.019549] pci 0000:40:02.0: System wakeup disabled by ACPI
[ 6.026495] pci 0000:40:04.0: [8086:3c20] type 00 class 0x088000
[ 6.033694] pci 0000:40:04.0: reg 0x10: [mem 0xebf70000-0xebf73fff 64bit]
[ 6.042000] pci 0000:40:04.1: [8086:3c21] type 00 class 0x088000
[ 6.049216] pci 0000:40:04.1: reg 0x10: [mem 0xebf60000-0xebf63fff 64bit]
[ 6.057555] pci 0000:40:04.2: [8086:3c22] type 00 class 0x088000
[ 6.064757] pci 0000:40:04.2: reg 0x10: [mem 0xebf50000-0xebf53fff 64bit]
[ 6.073097] pci 0000:40:04.3: [8086:3c23] type 00 class 0x088000
[ 6.080317] pci 0000:40:04.3: reg 0x10: [mem 0xebf40000-0xebf43fff 64bit]
[ 6.088668] pci 0000:40:04.4: [8086:3c24] type 00 class 0x088000
[ 6.095882] pci 0000:40:04.4: reg 0x10: [mem 0xebf30000-0xebf33fff 64bit]
[ 6.104206] pci 0000:40:04.5: [8086:3c25] type 00 class 0x088000
[ 6.111412] pci 0000:40:04.5: reg 0x10: [mem 0xebf20000-0xebf23fff 64bit]
[ 6.119733] pci 0000:40:04.6: [8086:3c26] type 00 class 0x088000
[ 6.126948] pci 0000:40:04.6: reg 0x10: [mem 0xebf10000-0xebf13fff 64bit]
[ 6.135274] pci 0000:40:04.7: [8086:3c27] type 00 class 0x088000
[ 6.142496] pci 0000:40:04.7: reg 0x10: [mem 0xebf00000-0xebf03fff 64bit]
[ 6.150824] pci 0000:40:05.0: [8086:3c28] type 00 class 0x088000
[ 6.158239] pci 0000:40:05.2: [8086:3c2a] type 00 class 0x088000
[ 6.165676] pci 0000:40:05.4: [8086:3c2c] type 00 class 0x080020
[ 6.172890] pci 0000:40:05.4: reg 0x10: [mem 0xe0000000-0xe0000fff]
[ 6.180619] pci 0000:40:05.6: [8086:3c40] type 00 class 0x110100
[ 6.188043] pci 0000:40:06.0: [8086:3c60] type 00 class 0x088000
[ 6.195513] pci 0000:40:06.1: [8086:3c61] type 00 class 0x060000
[ 6.202974] pci 0000:40:06.2: [8086:3c62] type 00 class 0x060000
[ 6.210397] pci 0000:40:06.3: [8086:3c63] type 00 class 0x060000
[ 6.217804] pci 0000:40:06.4: [8086:3c64] type 00 class 0x060000
[ 6.225266] pci 0000:40:06.5: [8086:3c65] type 00 class 0x060000
[ 6.232683] pci 0000:40:06.6: [8086:3c66] type 00 class 0x060000
[ 6.240122] pci 0000:40:06.7: [8086:3c67] type 00 class 0x060000
[ 6.247575] pci 0000:40:07.0: [8086:3c68] type 00 class 0x060000
[ 6.254989] pci 0000:40:07.1: [8086:3c69] type 00 class 0x060000
[ 6.262401] pci 0000:40:07.2: [8086:3c6a] type 00 class 0x060000
[ 6.269857] pci 0000:40:07.3: [8086:3c6b] type 00 class 0x060000
[ 6.277308] pci 0000:40:07.4: [8086:3c6c] type 00 class 0x060000
[ 6.284925] pci 0000:40:01.0: PCI bridge to [bus 41]
[ 6.291133] pci 0000:40:02.0: PCI bridge to [bus 42]
[ 6.297194] pci_bus 0000:40: on NUMA node 1 (pxm 1)
[ 6.303114] acpi PNP0A08:01: Disabling ASPM (FADT indicates it is unsupported)
[ 6.321768] ACPI: PCI Root Bridge [PCI2] (domain 0000 [bus 80-be])
[ 6.329156] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 6.339471] acpi PNP0A08:02: _OSC: platform does not support [AER]
[ 6.347145] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 6.357381] PCI host bridge to bus 0000:80
[ 6.362433] pci_bus 0000:80: root bus resource [bus 80-be]
[ 6.369036] pci_bus 0000:80: root bus resource [io 0x8000-0xbfff]
[ 6.376411] pci_bus 0000:80: root bus resource [mem 0xec000000-0xf7ffffff]
[ 6.384566] pci_bus 0000:80: root bus resource [mem 0x3c0100000000-0x3c017fffffff]
[ 6.393908] pci 0000:80:02.0: [8086:3c04] type 01 class 0x060400
[ 6.401214] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[ 6.408576] pci 0000:80:02.0: System wakeup disabled by ACPI
[ 6.415576] pci 0000:80:03.0: [8086:3c08] type 01 class 0x060400
[ 6.422882] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[ 6.430221] pci 0000:80:03.0: System wakeup disabled by ACPI
[ 6.437206] pci 0000:80:04.0: [8086:3c20] type 00 class 0x088000
[ 6.444415] pci 0000:80:04.0: reg 0x10: [mem 0xf7f70000-0xf7f73fff 64bit]
[ 6.452778] pci 0000:80:04.1: [8086:3c21] type 00 class 0x088000
[ 6.459992] pci 0000:80:04.1: reg 0x10: [mem 0xf7f60000-0xf7f63fff 64bit]
[ 6.468338] pci 0000:80:04.2: [8086:3c22] type 00 class 0x088000
[ 6.475550] pci 0000:80:04.2: reg 0x10: [mem 0xf7f50000-0xf7f53fff 64bit]
[ 6.483901] pci 0000:80:04.3: [8086:3c23] type 00 class 0x088000
[ 6.491110] pci 0000:80:04.3: reg 0x10: [mem 0xf7f40000-0xf7f43fff 64bit]
[ 6.499467] pci 0000:80:04.4: [8086:3c24] type 00 class 0x088000
[ 6.506662] pci 0000:80:04.4: reg 0x10: [mem 0xf7f30000-0xf7f33fff 64bit]
[ 6.515006] pci 0000:80:04.5: [8086:3c25] type 00 class 0x088000
[ 6.522207] pci 0000:80:04.5: reg 0x10: [mem 0xf7f20000-0xf7f23fff 64bit]
[ 6.530521] pci 0000:80:04.6: [8086:3c26] type 00 class 0x088000
[ 6.537736] pci 0000:80:04.6: reg 0x10: [mem 0xf7f10000-0xf7f13fff 64bit]
[ 6.546096] pci 0000:80:04.7: [8086:3c27] type 00 class 0x088000
[ 6.553309] pci 0000:80:04.7: reg 0x10: [mem 0xf7f00000-0xf7f03fff 64bit]
[ 6.561648] pci 0000:80:05.0: [8086:3c28] type 00 class 0x088000
[ 6.569122] pci 0000:80:05.2: [8086:3c2a] type 00 class 0x088000
[ 6.576556] pci 0000:80:05.4: [8086:3c2c] type 00 class 0x080020
[ 6.583765] pci 0000:80:05.4: reg 0x10: [mem 0xec000000-0xec000fff]
[ 6.591508] pci 0000:80:05.6: [8086:3c40] type 00 class 0x110100
[ 6.598953] pci 0000:80:06.0: [8086:3c60] type 00 class 0x088000
[ 6.606365] pci 0000:80:06.1: [8086:3c61] type 00 class 0x060000
[ 6.613831] pci 0000:80:06.2: [8086:3c62] type 00 class 0x060000
[ 6.621307] pci 0000:80:06.3: [8086:3c63] type 00 class 0x060000
[ 6.628731] pci 0000:80:06.4: [8086:3c64] type 00 class 0x060000
[ 6.636191] pci 0000:80:06.5: [8086:3c65] type 00 class 0x060000
[ 6.643647] pci 0000:80:06.6: [8086:3c66] type 00 class 0x060000
[ 6.651075] pci 0000:80:06.7: [8086:3c67] type 00 class 0x060000
[ 6.658485] pci 0000:80:07.0: [8086:3c68] type 00 class 0x060000
[ 6.665944] pci 0000:80:07.1: [8086:3c69] type 00 class 0x060000
[ 6.673377] pci 0000:80:07.2: [8086:3c6a] type 00 class 0x060000
[ 6.680824] pci 0000:80:07.3: [8086:3c6b] type 00 class 0x060000
[ 6.688240] pci 0000:80:07.4: [8086:3c6c] type 00 class 0x060000
[ 6.695996] acpiphp: Slot [2] registered
[ 6.700962] pci 0000:80:02.0: PCI bridge to [bus 81]
[ 6.707170] pci 0000:80:03.0: PCI bridge to [bus 82]
[ 6.713215] pci_bus 0000:80: on NUMA node 2 (pxm 2)
[ 6.719125] acpi PNP0A08:02: Disabling ASPM (FADT indicates it is unsupported)
[ 6.728483] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus c0-fe])
[ 6.735865] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 6.746190] acpi PNP0A08:03: _OSC: platform does not support [AER]
[ 6.753862] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 6.764087] PCI host bridge to bus 0000:c0
[ 6.769153] pci_bus 0000:c0: root bus resource [bus c0-fe]
[ 6.775754] pci_bus 0000:c0: root bus resource [io 0xc000-0xffff]
[ 6.783126] pci_bus 0000:c0: root bus resource [mem 0xf8000000-0xfbffffff]
[ 6.791266] pci_bus 0000:c0: root bus resource [mem 0x3c0180000000-0x3c01ffffffff]
[ 6.800616] pci 0000:c0:02.0: [8086:3c04] type 01 class 0x060400
[ 6.807911] pci 0000:c0:02.0: PME# supported from D0 D3hot D3cold
[ 6.815259] pci 0000:c0:02.0: System wakeup disabled by ACPI
[ 6.822251] pci 0000:c0:03.0: [8086:3c08] type 01 class 0x060400
[ 6.829562] pci 0000:c0:03.0: PME# supported from D0 D3hot D3cold
[ 6.836901] pci 0000:c0:03.0: System wakeup disabled by ACPI
[ 6.843872] pci 0000:c0:04.0: [8086:3c20] type 00 class 0x088000
[ 6.851071] pci 0000:c0:04.0: reg 0x10: [mem 0xfbf70000-0xfbf73fff 64bit]
[ 6.859421] pci 0000:c0:04.1: [8086:3c21] type 00 class 0x088000
[ 6.866615] pci 0000:c0:04.1: reg 0x10: [mem 0xfbf60000-0xfbf63fff 64bit]
[ 6.874950] pci 0000:c0:04.2: [8086:3c22] type 00 class 0x088000
[ 6.882164] pci 0000:c0:04.2: reg 0x10: [mem 0xfbf50000-0xfbf53fff 64bit]
[ 6.890511] pci 0000:c0:04.3: [8086:3c23] type 00 class 0x088000
[ 6.897718] pci 0000:c0:04.3: reg 0x10: [mem 0xfbf40000-0xfbf43fff 64bit]
[ 6.906065] pci 0000:c0:04.4: [8086:3c24] type 00 class 0x088000
[ 6.913281] pci 0000:c0:04.4: reg 0x10: [mem 0xfbf30000-0xfbf33fff 64bit]
[ 6.921643] pci 0000:c0:04.5: [8086:3c25] type 00 class 0x088000
[ 6.928859] pci 0000:c0:04.5: reg 0x10: [mem 0xfbf20000-0xfbf23fff 64bit]
[ 6.937215] pci 0000:c0:04.6: [8086:3c26] type 00 class 0x088000
[ 6.944424] pci 0000:c0:04.6: reg 0x10: [mem 0xfbf10000-0xfbf13fff 64bit]
[ 6.952767] pci 0000:c0:04.7: [8086:3c27] type 00 class 0x088000
[ 6.959967] pci 0000:c0:04.7: reg 0x10: [mem 0xfbf00000-0xfbf03fff 64bit]
[ 6.968299] pci 0000:c0:05.0: [8086:3c28] type 00 class 0x088000
[ 6.975759] pci 0000:c0:05.2: [8086:3c2a] type 00 class 0x088000
[ 6.983203] pci 0000:c0:05.4: [8086:3c2c] type 00 class 0x080020
[ 6.990400] pci 0000:c0:05.4: reg 0x10: [mem 0xf8000000-0xf8000fff]
[ 6.998142] pci 0000:c0:05.6: [8086:3c40] type 00 class 0x110100
[ 7.005595] pci 0000:c0:06.0: [8086:3c60] type 00 class 0x088000
[ 7.013017] pci 0000:c0:06.1: [8086:3c61] type 00 class 0x060000
[ 7.020440] pci 0000:c0:06.2: [8086:3c62] type 00 class 0x060000
[ 7.027871] pci 0000:c0:06.3: [8086:3c63] type 00 class 0x060000
[ 7.035309] pci 0000:c0:06.4: [8086:3c64] type 00 class 0x060000
[ 7.042720] pci 0000:c0:06.5: [8086:3c65] type 00 class 0x060000
[ 7.050175] pci 0000:c0:06.6: [8086:3c66] type 00 class 0x060000
[ 7.057628] pci 0000:c0:06.7: [8086:3c67] type 00 class 0x060000
[ 7.065067] pci 0000:c0:07.0: [8086:3c68] type 00 class 0x060000
[ 7.072495] pci 0000:c0:07.1: [8086:3c69] type 00 class 0x060000
[ 7.079940] pci 0000:c0:07.2: [8086:3c6a] type 00 class 0x060000
[ 7.087380] pci 0000:c0:07.3: [8086:3c6b] type 00 class 0x060000
[ 7.094793] pci 0000:c0:07.4: [8086:3c6c] type 00 class 0x060000
[ 7.102603] acpiphp: Slot [2-2] registered
[ 7.107727] pci 0000:c0:02.0: PCI bridge to [bus c1]
[ 7.114112] acpiphp: Slot [2-3] registered
[ 7.119238] pci 0000:c0:03.0: PCI bridge to [bus c2]
[ 7.125287] pci_bus 0000:c0: on NUMA node 3 (pxm 3)
[ 7.131195] acpi PNP0A08:03: Disabling ASPM (FADT indicates it is unsupported)
[ 7.161441] ACPI: PCI Root Bridge [UCR0] (domain 0000 [bus 3f])
[ 7.168532] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 7.178585] acpi PNP0A03:00: _OSC: platform does not support [PCIeHotplug PME AER]
[ 7.187953] acpi PNP0A03:00: _OSC: OS now controls [PCIeCapability]
[ 7.195641] PCI host bridge to bus 0000:3f
[ 7.200687] pci_bus 0000:3f: root bus resource [bus 3f]
[ 7.207006] pci 0000:3f:08.0: [8086:3c80] type 00 class 0x088000
[ 7.214388] pci 0000:3f:08.2: [8086:3c41] type 00 class 0x110100
[ 7.221764] pci 0000:3f:08.3: [8086:3c83] type 00 class 0x088000
[ 7.229155] pci 0000:3f:08.4: [8086:3c84] type 00 class 0x088000
[ 7.236515] pci 0000:3f:08.5: [8086:3c85] type 00 class 0x088000
[ 7.243891] pci 0000:3f:08.6: [8086:3c86] type 00 class 0x088000
[ 7.251303] pci 0000:3f:08.7: [8086:3c87] type 00 class 0x088000
[ 7.258762] pci 0000:3f:09.0: [8086:3c90] type 00 class 0x088000
[ 7.266138] pci 0000:3f:09.2: [8086:3c42] type 00 class 0x110100
[ 7.273533] pci 0000:3f:09.3: [8086:3c93] type 00 class 0x088000
[ 7.280945] pci 0000:3f:09.4: [8086:3c94] type 00 class 0x088000
[ 7.288349] pci 0000:3f:09.5: [8086:3c95] type 00 class 0x088000
[ 7.295745] pci 0000:3f:09.6: [8086:3c96] type 00 class 0x088000
[ 7.303088] pci 0000:3f:0a.0: [8086:3cc0] type 00 class 0x088000
[ 7.310454] pci 0000:3f:0a.1: [8086:3cc1] type 00 class 0x088000
[ 7.317806] pci 0000:3f:0a.2: [8086:3cc2] type 00 class 0x088000
[ 7.325157] pci 0000:3f:0a.3: [8086:3cd0] type 00 class 0x088000
[ 7.332519] pci 0000:3f:0a.4: [8086:3cc4] type 00 class 0x088000
[ 7.339876] pci 0000:3f:0a.5: [8086:3cc5] type 00 class 0x088000
[ 7.347210] pci 0000:3f:0a.6: [8086:3cc6] type 00 class 0x088000
[ 7.354551] pci 0000:3f:0a.7: [8086:3cc7] type 00 class 0x088000
[ 7.361914] pci 0000:3f:0b.0: [8086:3ce0] type 00 class 0x088000
[ 7.369306] pci 0000:3f:0b.2: [8086:3ce2] type 00 class 0x088000
[ 7.376638] pci 0000:3f:0b.3: [8086:3ce3] type 00 class 0x088000
[ 7.383972] pci 0000:3f:0c.0: [8086:3ce8] type 00 class 0x088000
[ 7.391303] pci 0000:3f:0c.1: [8086:3ce8] type 00 class 0x088000
[ 7.398649] pci 0000:3f:0c.2: [8086:3ce8] type 00 class 0x088000
[ 7.406011] pci 0000:3f:0c.3: [8086:3ce8] type 00 class 0x088000
[ 7.413356] pci 0000:3f:0c.6: [8086:3cf4] type 00 class 0x088000
[ 7.420710] pci 0000:3f:0c.7: [8086:3cf6] type 00 class 0x088000
[ 7.428072] pci 0000:3f:0d.0: [8086:3ce8] type 00 class 0x088000
[ 7.435412] pci 0000:3f:0d.1: [8086:3ce8] type 00 class 0x088000
[ 7.442752] pci 0000:3f:0d.2: [8086:3ce8] type 00 class 0x088000
[ 7.450089] pci 0000:3f:0d.3: [8086:3ce8] type 00 class 0x088000
[ 7.457451] pci 0000:3f:0d.6: [8086:3cf5] type 00 class 0x088000
[ 7.464812] pci 0000:3f:0e.0: [8086:3ca0] type 00 class 0x088000
[ 7.472180] pci 0000:3f:0e.1: [8086:3c46] type 00 class 0x110100
[ 7.479541] pci 0000:3f:0e.2: [8086:3c70] type 00 class 0x088000
[ 7.486923] pci 0000:3f:0f.0: [8086:3ca8] type 00 class 0x088000
[ 7.494304] pci 0000:3f:0f.1: [8086:3c71] type 00 class 0x088000
[ 7.501654] pci 0000:3f:0f.2: [8086:3caa] type 00 class 0x088000
[ 7.509033] pci 0000:3f:0f.3: [8086:3cab] type 00 class 0x088000
[ 7.516413] pci 0000:3f:0f.4: [8086:3cac] type 00 class 0x088000
[ 7.523790] pci 0000:3f:0f.5: [8086:3cad] type 00 class 0x088000
[ 7.531181] pci 0000:3f:0f.6: [8086:3cae] type 00 class 0x088000
[ 7.538526] pci 0000:3f:0f.7: [8086:3caf] type 00 class 0x088000
[ 7.545894] pci 0000:3f:10.0: [8086:3cb0] type 00 class 0x088000
[ 7.553252] pci 0000:3f:10.1: [8086:3cb1] type 00 class 0x088000
[ 7.560609] pci 0000:3f:10.2: [8086:3cb2] type 00 class 0x088000
[ 7.567963] pci 0000:3f:10.3: [8086:3cb3] type 00 class 0x088000
[ 7.575322] pci 0000:3f:10.4: [8086:3cb4] type 00 class 0x088000
[ 7.582683] pci 0000:3f:10.5: [8086:3cb5] type 00 class 0x088000
[ 7.590047] pci 0000:3f:10.6: [8086:3cb6] type 00 class 0x088000
[ 7.597458] pci 0000:3f:10.7: [8086:3cb7] type 00 class 0x088000
[ 7.604822] pci 0000:3f:11.0: [8086:3cb8] type 00 class 0x088000
[ 7.621521] pci 0000:3f:11.1: [8086:3cb9] type 00 class 0x088000
[ 7.628869] pci 0000:3f:11.2: [8086:3cba] type 00 class 0x088000
[ 7.636210] pci 0000:3f:11.3: [8086:3cbb] type 00 class 0x088000
[ 7.643536] pci 0000:3f:11.4: [8086:3cbc] type 00 class 0x088000
[ 7.650883] pci 0000:3f:11.5: [8086:3cbd] type 00 class 0x088000
[ 7.658228] pci 0000:3f:11.6: [8086:3cbe] type 00 class 0x088000
[ 7.665584] pci 0000:3f:11.7: [8086:3cbf] type 00 class 0x088000
[ 7.672942] pci 0000:3f:13.0: [8086:3ce4] type 00 class 0x088000
[ 7.680292] pci 0000:3f:13.1: [8086:3c43] type 00 class 0x110100
[ 7.687619] pci 0000:3f:13.4: [8086:3ce6] type 00 class 0x110100
[ 7.694985] pci 0000:3f:13.5: [8086:3c44] type 00 class 0x110100
[ 7.702310] pci 0000:3f:13.6: [8086:3c45] type 00 class 0x088000
[ 7.709694] acpi PNP0A03:00: Disabling ASPM (FADT indicates it is unsupported)
[ 7.718739] ACPI: PCI Root Bridge [UCR1] (domain 0000 [bus 7f])
[ 7.725823] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 7.735877] acpi PNP0A03:01: _OSC: platform does not support [PCIeHotplug PME AER]
[ 7.745256] acpi PNP0A03:01: _OSC: OS now controls [PCIeCapability]
[ 7.752923] PCI host bridge to bus 0000:7f
[ 7.757980] pci_bus 0000:7f: root bus resource [bus 7f]
[ 7.764293] pci 0000:7f:08.0: [8086:3c80] type 00 class 0x088000
[ 7.771641] pci 0000:7f:08.2: [8086:3c41] type 00 class 0x110100
[ 7.779003] pci 0000:7f:08.3: [8086:3c83] type 00 class 0x088000
[ 7.786383] pci 0000:7f:08.4: [8086:3c84] type 00 class 0x088000
[ 7.793759] pci 0000:7f:08.5: [8086:3c85] type 00 class 0x088000
[ 7.801117] pci 0000:7f:08.6: [8086:3c86] type 00 class 0x088000
[ 7.808501] pci 0000:7f:08.7: [8086:3c87] type 00 class 0x088000
[ 7.815857] pci 0000:7f:09.0: [8086:3c90] type 00 class 0x088000
[ 7.823217] pci 0000:7f:09.2: [8086:3c42] type 00 class 0x110100
[ 7.830562] pci 0000:7f:09.3: [8086:3c93] type 00 class 0x088000
[ 7.837961] pci 0000:7f:09.4: [8086:3c94] type 00 class 0x088000
[ 7.845384] pci 0000:7f:09.5: [8086:3c95] type 00 class 0x088000
[ 7.852774] pci 0000:7f:09.6: [8086:3c96] type 00 class 0x088000
[ 7.860159] pci 0000:7f:0a.0: [8086:3cc0] type 00 class 0x088000
[ 7.867525] pci 0000:7f:0a.1: [8086:3cc1] type 00 class 0x088000
[ 7.874879] pci 0000:7f:0a.2: [8086:3cc2] type 00 class 0x088000
[ 7.882257] pci 0000:7f:0a.3: [8086:3cd0] type 00 class 0x088000
[ 7.889624] pci 0000:7f:0a.4: [8086:3cc4] type 00 class 0x088000
[ 7.896995] pci 0000:7f:0a.5: [8086:3cc5] type 00 class 0x088000
[ 7.904382] pci 0000:7f:0a.6: [8086:3cc6] type 00 class 0x088000
[ 7.911732] pci 0000:7f:0a.7: [8086:3cc7] type 00 class 0x088000
[ 7.919089] pci 0000:7f:0b.0: [8086:3ce0] type 00 class 0x088000
[ 7.926478] pci 0000:7f:0b.2: [8086:3ce2] type 00 class 0x088000
[ 7.933831] pci 0000:7f:0b.3: [8086:3ce3] type 00 class 0x088000
[ 7.941208] pci 0000:7f:0c.0: [8086:3ce8] type 00 class 0x088000
[ 7.948576] pci 0000:7f:0c.1: [8086:3ce8] type 00 class 0x088000
[ 7.955962] pci 0000:7f:0c.2: [8086:3ce8] type 00 class 0x088000
[ 7.963316] pci 0000:7f:0c.3: [8086:3ce8] type 00 class 0x088000
[ 7.970708] pci 0000:7f:0c.6: [8086:3cf4] type 00 class 0x088000
[ 7.978076] pci 0000:7f:0c.7: [8086:3cf6] type 00 class 0x088000
[ 7.985454] pci 0000:7f:0d.0: [8086:3ce8] type 00 class 0x088000
[ 7.992822] pci 0000:7f:0d.1: [8086:3ce8] type 00 class 0x088000
[ 8.000212] pci 0000:7f:0d.2: [8086:3ce8] type 00 class 0x088000
[ 8.007573] pci 0000:7f:0d.3: [8086:3ce8] type 00 class 0x088000
[ 8.014957] pci 0000:7f:0d.6: [8086:3cf5] type 00 class 0x088000
[ 8.022315] pci 0000:7f:0e.0: [8086:3ca0] type 00 class 0x088000
[ 8.029685] pci 0000:7f:0e.1: [8086:3c46] type 00 class 0x110100
[ 8.037078] pci 0000:7f:0e.2: [8086:3c70] type 00 class 0x088000
[ 8.044475] pci 0000:7f:0f.0: [8086:3ca8] type 00 class 0x088000
[ 8.051852] pci 0000:7f:0f.1: [8086:3c71] type 00 class 0x088000
[ 8.059237] pci 0000:7f:0f.2: [8086:3caa] type 00 class 0x088000
[ 8.066627] pci 0000:7f:0f.3: [8086:3cab] type 00 class 0x088000
[ 8.074045] pci 0000:7f:0f.4: [8086:3cac] type 00 class 0x088000
[ 8.081423] pci 0000:7f:0f.5: [8086:3cad] type 00 class 0x088000
[ 8.088838] pci 0000:7f:0f.6: [8086:3cae] type 00 class 0x088000
[ 8.096195] pci 0000:7f:0f.7: [8086:3caf] type 00 class 0x088000
[ 8.103582] pci 0000:7f:10.0: [8086:3cb0] type 00 class 0x088000
[ 8.110960] pci 0000:7f:10.1: [8086:3cb1] type 00 class 0x088000
[ 8.118362] pci 0000:7f:10.2: [8086:3cb2] type 00 class 0x088000
[ 8.125742] pci 0000:7f:10.3: [8086:3cb3] type 00 class 0x088000
[ 8.133146] pci 0000:7f:10.4: [8086:3cb4] type 00 class 0x088000
[ 8.140554] pci 0000:7f:10.5: [8086:3cb5] type 00 class 0x088000
[ 8.147930] pci 0000:7f:10.6: [8086:3cb6] type 00 class 0x088000
[ 8.155308] pci 0000:7f:10.7: [8086:3cb7] type 00 class 0x088000
[ 8.162710] pci 0000:7f:11.0: [8086:3cb8] type 00 class 0x088000
[ 8.170068] pci 0000:7f:11.1: [8086:3cb9] type 00 class 0x088000
[ 8.177466] pci 0000:7f:11.2: [8086:3cba] type 00 class 0x088000
[ 8.184830] pci 0000:7f:11.3: [8086:3cbb] type 00 class 0x088000
[ 8.192191] pci 0000:7f:11.4: [8086:3cbc] type 00 class 0x088000
[ 8.199559] pci 0000:7f:11.5: [8086:3cbd] type 00 class 0x088000
[ 8.206935] pci 0000:7f:11.6: [8086:3cbe] type 00 class 0x088000
[ 8.214308] pci 0000:7f:11.7: [8086:3cbf] type 00 class 0x088000
[ 8.221690] pci 0000:7f:13.0: [8086:3ce4] type 00 class 0x088000
[ 8.229063] pci 0000:7f:13.1: [8086:3c43] type 00 class 0x110100
[ 8.236425] pci 0000:7f:13.4: [8086:3ce6] type 00 class 0x110100
[ 8.243828] pci 0000:7f:13.5: [8086:3c44] type 00 class 0x110100
[ 8.251243] pci 0000:7f:13.6: [8086:3c45] type 00 class 0x088000
[ 8.258632] acpi PNP0A03:01: Disabling ASPM (FADT indicates it is unsupported)
[ 8.267749] ACPI: PCI Root Bridge [UCR2] (domain 0000 [bus bf])
[ 8.274852] acpi PNP0A03:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 8.284917] acpi PNP0A03:02: _OSC: platform does not support [PCIeHotplug PME AER]
[ 8.294284] acpi PNP0A03:02: _OSC: OS now controls [PCIeCapability]
[ 8.301977] PCI host bridge to bus 0000:bf
[ 8.307033] pci_bus 0000:bf: root bus resource [bus bf]
[ 8.313358] pci 0000:bf:08.0: [8086:3c80] type 00 class 0x088000
[ 8.320719] pci 0000:bf:08.2: [8086:3c41] type 00 class 0x110100
[ 8.328070] pci 0000:bf:08.3: [8086:3c83] type 00 class 0x088000
[ 8.335475] pci 0000:bf:08.4: [8086:3c84] type 00 class 0x088000
[ 8.342890] pci 0000:bf:08.5: [8086:3c85] type 00 class 0x088000
[ 8.350260] pci 0000:bf:08.6: [8086:3c86] type 00 class 0x088000
[ 8.357672] pci 0000:bf:08.7: [8086:3c87] type 00 class 0x088000
[ 8.365043] pci 0000:bf:09.0: [8086:3c90] type 00 class 0x088000
[ 8.372410] pci 0000:bf:09.2: [8086:3c42] type 00 class 0x110100
[ 8.379824] pci 0000:bf:09.3: [8086:3c93] type 00 class 0x088000
[ 8.387240] pci 0000:bf:09.4: [8086:3c94] type 00 class 0x088000
[ 8.394645] pci 0000:bf:09.5: [8086:3c95] type 00 class 0x088000
[ 8.402068] pci 0000:bf:09.6: [8086:3c96] type 00 class 0x088000
[ 8.409452] pci 0000:bf:0a.0: [8086:3cc0] type 00 class 0x088000
[ 8.416811] pci 0000:bf:0a.1: [8086:3cc1] type 00 class 0x088000
[ 8.424176] pci 0000:bf:0a.2: [8086:3cc2] type 00 class 0x088000
[ 8.431519] pci 0000:bf:0a.3: [8086:3cd0] type 00 class 0x088000
[ 8.438903] pci 0000:bf:0a.4: [8086:3cc4] type 00 class 0x088000
[ 8.446252] pci 0000:bf:0a.5: [8086:3cc5] type 00 class 0x088000
[ 8.453603] pci 0000:bf:0a.6: [8086:3cc6] type 00 class 0x088000
[ 8.460956] pci 0000:bf:0a.7: [8086:3cc7] type 00 class 0x088000
[ 8.468298] pci 0000:bf:0b.0: [8086:3ce0] type 00 class 0x088000
[ 8.475674] pci 0000:bf:0b.2: [8086:3ce2] type 00 class 0x088000
[ 8.483027] pci 0000:bf:0b.3: [8086:3ce3] type 00 class 0x088000
[ 8.490384] pci 0000:bf:0c.0: [8086:3ce8] type 00 class 0x088000
[ 8.497731] pci 0000:bf:0c.1: [8086:3ce8] type 00 class 0x088000
[ 8.505118] pci 0000:bf:0c.2: [8086:3ce8] type 00 class 0x088000
[ 8.512455] pci 0000:bf:0c.3: [8086:3ce8] type 00 class 0x088000
[ 8.519836] pci 0000:bf:0c.6: [8086:3cf4] type 00 class 0x088000
[ 8.527182] pci 0000:bf:0c.7: [8086:3cf6] type 00 class 0x088000
[ 8.534551] pci 0000:bf:0d.0: [8086:3ce8] type 00 class 0x088000
[ 8.541918] pci 0000:bf:0d.1: [8086:3ce8] type 00 class 0x088000
[ 8.549274] pci 0000:bf:0d.2: [8086:3ce8] type 00 class 0x088000
[ 8.556611] pci 0000:bf:0d.3: [8086:3ce8] type 00 class 0x088000
[ 8.563968] pci 0000:bf:0d.6: [8086:3cf5] type 00 class 0x088000
[ 8.571338] pci 0000:bf:0e.0: [8086:3ca0] type 00 class 0x088000
[ 8.578718] pci 0000:bf:0e.1: [8086:3c46] type 00 class 0x110100
[ 8.586078] pci 0000:bf:0e.2: [8086:3c70] type 00 class 0x088000
[ 8.593462] pci 0000:bf:0f.0: [8086:3ca8] type 00 class 0x088000
[ 8.600840] pci 0000:bf:0f.1: [8086:3c71] type 00 class 0x088000
[ 8.608198] pci 0000:bf:0f.2: [8086:3caa] type 00 class 0x088000
[ 8.615587] pci 0000:bf:0f.3: [8086:3cab] type 00 class 0x088000
[ 8.622981] pci 0000:bf:0f.4: [8086:3cac] type 00 class 0x088000
[ 8.630368] pci 0000:bf:0f.5: [8086:3cad] type 00 class 0x088000
[ 8.637762] pci 0000:bf:0f.6: [8086:3cae] type 00 class 0x088000
[ 8.645098] pci 0000:bf:0f.7: [8086:3caf] type 00 class 0x088000
[ 8.652440] pci 0000:bf:10.0: [8086:3cb0] type 00 class 0x088000
[ 8.659842] pci 0000:bf:10.1: [8086:3cb1] type 00 class 0x088000
[ 8.667222] pci 0000:bf:10.2: [8086:3cb2] type 00 class 0x088000
[ 8.674622] pci 0000:bf:10.3: [8086:3cb3] type 00 class 0x088000
[ 8.682015] pci 0000:bf:10.4: [8086:3cb4] type 00 class 0x088000
[ 8.689380] pci 0000:bf:10.5: [8086:3cb5] type 00 class 0x088000
[ 8.696764] pci 0000:bf:10.6: [8086:3cb6] type 00 class 0x088000
[ 8.704161] pci 0000:bf:10.7: [8086:3cb7] type 00 class 0x088000
[ 8.711541] pci 0000:bf:11.0: [8086:3cb8] type 00 class 0x088000
[ 8.718891] pci 0000:bf:11.1: [8086:3cb9] type 00 class 0x088000
[ 8.726264] pci 0000:bf:11.2: [8086:3cba] type 00 class 0x088000
[ 8.733619] pci 0000:bf:11.3: [8086:3cbb] type 00 class 0x088000
[ 8.740977] pci 0000:bf:11.4: [8086:3cbc] type 00 class 0x088000
[ 8.748305] pci 0000:bf:11.5: [8086:3cbd] type 00 class 0x088000
[ 8.755691] pci 0000:bf:11.6: [8086:3cbe] type 00 class 0x088000
[ 8.763059] pci 0000:bf:11.7: [8086:3cbf] type 00 class 0x088000
[ 8.770468] pci 0000:bf:13.0: [8086:3ce4] type 00 class 0x088000
[ 8.777840] pci 0000:bf:13.1: [8086:3c43] type 00 class 0x110100
[ 8.785226] pci 0000:bf:13.4: [8086:3ce6] type 00 class 0x110100
[ 8.792554] pci 0000:bf:13.5: [8086:3c44] type 00 class 0x110100
[ 8.799936] pci 0000:bf:13.6: [8086:3c45] type 00 class 0x088000
[ 8.807362] acpi PNP0A03:02: Disabling ASPM (FADT indicates it is unsupported)
[ 8.816392] ACPI: PCI Root Bridge [UCR3] (domain 0000 [bus ff])
[ 8.823488] acpi PNP0A03:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 8.833540] acpi PNP0A03:03: _OSC: platform does not support [PCIeHotplug PME AER]
[ 8.842918] acpi PNP0A03:03: _OSC: OS now controls [PCIeCapability]
[ 8.850615] PCI host bridge to bus 0000:ff
[ 8.855677] pci_bus 0000:ff: root bus resource [bus ff]
[ 8.861995] pci 0000:ff:08.0: [8086:3c80] type 00 class 0x088000
[ 8.869355] pci 0000:ff:08.2: [8086:3c41] type 00 class 0x110100
[ 8.876694] pci 0000:ff:08.3: [8086:3c83] type 00 class 0x088000
[ 8.884098] pci 0000:ff:08.4: [8086:3c84] type 00 class 0x088000
[ 8.900794] pci 0000:ff:08.5: [8086:3c85] type 00 class 0x088000
[ 8.908191] pci 0000:ff:08.6: [8086:3c86] type 00 class 0x088000
[ 8.915563] pci 0000:ff:08.7: [8086:3c87] type 00 class 0x088000
[ 8.922958] pci 0000:ff:09.0: [8086:3c90] type 00 class 0x088000
[ 8.930301] pci 0000:ff:09.2: [8086:3c42] type 00 class 0x110100
[ 8.937642] pci 0000:ff:09.3: [8086:3c93] type 00 class 0x088000
[ 8.945016] pci 0000:ff:09.4: [8086:3c94] type 00 class 0x088000
[ 8.952406] pci 0000:ff:09.5: [8086:3c95] type 00 class 0x088000
[ 8.959830] pci 0000:ff:09.6: [8086:3c96] type 00 class 0x088000
[ 8.967227] pci 0000:ff:0a.0: [8086:3cc0] type 00 class 0x088000
[ 8.974566] pci 0000:ff:0a.1: [8086:3cc1] type 00 class 0x088000
[ 8.981933] pci 0000:ff:0a.2: [8086:3cc2] type 00 class 0x088000
[ 8.989287] pci 0000:ff:0a.3: [8086:3cd0] type 00 class 0x088000
[ 8.996615] pci 0000:ff:0a.4: [8086:3cc4] type 00 class 0x088000
[ 9.003997] pci 0000:ff:0a.5: [8086:3cc5] type 00 class 0x088000
[ 9.011349] pci 0000:ff:0a.6: [8086:3cc6] type 00 class 0x088000
[ 9.018683] pci 0000:ff:0a.7: [8086:3cc7] type 00 class 0x088000
[ 9.026028] pci 0000:ff:0b.0: [8086:3ce0] type 00 class 0x088000
[ 9.033390] pci 0000:ff:0b.2: [8086:3ce2] type 00 class 0x088000
[ 9.040713] pci 0000:ff:0b.3: [8086:3ce3] type 00 class 0x088000
[ 9.048097] pci 0000:ff:0c.0: [8086:3ce8] type 00 class 0x088000
[ 9.055458] pci 0000:ff:0c.1: [8086:3ce8] type 00 class 0x088000
[ 9.062801] pci 0000:ff:0c.2: [8086:3ce8] type 00 class 0x088000
[ 9.070175] pci 0000:ff:0c.3: [8086:3ce8] type 00 class 0x088000
[ 9.077537] pci 0000:ff:0c.6: [8086:3cf4] type 00 class 0x088000
[ 9.084865] pci 0000:ff:0c.7: [8086:3cf6] type 00 class 0x088000
[ 9.092235] pci 0000:ff:0d.0: [8086:3ce8] type 00 class 0x088000
[ 9.099574] pci 0000:ff:0d.1: [8086:3ce8] type 00 class 0x088000
[ 9.106950] pci 0000:ff:0d.2: [8086:3ce8] type 00 class 0x088000
[ 9.114307] pci 0000:ff:0d.3: [8086:3ce8] type 00 class 0x088000
[ 9.121658] pci 0000:ff:0d.6: [8086:3cf5] type 00 class 0x088000
[ 9.128994] pci 0000:ff:0e.0: [8086:3ca0] type 00 class 0x088000
[ 9.136369] pci 0000:ff:0e.1: [8086:3c46] type 00 class 0x110100
[ 9.143723] pci 0000:ff:0e.2: [8086:3c70] type 00 class 0x088000
[ 9.151096] pci 0000:ff:0f.0: [8086:3ca8] type 00 class 0x088000
[ 9.158483] pci 0000:ff:0f.1: [8086:3c71] type 00 class 0x088000
[ 9.165872] pci 0000:ff:0f.2: [8086:3caa] type 00 class 0x088000
[ 9.173266] pci 0000:ff:0f.3: [8086:3cab] type 00 class 0x088000
[ 9.180692] pci 0000:ff:0f.4: [8086:3cac] type 00 class 0x088000
[ 9.188142] pci 0000:ff:0f.5: [8086:3cad] type 00 class 0x088000
[ 9.195503] pci 0000:ff:0f.6: [8086:3cae] type 00 class 0x088000
[ 9.202871] pci 0000:ff:0f.7: [8086:3caf] type 00 class 0x088000
[ 9.210233] pci 0000:ff:10.0: [8086:3cb0] type 00 class 0x088000
[ 9.217608] pci 0000:ff:10.1: [8086:3cb1] type 00 class 0x088000
[ 9.224964] pci 0000:ff:10.2: [8086:3cb2] type 00 class 0x088000
[ 9.232354] pci 0000:ff:10.3: [8086:3cb3] type 00 class 0x088000
[ 9.239713] pci 0000:ff:10.4: [8086:3cb4] type 00 class 0x088000
[ 9.247111] pci 0000:ff:10.5: [8086:3cb5] type 00 class 0x088000
[ 9.254479] pci 0000:ff:10.6: [8086:3cb6] type 00 class 0x088000
[ 9.261878] pci 0000:ff:10.7: [8086:3cb7] type 00 class 0x088000
[ 9.269236] pci 0000:ff:11.0: [8086:3cb8] type 00 class 0x088000
[ 9.276597] pci 0000:ff:11.1: [8086:3cb9] type 00 class 0x088000
[ 9.283960] pci 0000:ff:11.2: [8086:3cba] type 00 class 0x088000
[ 9.291321] pci 0000:ff:11.3: [8086:3cbb] type 00 class 0x088000
[ 9.298696] pci 0000:ff:11.4: [8086:3cbc] type 00 class 0x088000
[ 9.306047] pci 0000:ff:11.5: [8086:3cbd] type 00 class 0x088000
[ 9.313405] pci 0000:ff:11.6: [8086:3cbe] type 00 class 0x088000
[ 9.320795] pci 0000:ff:11.7: [8086:3cbf] type 00 class 0x088000
[ 9.328149] pci 0000:ff:13.0: [8086:3ce4] type 00 class 0x088000
[ 9.335521] pci 0000:ff:13.1: [8086:3c43] type 00 class 0x110100
[ 9.342874] pci 0000:ff:13.4: [8086:3ce6] type 00 class 0x110100
[ 9.350237] pci 0000:ff:13.5: [8086:3c44] type 00 class 0x110100
[ 9.357612] pci 0000:ff:13.6: [8086:3c45] type 00 class 0x088000
[ 9.364993] acpi PNP0A03:03: Disabling ASPM (FADT indicates it is unsupported)
[ 9.374226] ACPI: Enabled 6 GPEs in block 00 to 3F
[ 9.381054] vgaarb: device added: PCI:0000:09:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 9.391328] vgaarb: loaded
[ 9.394816] vgaarb: bridge control possible 0000:09:00.0
[ 9.401574] SCSI subsystem initialized
[ 9.406671] libata version 3.00 loaded.
[ 9.411768] ACPI: bus type USB registered
[ 9.416913] usbcore: registered new interface driver usbfs
[ 9.423626] usbcore: registered new interface driver hub
[ 9.430197] usbcore: registered new device driver usb
[ 9.436501] pps_core: LinuxPPS API ver. 1 registered
[ 9.442531] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[ 9.453694] PTP clock support registered
[ 9.459247] EDAC MC: Ver: 3.0.0
[ 9.464395] PCI: Using ACPI for IRQ routing
[ 9.474654] PCI: pci_cache_line_size set to 64 bytes
[ 9.481642] e820: reserve RAM buffer [mem 0x0008f400-0x0008ffff]
[ 9.488850] e820: reserve RAM buffer [mem 0xbb3c7000-0xbbffffff]
[ 9.496043] e820: reserve RAM buffer [mem 0xbe000000-0xbfffffff]
[ 9.504525] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 9.512711] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 9.523096] Switched to clocksource hpet
[ 9.552561] pnp: PnP ACPI init
[ 9.556564] ACPI: bus type PNP registered
[ 9.561734] pnp 00:00: [dma 4]
[ 9.565807] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[ 9.573759] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[ 9.581852] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[ 9.589706] IOAPIC[0]: Set routing entry (0-13 -> 0x3d -> IRQ 13 Mode:0 Active:0 Dest:0)
[ 9.599807] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 9.608419] system 00:04: [io 0x0680-0x069f] has been reserved
[ 9.615518] system 00:04: [io 0xffff] has been reserved
[ 9.621972] system 00:04: [io 0xffff] has been reserved
[ 9.628384] system 00:04: [io 0xffff] has been reserved
[ 9.634816] system 00:04: [io 0x0400-0x0453] could not be reserved
[ 9.642307] system 00:04: [io 0x0458-0x047f] has been reserved
[ 9.649401] system 00:04: [io 0x0500-0x057f] has been reserved
[ 9.656501] system 00:04: [io 0x0600-0x061f] has been reserved
[ 9.663600] system 00:04: [io 0x0ca2-0x0ca5] has been reserved
[ 9.670688] system 00:04: [io 0x0cf9] could not be reserved
[ 9.677501] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 9.685598] IOAPIC[0]: Set routing entry (0-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:0)
[ 9.695467] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 9.703695] system 00:06: [io 0x0454-0x0457] has been reserved
[ 9.710794] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 9.720499] IOAPIC[0]: Set routing entry (0-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:0)
[ 9.730275] pnp 00:07: [dma 0 disabled]
[ 9.735273] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active)
[ 9.743377] IOAPIC[0]: Set routing entry (0-3 -> 0x33 -> IRQ 3 Mode:0 Active:0 Dest:0)
[ 9.753141] pnp 00:08: [dma 0 disabled]
[ 9.758162] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
[ 9.766940] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 9.774829] system 00:09: [mem 0xdffff000-0xdfffffff] has been reserved
[ 9.782726] system 00:09: [mem 0xc0000000-0xcfffffff] has been reserved
[ 9.790621] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 9.798510] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 9.806394] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
[ 9.814659] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 9.822920] system 00:09: [mem 0xfec00000-0xfecfffff] could not be reserved
[ 9.831185] system 00:09: [mem 0xd0f70000-0xd0f70fff] has been reserved
[ 9.839065] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 9.848517] system 00:0a: [mem 0x00000000-0x0009cfff] could not be reserved
[ 9.856787] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 9.865489] pnp: PnP ACPI: found 11 devices
[ 9.870670] ACPI: bus type PNP unregistered
[ 9.888399] pci 0000:02:08.0: PCI bridge to [bus 03]
[ 9.894458] pci 0000:02:08.0: bridge window [io 0x2000-0x2fff]
[ 9.901777] pci 0000:02:08.0: bridge window [mem 0xd0d00000-0xd0dfffff]
[ 9.909883] pci 0000:02:08.0: bridge window [mem 0xdc800000-0xdd1fffff 64bit pref]
[ 9.919463] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 9.925803] pci 0000:01:00.0: bridge window [io 0x2000-0x2fff]
[ 9.933111] pci 0000:01:00.0: bridge window [mem 0xd0d00000-0xd0dfffff]
[ 9.941191] pci 0000:01:00.0: bridge window [mem 0xdc800000-0xdd1fffff 64bit pref]
[ 9.950755] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 9.957085] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 9.964392] pci 0000:00:01.0: bridge window [mem 0xd0d00000-0xd0efffff]
[ 9.972472] pci 0000:00:01.0: bridge window [mem 0xdc800000-0xdd1fffff 64bit pref]
[ 9.982005] pci 0000:00:02.0: PCI bridge to [bus 04]
[ 9.988054] pci 0000:00:03.0: PCI bridge to [bus 05]
[ 9.994126] pci 0000:00:03.2: PCI bridge to [bus 06-07]
[ 10.000466] pci 0000:00:03.2: bridge window [io 0x1000-0x1fff]
[ 10.007780] pci 0000:00:03.2: bridge window [mem 0xd0900000-0xd0cfffff]
[ 10.015866] pci 0000:00:03.2: bridge window [mem 0xdd400000-0xdd8fffff 64bit pref]
[ 10.025411] pci 0000:00:1c.0: PCI bridge to [bus 08]
[ 10.031478] pci 0000:00:1c.7: PCI bridge to [bus 09]
[ 10.037526] pci 0000:00:1c.7: bridge window [mem 0xd0000000-0xd08fffff]
[ 10.045611] pci 0000:00:1c.7: bridge window [mem 0xde000000-0xdeffffff 64bit pref]
[ 10.055170] pci 0000:00:1e.0: PCI bridge to [bus 0a]
[ 10.061230] pci_bus 0000:00: resource 4 [io 0x0000-0x5fff]
[ 10.067936] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
[ 10.075434] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000c3fff]
[ 10.082924] pci_bus 0000:00: resource 7 [mem 0x000c4000-0x000c7fff]
[ 10.090437] pci_bus 0000:00: resource 8 [mem 0x000c8000-0x000cbfff]
[ 10.097947] pci_bus 0000:00: resource 9 [mem 0x000cc000-0x000cffff]
[ 10.105456] pci_bus 0000:00: resource 10 [mem 0x000d4000-0x000d7fff]
[ 10.113053] pci_bus 0000:00: resource 11 [mem 0x000d8000-0x000dbfff]
[ 10.120652] pci_bus 0000:00: resource 12 [mem 0x000dc000-0x000dffff]
[ 10.128252] pci_bus 0000:00: resource 13 [mem 0x000e0000-0x000e3fff]
[ 10.135854] pci_bus 0000:00: resource 14 [mem 0x000e4000-0x000e7fff]
[ 10.143453] pci_bus 0000:00: resource 15 [mem 0x000e8000-0x000ebfff]
[ 10.151054] pci_bus 0000:00: resource 16 [mem 0x000ec000-0x000effff]
[ 10.158653] pci_bus 0000:00: resource 17 [mem 0x000f0000-0x000fffff]
[ 10.166240] pci_bus 0000:00: resource 18 [mem 0xd0000000-0xdfffffff]
[ 10.183431] pci_bus 0000:00: resource 19 [mem 0x3c0000000000-0x3c007fffffff]
[ 10.191810] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 10.198532] pci_bus 0000:01: resource 1 [mem 0xd0d00000-0xd0efffff]
[ 10.206033] pci_bus 0000:01: resource 2 [mem 0xdc800000-0xdd1fffff 64bit pref]
[ 10.214990] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
[ 10.221702] pci_bus 0000:02: resource 1 [mem 0xd0d00000-0xd0dfffff]
[ 10.229191] pci_bus 0000:02: resource 2 [mem 0xdc800000-0xdd1fffff 64bit pref]
[ 10.238153] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
[ 10.244863] pci_bus 0000:03: resource 1 [mem 0xd0d00000-0xd0dfffff]
[ 10.252361] pci_bus 0000:03: resource 2 [mem 0xdc800000-0xdd1fffff 64bit pref]
[ 10.261317] pci_bus 0000:06: resource 0 [io 0x1000-0x1fff]
[ 10.268042] pci_bus 0000:06: resource 1 [mem 0xd0900000-0xd0cfffff]
[ 10.275534] pci_bus 0000:06: resource 2 [mem 0xdd400000-0xdd8fffff 64bit pref]
[ 10.284497] pci_bus 0000:09: resource 1 [mem 0xd0000000-0xd08fffff]
[ 10.291995] pci_bus 0000:09: resource 2 [mem 0xde000000-0xdeffffff 64bit pref]
[ 10.300952] pci_bus 0000:0a: resource 4 [io 0x0000-0x5fff]
[ 10.307670] pci_bus 0000:0a: resource 5 [mem 0x000a0000-0x000bffff]
[ 10.315168] pci_bus 0000:0a: resource 6 [mem 0x000c0000-0x000c3fff]
[ 10.322661] pci_bus 0000:0a: resource 7 [mem 0x000c4000-0x000c7fff]
[ 10.330167] pci_bus 0000:0a: resource 8 [mem 0x000c8000-0x000cbfff]
[ 10.337676] pci_bus 0000:0a: resource 9 [mem 0x000cc000-0x000cffff]
[ 10.345180] pci_bus 0000:0a: resource 10 [mem 0x000d4000-0x000d7fff]
[ 10.352777] pci_bus 0000:0a: resource 11 [mem 0x000d8000-0x000dbfff]
[ 10.360377] pci_bus 0000:0a: resource 12 [mem 0x000dc000-0x000dffff]
[ 10.367973] pci_bus 0000:0a: resource 13 [mem 0x000e0000-0x000e3fff]
[ 10.375578] pci_bus 0000:0a: resource 14 [mem 0x000e4000-0x000e7fff]
[ 10.383179] pci_bus 0000:0a: resource 15 [mem 0x000e8000-0x000ebfff]
[ 10.390792] pci_bus 0000:0a: resource 16 [mem 0x000ec000-0x000effff]
[ 10.398378] pci_bus 0000:0a: resource 17 [mem 0x000f0000-0x000fffff]
[ 10.405967] pci_bus 0000:0a: resource 18 [mem 0xd0000000-0xdfffffff]
[ 10.413562] pci_bus 0000:0a: resource 19 [mem 0x3c0000000000-0x3c007fffffff]
[ 10.421966] pci 0000:40:01.0: PCI bridge to [bus 41]
[ 10.428042] pci 0000:40:02.0: PCI bridge to [bus 42]
[ 10.434109] pci_bus 0000:40: resource 4 [io 0x03b0-0x03df]
[ 10.440834] pci_bus 0000:40: resource 5 [io 0x6000-0x7fff]
[ 10.447560] pci_bus 0000:40: resource 6 [mem 0x000a0000-0x000bffff]
[ 10.455063] pci_bus 0000:40: resource 7 [mem 0xe0000000-0xebffffff]
[ 10.462560] pci_bus 0000:40: resource 8 [mem 0x3c0080000000-0x3c00ffffffff]
[ 10.470877] pci 0000:80:02.0: PCI bridge to [bus 81]
[ 10.476951] pci 0000:80:03.0: PCI bridge to [bus 82]
[ 10.483004] pci_bus 0000:80: resource 4 [io 0x8000-0xbfff]
[ 10.489732] pci_bus 0000:80: resource 5 [mem 0xec000000-0xf7ffffff]
[ 10.497238] pci_bus 0000:80: resource 6 [mem 0x3c0100000000-0x3c017fffffff]
[ 10.505559] pci 0000:c0:02.0: PCI bridge to [bus c1]
[ 10.511635] pci 0000:c0:03.0: PCI bridge to [bus c2]
[ 10.517698] pci_bus 0000:c0: resource 4 [io 0xc000-0xffff]
[ 10.524421] pci_bus 0000:c0: resource 5 [mem 0xf8000000-0xfbffffff]
[ 10.531922] pci_bus 0000:c0: resource 6 [mem 0x3c0180000000-0x3c01ffffffff]
[ 10.540553] NET: Registered protocol family 2
[ 10.546830] TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
[ 10.557611] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 10.565926] TCP: Hash tables configured (established 524288 bind 65536)
[ 10.573950] TCP: reno registered
[ 10.578256] UDP hash table entries: 32768 (order: 8, 1048576 bytes)
[ 10.586244] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes)
[ 10.595099] NET: Registered protocol family 1
[ 10.600977] RPC: Registered named UNIX socket transport module.
[ 10.608097] RPC: Registered udp transport module.
[ 10.613852] RPC: Registered tcp transport module.
[ 10.619606] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 10.627792] IOAPIC[0]: Set routing entry (0-22 -> 0x41 -> IRQ 22 Mode:1 Active:1 Dest:0)
[ 10.638106] IOAPIC[0]: Set routing entry (0-20 -> 0x51 -> IRQ 20 Mode:1 Active:1 Dest:0)
[ 10.648251] pci 0000:09:00.0: Boot video device
[ 10.654656] PCI: CLS 64 bytes, default 64
[ 10.659735] Trying to unpack rootfs image as initramfs...
[ 17.721286] Freeing initrd memory: 213320K (ffff880072fa1000 - ffff88007fff3000)
[ 17.730480] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 17.738194] software IO TLB [mem 0xb73c7000-0xbb3c7000] (64MB) mapped at [ffff8800b73c7000-ffff8800bb3c6fff]
[ 17.759812] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[ 17.772617] Scanning for low memory corruption every 60 seconds
[ 17.782008] AVX version of gcm_enc/dec engaged.
[ 17.788931] sha1_ssse3: Using AVX optimized SHA-1 implementation
[ 17.805346] futex hash table entries: 16384 (order: 8, 1048576 bytes)
[ 17.856841] bounce pool size: 64 pages
[ 17.861532] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 17.876282] VFS: Disk quotas dquot_6.5.2
[ 17.881378] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 17.892351] NFS: Registering the id_resolver key type
[ 17.898514] Key type id_resolver registered
[ 17.903665] Key type id_legacy registered
[ 17.908626] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 17.916628] Installing knfsd (copyright (C) 1996 okir@xxxxxxxxxxxx).
[ 17.925291] ROMFS MTD (C) 2007 Red Hat, Inc.
[ 17.930820] fuse init (API version 7.22)
[ 17.936147] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
[ 17.949584] msgmni has been set to 32768
[ 17.959878] NET: Registered protocol family 38
[ 17.965345] Key type asymmetric registered
[ 17.970697] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[ 17.980180] io scheduler noop registered
[ 17.985055] io scheduler deadline registered
[ 17.990326] io scheduler cfq registered (default)
[ 17.997637] IOAPIC[1]: Set routing entry (1-23 -> 0x61 -> IRQ 47 Mode:1 Active:1 Dest:0)
[ 18.007658] pcieport 0000:00:01.0: irq 136 for MSI/MSI-X
[ 18.014535] pcieport 0000:00:02.0: irq 137 for MSI/MSI-X
[ 18.021399] pcieport 0000:00:03.0: irq 138 for MSI/MSI-X
[ 18.028247] pcieport 0000:00:03.2: irq 139 for MSI/MSI-X
[ 18.035100] IOAPIC[0]: Set routing entry (0-16 -> 0xb1 -> IRQ 16 Mode:1 Active:1 Dest:0)
[ 18.045052] pcieport 0000:00:1c.0: irq 140 for MSI/MSI-X
[ 18.051896] IOAPIC[0]: Set routing entry (0-19 -> 0xd1 -> IRQ 19 Mode:1 Active:1 Dest:0)
[ 18.061838] pcieport 0000:00:1c.7: irq 141 for MSI/MSI-X
[ 18.068553] IOAPIC[1]: Set routing entry (1-2 -> 0x22 -> IRQ 26 Mode:1 Active:1 Dest:0)
[ 18.078938] IOAPIC[2]: Set routing entry (2-23 -> 0x42 -> IRQ 71 Mode:1 Active:1 Dest:0)
[ 18.088986] pcieport 0000:40:01.0: irq 142 for MSI/MSI-X
[ 18.095766] pcieport 0000:40:02.0: irq 143 for MSI/MSI-X
[ 18.102972] IOAPIC[3]: Set routing entry (3-23 -> 0x72 -> IRQ 95 Mode:1 Active:1 Dest:0)
[ 18.113080] pcieport 0000:80:02.0: irq 144 for MSI/MSI-X
[ 18.120233] pcieport 0000:80:03.0: irq 145 for MSI/MSI-X
[ 18.127267] IOAPIC[4]: Set routing entry (4-23 -> 0xa2 -> IRQ 119 Mode:1 Active:1 Dest:0)
[ 18.137402] pcieport 0000:c0:02.0: irq 146 for MSI/MSI-X
[ 18.144328] pcieport 0000:c0:03.0: irq 147 for MSI/MSI-X
[ 18.151331] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[ 18.159633] pcieport 0000:01:00.0: Signaling PME through PCIe PME interrupt
[ 18.167927] pcieport 0000:02:08.0: Signaling PME through PCIe PME interrupt
[ 18.176228] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[ 18.184047] pci 0000:03:00.3: Signaling PME through PCIe PME interrupt
[ 18.191868] pci 0000:03:00.4: Signaling PME through PCIe PME interrupt
[ 18.199674] pci 0000:03:00.5: Signaling PME through PCIe PME interrupt
[ 18.207489] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[ 18.215521] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[ 18.223812] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
[ 18.231850] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[ 18.240152] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[ 18.248200] pcieport 0000:00:03.2: Signaling PME through PCIe PME interrupt
[ 18.256495] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[ 18.264291] pci 0000:06:00.1: Signaling PME through PCIe PME interrupt
[ 18.272098] pcie_pme 0000:00:03.2:pcie01: service driver pcie_pme loaded
[ 18.280135] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[ 18.288444] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[ 18.296474] pcieport 0000:00:1c.7: Signaling PME through PCIe PME interrupt
[ 18.304760] pci 0000:09:00.0: Signaling PME through PCIe PME interrupt
[ 18.312551] pcie_pme 0000:00:1c.7:pcie01: service driver pcie_pme loaded
[ 18.320580] pcieport 0000:40:01.0: Signaling PME through PCIe PME interrupt
[ 18.328861] pcie_pme 0000:40:01.0:pcie01: service driver pcie_pme loaded
[ 18.336874] pcieport 0000:40:02.0: Signaling PME through PCIe PME interrupt
[ 18.345157] pcie_pme 0000:40:02.0:pcie01: service driver pcie_pme loaded
[ 18.353188] pcieport 0000:80:02.0: Signaling PME through PCIe PME interrupt
[ 18.361461] pcie_pme 0000:80:02.0:pcie01: service driver pcie_pme loaded
[ 18.369496] pcieport 0000:80:03.0: Signaling PME through PCIe PME interrupt
[ 18.377768] pcie_pme 0000:80:03.0:pcie01: service driver pcie_pme loaded
[ 18.385804] pcieport 0000:c0:02.0: Signaling PME through PCIe PME interrupt
[ 18.394083] pcie_pme 0000:c0:02.0:pcie01: service driver pcie_pme loaded
[ 18.402123] pcieport 0000:c0:03.0: Signaling PME through PCIe PME interrupt
[ 18.410397] pcie_pme 0000:c0:03.0:pcie01: service driver pcie_pme loaded
[ 18.418539] ioapic: probe of 0000:00:05.4 failed with error -22
[ 18.425893] ioapic: probe of 0000:40:05.4 failed with error -22
[ 18.433116] ioapic: probe of 0000:80:05.4 failed with error -22
[ 18.440420] ioapic: probe of 0000:c0:05.4 failed with error -22
[ 18.447887] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 18.454880] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 18.462795] intel_idle: MWAIT substates: 0x21120
[ 18.468463] intel_idle: v0.4 model 0x2D
[ 18.473253] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 18.486430] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 18.495611] ACPI: Power Button [PWRF]
[ 18.500820] ERST: Error Record Serialization Table (ERST) support is initialized.
[ 18.510120] pstore: Registered erst as persistent store backend
[ 18.517470] ghes_edac: This EDAC driver relies on BIOS to enumerate memory and get error reports.
[ 18.537893] ghes_edac: Unfortunately, not all BIOSes reflect the memory layout correctly.
[ 18.547943] ghes_edac: So, the end result of using this driver varies from vendor to vendor.
[ 18.558278] ghes_edac: If you find incorrect reports, please contact your hardware vendor
[ 18.568316] ghes_edac: to correct its BIOS.
[ 18.573487] ghes_edac: This system has 48 DIMM sockets.
[ 18.584050] EDAC MC0: Giving out device to module ghes_edac.c controller ghes_edac: DEV ghes (INTERRUPT)
[ 18.595934] EDAC MC1: Giving out device to module ghes_edac.c controller ghes_edac: DEV ghes (INTERRUPT)
[ 18.607934] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[ 18.617208] EINJ: Error INJection is initialized.
[ 18.623614] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 18.651823] 00:07: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 18.681669] 00:08: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[ 18.692853] Non-volatile memory driver v1.3
[ 18.705223] brd: module loaded
[ 18.712034] loop: module loaded
[ 18.716386] lkdtm: No crash points registered, enable through debugfs
[ 18.724336] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20131218/utaddress-258)
[ 18.743106] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 18.750847] tsc: Refined TSC clocksource calibration: 2693.509 MHz
[ 18.762718] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20131218/utaddress-258)
[ 18.781481] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000053f (\FBPC) (20131218/utaddress-258)
[ 18.800229] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 18.812459] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20131218/utaddress-258)
[ 18.831216] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000053f (\FBPC) (20131218/utaddress-258)
[ 18.849953] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000052f (\_SI_.SIOR) (20131218/utaddress-258)
[ 18.869185] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 18.881416] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 18.889624] Loading iSCSI transport class v2.0-870.
[ 18.897138] Adaptec aacraid driver 1.2-0[30200]-ms
[ 18.903186] aic94xx: Adaptec aic94xx SAS/SATA driver version 1.0.3 loaded
[ 18.911598] qla2xxx [0000:00:00.0]-0005: : QLogic Fibre Channel HBA Driver: 8.06.00.12-k.
[ 18.921922] megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006)
[ 18.931133] megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006)
[ 18.939591] megasas: 06.700.06.00-rc1 Sat. Aug. 31 17:00:00 PDT 2013
[ 18.947456] GDT-HA: Storage RAID Controller Driver. Version: 3.05
[ 18.954879] RocketRAID 3xxx/4xxx Controller driver v1.8
[ 18.961717] ahci 0000:00:1f.2: version 3.0
[ 18.967030] IOAPIC[0]: Set routing entry (0-21 -> 0x63 -> IRQ 21 Mode:1 Active:1 Dest:0)
[ 18.977067] ahci 0000:00:1f.2: irq 148 for MSI/MSI-X
[ 18.998750] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[ 19.008760] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
[ 19.061067] scsi0 : ahci
[ 19.064895] scsi1 : ahci
[ 19.068673] scsi2 : ahci
[ 19.072475] scsi3 : ahci
[ 19.076249] scsi4 : ahci
[ 19.080026] scsi5 : ahci
[ 19.083560] ata1: SATA max UDMA/133 abar m2048@0xd0f00000 port 0xd0f00100 irq 148
[ 19.092781] ata2: SATA max UDMA/133 abar m2048@0xd0f00000 port 0xd0f00180 irq 148
[ 19.101995] ata3: SATA max UDMA/133 abar m2048@0xd0f00000 port 0xd0f00200 irq 148
[ 19.111199] ata4: SATA max UDMA/133 abar m2048@0xd0f00000 port 0xd0f00280 irq 148
[ 19.120412] ata5: SATA max UDMA/133 abar m2048@0xd0f00000 port 0xd0f00300 irq 148
[ 19.129618] ata6: SATA max UDMA/133 abar m2048@0xd0f00000 port 0xd0f00380 irq 148
[ 19.140117] tun: Universal TUN/TAP device driver, 1.6
[ 19.146260] tun: (C) 1999-2004 Max Krasnyansky <maxk@xxxxxxxxxxxx>
[ 19.154210] pcnet32: pcnet32.c:v1.35 21.Apr.2008 tsbogend@xxxxxxxxxxxxxxxx
[ 19.162677] Atheros(R) L2 Ethernet Driver - version 2.2.3
[ 19.169220] Copyright (c) 2007 Atheros Corporation.
[ 19.175867] dmfe: Davicom DM9xxx net driver, version 1.36.4 (2002-01-17)
[ 19.183996] v1.01-e (2.4 port) Sep-11-2006 Donald Becker <becker@xxxxxxxxx>
[ 19.183996] http://www.scyld.com/network/drivers.html
[ 19.198991] uli526x: ULi M5261/M5263 net driver, version 0.9.3 (2005-7-29)
[ 19.207392] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[ 19.214682] e100: Copyright(c) 1999-2006 Intel Corporation
[ 19.221492] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[ 19.229855] e1000: Copyright (c) 1999-2006 Intel Corporation.
[ 19.236985] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
[ 19.243990] e1000e: Copyright(c) 1999 - 2013 Intel Corporation.
[ 19.251375] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.0.5-k
[ 19.259638] igb: Copyright (c) 2007-2013 Intel Corporation.
[ 19.266535] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 3.19.1-k
[ 19.276059] ixgbe: Copyright (c) 1999-2013 Intel Corporation.
[ 19.283134] IOAPIC[1]: Set routing entry (1-16 -> 0x83 -> IRQ 40 Mode:1 Active:1 Dest:0)
[ 19.458511] ata4: SATA link down (SStatus 0 SControl 300)
[ 19.465047] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 19.472462] ata6: SATA link down (SStatus 0 SControl 300)
[ 19.478972] ata5: SATA link down (SStatus 0 SControl 300)
[ 19.485485] ata1: SATA link down (SStatus 0 SControl 300)
[ 19.492011] ata2.00: ATAPI: TEAC DV-W28S-V, 1.0A, max UDMA/100
[ 19.499315] ata3: SATA link down (SStatus 0 SControl 300)
[ 19.510460] ata2.00: configured for UDMA/100
[ 19.520420] scsi 1:0:0:0: CD-ROM TEAC DV-W28S-V 1.0A PQ: 0 ANSI: 5
[ 19.531335] scsi 1:0:0:0: Attached scsi generic sg0 type 5
[ 19.705529] ixgbe 0000:06:00.0: irq 149 for MSI/MSI-X
[ 19.711666] ixgbe 0000:06:00.0: irq 150 for MSI/MSI-X
[ 19.717801] ixgbe 0000:06:00.0: irq 151 for MSI/MSI-X
[ 19.723931] ixgbe 0000:06:00.0: irq 152 for MSI/MSI-X
[ 19.730061] ixgbe 0000:06:00.0: irq 153 for MSI/MSI-X
[ 19.736180] ixgbe 0000:06:00.0: irq 154 for MSI/MSI-X
[ 19.742311] ixgbe 0000:06:00.0: irq 155 for MSI/MSI-X
[ 19.748439] ixgbe 0000:06:00.0: irq 156 for MSI/MSI-X
[ 19.754750] ixgbe 0000:06:00.0: irq 157 for MSI/MSI-X
[ 19.754790] Switched to clocksource tsc
[ 19.765663] ixgbe 0000:06:00.0: irq 158 for MSI/MSI-X
[ 19.771799] ixgbe 0000:06:00.0: irq 159 for MSI/MSI-X
[ 19.777926] ixgbe 0000:06:00.0: irq 160 for MSI/MSI-X
[ 19.784055] ixgbe 0000:06:00.0: irq 161 for MSI/MSI-X
[ 19.790201] ixgbe 0000:06:00.0: irq 162 for MSI/MSI-X
[ 19.796339] ixgbe 0000:06:00.0: irq 163 for MSI/MSI-X
[ 19.802477] ixgbe 0000:06:00.0: irq 164 for MSI/MSI-X
[ 19.808613] ixgbe 0000:06:00.0: irq 165 for MSI/MSI-X
[ 19.814750] ixgbe 0000:06:00.0: irq 166 for MSI/MSI-X
[ 19.820888] ixgbe 0000:06:00.0: irq 167 for MSI/MSI-X
[ 19.827038] ixgbe 0000:06:00.0: irq 168 for MSI/MSI-X
[ 19.833177] ixgbe 0000:06:00.0: irq 169 for MSI/MSI-X
[ 19.839312] ixgbe 0000:06:00.0: irq 170 for MSI/MSI-X
[ 19.845449] ixgbe 0000:06:00.0: irq 171 for MSI/MSI-X
[ 19.851591] ixgbe 0000:06:00.0: irq 172 for MSI/MSI-X
[ 19.857719] ixgbe 0000:06:00.0: irq 173 for MSI/MSI-X
[ 19.863857] ixgbe 0000:06:00.0: irq 174 for MSI/MSI-X
[ 19.870013] ixgbe 0000:06:00.0: irq 175 for MSI/MSI-X
[ 19.876149] ixgbe 0000:06:00.0: irq 176 for MSI/MSI-X
[ 19.882288] ixgbe 0000:06:00.0: irq 177 for MSI/MSI-X
[ 19.888430] ixgbe 0000:06:00.0: irq 178 for MSI/MSI-X
[ 19.894568] ixgbe 0000:06:00.0: irq 179 for MSI/MSI-X
[ 19.900707] ixgbe 0000:06:00.0: irq 180 for MSI/MSI-X
[ 19.906848] ixgbe 0000:06:00.0: irq 181 for MSI/MSI-X
[ 19.912984] ixgbe 0000:06:00.0: irq 182 for MSI/MSI-X
[ 19.919128] ixgbe 0000:06:00.0: irq 183 for MSI/MSI-X
[ 19.925268] ixgbe 0000:06:00.0: irq 184 for MSI/MSI-X
[ 19.931408] ixgbe 0000:06:00.0: irq 185 for MSI/MSI-X
[ 19.937545] ixgbe 0000:06:00.0: irq 186 for MSI/MSI-X
[ 19.943681] ixgbe 0000:06:00.0: irq 187 for MSI/MSI-X
[ 19.949823] ixgbe 0000:06:00.0: irq 188 for MSI/MSI-X
[ 19.955962] ixgbe 0000:06:00.0: irq 189 for MSI/MSI-X
[ 19.962100] ixgbe 0000:06:00.0: irq 190 for MSI/MSI-X
[ 19.968249] ixgbe 0000:06:00.0: irq 191 for MSI/MSI-X
[ 19.974378] ixgbe 0000:06:00.0: irq 192 for MSI/MSI-X
[ 19.980507] ixgbe 0000:06:00.0: irq 193 for MSI/MSI-X
[ 19.986643] ixgbe 0000:06:00.0: irq 194 for MSI/MSI-X
[ 19.992784] ixgbe 0000:06:00.0: irq 195 for MSI/MSI-X
[ 19.998915] ixgbe 0000:06:00.0: irq 196 for MSI/MSI-X
[ 20.005054] ixgbe 0000:06:00.0: irq 197 for MSI/MSI-X
[ 20.011194] ixgbe 0000:06:00.0: irq 198 for MSI/MSI-X
[ 20.017325] ixgbe 0000:06:00.0: irq 199 for MSI/MSI-X
[ 20.023460] ixgbe 0000:06:00.0: irq 200 for MSI/MSI-X
[ 20.029603] ixgbe 0000:06:00.0: irq 201 for MSI/MSI-X
[ 20.035741] ixgbe 0000:06:00.0: irq 202 for MSI/MSI-X
[ 20.041880] ixgbe 0000:06:00.0: irq 203 for MSI/MSI-X
[ 20.048015] ixgbe 0000:06:00.0: irq 204 for MSI/MSI-X
[ 20.054146] ixgbe 0000:06:00.0: irq 205 for MSI/MSI-X
[ 20.060281] ixgbe 0000:06:00.0: irq 206 for MSI/MSI-X
[ 20.075735] ixgbe 0000:06:00.0: irq 207 for MSI/MSI-X
[ 20.081874] ixgbe 0000:06:00.0: irq 208 for MSI/MSI-X
[ 20.088011] ixgbe 0000:06:00.0: irq 209 for MSI/MSI-X
[ 20.094158] ixgbe 0000:06:00.0: irq 210 for MSI/MSI-X
[ 20.100296] ixgbe 0000:06:00.0: irq 211 for MSI/MSI-X
[ 20.106431] ixgbe 0000:06:00.0: irq 212 for MSI/MSI-X
[ 20.112861] ixgbe 0000:06:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[ 20.183463] ixgbe 0000:06:00.0: PCI Express bandwidth of 32GT/s available
[ 20.191534] ixgbe 0000:06:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[ 20.240144] ixgbe 0000:06:00.0: MAC: 3, PHY: 3, PBA No: 000000-000
[ 20.247539] ixgbe 0000:06:00.0: 00:1e:67:2b:58:92
[ 20.406196] ixgbe 0000:06:00.0: Intel(R) 10 Gigabit Network Connection
[ 20.414237] IOAPIC[1]: Set routing entry (1-17 -> 0xd8 -> IRQ 41 Mode:1 Active:1 Dest:0)
[ 20.835415] ixgbe 0000:06:00.1: irq 213 for MSI/MSI-X
[ 20.841560] ixgbe 0000:06:00.1: irq 214 for MSI/MSI-X
[ 20.847686] ixgbe 0000:06:00.1: irq 215 for MSI/MSI-X
[ 20.853813] ixgbe 0000:06:00.1: irq 216 for MSI/MSI-X
[ 20.859941] ixgbe 0000:06:00.1: irq 217 for MSI/MSI-X
[ 20.866065] ixgbe 0000:06:00.1: irq 218 for MSI/MSI-X
[ 20.872194] ixgbe 0000:06:00.1: irq 219 for MSI/MSI-X
[ 20.878321] ixgbe 0000:06:00.1: irq 220 for MSI/MSI-X
[ 20.884460] ixgbe 0000:06:00.1: irq 221 for MSI/MSI-X
[ 20.890590] ixgbe 0000:06:00.1: irq 222 for MSI/MSI-X
[ 20.896718] ixgbe 0000:06:00.1: irq 223 for MSI/MSI-X
[ 20.902853] ixgbe 0000:06:00.1: irq 224 for MSI/MSI-X
[ 20.908982] ixgbe 0000:06:00.1: irq 225 for MSI/MSI-X
[ 20.915115] ixgbe 0000:06:00.1: irq 226 for MSI/MSI-X
[ 20.921250] ixgbe 0000:06:00.1: irq 227 for MSI/MSI-X
[ 20.927386] ixgbe 0000:06:00.1: irq 228 for MSI/MSI-X
[ 20.933514] ixgbe 0000:06:00.1: irq 229 for MSI/MSI-X
[ 20.939638] ixgbe 0000:06:00.1: irq 230 for MSI/MSI-X
[ 20.945763] ixgbe 0000:06:00.1: irq 231 for MSI/MSI-X
[ 20.951897] ixgbe 0000:06:00.1: irq 232 for MSI/MSI-X
[ 20.958024] ixgbe 0000:06:00.1: irq 233 for MSI/MSI-X
[ 20.964151] ixgbe 0000:06:00.1: irq 234 for MSI/MSI-X
[ 20.970281] ixgbe 0000:06:00.1: irq 235 for MSI/MSI-X
[ 20.976406] ixgbe 0000:06:00.1: irq 236 for MSI/MSI-X
[ 20.982559] ixgbe 0000:06:00.1: irq 237 for MSI/MSI-X
[ 20.988687] ixgbe 0000:06:00.1: irq 238 for MSI/MSI-X
[ 20.994811] ixgbe 0000:06:00.1: irq 239 for MSI/MSI-X
[ 21.000942] ixgbe 0000:06:00.1: irq 240 for MSI/MSI-X
[ 21.007069] ixgbe 0000:06:00.1: irq 241 for MSI/MSI-X
[ 21.013194] ixgbe 0000:06:00.1: irq 242 for MSI/MSI-X
[ 21.019328] ixgbe 0000:06:00.1: irq 243 for MSI/MSI-X
[ 21.025478] ixgbe 0000:06:00.1: irq 244 for MSI/MSI-X
[ 21.031605] ixgbe 0000:06:00.1: irq 245 for MSI/MSI-X
[ 21.037734] ixgbe 0000:06:00.1: irq 246 for MSI/MSI-X
[ 21.043861] ixgbe 0000:06:00.1: irq 247 for MSI/MSI-X
[ 21.049989] ixgbe 0000:06:00.1: irq 248 for MSI/MSI-X
[ 21.056117] ixgbe 0000:06:00.1: irq 249 for MSI/MSI-X
[ 21.062248] ixgbe 0000:06:00.1: irq 250 for MSI/MSI-X
[ 21.068373] ixgbe 0000:06:00.1: irq 251 for MSI/MSI-X
[ 21.074500] ixgbe 0000:06:00.1: irq 252 for MSI/MSI-X
[ 21.080648] ixgbe 0000:06:00.1: irq 253 for MSI/MSI-X
[ 21.086778] ixgbe 0000:06:00.1: irq 254 for MSI/MSI-X
[ 21.092906] ixgbe 0000:06:00.1: irq 255 for MSI/MSI-X
[ 21.099035] ixgbe 0000:06:00.1: irq 256 for MSI/MSI-X
[ 21.105162] ixgbe 0000:06:00.1: irq 257 for MSI/MSI-X
[ 21.111289] ixgbe 0000:06:00.1: irq 258 for MSI/MSI-X
[ 21.117414] ixgbe 0000:06:00.1: irq 259 for MSI/MSI-X
[ 21.123542] ixgbe 0000:06:00.1: irq 260 for MSI/MSI-X
[ 21.129672] ixgbe 0000:06:00.1: irq 261 for MSI/MSI-X
[ 21.135797] ixgbe 0000:06:00.1: irq 262 for MSI/MSI-X
[ 21.141925] ixgbe 0000:06:00.1: irq 263 for MSI/MSI-X
[ 21.148053] ixgbe 0000:06:00.1: irq 264 for MSI/MSI-X
[ 21.154180] ixgbe 0000:06:00.1: irq 265 for MSI/MSI-X
[ 21.160314] ixgbe 0000:06:00.1: irq 266 for MSI/MSI-X
[ 21.166444] ixgbe 0000:06:00.1: irq 267 for MSI/MSI-X
[ 21.172571] ixgbe 0000:06:00.1: irq 268 for MSI/MSI-X
[ 21.178713] ixgbe 0000:06:00.1: irq 269 for MSI/MSI-X
[ 21.184843] ixgbe 0000:06:00.1: irq 270 for MSI/MSI-X
[ 21.190974] ixgbe 0000:06:00.1: irq 271 for MSI/MSI-X
[ 21.197102] ixgbe 0000:06:00.1: irq 272 for MSI/MSI-X
[ 21.203230] ixgbe 0000:06:00.1: irq 273 for MSI/MSI-X
[ 21.209361] ixgbe 0000:06:00.1: irq 274 for MSI/MSI-X
[ 21.215490] ixgbe 0000:06:00.1: irq 275 for MSI/MSI-X
[ 21.221623] ixgbe 0000:06:00.1: irq 276 for MSI/MSI-X
[ 21.228017] ixgbe 0000:06:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[ 21.298462] ixgbe 0000:06:00.1: PCI Express bandwidth of 32GT/s available
[ 21.306539] ixgbe 0000:06:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[ 21.355099] ixgbe 0000:06:00.1: MAC: 3, PHY: 3, PBA No: 000000-000
[ 21.362493] ixgbe 0000:06:00.1: 00:1e:67:2b:58:93
[ 21.519177] ixgbe 0000:06:00.1: Intel(R) 10 Gigabit Network Connection
[ 21.527426] ixgb: Intel(R) PRO/10GbE Network Driver - version 1.0.135-k2-NAPI
[ 21.535920] ixgb: Copyright (c) 1999-2008 Intel Corporation.
[ 21.543395] sky2: driver version 1.30
[ 21.550549] usbcore: registered new interface driver catc
[ 21.557236] usbcore: registered new interface driver kaweth
[ 21.563963] pegasus: v0.9.3 (2013/04/25), Pegasus/Pegasus II USB Ethernet driver
[ 21.573282] usbcore: registered new interface driver pegasus
[ 21.580324] usbcore: registered new interface driver rtl8150
[ 21.587345] usbcore: registered new interface driver asix
[ 21.594109] usbcore: registered new interface driver ax88179_178a
[ 21.601701] usbcore: registered new interface driver cdc_ether
[ 21.608970] usbcore: registered new interface driver r815x
[ 21.615891] usbcore: registered new interface driver cdc_eem
[ 21.622972] usbcore: registered new interface driver dm9601
[ 21.630002] usbcore: registered new interface driver CoreChips
[ 21.637256] usbcore: registered new interface driver smsc75xx
[ 21.644431] usbcore: registered new interface driver smsc95xx
[ 21.651564] usbcore: registered new interface driver gl620a
[ 21.658514] usbcore: registered new interface driver net1080
[ 21.665548] usbcore: registered new interface driver plusb
[ 21.672362] usbcore: registered new interface driver rndis_host
[ 21.679722] usbcore: registered new interface driver cdc_subset
[ 21.687030] usbcore: registered new interface driver zaurus
[ 21.693975] usbcore: registered new interface driver MOSCHIP usb-ethernet driver
[ 21.703340] usbcore: registered new interface driver int51x1
[ 21.710388] usbcore: registered new interface driver ipheth
[ 21.717357] usbcore: registered new interface driver sierra_net
[ 21.724720] usbcore: registered new interface driver cdc_ncm
[ 21.731543] Fusion MPT base driver 3.04.20
[ 21.736614] Copyright (c) 1999-2008 LSI Corporation
[ 21.742574] Fusion MPT SPI Host driver 3.04.20
[ 21.748332] Fusion MPT FC Host driver 3.04.20
[ 21.754009] Fusion MPT SAS Host driver 3.04.20
[ 21.759774] Fusion MPT misc device (ioctl) driver 3.04.20
[ 21.766687] mptctl: Registered with Fusion MPT base driver
[ 21.773317] mptctl: /dev/mptctl @ (major,minor=10,220)
[ 21.780629] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 21.788455] ehci-pci: EHCI PCI platform driver
[ 21.794767] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 21.801486] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 21.810651] ehci-pci 0000:00:1a.0: debug port 2
[ 21.820107] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 21.828198] ehci-pci 0000:00:1a.0: irq 22, io mem 0xd0f20000
[ 21.845436] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 21.853213] hub 1-0:1.0: USB hub found
[ 21.857904] hub 1-0:1.0: 2 ports detected
[ 21.863680] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 21.870473] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 21.879620] ehci-pci 0000:00:1d.0: debug port 2
[ 21.889069] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 21.897173] ehci-pci 0000:00:1d.0: irq 20, io mem 0xd0f10000
[ 21.913423] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 21.921229] hub 2-0:1.0: USB hub found
[ 21.925931] hub 2-0:1.0: 2 ports detected
[ 21.931610] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 21.939061] ohci-pci: OHCI PCI platform driver
[ 21.944874] uhci_hcd: USB Universal Host Controller Interface driver
[ 21.953117] usbcore: registered new interface driver usb-storage
[ 21.960603] usbcore: registered new interface driver ums-alauda
[ 21.967977] usbcore: registered new interface driver ums-datafab
[ 21.975368] usbcore: registered new interface driver ums-freecom
[ 21.982807] usbcore: registered new interface driver ums-isd200
[ 21.990168] usbcore: registered new interface driver ums-jumpshot
[ 21.997725] usbcore: registered new interface driver ums-sddr09
[ 22.005025] usbcore: registered new interface driver ums-sddr55
[ 22.012391] usbcore: registered new interface driver ums-usbat
[ 22.019634] usbcore: registered new interface driver usbtest
[ 22.027127] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 22.173478] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 22.314599] hub 1-1:1.0: USB hub found
[ 22.319333] hub 1-1:1.0: 6 ports detected
[ 22.437147] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 22.546565] i8042: Can't read CTR while initializing i8042
[ 22.553191] i8042: probe of i8042 failed with error -5
[ 22.560446] mousedev: PS/2 mouse device common for all mice
[ 22.568178] rtc_cmos 00:05: RTC can wake from S4
[ 22.574191] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[ 22.574450] hub 2-1:1.0: USB hub found
[ 22.574640] hub 2-1:1.0: 8 ports detected
[ 22.591165] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 22.601085] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[ 22.607882] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[ 22.617886] iTCO_vendor_support: vendor-support=0
[ 22.624480] softdog: Software Watchdog Timer: 0.08 initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
[ 22.637734] md: linear personality registered for level -1
[ 22.644356] md: raid0 personality registered for level 0
[ 22.645243] usb 1-1.5: new full-speed USB device number 3 using ehci-pci
[ 22.668345] md: raid1 personality registered for level 1
[ 22.674798] md: raid10 personality registered for level 10
[ 22.681761] md: raid6 personality registered for level 6
[ 22.688202] md: raid5 personality registered for level 5
[ 22.694644] md: raid4 personality registered for level 4
[ 22.701056] md: multipath personality registered for level -4
[ 22.707967] md: faulty personality registered for level -5
[ 22.716690] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@xxxxxxxxxx
[ 22.727903] device-mapper: multipath: version 1.6.0 loaded
[ 22.734568] device-mapper: multipath round-robin: version 1.0.0 loaded
[ 22.738876] hub 1-1.5:1.0: USB hub found
[ 22.739070] hub 1-1.5:1.0: 4 ports detected
[ 22.752433] device-mapper: cache-policy-mq: version 1.2.0 loaded
[ 22.759636] device-mapper: cache cleaner: version 1.0.0 loaded
[ 22.767022] Intel P-state driver initializing.
[ 22.772541] Intel pstate controlling: cpu 0
[ 22.777748] Intel pstate controlling: cpu 1
[ 22.782951] Intel pstate controlling: cpu 2
[ 22.788146] Intel pstate controlling: cpu 3
[ 22.793328] Intel pstate controlling: cpu 4
[ 22.798522] Intel pstate controlling: cpu 5
[ 22.803722] Intel pstate controlling: cpu 6
[ 22.808925] Intel pstate controlling: cpu 7
[ 22.814122] Intel pstate controlling: cpu 8
[ 22.819292] Intel pstate controlling: cpu 9
[ 22.824476] Intel pstate controlling: cpu 10
[ 22.829759] Intel pstate controlling: cpu 11
[ 22.835026] Intel pstate controlling: cpu 12
[ 22.840331] Intel pstate controlling: cpu 13
[ 22.845151] usb 2-1.4: new full-speed USB device number 3 using ehci-pci
[ 22.853554] Intel pstate controlling: cpu 14
[ 22.858829] Intel pstate controlling: cpu 15
[ 22.864131] Intel pstate controlling: cpu 16
[ 22.869419] Intel pstate controlling: cpu 17
[ 22.874723] Intel pstate controlling: cpu 18
[ 22.880012] Intel pstate controlling: cpu 19
[ 22.885304] Intel pstate controlling: cpu 20
[ 22.890609] Intel pstate controlling: cpu 21
[ 22.895908] Intel pstate controlling: cpu 22
[ 22.901204] Intel pstate controlling: cpu 23
[ 22.906492] Intel pstate controlling: cpu 24
[ 22.911760] Intel pstate controlling: cpu 25
[ 22.917013] Intel pstate controlling: cpu 26
[ 22.922307] Intel pstate controlling: cpu 27
[ 22.927608] Intel pstate controlling: cpu 28
[ 22.932890] Intel pstate controlling: cpu 29
[ 22.938136] Intel pstate controlling: cpu 30
[ 22.943446] Intel pstate controlling: cpu 31
[ 22.948723] Intel pstate controlling: cpu 32
[ 22.954007] Intel pstate controlling: cpu 33
[ 22.959281] Intel pstate controlling: cpu 34
[ 22.964556] Intel pstate controlling: cpu 35
[ 22.969878] Intel pstate controlling: cpu 36
[ 22.975174] Intel pstate controlling: cpu 37
[ 22.980467] Intel pstate controlling: cpu 38
[ 22.985787] Intel pstate controlling: cpu 39
[ 22.991079] Intel pstate controlling: cpu 40
[ 22.996365] Intel pstate controlling: cpu 41
[ 23.001649] Intel pstate controlling: cpu 42
[ 23.006918] Intel pstate controlling: cpu 43
[ 23.009076] usb 1-1.5.1: new low-speed USB device number 4 using ehci-pci
[ 23.020269] Intel pstate controlling: cpu 44
[ 23.025536] Intel pstate controlling: cpu 45
[ 23.030830] Intel pstate controlling: cpu 46
[ 23.036098] Intel pstate controlling: cpu 47
[ 23.041380] Intel pstate controlling: cpu 48
[ 23.046680] Intel pstate controlling: cpu 49
[ 23.051973] Intel pstate controlling: cpu 50
[ 23.057266] Intel pstate controlling: cpu 51
[ 23.062588] Intel pstate controlling: cpu 52
[ 23.067872] Intel pstate controlling: cpu 53
[ 23.073162] Intel pstate controlling: cpu 54
[ 23.078477] Intel pstate controlling: cpu 55
[ 23.083752] Intel pstate controlling: cpu 56
[ 23.089047] Intel pstate controlling: cpu 57
[ 23.094360] Intel pstate controlling: cpu 58
[ 23.099643] Intel pstate controlling: cpu 59
[ 23.104923] Intel pstate controlling: cpu 60
[ 23.110215] Intel pstate controlling: cpu 61
[ 23.115533] Intel pstate controlling: cpu 62
[ 23.120836] Intel pstate controlling: cpu 63
[ 23.126916] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[ 23.140691] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.0/0003:046B:FF10.0001/input/input1
[ 23.158570] hid-generic 0003:046B:FF10.0001: input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1d.0-1.4/input0
[ 23.177653] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.1/0003:046B:FF10.0002/input/input2
[ 23.195977] hid-generic 0003:046B:FF10.0002: input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1d.0-1.4/input1
[ 23.215620] input: ATEN International Co. Ltd CS1716A V1.0.098 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:0557:2261.0003/input/input3
[ 23.233884] hid-generic 0003:0557:2261.0003: input: USB HID v1.00 Keyboard [ATEN International Co. Ltd CS1716A V1.0.098] on usb-0000:00:1a.0-1.5.1/input0
[ 23.270091] input: ATEN International Co. Ltd CS1716A V1.0.098 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:0557:2261.0004/input/input4
[ 23.288387] hid-generic 0003:0557:2261.0004: input: USB HID v1.00 Device [ATEN International Co. Ltd CS1716A V1.0.098] on usb-0000:00:1a.0-1.5.1/input1
[ 23.321231] input: ATEN International Co. Ltd CS1716A V1.0.098 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.2/0003:0557:2261.0005/input/input5
[ 23.339979] hid-generic 0003:0557:2261.0005: input: USB HID v1.10 Mouse [ATEN International Co. Ltd CS1716A V1.0.098] on usb-0000:00:1a.0-1.5.1/input2
[ 23.356357] usbcore: registered new interface driver usbhid
[ 23.363102] usbhid: USB HID core driver
[ 23.368761] TCP: bic registered
[ 23.372756] Initializing XFRM netlink socket
[ 23.379353] NET: Registered protocol family 10
[ 23.385724] sit: IPv6 over IPv4 tunneling driver
[ 23.392560] NET: Registered protocol family 17
[ 23.398083] 8021q: 802.1Q VLAN Support v1.8
[ 23.405653] DCCP: Activated CCID 2 (TCP-like)
[ 23.411041] DCCP: Activated CCID 3 (TCP-Friendly Rate Control)
[ 23.419987] sctp: Hash tables configured (established 65536 bind 65536)
[ 23.428335] tipc: Activated (version 2.0.0)
[ 23.433651] NET: Registered protocol family 30
[ 23.439646] tipc: Started in single node mode
[ 23.445049] Key type dns_resolver registered
[ 23.460551]
[ 23.460551] printing PIC contents
[ 23.466813] ... PIC IMR: ffff
[ 23.470707] ... PIC IRR: 0c20
[ 23.474628] ... PIC ISR: 0000
[ 23.478545] ... PIC ELCR: 0e20
[ 23.482527] printing local APIC contents on CPU#0/0:
[ 23.488538] ... APIC ID: 00000000 (0)
[ 23.493572] ... APIC VERSION: 01060015
[ 23.498223] ... APIC TASKPRI: 00000000 (00)
[ 23.503345] ... APIC PROCPRI: 00000000
[ 23.507995] ... APIC LDR: 01000000
[ 23.512251] ... APIC DFR: ffffffff
[ 23.516500] ... APIC SPIV: 000001ff
[ 23.520855] ... APIC ISR field:
[ 23.524820] 0000000000000000000000000000000000000000000000000000000000000000
[ 23.533842] ... APIC TMR field:
[ 23.537805] 0000000000000000000200020000000000000000000000000000000000000000
[ 23.546829] ... APIC IRR field:
[ 23.550791] 0000000000000000000000000000000000000000000000000000000000000000
[ 23.559831] ... APIC ESR: 00000000
[ 23.564081] ... APIC ICR: 000000fd
[ 23.568341] ... APIC ICR2: 23000000
[ 23.572699] ... APIC LVTT: 000400ef
[ 23.577048] ... APIC LVTPC: 00000400
[ 23.581498] ... APIC LVT0: 00010700
[ 23.585850] ... APIC LVT1: 00000400
[ 23.590199] ... APIC LVTERR: 000000fe
[ 23.594746] ... APIC TMICT: 00000000
[ 23.599193] ... APIC TMCCT: 00000000
[ 23.603638] ... APIC TDCR: 00000000
[ 23.607985]
[ 23.610114] number of MP IRQ sources: 15.
[ 23.615100] number of IO-APIC #0 registers: 24.
[ 23.620632] number of IO-APIC #1 registers: 24.
[ 23.626179] number of IO-APIC #2 registers: 24.
[ 23.631714] number of IO-APIC #3 registers: 24.
[ 23.637259] number of IO-APIC #4 registers: 24.
[ 23.642804] testing the IO APIC.......................
[ 23.649034] IO APIC #0......
[ 23.652716] .... register #00: 00000000
[ 23.657464] ....... : physical APIC id: 00
[ 23.662808] ....... : Delivery Type: 0
[ 23.667765] ....... : LTS : 0
[ 23.672723] .... register #01: 00170020
[ 23.677489] ....... : max redirection entries: 17
[ 23.683616] ....... : PRQ implemented: 0
[ 23.688868] ....... : IO APIC version: 20
[ 23.694218] .... IRQ redirection table:
[ 23.698987] 1 0 0 0 0 0 0 00
[ 23.704530] 0 0 0 0 0 0 0 31
[ 23.710060] 0 0 0 0 0 0 0 30
[ 23.715605] 0 0 0 0 0 0 0 33
[ 23.721157] 0 0 0 0 0 0 0 34
[ 23.726704] 0 0 0 0 0 0 0 35
[ 23.741628] 0 0 0 0 0 0 0 36
[ 23.747173] 0 0 0 0 0 0 0 37
[ 23.752713] 0 0 0 0 0 0 0 38
[ 23.758258] 0 1 0 0 0 0 0 39
[ 23.763803] 0 0 0 0 0 0 0 3A
[ 23.769349] 0 0 0 0 0 0 0 3B
[ 23.774893] 0 0 0 0 0 0 0 3C
[ 23.780438] 0 0 0 0 0 0 0 3D
[ 23.785983] 0 0 0 0 0 0 0 3E
[ 23.791529] 0 0 0 0 0 0 0 3F
[ 23.797075] 1 1 0 1 0 0 0 B1
[ 23.802602] 1 0 0 0 0 0 0 00
[ 23.808147] 1 0 0 0 0 0 0 00
[ 23.813690] 1 1 0 1 0 0 0 D1
[ 23.819225] 0 1 0 1 0 0 0 51
[ 23.824771] 1 1 0 1 0 0 0 63
[ 23.830313] 0 1 0 1 0 0 0 41
[ 23.835842] 1 0 0 0 0 0 0 00
[ 23.841387] IO APIC #1......
[ 23.845081] .... register #00: 01000000
[ 23.849838] ....... : physical APIC id: 01
[ 23.855185] ....... : Delivery Type: 0
[ 23.860145] ....... : LTS : 0
[ 23.865106] .... register #01: 00170020
[ 23.869874] ....... : max redirection entries: 17
[ 23.876002] ....... : PRQ implemented: 0
[ 23.881253] ....... : IO APIC version: 20
[ 23.886601] .... register #02: 00000000
[ 23.891369] ....... : arbitration: 00
[ 23.896333] .... register #03: 00000001
[ 23.901081] ....... : Boot DT : 1
[ 23.905945] .... IRQ redirection table:
[ 23.910710] 1 0 0 0 0 0 0 00
[ 23.916251] 1 0 0 0 0 0 0 00
[ 23.921797] 1 1 0 1 0 0 0 22
[ 23.927339] 1 0 0 0 0 0 0 00
[ 23.932872] 1 0 0 0 0 0 0 00
[ 23.938421] 1 0 0 0 0 0 0 00
[ 23.943960] 1 0 0 0 0 0 0 00
[ 23.949495] 1 0 0 0 0 0 0 00
[ 23.955041] 1 0 0 0 0 0 0 00
[ 23.960585] 1 0 0 0 0 0 0 00
[ 23.966128] 1 0 0 0 0 0 0 00
[ 23.971671] 1 0 0 0 0 0 0 00
[ 23.977215] 1 0 0 0 0 0 0 00
[ 23.982759] 1 0 0 0 0 0 0 00
[ 23.988306] 1 0 0 0 0 0 0 00
[ 23.993849] 1 0 0 0 0 0 0 00
[ 23.999391] 1 1 0 1 0 0 0 83
[ 24.004933] 1 1 0 1 0 0 0 D8
[ 24.010468] 1 0 0 0 0 0 0 00
[ 24.016011] 1 0 0 0 0 0 0 00
[ 24.021552] 1 0 0 0 0 0 0 00
[ 24.027090] 1 0 0 0 0 0 0 00
[ 24.032635] 1 0 0 0 0 0 0 00
[ 24.038180] 1 1 0 1 0 0 0 61
[ 24.043706] IO APIC #2......
[ 24.047402] .... register #00: 02000000
[ 24.052168] ....... : physical APIC id: 02
[ 24.057516] ....... : Delivery Type: 0
[ 24.062474] ....... : LTS : 0
[ 24.067425] .... register #01: 00170020
[ 24.072189] ....... : max redirection entries: 17
[ 24.078299] ....... : PRQ implemented: 0
[ 24.083551] ....... : IO APIC version: 20
[ 24.088904] .... register #02: 00000000
[ 24.093670] ....... : arbitration: 00
[ 24.098627] .... register #03: 00000001
[ 24.103391] ....... : Boot DT : 1
[ 24.108238] .... IRQ redirection table:
[ 24.113005] 1 0 0 0 0 0 0 00
[ 24.118547] 1 0 0 0 0 0 0 00
[ 24.124081] 1 0 0 0 0 0 0 00
[ 24.129624] 1 0 0 0 0 0 0 00
[ 24.135166] 1 0 0 0 0 0 0 00
[ 24.140699] 1 0 0 0 0 0 0 00
[ 24.146243] 1 0 0 0 0 0 0 00
[ 24.151785] 1 0 0 0 0 0 0 00
[ 24.157318] 1 0 0 0 0 0 0 00
[ 24.162862] 1 0 0 0 0 0 0 00
[ 24.168406] 1 0 0 0 0 0 0 00
[ 24.173952] 1 0 0 0 0 0 0 00
[ 24.179494] 1 0 0 0 0 0 0 00
[ 24.185037] 1 0 0 0 0 0 0 00
[ 24.190581] 1 0 0 0 0 0 0 00
[ 24.196124] 1 0 0 0 0 0 0 00
[ 24.201669] 1 0 0 0 0 0 0 00
[ 24.207227] 1 0 0 0 0 0 0 00
[ 24.212763] 1 0 0 0 0 0 0 00
[ 24.218309] 1 0 0 0 0 0 0 00
[ 24.223853] 1 0 0 0 0 0 0 00
[ 24.229382] 1 0 0 0 0 0 0 00
[ 24.234919] 1 0 0 0 0 0 0 00
[ 24.240463] 1 1 0 1 0 0 0 42
[ 24.246016] IO APIC #3......
[ 24.249695] .... register #00: 03000000
[ 24.254443] ....... : physical APIC id: 03
[ 24.259801] ....... : Delivery Type: 0
[ 24.264758] ....... : LTS : 0
[ 24.269713] .... register #01: 00170020
[ 24.274476] ....... : max redirection entries: 17
[ 24.280600] ....... : PRQ implemented: 0
[ 24.285827] ....... : IO APIC version: 20
[ 24.291177] .... register #02: 00000000
[ 24.295942] ....... : arbitration: 00
[ 24.300884] .... register #03: 00000001
[ 24.305634] ....... : Boot DT : 1
[ 24.310491] .... IRQ redirection table:
[ 24.315248] 1 0 0 0 0 0 0 00
[ 24.320794] 1 0 0 0 0 0 0 00
[ 24.326337] 1 0 0 0 0 0 0 00
[ 24.331873] 1 0 0 0 0 0 0 00
[ 24.337419] 1 0 0 0 0 0 0 00
[ 24.342960] 1 0 0 0 0 0 0 00
[ 24.348496] 1 0 0 0 0 0 0 00
[ 24.354039] 1 0 0 0 0 0 0 00
[ 24.359589] 1 0 0 0 0 0 0 00
[ 24.365123] 1 0 0 0 0 0 0 00
[ 24.370665] 1 0 0 0 0 0 0 00
[ 24.376205] 1 0 0 0 0 0 0 00
[ 24.381740] 1 0 0 0 0 0 0 00
[ 24.387286] 1 0 0 0 0 0 0 00
[ 24.392829] 1 0 0 0 0 0 0 00
[ 24.398372] 1 0 0 0 0 0 0 00
[ 24.403913] 1 0 0 0 0 0 0 00
[ 24.409456] 1 0 0 0 0 0 0 00
[ 24.414998] 1 0 0 0 0 0 0 00
[ 24.420525] 1 0 0 0 0 0 0 00
[ 24.426057] 1 0 0 0 0 0 0 00
[ 24.431600] 1 0 0 0 0 0 0 00
[ 24.437133] 1 0 0 0 0 0 0 00
[ 24.442667] 1 1 0 1 0 0 0 72
[ 24.448211] IO APIC #4......
[ 24.451877] .... register #00: 04000000
[ 24.456642] ....... : physical APIC id: 04
[ 24.461991] ....... : Delivery Type: 0
[ 24.466938] ....... : LTS : 0
[ 24.471902] .... register #01: 00170020
[ 24.476654] ....... : max redirection entries: 17
[ 24.482780] ....... : PRQ implemented: 0
[ 24.488020] ....... : IO APIC version: 20
[ 24.493358] .... register #02: 00000000
[ 24.498122] ....... : arbitration: 00
[ 24.503077] .... register #03: 00000001
[ 24.507835] ....... : Boot DT : 1
[ 24.512695] .... IRQ redirection table:
[ 24.517443] 1 0 0 0 0 0 0 00
[ 24.522978] 1 0 0 0 0 0 0 00
[ 24.528521] 1 0 0 0 0 0 0 00
[ 24.534064] 1 0 0 0 0 0 0 00
[ 24.539599] 1 0 0 0 0 0 0 00
[ 24.545142] 1 0 0 0 0 0 0 00
[ 24.550682] 1 0 0 0 0 0 0 00
[ 24.556208] 1 0 0 0 0 0 0 00
[ 24.561736] 1 0 0 0 0 0 0 00
[ 24.567277] 1 0 0 0 0 0 0 00
[ 24.572812] 1 0 0 0 0 0 0 00
[ 24.578355] 1 0 0 0 0 0 0 00
[ 24.583896] 1 0 0 0 0 0 0 00
[ 24.589430] 1 0 0 0 0 0 0 00
[ 24.594970] 1 0 0 0 0 0 0 00
[ 24.600513] 1 0 0 0 0 0 0 00
[ 24.606055] 1 0 0 0 0 0 0 00
[ 24.611596] 1 0 0 0 0 0 0 00
[ 24.617139] 1 0 0 0 0 0 0 00
[ 24.622682] 1 0 0 0 0 0 0 00
[ 24.628208] 1 0 0 0 0 0 0 00
[ 24.633734] 1 0 0 0 0 0 0 00
[ 24.639276] 1 0 0 0 0 0 0 00
[ 24.644825] 1 1 0 1 0 0 0 A2
[ 24.650364] IRQ to pin mappings:
[ 24.654450] IRQ0 -> 0:2
[ 24.657834] IRQ1 -> 0:1
[ 24.661181] IRQ3 -> 0:3
[ 24.664549] IRQ4 -> 0:4
[ 24.667907] IRQ5 -> 0:5
[ 24.671268] IRQ6 -> 0:6
[ 24.674629] IRQ7 -> 0:7
[ 24.677981] IRQ8 -> 0:8
[ 24.681351] IRQ9 -> 0:9
[ 24.693997] IRQ10 -> 0:10
[ 24.697560] IRQ11 -> 0:11
[ 24.701116] IRQ12 -> 0:12
[ 24.704673] IRQ13 -> 0:13
[ 24.708217] IRQ14 -> 0:14
[ 24.711764] IRQ15 -> 0:15
[ 24.715322] IRQ16 -> 0:16
[ 24.718895] IRQ19 -> 0:19
[ 24.722441] IRQ20 -> 0:20
[ 24.725981] IRQ21 -> 0:21
[ 24.729548] IRQ22 -> 0:22
[ 24.733108] IRQ26 -> 1:2
[ 24.736567] IRQ40 -> 1:16
[ 24.740109] IRQ41 -> 1:17
[ 24.743649] IRQ47 -> 1:23
[ 24.747228] IRQ71 -> 2:23
[ 24.750784] IRQ95 -> 3:23
[ 24.754352] IRQ119 -> 4:23
[ 24.758040] .................................... done.
[ 24.764839] registered taskstats version 1
[ 24.773406] rtc_cmos 00:05: setting system clock to 2014-03-27 15:56:32 UTC (1395935792)
[ 24.783356] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 24.790558] EDD information not available.
[ 25.073067] pps pps0: new PPS source ptp0
[ 25.078059] ixgbe 0000:06:00.0: registered PHC device on eth0
[ 25.489542] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 25.496569] 8021q: adding VLAN 0 to HW filter on device eth0
[ 25.782925] pps pps1: new PPS source ptp1
[ 25.787946] ixgbe 0000:06:00.1: registered PHC device on eth1
[ 26.199006] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[ 26.206040] 8021q: adding VLAN 0 to HW filter on device eth1
[ 28.350996] ixgbe 0000:06:00.0 eth0: NIC Link is Up 1 Gbps, Flow Control: RX/TX
[ 28.362586] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 28.378470] Sending DHCP requests .., OK
[ 31.744963] IP-Config: Got DHCP answer from 192.168.1.1, my address is 192.168.1.197
[ 31.756058] ixgbe 0000:06:00.1: removed PHC on eth1
[ 32.181947] IP-Config: Complete:
[ 32.186098] device=eth0, hwaddr=00:1e:67:2b:58:92, ipaddr=192.168.1.197, mask=255.255.255.0, gw=192.168.1.1
[ 32.198360] host=lkp-sbx04, domain=lkp.intel.com, nis-domain=(none)
[ 32.206344] bootserver=192.168.1.1, rootserver=192.168.1.1, rootpath=
[ 32.213929] nameserver0=192.168.1.1
[ 32.219570] PM: Hibernation image not present or could not be loaded.
[ 32.229445] Freeing unused kernel memory: 1424K (ffffffff82138000 - ffffffff8229c000)
[ 32.239083] Write protecting the kernel read-only data: 16384k
[ 32.247503] Freeing unused kernel memory: 196K (ffff8800019cf000 - ffff880001a00000)
[ 32.263429] Freeing unused kernel memory: 2032K (ffff880001e04000 - ffff880002000000)
[ 32.698990] ipmi message handler version 39.2
[ 32.706584] IPMI System Interface driver.
[ 32.711822] ipmi_si: probing via SMBIOS
[ 32.711825] ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[ 32.711828] ipmi_si: Adding SMBIOS-specified kcs state machine
[ 32.711833] ipmi_si: probing via SPMI
[ 32.711835] ipmi_si: SPMI: io 0xca2 regsize 1 spacing 1 irq 0
[ 32.711837] ipmi_si: Adding SPMI-specified kcs state machine duplicate interface
[ 32.711840] ipmi_si: Trying SMBIOS-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[ 32.831900] microcode: CPU0 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.839173] microcode: CPU1 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.846662] microcode: CPU2 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.854154] microcode: CPU3 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.861669] microcode: CPU4 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.864531] ipmi_si ipmi_si.0: Found new BMC (man_id: 0x000157, prod_id: 0x005c, dev_id: 0x21)
[ 32.864550] ipmi_si ipmi_si.0: IPMI kcs interface initialized
[ 32.887050] microcode: CPU5 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.894300] microcode: CPU6 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.901517] microcode: CPU7 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.908753] microcode: CPU8 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.916046] microcode: CPU9 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.923394] microcode: CPU10 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.930730] microcode: CPU11 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.938066] microcode: CPU12 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.945393] microcode: CPU13 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.952723] microcode: CPU14 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.960158] microcode: CPU15 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.967552] microcode: CPU16 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.974955] microcode: CPU17 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.982369] microcode: CPU18 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.989765] microcode: CPU19 sig=0x206d7, pf=0x40, revision=0x70a
[ 32.997148] microcode: CPU20 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.004532] microcode: CPU21 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.011950] microcode: CPU22 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.019373] microcode: CPU23 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.026793] microcode: CPU24 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.034186] microcode: CPU25 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.041577] microcode: CPU26 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.048956] microcode: CPU27 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.056310] microcode: CPU28 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.063683] microcode: CPU29 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.071045] microcode: CPU30 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.078433] microcode: CPU31 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.085791] microcode: CPU32 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.093100] microcode: CPU33 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.100440] microcode: CPU34 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.107761] microcode: CPU35 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.115092] microcode: CPU36 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.122413] microcode: CPU37 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.129739] microcode: CPU38 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.137063] microcode: CPU39 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.144397] microcode: CPU40 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.151793] microcode: CPU41 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.159214] microcode: CPU42 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.166608] microcode: CPU43 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.174032] microcode: CPU44 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.181400] microcode: CPU45 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.188814] microcode: CPU46 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.196172] microcode: CPU47 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.203577] microcode: CPU48 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.210992] microcode: CPU49 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.218393] microcode: CPU50 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.225816] microcode: CPU51 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.233203] microcode: CPU52 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.240601] microcode: CPU53 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.247998] microcode: CPU54 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.255412] microcode: CPU55 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.262813] microcode: CPU56 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.270225] microcode: CPU57 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.277603] microcode: CPU58 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.284984] microcode: CPU59 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.292343] microcode: CPU60 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.299726] microcode: CPU61 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.307114] microcode: CPU62 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.314483] microcode: CPU63 sig=0x206d7, pf=0x40, revision=0x70a
[ 33.322113] microcode: Microcode Update Driver: v2.00 <tigran@xxxxxxxxxxxxxxxxxxxx>, Peter Oruba
[ 34.518925] random: vgscan urandom read with 90 bits of entropy available
<6>[ 0.000000] Initializing cgroup subsys cpuset
<6>[ 0.000000] Initializing cgroup subsys cpu
<5>[ 0.000000] Linux version 3.14.0-rc3-00007-ge0d5813 (kbuild@inn) (gcc version 4.8.2 (Debian 4.8.2-16) ) #1 SMP Thu Mar 27 14:31:53 CST 2014
<6>[ 0.000000] Command line: user=lkp job=/lkp/scheduled/lkp-sbx04/VIP_boot-1-x86_64-lkp-e0d58133c21fd445e029fb43752998384fa4df5c-4.yaml ARCH=x86_64 BOOT_IMAGE=/kernel/x86_64-lkp/e0d58133c21fd445e029fb43752998384fa4df5c/vmlinuz-3.14.0-rc3-00007-ge0d5813 kconfig=x86_64-lkp commit=e0d58133c21fd445e029fb43752998384fa4df5c modules_initrd=/kernel/x86_64-lkp/e0d58133c21fd445e029fb43752998384fa4df5c/modules.cgz RESULT_ROOT=/lkp/result/lkp-sbx04/fake/boot/1/x86_64-lkp/e0d58133c21fd445e029fb43752998384fa4df5c/0 initrd=/kernel-tests/initrd/lkp-rootfs.cgz root=/dev/ram0 ip=::::lkp-sbx04::dhcp oops=panic earlyprintk=ttyS0,115200 debug apic=debug sysrq_always_enabled rcupdate.rcu_cpu_stall_timeout=100 panic=10 softlockup_panic=1 nmi_watchdog=panic load_ramdisk=2 prompt_ramdisk=0 console=ttyS0,115200 console=tty0 vga=normal
<6>[ 0.000000] e820: BIOS-provided physical RAM map:
<6>[ 0.000000] BIOS-e820: [mem 0x0000000000000100-0x000000000008f3ff] usable
<6>[ 0.000000] BIOS-e820: [mem 0x000000000008f400-0x000000000009ffff] reserved
<6>[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
<6>[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bb3c6fff] usable
<6>[ 0.000000] BIOS-e820: [mem 0x00000000bb3c7000-0x00000000bdd2efff] reserved
<6>[ 0.000000] BIOS-e820: [mem 0x00000000bdd2f000-0x00000000bde26fff] ACPI NVS
<6>[ 0.000000] BIOS-e820: [mem 0x00000000bde27000-0x00000000bdea0fff] ACPI data
<6>[ 0.000000] BIOS-e820: [mem 0x00000000bdea1000-0x00000000bdf2efff] ACPI NVS
<6>[ 0.000000] BIOS-e820: [mem 0x00000000bdf2f000-0x00000000bdfaffff] ACPI data
<6>[ 0.000000] BIOS-e820: [mem 0x00000000bdfb0000-0x00000000bdffffff] usable
<6>[ 0.000000] BIOS-e820: [mem 0x00000000be000000-0x00000000cfffffff] reserved
<6>[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
<6>[ 0.000000] BIOS-e820: [mem 0x00000000fed19000-0x00000000fed19fff] reserved
<6>[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
<6>[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
<6>[ 0.000000] BIOS-e820: [mem 0x00000000ffa20000-0x00000000ffffffff] reserved
<6>[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000103fffffff] usable
<6>[ 0.000000] bootconsole [earlyser0] enabled
<6>[ 0.000000] NX (Execute Disable) protection: active
<6>[ 0.000000] SMBIOS 2.6 present.
<7>[ 0.000000] DMI: Intel Corporation LH Pass/S4600LH...., BIOS SE5C600.86B.99.02.1047.032320122259 03/23/2012
<7>[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
<7>[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
<6>[ 0.000000] No AGP bridge found
<6>[ 0.000000] e820: last_pfn = 0x1040000 max_arch_pfn = 0x400000000
<7>[ 0.000000] MTRR default type: uncachable
<7>[ 0.000000] MTRR fixed ranges enabled:
<7>[ 0.000000] 00000-9FFFF write-back
<7>[ 0.000000] A0000-BFFFF uncachable
<7>[ 0.000000] C0000-CFFFF write-through
<7>[ 0.000000] D0000-D3FFF write-protect
<7>[ 0.000000] D4000-E7FFF uncachable
<7>[ 0.000000] E8000-FFFFF write-protect
<7>[ 0.000000] MTRR variable ranges enabled:
<7>[ 0.000000] 0 base 000000000000 mask 3FFF80000000 write-back
<7>[ 0.000000] 1 base 000080000000 mask 3FFFC0000000 write-back
<7>[ 0.000000] 2 base 000100000000 mask 3FFF00000000 write-back
<7>[ 0.000000] 3 base 000200000000 mask 3FFE00000000 write-back
<7>[ 0.000000] 4 base 000400000000 mask 3FFC00000000 write-back
<7>[ 0.000000] 5 base 000800000000 mask 3FF800000000 write-back
<7>[ 0.000000] 6 base 001000000000 mask 3FFFC0000000 write-back
<7>[ 0.000000] 7 base 0000FF800000 mask 3FFFFF800000 write-protect
<7>[ 0.000000] 8 disabled
<7>[ 0.000000] 9 disabled
<6>[ 0.000000] x86 PAT enabled: cpu 0, old 0x7010600070106, new 0x7010600070106
<6>[ 0.000000] e820: last_pfn = 0xbe000 max_arch_pfn = 0x400000000
<4>[ 0.000000] Scan for SMP in [mem 0x00000000-0x000003ff]
<4>[ 0.000000] Scan for SMP in [mem 0x0009fc00-0x0009ffff]
<4>[ 0.000000] Scan for SMP in [mem 0x000f0000-0x000fffff]
<6>[ 0.000000] found SMP MP-table at [mem 0x000fd0f0-0x000fd0ff] mapped at [ffff8800000fd0f0]
<4>[ 0.000000] mpc: fc870-fcf24
<6>[ 0.000000] Scanning 1 areas for low memory corruption
<7>[ 0.000000] Base memory trampoline at [ffff880000089000] 89000 size 24576
<6>[ 0.000000] Using GB pages for direct mapping
<6>[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
<7>[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
<7>[ 0.000000] BRK [0x0245d000, 0x0245dfff] PGTABLE
<7>[ 0.000000] BRK [0x0245e000, 0x0245efff] PGTABLE
<7>[ 0.000000] BRK [0x0245f000, 0x0245ffff] PGTABLE
<6>[ 0.000000] init_memory_mapping: [mem 0x103fe00000-0x103fffffff]
<7>[ 0.000000] [mem 0x103fe00000-0x103fffffff] page 1G
<6>[ 0.000000] init_memory_mapping: [mem 0x103c000000-0x103fdfffff]
<7>[ 0.000000] [mem 0x103c000000-0x103fdfffff] page 1G
<6>[ 0.000000] init_memory_mapping: [mem 0x1000000000-0x103bffffff]
<7>[ 0.000000] [mem 0x1000000000-0x103bffffff] page 1G
<6>[ 0.000000] init_memory_mapping: [mem 0x00100000-0xbb3c6fff]
<7>[ 0.000000] [mem 0x00100000-0x001fffff] page 4k
<7>[ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
<7>[ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
<7>[ 0.000000] [mem 0x80000000-0xbb1fffff] page 2M
<7>[ 0.000000] [mem 0xbb200000-0xbb3c6fff] page 4k
<6>[ 0.000000] init_memory_mapping: [mem 0xbdfb0000-0xbdffffff]
<7>[ 0.000000] [mem 0xbdfb0000-0xbdffffff] page 4k
<7>[ 0.000000] BRK [0x02460000, 0x02460fff] PGTABLE
<6>[ 0.000000] init_memory_mapping: [mem 0x100000000-0xfffffffff]
<7>[ 0.000000] [mem 0x100000000-0xfffffffff] page 1G
<6>[ 0.000000] RAMDISK: [mem 0x72fa1000-0x7fff2fff]
<4>[ 0.000000] ACPI: RSDP 00000000000f0410 000024 (v02 INTEL )
<4>[ 0.000000] ACPI: XSDT 00000000bdfadd98 0000B4 (v01 INTEL S4600LH 06222004 INTL 20090903)
<4>[ 0.000000] ACPI: FACP 00000000bdfad918 0000F4 (v04 INTEL S4600LH 06222004 INTL 20090903)
<4>[ 0.000000] ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 32, using default 16 (20131218/tbfadt-684)
<4>[ 0.000000] ACPI: DSDT 00000000bdf97018 014A76 (v02 INTEL S4600LH 00000002 INTL 20100331)
<4>[ 0.000000] ACPI: FACS 00000000bdfadf40 000040
<4>[ 0.000000] ACPI: APIC 00000000bdfac718 000682 (v03 INTEL S4600LH 06222004 INTL 20090903)
<4>[ 0.000000] ACPI: SPMI 00000000bdfafc18 000040 (v05 INTEL S4600LH 06222004 INTL 20090903)
<4>[ 0.000000] ACPI: MCFG 00000000bdfafb98 00003C (v01 INTEL S4600LH 06222004 INTL 20090903)
<4>[ 0.000000] ACPI: WDDT 00000000bdfaff18 000040 (v01 INTEL S4600LH 06222004 INTL 20090903)
<4>[ 0.000000] ACPI: SRAT 00000000bdf95598 0004F8 (v03 INTEL S4600LH 06222004 INTL 20090903)
<4>[ 0.000000] ACPI: SLIT 00000000bdfafe98 00003C (v01 INTEL S4600LH 06222004 INTL 20090903)
<4>[ 0.000000] ACPI: MSCT 00000000bdfaed18 000090 (v01 INTEL S4600LH 06222004 INTL 20090903)
<4>[ 0.000000] ACPI: HPET 00000000bdfafe18 000038 (v01 INTEL S4600LH 06222004 INTL 20090903)
<4>[ 0.000000] ACPI: SSDT 00000000bdfafd18 00002B (v02 INTEL S4600LH 00001000 INTL 20100331)
<4>[ 0.000000] ACPI: SSDT 00000000bde27018 0794C4 (v02 INTEL S4600LH 00004000 INTL 20100331)
<4>[ 0.000000] ACPI: HEST 00000000bdf96f18 0000A8 (v01 INTEL S4600LH 00000001 INTL 00000001)
<4>[ 0.000000] ACPI: BERT 00000000bdfafd98 000030 (v01 INTEL S4600LH 00000001 INTL 00000001)
<4>[ 0.000000] ACPI: ERST 00000000bdf96c98 000230 (v01 INTEL S4600LH 00000001 INTL 00000001)
<4>[ 0.000000] ACPI: EINJ 00000000bdfad798 000130 (v01 INTEL S4600LH 00000001 INTL 00000001)
<4>[ 0.000000] ACPI: SSDT 00000000bdf92018 000F41 (v02 INTEL S4600LH 00000002 INTL 20100331)
<4>[ 0.000000] ACPI: SSDT 00000000bdf92f98 000045 (v02 INTEL S4600LH 00000001 INTL 20100331)
<4>[ 0.000000] ACPI: SSDT 00000000bdface18 000181 (v02 INTEL S4600LH 00000003 INTL 20100331)
<7>[ 0.000000] ACPI: Local APIC address 0xfee00000
<4>[ 0.000000] mapped APIC to ffffffffff5f3000 ( fee00000)
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x06 -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x07 -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x09 -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x0a -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x0b -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x0c -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x0d -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x0e -> Node 0
<6>[ 0.000000] SRAT: PXM 0 -> APIC 0x0f -> Node 0
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x20 -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x21 -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x22 -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x23 -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x24 -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x25 -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x26 -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x27 -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x28 -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x29 -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x2a -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x2b -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x2c -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x2d -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x2e -> Node 1
<6>[ 0.000000] SRAT: PXM 1 -> APIC 0x2f -> Node 1
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x40 -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x41 -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x42 -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x43 -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x44 -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x45 -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x46 -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x47 -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x48 -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x49 -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x4a -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x4b -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x4c -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x4d -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x4e -> Node 2
<6>[ 0.000000] SRAT: PXM 2 -> APIC 0x4f -> Node 2
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x60 -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x61 -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x62 -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x63 -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x64 -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x65 -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x66 -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x67 -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x68 -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x69 -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x6a -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x6b -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x6c -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x6d -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x6e -> Node 3
<6>[ 0.000000] SRAT: PXM 3 -> APIC 0x6f -> Node 3
<6>[ 0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0xbfffffff]
<6>[ 0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x43fffffff]
<6>[ 0.000000] SRAT: Node 1 PXM 1 [mem 0x440000000-0x83fffffff]
<6>[ 0.000000] SRAT: Node 2 PXM 2 [mem 0x840000000-0xc3fffffff]
<6>[ 0.000000] SRAT: Node 3 PXM 3 [mem 0xc40000000-0x103fffffff]
<7>[ 0.000000] NUMA: Initialized distance table, cnt=4
<6>[ 0.000000] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x43fffffff] -> [mem 0x00000000-0x43fffffff]
<6>[ 0.000000] Initmem setup node 0 [mem 0x00000000-0x43fffffff]
<6>[ 0.000000] NODE_DATA [mem 0x43fffb000-0x43fffffff]
<6>[ 0.000000] Initmem setup node 1 [mem 0x440000000-0x83fffffff]
<6>[ 0.000000] NODE_DATA [mem 0x83fffb000-0x83fffffff]
<6>[ 0.000000] Initmem setup node 2 [mem 0x840000000-0xc3fffffff]
<6>[ 0.000000] NODE_DATA [mem 0xc3fffb000-0xc3fffffff]
<6>[ 0.000000] Initmem setup node 3 [mem 0xc40000000-0x103fffffff]
<6>[ 0.000000] NODE_DATA [mem 0x103fff8000-0x103fffcfff]
<7>[ 0.000000] [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042fe00000-ffff88043fdfffff] on node 0
<7>[ 0.000000] [ffffea0011000000-ffffea0020ffffff] PMD -> [ffff88082fe00000-ffff88083fdfffff] on node 1
<7>[ 0.000000] [ffffea0021000000-ffffea0030ffffff] PMD -> [ffff880c2fe00000-ffff880c3fdfffff] on node 2
<7>[ 0.000000] [ffffea0031000000-ffffea0040ffffff] PMD -> [ffff88102f600000-ffff88103f5fffff] on node 3
<4>[ 0.000000] Zone ranges:
<4>[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
<4>[ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
<4>[ 0.000000] Normal [mem 0x100000000-0x103fffffff]
<4>[ 0.000000] Movable zone start for each node
<4>[ 0.000000] Early memory node ranges
<4>[ 0.000000] node 0: [mem 0x00001000-0x0008efff]
<4>[ 0.000000] node 0: [mem 0x00100000-0xbb3c6fff]
<4>[ 0.000000] node 0: [mem 0xbdfb0000-0xbdffffff]
<4>[ 0.000000] node 0: [mem 0x100000000-0x43fffffff]
<4>[ 0.000000] node 1: [mem 0x440000000-0x83fffffff]
<4>[ 0.000000] node 2: [mem 0x840000000-0xc3fffffff]
<4>[ 0.000000] node 3: [mem 0xc40000000-0x103fffffff]
<7>[ 0.000000] On node 0 totalpages: 4174757
<7>[ 0.000000] DMA zone: 64 pages used for memmap
<7>[ 0.000000] DMA zone: 21 pages reserved
<7>[ 0.000000] DMA zone: 3982 pages, LIFO batch:0
<7>[ 0.000000] DMA32 zone: 11921 pages used for memmap
<7>[ 0.000000] DMA32 zone: 762903 pages, LIFO batch:31
<7>[ 0.000000] Normal zone: 53248 pages used for memmap
<7>[ 0.000000] Normal zone: 3407872 pages, LIFO batch:31
<7>[ 0.000000] On node 1 totalpages: 4194304
<7>[ 0.000000] Normal zone: 65536 pages used for memmap
<7>[ 0.000000] Normal zone: 4194304 pages, LIFO batch:31
<7>[ 0.000000] On node 2 totalpages: 4194304
<7>[ 0.000000] Normal zone: 65536 pages used for memmap
<7>[ 0.000000] Normal zone: 4194304 pages, LIFO batch:31
<7>[ 0.000000] On node 3 totalpages: 4194304
<7>[ 0.000000] Normal zone: 65536 pages used for memmap
<7>[ 0.000000] Normal zone: 4194304 pages, LIFO batch:31
<6>[ 0.000000] ACPI: PM-Timer IO Port: 0x408
<7>[ 0.000000] ACPI: Local APIC address 0xfee00000
<4>[ 0.000000] mapped APIC to ffffffffff5f3000 ( fee00000)
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x00] uid[0x00] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x01] uid[0x01] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x02] uid[0x02] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x03] uid[0x03] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x04] uid[0x04] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x05] uid[0x05] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x06] uid[0x06] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x07] uid[0x07] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x08] uid[0x08] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x09] uid[0x09] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x0a] uid[0x0a] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x0b] uid[0x0b] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x0c] uid[0x0c] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x0d] uid[0x0d] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x0e] uid[0x0e] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x0f] uid[0x0f] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x10] uid[0x10] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x11] uid[0x11] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x12] uid[0x12] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x13] uid[0x13] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x14] uid[0x14] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x15] uid[0x15] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x16] uid[0x16] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x17] uid[0x17] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x18] uid[0x18] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x19] uid[0x19] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x1a] uid[0x1a] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x1b] uid[0x1b] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x1c] uid[0x1c] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x1d] uid[0x1d] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x1e] uid[0x1e] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x1f] uid[0x1f] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x20] uid[0x20] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x21] uid[0x21] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x22] uid[0x22] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x23] uid[0x23] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x24] uid[0x24] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x25] uid[0x25] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x26] uid[0x26] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x27] uid[0x27] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x28] uid[0x28] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x29] uid[0x29] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x2a] uid[0x2a] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x2b] uid[0x2b] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x2c] uid[0x2c] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x2d] uid[0x2d] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x2e] uid[0x2e] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x2f] uid[0x2f] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x30] uid[0x30] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x31] uid[0x31] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x32] uid[0x32] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x33] uid[0x33] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x34] uid[0x34] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x35] uid[0x35] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x36] uid[0x36] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x37] uid[0x37] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x38] uid[0x38] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x39] uid[0x39] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x3a] uid[0x3a] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x3b] uid[0x3b] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x3c] uid[0x3c] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x3d] uid[0x3d] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x3e] uid[0x3e] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: X2APIC (apic_id[0x3f] uid[0x3f] disabled)
<4>[ 0.000000] ACPI: x2apic entry ignored
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x08] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x0a] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x0c] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x0e] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x20] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x22] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x24] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x26] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x28] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x2a] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x2c] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x2e] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x40] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x42] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x44] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x46] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x48] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x4a] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x4c] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x4e] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x60] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x62] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x64] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x66] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x68] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x6a] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x6c] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x6e] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x01] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x21] lapic_id[0x03] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x22] lapic_id[0x05] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x23] lapic_id[0x07] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x24] lapic_id[0x09] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x25] lapic_id[0x0b] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x26] lapic_id[0x0d] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x27] lapic_id[0x0f] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x28] lapic_id[0x21] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x29] lapic_id[0x23] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x2a] lapic_id[0x25] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x2b] lapic_id[0x27] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x2c] lapic_id[0x29] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x2d] lapic_id[0x2b] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x2e] lapic_id[0x2d] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x2f] lapic_id[0x2f] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x30] lapic_id[0x41] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x31] lapic_id[0x43] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x32] lapic_id[0x45] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x33] lapic_id[0x47] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x34] lapic_id[0x49] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x35] lapic_id[0x4b] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x36] lapic_id[0x4d] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x37] lapic_id[0x4f] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x38] lapic_id[0x61] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x39] lapic_id[0x63] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x3a] lapic_id[0x65] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x3b] lapic_id[0x67] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x3c] lapic_id[0x69] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x3d] lapic_id[0x6b] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x3e] lapic_id[0x6d] enabled)
<6>[ 0.000000] ACPI: LAPIC (acpi_id[0x3f] lapic_id[0x6f] enabled)
<6>[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
<6>[ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
<6>[ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
<6>[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec3f000] gsi_base[24])
<6>[ 0.000000] IOAPIC[1]: apic_id 1, version 32, address 0xfec3f000, GSI 24-47
<6>[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec7f000] gsi_base[48])
<6>[ 0.000000] IOAPIC[2]: apic_id 2, version 32, address 0xfec7f000, GSI 48-71
<6>[ 0.000000] ACPI: IOAPIC (id[0x03] address[0xfecbf000] gsi_base[72])
<6>[ 0.000000] IOAPIC[3]: apic_id 3, version 32, address 0xfecbf000, GSI 72-95
<6>[ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfecff000] gsi_base[96])
<6>[ 0.000000] IOAPIC[4]: apic_id 4, version 32, address 0xfecff000, GSI 96-119
<6>[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 00, APIC ID 0, APIC INT 02
<6>[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
<4>[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 09, APIC ID 0, APIC INT 09
<7>[ 0.000000] ACPI: IRQ0 used by override.
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 01, APIC ID 0, APIC INT 01
<7>[ 0.000000] ACPI: IRQ2 used by override.
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 03, APIC ID 0, APIC INT 03
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 04, APIC ID 0, APIC INT 04
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 05, APIC ID 0, APIC INT 05
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 06, APIC ID 0, APIC INT 06
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 07, APIC ID 0, APIC INT 07
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 08, APIC ID 0, APIC INT 08
<7>[ 0.000000] ACPI: IRQ9 used by override.
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0a, APIC ID 0, APIC INT 0a
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0b, APIC ID 0, APIC INT 0b
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0c, APIC ID 0, APIC INT 0c
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0d, APIC ID 0, APIC INT 0d
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0e, APIC ID 0, APIC INT 0e
<4>[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0f, APIC ID 0, APIC INT 0f
<6>[ 0.000000] Using ACPI (MADT) for SMP configuration information
<6>[ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
<6>[ 0.000000] smpboot: Allowing 64 CPUs, 0 hotplug CPUs
<4>[ 0.000000] mapped IOAPIC to ffffffffff5f2000 (fec00000)
<4>[ 0.000000] mapped IOAPIC to ffffffffff5f1000 (fec3f000)
<4>[ 0.000000] mapped IOAPIC to ffffffffff5f0000 (fec7f000)
<4>[ 0.000000] mapped IOAPIC to ffffffffff5ef000 (fecbf000)
<4>[ 0.000000] mapped IOAPIC to ffffffffff5ee000 (fecff000)
<7>[ 0.000000] nr_irqs_gsi: 136
<6>[ 0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0x00090000-0x0009ffff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xbb3c7000-0xbdd2efff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xbdd2f000-0xbde26fff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xbde27000-0xbdea0fff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xbdea1000-0xbdf2efff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xbdf2f000-0xbdfaffff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xbe000000-0xcfffffff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xd0000000-0xfebfffff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed18fff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xfed19000-0xfed19fff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffa1ffff]
<6>[ 0.000000] PM: Registered nosave memory: [mem 0xffa20000-0xffffffff]
<6>[ 0.000000] e820: [mem 0xd0000000-0xfebfffff] available for PCI devices
<6>[ 0.000000] Booting paravirtualized kernel on bare hardware
<6>[ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:64 nr_node_ids:4
<6>[ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff88042fc00000 s81088 r8192 d21312 u131072
<7>[ 0.000000] pcpu-alloc: s81088 r8192 d21312 u131072 alloc=1*2097152
<7>[ 0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 32 33 34 35 36 37 38 39
<7>[ 0.000000] pcpu-alloc: [1] 08 09 10 11 12 13 14 15 40 41 42 43 44 45 46 47
<7>[ 0.000000] pcpu-alloc: [2] 16 17 18 19 20 21 22 23 48 49 50 51 52 53 54 55
<7>[ 0.000000] pcpu-alloc: [3] 24 25 26 27 28 29 30 31 56 57 58 59 60 61 62 63
<4>[ 0.000000] Built 4 zonelists in Zone order, mobility grouping on. Total pages: 16495807
<4>[ 0.000000] Policy zone: Normal
<5>[ 0.000000] Kernel command line: user=lkp job=/lkp/scheduled/lkp-sbx04/VIP_boot-1-x86_64-lkp-e0d58133c21fd445e029fb43752998384fa4df5c-4.yaml ARCH=x86_64 BOOT_IMAGE=/kernel/x86_64-lkp/e0d58133c21fd445e029fb43752998384fa4df5c/vmlinuz-3.14.0-rc3-00007-ge0d5813 kconfig=x86_64-lkp commit=e0d58133c21fd445e029fb43752998384fa4df5c modules_initrd=/kernel/x86_64-lkp/e0d58133c21fd445e029fb43752998384fa4df5c/modules.cgz RESULT_ROOT=/lkp/result/lkp-sbx04/fake/boot/1/x86_64-lkp/e0d58133c21fd445e029fb43752998384fa4df5c/0 initrd=/kernel-tests/initrd/lkp-rootfs.cgz root=/dev/ram0 ip=::::lkp-sbx04::dhcp oops=panic earlyprintk=ttyS0,115200 debug apic=debug sysrq_always_enabled rcupdate.rcu_cpu_stall_timeout=100 panic=10 softlockup_panic=1 nmi_watchdog=panic load_ramdisk=2 prompt_ramdisk=0 console=ttyS0,115200 console=tty0 vga=normal
<6>[ 0.000000] sysrq: sysrq always enabled.
<6>[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
<6>[ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
<6>[ 0.000000] Checking aperture...
<6>[ 0.000000] No AGP bridge found
<4>[ 0.000000] Memory: 65674192K/67030676K available (10030K kernel code, 1240K rwdata, 4112K rodata, 1424K init, 1748K bss, 1356484K reserved)
<6>[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=64, Nodes=4
<6>[ 0.000000] Hierarchical RCU implementation.
<6>[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
<6>[ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=64.
<6>[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=64
<6>[ 0.000000] NR_IRQS:33024 nr_irqs:2824 16
<6>[ 0.000000] ACPI: Core revision 20131218
<4>[ 0.000000] ACPI: All ACPI Tables successfully acquired
<6>[ 0.000000] Console: colour VGA+ 80x25
<6>[ 0.000000] console [tty0] enabled
<6>[ 0.000000] bootconsole [earlyser0] disabled
<6>[ 0.000000] console [ttyS0] enabled
<6>[ 0.000000] allocated 268435456 bytes of page_cgroup
<6>[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
<6>[ 0.000000] Disabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
<7>[ 0.000000] hpet clockevent registered
<6>[ 0.000000] tsc: Fast TSC calibration using PIT
<6>[ 0.000000] tsc: Detected 2693.326 MHz processor
<6>[ 0.000071] Calibrating delay loop (skipped), value calculated using timer frequency.. 5386.65 BogoMIPS (lpj=10773304)
<6>[ 0.012219] pid_max: default: 65536 minimum: 512
<6>[ 0.027121] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes)
<6>[ 0.066088] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes)
<6>[ 0.087099] Mount-cache hash table entries: 256
<6>[ 0.093010] Initializing cgroup subsys memory
<6>[ 0.098029] Initializing cgroup subsys devices
<6>[ 0.103464] Initializing cgroup subsys freezer
<6>[ 0.108890] Initializing cgroup subsys blkio
<6>[ 0.114114] Initializing cgroup subsys perf_event
<6>[ 0.119849] Initializing cgroup subsys hugetlb
<6>[ 0.125395] CPU: Physical Processor ID: 0
<6>[ 0.130328] CPU: Processor Core ID: 0
<6>[ 0.134899] mce: CPU supports 20 MCE banks
<7>[ 0.139982] CPU0: Thermal LVT vector (0xfa) already installed
<6>[ 0.146891] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
<6>[ 0.146891] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
<6>[ 0.146891] tlb_flushall_shift: 6
<6>[ 0.165196] Freeing SMP alternatives memory: 40K (ffffffff8229c000 - ffffffff822a6000)
<6>[ 0.178336] ftrace: allocating 39020 entries in 153 pages
<4>[ 0.223658] Getting VERSION: 1060015
<4>[ 0.228101] Getting VERSION: 1060015
<4>[ 0.232559] Getting ID: 0
<4>[ 0.235944] Getting ID: 0
<6>[ 0.239337] Switched APIC routing to physical flat.
<4>[ 0.245248] masked ExtINT on CPU#0
<4>[ 0.250299] ENABLING IO-APIC IRQs
<7>[ 0.254467] init IO_APIC IRQs
<7>[ 0.258237] apic 0 pin 0 not connected
<7>[ 0.263003] IOAPIC[0]: Set routing entry (0-1 -> 0x31 -> IRQ 1 Mode:0 Active:0 Dest:0)
<7>[ 0.272719] IOAPIC[0]: Set routing entry (0-2 -> 0x30 -> IRQ 0 Mode:0 Active:0 Dest:0)
<7>[ 0.282431] IOAPIC[0]: Set routing entry (0-3 -> 0x33 -> IRQ 3 Mode:0 Active:0 Dest:0)
<7>[ 0.292162] IOAPIC[0]: Set routing entry (0-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:0)
<7>[ 0.301882] IOAPIC[0]: Set routing entry (0-5 -> 0x35 -> IRQ 5 Mode:0 Active:0 Dest:0)
<7>[ 0.311590] IOAPIC[0]: Set routing entry (0-6 -> 0x36 -> IRQ 6 Mode:0 Active:0 Dest:0)
<7>[ 0.321293] IOAPIC[0]: Set routing entry (0-7 -> 0x37 -> IRQ 7 Mode:0 Active:0 Dest:0)
<7>[ 0.330998] IOAPIC[0]: Set routing entry (0-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:0)
<7>[ 0.340695] IOAPIC[0]: Set routing entry (0-9 -> 0x39 -> IRQ 9 Mode:1 Active:0 Dest:0)
<7>[ 0.350392] IOAPIC[0]: Set routing entry (0-10 -> 0x3a -> IRQ 10 Mode:0 Active:0 Dest:0)
<7>[ 0.360280] IOAPIC[0]: Set routing entry (0-11 -> 0x3b -> IRQ 11 Mode:0 Active:0 Dest:0)
<7>[ 0.370180] IOAPIC[0]: Set routing entry (0-12 -> 0x3c -> IRQ 12 Mode:0 Active:0 Dest:0)
<7>[ 0.380071] IOAPIC[0]: Set routing entry (0-13 -> 0x3d -> IRQ 13 Mode:0 Active:0 Dest:0)
<7>[ 0.389961] IOAPIC[0]: Set routing entry (0-14 -> 0x3e -> IRQ 14 Mode:0 Active:0 Dest:0)
<7>[ 0.399850] IOAPIC[0]: Set routing entry (0-15 -> 0x3f -> IRQ 15 Mode:0 Active:0 Dest:0)
<7>[ 0.409739] apic 0 pin 16 not connected
<7>[ 0.414578] apic 0 pin 17 not connected
<7>[ 0.419421] apic 0 pin 18 not connected
<7>[ 0.424264] apic 0 pin 19 not connected
<7>[ 0.429109] apic 0 pin 20 not connected
<7>[ 0.433951] apic 0 pin 21 not connected
<7>[ 0.438791] apic 0 pin 22 not connected
<7>[ 0.443636] apic 0 pin 23 not connected
<7>[ 0.448473] apic 1 pin 0 not connected
<7>[ 0.453212] apic 1 pin 1 not connected
<7>[ 0.457956] apic 1 pin 2 not connected
<7>[ 0.462696] apic 1 pin 3 not connected
<7>[ 0.467445] apic 1 pin 4 not connected
<7>[ 0.472184] apic 1 pin 5 not connected
<7>[ 0.476915] apic 1 pin 6 not connected
<7>[ 0.481658] apic 1 pin 7 not connected
<7>[ 0.486405] apic 1 pin 8 not connected
<7>[ 0.491144] apic 1 pin 9 not connected
<7>[ 0.495888] apic 1 pin 10 not connected
<7>[ 0.500725] apic 1 pin 11 not connected
<7>[ 0.505566] apic 1 pin 12 not connected
<7>[ 0.510398] apic 1 pin 13 not connected
<7>[ 0.515235] apic 1 pin 14 not connected
<7>[ 0.520071] apic 1 pin 15 not connected
<7>[ 0.524913] apic 1 pin 16 not connected
<7>[ 0.529752] apic 1 pin 17 not connected
<7>[ 0.534589] apic 1 pin 18 not connected
<7>[ 0.539416] apic 1 pin 19 not connected
<7>[ 0.544263] apic 1 pin 20 not connected
<7>[ 0.549100] apic 1 pin 21 not connected
<7>[ 0.553934] apic 1 pin 22 not connected
<7>[ 0.558775] apic 1 pin 23 not connected
<7>[ 0.563620] apic 2 pin 0 not connected
<7>[ 0.568359] apic 2 pin 1 not connected
<7>[ 0.573099] apic 2 pin 2 not connected
<7>[ 0.577842] apic 2 pin 3 not connected
<7>[ 0.582588] apic 2 pin 4 not connected
<7>[ 0.587327] apic 2 pin 5 not connected
<7>[ 0.592067] apic 2 pin 6 not connected
<7>[ 0.596809] apic 2 pin 7 not connected
<7>[ 0.601555] apic 2 pin 8 not connected
<7>[ 0.606295] apic 2 pin 9 not connected
<7>[ 0.611038] apic 2 pin 10 not connected
<7>[ 0.615875] apic 2 pin 11 not connected
<7>[ 0.620710] apic 2 pin 12 not connected
<7>[ 0.625549] apic 2 pin 13 not connected
<7>[ 0.630387] apic 2 pin 14 not connected
<7>[ 0.635221] apic 2 pin 15 not connected
<7>[ 0.640058] apic 2 pin 16 not connected
<7>[ 0.644897] apic 2 pin 17 not connected
<7>[ 0.649731] apic 2 pin 18 not connected
<7>[ 0.654576] apic 2 pin 19 not connected
<7>[ 0.659422] apic 2 pin 20 not connected
<7>[ 0.664258] apic 2 pin 21 not connected
<7>[ 0.669093] apic 2 pin 22 not connected
<7>[ 0.673932] apic 2 pin 23 not connected
<7>[ 0.678768] apic 3 pin 0 not connected
<7>[ 0.683508] apic 3 pin 1 not connected
<7>[ 0.688252] apic 3 pin 2 not connected
<7>[ 0.692992] apic 3 pin 3 not connected
<7>[ 0.697733] apic 3 pin 4 not connected
<7>[ 0.702475] apic 3 pin 5 not connected
<7>[ 0.707214] apic 3 pin 6 not connected
<7>[ 0.711956] apic 3 pin 7 not connected
<7>[ 0.716698] apic 3 pin 8 not connected
<7>[ 0.721436] apic 3 pin 9 not connected
<7>[ 0.726177] apic 3 pin 10 not connected
<7>[ 0.731017] apic 3 pin 11 not connected
<7>[ 0.735852] apic 3 pin 12 not connected
<7>[ 0.740689] apic 3 pin 13 not connected
<7>[ 0.745527] apic 3 pin 14 not connected
<7>[ 0.750364] apic 3 pin 15 not connected
<7>[ 0.755200] apic 3 pin 16 not connected
<7>[ 0.760038] apic 3 pin 17 not connected
<7>[ 0.764875] apic 3 pin 18 not connected
<7>[ 0.769712] apic 3 pin 19 not connected
<7>[ 0.774551] apic 3 pin 20 not connected
<7>[ 0.779387] apic 3 pin 21 not connected
<7>[ 0.784214] apic 3 pin 22 not connected
<7>[ 0.789054] apic 3 pin 23 not connected
<7>[ 0.793892] apic 4 pin 0 not connected
<7>[ 0.798638] apic 4 pin 1 not connected
<7>[ 0.803381] apic 4 pin 2 not connected
<7>[ 0.808124] apic 4 pin 3 not connected
<7>[ 0.812853] apic 4 pin 4 not connected
<7>[ 0.817598] apic 4 pin 5 not connected
<7>[ 0.822339] apic 4 pin 6 not connected
<7>[ 0.827078] apic 4 pin 7 not connected
<7>[ 0.831820] apic 4 pin 8 not connected
<7>[ 0.836550] apic 4 pin 9 not connected
<7>[ 0.841290] apic 4 pin 10 not connected
<7>[ 0.846130] apic 4 pin 11 not connected
<7>[ 0.850968] apic 4 pin 12 not connected
<7>[ 0.855804] apic 4 pin 13 not connected
<7>[ 0.860646] apic 4 pin 14 not connected
<7>[ 0.865482] apic 4 pin 15 not connected
<7>[ 0.870326] apic 4 pin 16 not connected
<7>[ 0.875166] apic 4 pin 17 not connected
<7>[ 0.880003] apic 4 pin 18 not connected
<7>[ 0.884839] apic 4 pin 19 not connected
<7>[ 0.889685] apic 4 pin 20 not connected
<7>[ 0.894523] apic 4 pin 21 not connected
<7>[ 0.899358] apic 4 pin 22 not connected
<7>[ 0.904195] apic 4 pin 23 not connected
<6>[ 0.909186] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
<6>[ 0.956034] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-4650 0 @ 2.70GHz (fam: 06, model: 2d, stepping: 07)
<7>[ 0.967573] TSC deadline timer enabled
<6>[ 0.972274] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
<6>[ 0.985281] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
<6>[ 0.995075] ... version: 3
<6>[ 1.000019] ... bit width: 48
<6>[ 1.005059] ... generic registers: 4
<6>[ 1.010002] ... value mask: 0000ffffffffffff
<6>[ 1.016400] ... max period: 0000ffffffffffff
<6>[ 1.022792] ... fixed-purpose events: 3
<6>[ 1.027739] ... event mask: 000000070000000f
<6>[ 1.038652] x86: Booting SMP configuration:
<6>[ 1.043793] .... node #0, CPUs: #1
<4>[ 1.063168] masked ExtINT on CPU#1
<7>[ 1.067280] CPU1: Thermal LVT vector (0xfa) already installed
<4>[ 1.076137] #2
<4>[ 1.089500] masked ExtINT on CPU#2
<7>[ 1.093603] CPU2: Thermal LVT vector (0xfa) already installed
<4>[ 1.102381] #3
<4>[ 1.116139] masked ExtINT on CPU#3
<7>[ 1.120229] CPU3: Thermal LVT vector (0xfa) already installed
<4>[ 1.128996] #4
<4>[ 1.142364] masked ExtINT on CPU#4
<7>[ 1.146457] CPU4: Thermal LVT vector (0xfa) already installed
<4>[ 1.155234] #5
<4>[ 1.168604] masked ExtINT on CPU#5
<7>[ 1.172717] CPU5: Thermal LVT vector (0xfa) already installed
<4>[ 1.181573] #6
<4>[ 1.194928] masked ExtINT on CPU#6
<7>[ 1.199040] CPU6: Thermal LVT vector (0xfa) already installed
<4>[ 1.207851] #7
<4>[ 1.221192] masked ExtINT on CPU#7
<7>[ 1.225305] CPU7: Thermal LVT vector (0xfa) already installed
<4>[ 1.234161]
<6>[ 1.236666] .... node #1, CPUs: #8
<4>[ 1.253866] masked ExtINT on CPU#8
<7>[ 1.257975] CPU8: Thermal LVT vector (0xfa) already installed
<4>[ 1.364758] #9
<4>[ 1.377844] masked ExtINT on CPU#9
<7>[ 1.381985] CPU9: Thermal LVT vector (0xfa) already installed
<4>[ 1.390785] #10
<4>[ 1.403875] masked ExtINT on CPU#10
<7>[ 1.408106] CPU10: Thermal LVT vector (0xfa) already installed
<4>[ 1.417027] #11
<4>[ 1.430498] masked ExtINT on CPU#11
<7>[ 1.434737] CPU11: Thermal LVT vector (0xfa) already installed
<4>[ 1.443640] #12
<4>[ 1.456752] masked ExtINT on CPU#12
<7>[ 1.460983] CPU12: Thermal LVT vector (0xfa) already installed
<4>[ 1.469880] #13
<4>[ 1.482960] masked ExtINT on CPU#13
<7>[ 1.487164] CPU13: Thermal LVT vector (0xfa) already installed
<4>[ 1.495991] #14
<4>[ 1.509081] masked ExtINT on CPU#14
<7>[ 1.513285] CPU14: Thermal LVT vector (0xfa) already installed
<4>[ 1.522119] #15
<4>[ 1.535830] masked ExtINT on CPU#15
<7>[ 1.540052] CPU15: Thermal LVT vector (0xfa) already installed
<4>[ 1.549005]
<6>[ 1.560450] .... node #2, CPUs: #16
<4>[ 1.577133] masked ExtINT on CPU#16
<7>[ 1.581376] CPU16: Thermal LVT vector (0xfa) already installed
<4>[ 1.685175] #17
<4>[ 1.698541] masked ExtINT on CPU#17
<7>[ 1.702791] CPU17: Thermal LVT vector (0xfa) already installed
<4>[ 1.711736] #18
<4>[ 1.725124] masked ExtINT on CPU#18
<7>[ 1.729368] CPU18: Thermal LVT vector (0xfa) already installed
<4>[ 1.738309] #19
<4>[ 1.752074] masked ExtINT on CPU#19
<7>[ 1.756318] CPU19: Thermal LVT vector (0xfa) already installed
<4>[ 1.765208] #20
<4>[ 1.778608] masked ExtINT on CPU#20
<7>[ 1.782851] CPU20: Thermal LVT vector (0xfa) already installed
<4>[ 1.791781] #21
<4>[ 1.805152] masked ExtINT on CPU#21
<7>[ 1.809402] CPU21: Thermal LVT vector (0xfa) already installed
<4>[ 1.818300] #22
<4>[ 1.831654] masked ExtINT on CPU#22
<7>[ 1.835901] CPU22: Thermal LVT vector (0xfa) already installed
<4>[ 1.844739] #23
<4>[ 1.858451] masked ExtINT on CPU#23
<7>[ 1.862667] CPU23: Thermal LVT vector (0xfa) already installed
<4>[ 1.871612]
<6>[ 1.873758] .... node #3, CPUs: #24
<4>[ 1.891210] masked ExtINT on CPU#24
<7>[ 1.895431] CPU24: Thermal LVT vector (0xfa) already installed
<4>[ 2.002349] #25
<4>[ 2.015719] masked ExtINT on CPU#25
<7>[ 2.019961] CPU25: Thermal LVT vector (0xfa) already installed
<4>[ 2.028859] #26
<4>[ 2.042251] masked ExtINT on CPU#26
<7>[ 2.046487] CPU26: Thermal LVT vector (0xfa) already installed
<4>[ 2.055427] #27
<4>[ 2.069185] masked ExtINT on CPU#27
<7>[ 2.073420] CPU27: Thermal LVT vector (0xfa) already installed
<4>[ 2.082350] #28
<4>[ 2.095734] masked ExtINT on CPU#28
<7>[ 2.099969] CPU28: Thermal LVT vector (0xfa) already installed
<4>[ 2.108865] #29
<4>[ 2.122223] masked ExtINT on CPU#29
<7>[ 2.126457] CPU29: Thermal LVT vector (0xfa) already installed
<4>[ 2.135275] #30
<4>[ 2.148641] masked ExtINT on CPU#30
<7>[ 2.152862] CPU30: Thermal LVT vector (0xfa) already installed
<4>[ 2.161709] #31
<4>[ 2.175416] masked ExtINT on CPU#31
<7>[ 2.179623] CPU31: Thermal LVT vector (0xfa) already installed
<4>[ 2.188522]
<6>[ 2.190659] .... node #0, CPUs: #32
<4>[ 2.206837] masked ExtINT on CPU#32
<7>[ 2.211064] CPU32: Thermal LVT vector (0xfa) already installed
<4>[ 2.220115] #33
<4>[ 2.233488] masked ExtINT on CPU#33
<7>[ 2.237710] CPU33: Thermal LVT vector (0xfa) already installed
<4>[ 2.246677] #34
<4>[ 2.260086] masked ExtINT on CPU#34
<7>[ 2.264302] CPU34: Thermal LVT vector (0xfa) already installed
<4>[ 2.273261] #35
<4>[ 2.287029] masked ExtINT on CPU#35
<7>[ 2.291259] CPU35: Thermal LVT vector (0xfa) already installed
<4>[ 2.300190] #36
<4>[ 2.313584] masked ExtINT on CPU#36
<7>[ 2.317785] CPU36: Thermal LVT vector (0xfa) already installed
<4>[ 2.326739] #37
<4>[ 2.340110] masked ExtINT on CPU#37
<7>[ 2.344324] CPU37: Thermal LVT vector (0xfa) already installed
<4>[ 2.353275] #38
<4>[ 2.366657] masked ExtINT on CPU#38
<7>[ 2.370871] CPU38: Thermal LVT vector (0xfa) already installed
<4>[ 2.379849] #39
<4>[ 2.393578] masked ExtINT on CPU#39
<7>[ 2.397787] CPU39: Thermal LVT vector (0xfa) already installed
<4>[ 2.406797]
<6>[ 2.408935] .... node #1, CPUs: #40
<4>[ 2.424235] masked ExtINT on CPU#40
<7>[ 2.428465] CPU40: Thermal LVT vector (0xfa) already installed
<4>[ 2.437326] #41
<4>[ 2.450422] masked ExtINT on CPU#41
<7>[ 2.454650] CPU41: Thermal LVT vector (0xfa) already installed
<4>[ 2.463568] #42
<4>[ 2.476674] masked ExtINT on CPU#42
<7>[ 2.480903] CPU42: Thermal LVT vector (0xfa) already installed
<4>[ 2.489807] #43
<4>[ 2.503276] masked ExtINT on CPU#43
<7>[ 2.507520] CPU43: Thermal LVT vector (0xfa) already installed
<4>[ 2.516374] #44
<4>[ 2.529491] masked ExtINT on CPU#44
<7>[ 2.533726] CPU44: Thermal LVT vector (0xfa) already installed
<4>[ 2.542623] #45
<4>[ 2.555705] masked ExtINT on CPU#45
<7>[ 2.559913] CPU45: Thermal LVT vector (0xfa) already installed
<4>[ 2.568840] #46
<4>[ 2.581940] masked ExtINT on CPU#46
<7>[ 2.586147] CPU46: Thermal LVT vector (0xfa) already installed
<4>[ 2.594996] #47
<4>[ 2.608442] masked ExtINT on CPU#47
<7>[ 2.612641] CPU47: Thermal LVT vector (0xfa) already installed
<4>[ 2.621541]
<6>[ 2.623676] .... node #2, CPUs: #48
<4>[ 2.639256] masked ExtINT on CPU#48
<7>[ 2.643501] CPU48: Thermal LVT vector (0xfa) already installed
<4>[ 2.652455] #49
<4>[ 2.665818] masked ExtINT on CPU#49
<7>[ 2.670058] CPU49: Thermal LVT vector (0xfa) already installed
<4>[ 2.679015] #50
<4>[ 2.692397] masked ExtINT on CPU#50
<7>[ 2.696637] CPU50: Thermal LVT vector (0xfa) already installed
<4>[ 2.705560] #51
<4>[ 2.719317] masked ExtINT on CPU#51
<7>[ 2.723530] CPU51: Thermal LVT vector (0xfa) already installed
<4>[ 2.732449] #52
<4>[ 2.745842] masked ExtINT on CPU#52
<7>[ 2.750083] CPU52: Thermal LVT vector (0xfa) already installed
<4>[ 2.759009] #53
<4>[ 2.772369] masked ExtINT on CPU#53
<7>[ 2.776604] CPU53: Thermal LVT vector (0xfa) already installed
<4>[ 2.785529] #54
<4>[ 2.798898] masked ExtINT on CPU#54
<7>[ 2.803140] CPU54: Thermal LVT vector (0xfa) already installed
<4>[ 2.812087] #55
<4>[ 2.825800] masked ExtINT on CPU#55
<7>[ 2.830048] CPU55: Thermal LVT vector (0xfa) already installed
<4>[ 2.839026]
<6>[ 2.841171] .... node #3, CPUs: #56
<4>[ 2.856739] masked ExtINT on CPU#56
<7>[ 2.860946] CPU56: Thermal LVT vector (0xfa) already installed
<4>[ 2.869856] #57
<4>[ 2.883230] masked ExtINT on CPU#57
<7>[ 2.887448] CPU57: Thermal LVT vector (0xfa) already installed
<4>[ 2.896391] #58
<4>[ 2.909774] masked ExtINT on CPU#58
<7>[ 2.913978] CPU58: Thermal LVT vector (0xfa) already installed
<4>[ 2.922826] #59
<4>[ 2.936577] masked ExtINT on CPU#59
<7>[ 2.940783] CPU59: Thermal LVT vector (0xfa) already installed
<4>[ 2.949703] #60
<4>[ 2.963091] masked ExtINT on CPU#60
<7>[ 2.967324] CPU60: Thermal LVT vector (0xfa) already installed
<4>[ 2.976245] #61
<4>[ 2.989608] masked ExtINT on CPU#61
<7>[ 2.993832] CPU61: Thermal LVT vector (0xfa) already installed
<4>[ 3.002768] #62
<4>[ 3.016133] masked ExtINT on CPU#62
<7>[ 3.020343] CPU62: Thermal LVT vector (0xfa) already installed
<4>[ 3.029210] #63
<4>[ 3.042924] masked ExtINT on CPU#63
<7>[ 3.047121] CPU63: Thermal LVT vector (0xfa) already installed
<6>[ 3.055880] x86: Booted up 4 nodes, 64 CPUs
<6>[ 3.061034] smpboot: Total of 64 processors activated (345116.94 BogoMIPS)
<6>[ 3.343943] devtmpfs: initialized
<6>[ 3.373664] PM: Registering ACPI NVS region [mem 0xbdd2f000-0xbde26fff] (1015808 bytes)
<6>[ 3.383580] PM: Registering ACPI NVS region [mem 0xbdea1000-0xbdf2efff] (581632 bytes)
<6>[ 3.396673] xor: automatically using best checksumming function:
<6>[ 3.443956] avx : 8934.000 MB/sec
<6>[ 3.449117] atomic64 test passed for x86-64 platform with CX8 and with SSE
<6>[ 3.457568] NET: Registered protocol family 16
<6>[ 3.464626] cpuidle: using governor ladder
<6>[ 3.469683] cpuidle: using governor menu
<6>[ 3.475588] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
<6>[ 3.484904] ACPI: bus type PCI registered
<6>[ 3.489859] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
<6>[ 3.497738] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
<6>[ 3.509015] PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
<6>[ 3.537394] PCI: Using configuration type 1 for base access
<6>[ 3.577795] bio: create slab <bio-0> at 0
<4>[ 3.650944] raid6: sse2x1 3093 MB/s
<4>[ 3.723799] raid6: sse2x2 3943 MB/s
<4>[ 3.796486] raid6: sse2x4 4553 MB/s
<4>[ 3.801146] raid6: using algorithm sse2x4 (4553 MB/s)
<4>[ 3.807266] raid6: using ssse3x2 recovery algorithm
<6>[ 3.813647] ACPI: Added _OSI(Module Device)
<6>[ 3.818804] ACPI: Added _OSI(Processor Device)
<6>[ 3.824234] ACPI: Added _OSI(3.0 _SCP Extensions)
<6>[ 3.829956] ACPI: Added _OSI(Processor Aggregator Device)
<4>[ 3.864172] ACPI: Executed 1 blocks of module-level executable AML code
<5>[ 4.092485] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
<6>[ 4.132378] ACPI: Interpreter enabled
<4>[ 4.136969] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131218/hwxface-580)
<4>[ 4.148318] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20131218/hwxface-580)
<4>[ 4.159659] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20131218/hwxface-580)
<6>[ 4.171006] ACPI: (supports S0 S1 S5)
<6>[ 4.175569] ACPI: Using IOAPIC for interrupt routing
<6>[ 4.181869] HEST: Table parsing has been initialized.
<6>[ 4.187985] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
<6>[ 4.202729] ACPI: No dock devices found.
<6>[ 4.287021] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
<6>[ 4.294425] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
<6>[ 4.305014] acpi PNP0A08:00: _OSC: platform does not support [AER]
<6>[ 4.312855] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
<6>[ 4.322828] acpi PNP0A08:00: ignoring host bridge window [mem 0x000d0000-0x000d3fff] (conflicts with Adapter ROM [mem 0x000c8000-0x000d15ff])
<6>[ 4.338444] PCI host bridge to bus 0000:00
<6>[ 4.343491] pci_bus 0000:00: root bus resource [bus 00-3e]
<6>[ 4.350095] pci_bus 0000:00: root bus resource [io 0x0000-0x5fff]
<6>[ 4.357471] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
<6>[ 4.365624] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
<6>[ 4.373778] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
<6>[ 4.381936] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
<6>[ 4.390092] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
<6>[ 4.398248] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
<6>[ 4.406403] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
<6>[ 4.414559] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
<6>[ 4.422716] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
<6>[ 4.430869] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
<6>[ 4.439027] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
<6>[ 4.447185] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
<6>[ 4.455343] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
<6>[ 4.463500] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xdfffffff]
<6>[ 4.471661] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3c007fffffff]
<7>[ 4.480987] pci 0000:00:00.0: [8086:3c00] type 00 class 0x060000
<7>[ 4.488253] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
<7>[ 4.495779] pci 0000:00:01.0: [8086:3c02] type 01 class 0x060400
<7>[ 4.503058] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
<6>[ 4.510439] pci 0000:00:01.0: System wakeup disabled by ACPI
<7>[ 4.517404] pci 0000:00:02.0: [8086:3c04] type 01 class 0x060400
<7>[ 4.524684] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
<6>[ 4.532072] pci 0000:00:02.0: System wakeup disabled by ACPI
<7>[ 4.539061] pci 0000:00:03.0: [8086:3c08] type 01 class 0x060400
<7>[ 4.546353] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
<6>[ 4.553744] pci 0000:00:03.0: System wakeup disabled by ACPI
<7>[ 4.560698] pci 0000:00:03.2: [8086:3c0a] type 01 class 0x060400
<7>[ 4.567992] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
<6>[ 4.575381] pci 0000:00:03.2: System wakeup disabled by ACPI
<7>[ 4.582341] pci 0000:00:04.0: [8086:3c20] type 00 class 0x088000
<7>[ 4.589539] pci 0000:00:04.0: reg 0x10: [mem 0xdff90000-0xdff93fff 64bit]
<7>[ 4.597915] pci 0000:00:04.1: [8086:3c21] type 00 class 0x088000
<7>[ 4.605135] pci 0000:00:04.1: reg 0x10: [mem 0xdff80000-0xdff83fff 64bit]
<7>[ 4.613518] pci 0000:00:04.2: [8086:3c22] type 00 class 0x088000
<7>[ 4.620713] pci 0000:00:04.2: reg 0x10: [mem 0xdff70000-0xdff73fff 64bit]
<7>[ 4.629097] pci 0000:00:04.3: [8086:3c23] type 00 class 0x088000
<7>[ 4.636292] pci 0000:00:04.3: reg 0x10: [mem 0xdff60000-0xdff63fff 64bit]
<7>[ 4.644635] pci 0000:00:04.4: [8086:3c24] type 00 class 0x088000
<7>[ 4.651847] pci 0000:00:04.4: reg 0x10: [mem 0xdff50000-0xdff53fff 64bit]
<7>[ 4.660230] pci 0000:00:04.5: [8086:3c25] type 00 class 0x088000
<7>[ 4.667443] pci 0000:00:04.5: reg 0x10: [mem 0xdff40000-0xdff43fff 64bit]
<7>[ 4.675834] pci 0000:00:04.6: [8086:3c26] type 00 class 0x088000
<7>[ 4.683055] pci 0000:00:04.6: reg 0x10: [mem 0xdff30000-0xdff33fff 64bit]
<7>[ 4.691426] pci 0000:00:04.7: [8086:3c27] type 00 class 0x088000
<7>[ 4.698636] pci 0000:00:04.7: reg 0x10: [mem 0xdff20000-0xdff23fff 64bit]
<7>[ 4.707025] pci 0000:00:05.0: [8086:3c28] type 00 class 0x088000
<7>[ 4.714503] pci 0000:00:05.2: [8086:3c2a] type 00 class 0x088000
<7>[ 4.721969] pci 0000:00:05.4: [8086:3c2c] type 00 class 0x080020
<7>[ 4.729181] pci 0000:00:05.4: reg 0x10: [mem 0xd0f60000-0xd0f60fff]
<7>[ 4.736949] pci 0000:00:05.6: [8086:3c40] type 00 class 0x110100
<7>[ 4.744422] pci 0000:00:06.0: [8086:3c60] type 00 class 0x088000
<7>[ 4.751931] pci 0000:00:06.1: [8086:3c61] type 00 class 0x060000
<7>[ 4.759376] pci 0000:00:06.2: [8086:3c62] type 00 class 0x060000
<7>[ 4.766851] pci 0000:00:06.3: [8086:3c63] type 00 class 0x060000
<7>[ 4.774329] pci 0000:00:06.4: [8086:3c64] type 00 class 0x060000
<7>[ 4.781798] pci 0000:00:06.5: [8086:3c65] type 00 class 0x060000
<7>[ 4.789278] pci 0000:00:06.6: [8086:3c66] type 00 class 0x060000
<7>[ 4.796734] pci 0000:00:06.7: [8086:3c67] type 00 class 0x060000
<7>[ 4.804200] pci 0000:00:07.0: [8086:3c68] type 00 class 0x060000
<7>[ 4.811693] pci 0000:00:07.1: [8086:3c69] type 00 class 0x060000
<7>[ 4.819139] pci 0000:00:07.2: [8086:3c6a] type 00 class 0x060000
<7>[ 4.826608] pci 0000:00:07.3: [8086:3c6b] type 00 class 0x060000
<7>[ 4.834100] pci 0000:00:07.4: [8086:3c6c] type 00 class 0x060000
<7>[ 4.841625] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000
<7>[ 4.848820] pci 0000:00:16.0: reg 0x10: [mem 0xd0f50000-0xd0f5000f 64bit]
<7>[ 4.856951] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
<7>[ 4.864485] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000
<7>[ 4.871701] pci 0000:00:16.1: reg 0x10: [mem 0xd0f40000-0xd0f4000f 64bit]
<7>[ 4.879844] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
<7>[ 4.887430] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320
<7>[ 4.894646] pci 0000:00:1a.0: reg 0x10: [mem 0xd0f20000-0xd0f203ff]
<7>[ 4.902242] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
<6>[ 4.909669] pci 0000:00:1a.0: System wakeup disabled by ACPI
<7>[ 4.916637] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400
<7>[ 4.923967] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
<6>[ 4.931357] pci 0000:00:1c.0: System wakeup disabled by ACPI
<7>[ 4.938321] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400
<7>[ 4.945616] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
<6>[ 4.952993] pci 0000:00:1c.7: System wakeup disabled by ACPI
<7>[ 4.959935] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
<7>[ 4.967137] pci 0000:00:1d.0: reg 0x10: [mem 0xd0f10000-0xd0f103ff]
<7>[ 4.974738] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
<6>[ 4.982151] pci 0000:00:1d.0: System wakeup disabled by ACPI
<7>[ 4.989076] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
<6>[ 4.996432] pci 0000:00:1e.0: System wakeup disabled by ACPI
<7>[ 5.003369] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
<7>[ 5.010900] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601
<7>[ 5.018119] pci 0000:00:1f.2: reg 0x10: [io 0x3070-0x3077]
<7>[ 5.024822] pci 0000:00:1f.2: reg 0x14: [io 0x3060-0x3063]
<7>[ 5.031521] pci 0000:00:1f.2: reg 0x18: [io 0x3050-0x3057]
<7>[ 5.038233] pci 0000:00:1f.2: reg 0x1c: [io 0x3040-0x3043]
<7>[ 5.044934] pci 0000:00:1f.2: reg 0x20: [io 0x3020-0x303f]
<7>[ 5.051633] pci 0000:00:1f.2: reg 0x24: [mem 0xd0f00000-0xd0f007ff]
<7>[ 5.059173] pci 0000:00:1f.2: PME# supported from D3hot
<7>[ 5.065744] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500
<7>[ 5.072944] pci 0000:00:1f.3: reg 0x10: [mem 0xdff10000-0xdff100ff 64bit]
<7>[ 5.081022] pci 0000:00:1f.3: reg 0x20: [io 0x3000-0x301f]
<7>[ 5.088124] pci 0000:01:00.0: [8086:1d74] type 01 class 0x060400
<7>[ 5.095335] pci 0000:01:00.0: reg 0x10: [mem 0xd0e00000-0xd0e03fff]
<7>[ 5.102900] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
<6>[ 5.118247] pci 0000:00:01.0: PCI bridge to [bus 01-03]
<7>[ 5.124572] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
<7>[ 5.131851] pci 0000:00:01.0: bridge window [mem 0xd0d00000-0xd0efffff]
<7>[ 5.139908] pci 0000:00:01.0: bridge window [mem 0xdc800000-0xdd1fffff 64bit pref]
<7>[ 5.158969] pci 0000:02:08.0: [8086:1d3f] type 01 class 0x060400
<7>[ 5.166285] pci 0000:02:08.0: PME# supported from D0 D3hot D3cold
<6>[ 5.173776] pci 0000:01:00.0: PCI bridge to [bus 02-03]
<7>[ 5.180100] pci 0000:01:00.0: bridge window [io 0x2000-0x2fff]
<7>[ 5.187381] pci 0000:01:00.0: bridge window [mem 0xd0d00000-0xd0dfffff]
<7>[ 5.195445] pci 0000:01:00.0: bridge window [mem 0xdc800000-0xdd1fffff 64bit pref]
<7>[ 5.205151] pci 0000:03:00.0: [8086:1d60] type 00 class 0x010700
<7>[ 5.212354] pci 0000:03:00.0: reg 0x10: [mem 0xdd000000-0xdd007fff 64bit pref]
<7>[ 5.221289] pci 0000:03:00.0: reg 0x18: [mem 0xdc800000-0xdcffffff 64bit pref]
<7>[ 5.230228] pci 0000:03:00.0: reg 0x20: [io 0x2100-0x21ff]
<7>[ 5.236927] pci 0000:03:00.0: reg 0x24: [io 0x2000-0x20ff]
<7>[ 5.243742] pci 0000:03:00.0: reg 0x164: [mem 0xdd010000-0xdd017fff 64bit pref]
<7>[ 5.252973] pci 0000:03:00.3: [8086:1d70] type 00 class 0x0c0500
<7>[ 5.260185] pci 0000:03:00.3: reg 0x10: [mem 0xd0d20000-0xd0d20fff]
<7>[ 5.267705] pci 0000:03:00.3: reg 0x20: [io 0x2240-0x225f]
<7>[ 5.274483] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
<7>[ 5.281952] pci 0000:03:00.4: [8086:1d71] type 00 class 0x0c0500
<7>[ 5.289152] pci 0000:03:00.4: reg 0x10: [mem 0xd0d10000-0xd0d10fff]
<7>[ 5.296659] pci 0000:03:00.4: reg 0x20: [io 0x2220-0x223f]
<7>[ 5.303449] pci 0000:03:00.4: PME# supported from D0 D3hot D3cold
<7>[ 5.310909] pci 0000:03:00.5: [8086:1d72] type 00 class 0x0c0500
<7>[ 5.318120] pci 0000:03:00.5: reg 0x10: [mem 0xd0d00000-0xd0d00fff]
<7>[ 5.325633] pci 0000:03:00.5: reg 0x20: [io 0x2200-0x221f]
<7>[ 5.332411] pci 0000:03:00.5: PME# supported from D0 D3hot D3cold
<6>[ 5.339929] pci 0000:02:08.0: PCI bridge to [bus 03]
<7>[ 5.345959] pci 0000:02:08.0: bridge window [io 0x2000-0x2fff]
<7>[ 5.353234] pci 0000:02:08.0: bridge window [mem 0xd0d00000-0xd0dfffff]
<7>[ 5.361296] pci 0000:02:08.0: bridge window [mem 0xdc800000-0xdd1fffff 64bit pref]
<6>[ 5.371138] pci 0000:00:02.0: PCI bridge to [bus 04]
<6>[ 5.377434] pci 0000:00:03.0: PCI bridge to [bus 05]
<7>[ 5.383818] pci 0000:06:00.0: [8086:1528] type 00 class 0x020000
<7>[ 5.391020] pci 0000:06:00.0: reg 0x10: [mem 0xdd600000-0xdd7fffff 64bit pref]
<7>[ 5.399972] pci 0000:06:00.0: reg 0x18: [io 0x1020-0x103f]
<7>[ 5.406689] pci 0000:06:00.0: reg 0x20: [mem 0xdd810000-0xdd813fff 64bit pref]
<7>[ 5.415688] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
<7>[ 5.423002] pci 0000:06:00.0: reg 0x184: [mem 0xd0c00000-0xd0c03fff 64bit]
<7>[ 5.431170] pci 0000:06:00.0: reg 0x190: [mem 0xd0b00000-0xd0b03fff 64bit]
<7>[ 5.439531] pci 0000:06:00.1: [8086:1528] type 00 class 0x020000
<7>[ 5.446735] pci 0000:06:00.1: reg 0x10: [mem 0xdd400000-0xdd5fffff 64bit pref]
<7>[ 5.455676] pci 0000:06:00.1: reg 0x18: [io 0x1000-0x101f]
<7>[ 5.462401] pci 0000:06:00.1: reg 0x20: [mem 0xdd800000-0xdd803fff 64bit pref]
<7>[ 5.471386] pci 0000:06:00.1: PME# supported from D0 D3hot D3cold
<7>[ 5.478697] pci 0000:06:00.1: reg 0x184: [mem 0xd0a00000-0xd0a03fff 64bit]
<7>[ 5.486865] pci 0000:06:00.1: reg 0x190: [mem 0xd0900000-0xd0903fff 64bit]
<6>[ 5.503077] pci 0000:00:03.2: PCI bridge to [bus 06-07]
<7>[ 5.509379] pci 0000:00:03.2: bridge window [io 0x1000-0x1fff]
<7>[ 5.516660] pci 0000:00:03.2: bridge window [mem 0xd0900000-0xd0cfffff]
<7>[ 5.524720] pci 0000:00:03.2: bridge window [mem 0xdd400000-0xdd8fffff 64bit pref]
<6>[ 5.534438] pci 0000:00:1c.0: PCI bridge to [bus 08]
<7>[ 5.540665] pci 0000:09:00.0: [102b:0522] type 00 class 0x030000
<7>[ 5.547884] pci 0000:09:00.0: reg 0x10: [mem 0xde000000-0xdeffffff pref]
<7>[ 5.555856] pci 0000:09:00.0: reg 0x14: [mem 0xd0810000-0xd0813fff]
<7>[ 5.563354] pci 0000:09:00.0: reg 0x18: [mem 0xd0000000-0xd07fffff]
<7>[ 5.570901] pci 0000:09:00.0: reg 0x30: [mem 0xd0800000-0xd080ffff pref]
<6>[ 5.579014] pci 0000:09:00.0: System wakeup disabled by ACPI
<6>[ 5.593821] pci 0000:00:1c.7: PCI bridge to [bus 09]
<7>[ 5.599853] pci 0000:00:1c.7: bridge window [mem 0xd0000000-0xd08fffff]
<7>[ 5.607927] pci 0000:00:1c.7: bridge window [mem 0xde000000-0xdeffffff 64bit pref]
<6>[ 5.617604] pci 0000:00:1e.0: PCI bridge to [bus 0a] (subtractive decode)
<7>[ 5.625672] pci 0000:00:1e.0: bridge window [io 0x0000-0x5fff] (subtractive decode)
<7>[ 5.635384] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
<7>[ 5.645877] pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000c3fff] (subtractive decode)
<7>[ 5.656376] pci 0000:00:1e.0: bridge window [mem 0x000c4000-0x000c7fff] (subtractive decode)
<7>[ 5.666869] pci 0000:00:1e.0: bridge window [mem 0x000c8000-0x000cbfff] (subtractive decode)
<7>[ 5.677350] pci 0000:00:1e.0: bridge window [mem 0x000cc000-0x000cffff] (subtractive decode)
<7>[ 5.687843] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
<7>[ 5.698345] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
<7>[ 5.708837] pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
<7>[ 5.719324] pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
<7>[ 5.729835] pci 0000:00:1e.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
<7>[ 5.740332] pci 0000:00:1e.0: bridge window [mem 0x000e8000-0x000ebfff] (subtractive decode)
<7>[ 5.750827] pci 0000:00:1e.0: bridge window [mem 0x000ec000-0x000effff] (subtractive decode)
<7>[ 5.761319] pci 0000:00:1e.0: bridge window [mem 0x000f0000-0x000fffff] (subtractive decode)
<7>[ 5.771815] pci 0000:00:1e.0: bridge window [mem 0xd0000000-0xdfffffff] (subtractive decode)
<7>[ 5.782321] pci 0000:00:1e.0: bridge window [mem 0x3c0000000000-0x3c007fffffff] (subtractive decode)
<7>[ 5.793654] pci_bus 0000:00: on NUMA node 0 (pxm 0)
<6>[ 5.799575] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
<6>[ 5.809390] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15), disabled.
<6>[ 5.820172] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 *11 12 14 15), disabled.
<6>[ 5.830929] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *10 11 12 14 15), disabled.
<6>[ 5.841686] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 10 11 12 14 15), disabled.
<6>[ 5.852451] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 10 11 12 14 15), disabled.
<6>[ 5.863196] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15), disabled.
<6>[ 5.873961] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *10 11 12 14 15), disabled.
<6>[ 5.884695] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *10 11 12 14 15), disabled.
<6>[ 5.895665] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 40-7e])
<6>[ 5.903046] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
<6>[ 5.913375] acpi PNP0A08:01: _OSC: platform does not support [AER]
<6>[ 5.921046] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
<6>[ 5.931237] PCI host bridge to bus 0000:40
<6>[ 5.936314] pci_bus 0000:40: root bus resource [bus 40-7e]
<6>[ 5.942912] pci_bus 0000:40: root bus resource [io 0x03b0-0x03df]
<6>[ 5.950288] pci_bus 0000:40: root bus resource [io 0x6000-0x7fff]
<6>[ 5.957660] pci_bus 0000:40: root bus resource [mem 0x000a0000-0x000bffff]
<6>[ 5.965807] pci_bus 0000:40: root bus resource [mem 0xe0000000-0xebffffff]
<6>[ 5.973952] pci_bus 0000:40: root bus resource [mem 0x3c0080000000-0x3c00ffffffff]
<7>[ 5.983298] pci 0000:40:01.0: [8086:3c02] type 01 class 0x060400
<7>[ 5.990588] pci 0000:40:01.0: PME# supported from D0 D3hot D3cold
<6>[ 5.997935] pci 0000:40:01.0: System wakeup disabled by ACPI
<7>[ 6.004908] pci 0000:40:02.0: [8086:3c04] type 01 class 0x060400
<7>[ 6.012201] pci 0000:40:02.0: PME# supported from D0 D3hot D3cold
<6>[ 6.019549] pci 0000:40:02.0: System wakeup disabled by ACPI
<7>[ 6.026495] pci 0000:40:04.0: [8086:3c20] type 00 class 0x088000
<7>[ 6.033694] pci 0000:40:04.0: reg 0x10: [mem 0xebf70000-0xebf73fff 64bit]
<7>[ 6.042000] pci 0000:40:04.1: [8086:3c21] type 00 class 0x088000
<7>[ 6.049216] pci 0000:40:04.1: reg 0x10: [mem 0xebf60000-0xebf63fff 64bit]
<7>[ 6.057555] pci 0000:40:04.2: [8086:3c22] type 00 class 0x088000
<7>[ 6.064757] pci 0000:40:04.2: reg 0x10: [mem 0xebf50000-0xebf53fff 64bit]
<7>[ 6.073097] pci 0000:40:04.3: [8086:3c23] type 00 class 0x088000
<7>[ 6.080317] pci 0000:40:04.3: reg 0x10: [mem 0xebf40000-0xebf43fff 64bit]
<7>[ 6.088668] pci 0000:40:04.4: [8086:3c24] type 00 class 0x088000
<7>[ 6.095882] pci 0000:40:04.4: reg 0x10: [mem 0xebf30000-0xebf33fff 64bit]
<7>[ 6.104206] pci 0000:40:04.5: [8086:3c25] type 00 class 0x088000
<7>[ 6.111412] pci 0000:40:04.5: reg 0x10: [mem 0xebf20000-0xebf23fff 64bit]
<7>[ 6.119733] pci 0000:40:04.6: [8086:3c26] type 00 class 0x088000
<7>[ 6.126948] pci 0000:40:04.6: reg 0x10: [mem 0xebf10000-0xebf13fff 64bit]
<7>[ 6.135274] pci 0000:40:04.7: [8086:3c27] type 00 class 0x088000
<7>[ 6.142496] pci 0000:40:04.7: reg 0x10: [mem 0xebf00000-0xebf03fff 64bit]
<7>[ 6.150824] pci 0000:40:05.0: [8086:3c28] type 00 class 0x088000
<7>[ 6.158239] pci 0000:40:05.2: [8086:3c2a] type 00 class 0x088000
<7>[ 6.165676] pci 0000:40:05.4: [8086:3c2c] type 00 class 0x080020
<7>[ 6.172890] pci 0000:40:05.4: reg 0x10: [mem 0xe0000000-0xe0000fff]
<7>[ 6.180619] pci 0000:40:05.6: [8086:3c40] type 00 class 0x110100
<7>[ 6.188043] pci 0000:40:06.0: [8086:3c60] type 00 class 0x088000
<7>[ 6.195513] pci 0000:40:06.1: [8086:3c61] type 00 class 0x060000
<7>[ 6.202974] pci 0000:40:06.2: [8086:3c62] type 00 class 0x060000
<7>[ 6.210397] pci 0000:40:06.3: [8086:3c63] type 00 class 0x060000
<7>[ 6.217804] pci 0000:40:06.4: [8086:3c64] type 00 class 0x060000
<7>[ 6.225266] pci 0000:40:06.5: [8086:3c65] type 00 class 0x060000
<7>[ 6.232683] pci 0000:40:06.6: [8086:3c66] type 00 class 0x060000
<7>[ 6.240122] pci 0000:40:06.7: [8086:3c67] type 00 class 0x060000
<7>[ 6.247575] pci 0000:40:07.0: [8086:3c68] type 00 class 0x060000
<7>[ 6.254989] pci 0000:40:07.1: [8086:3c69] type 00 class 0x060000
<7>[ 6.262401] pci 0000:40:07.2: [8086:3c6a] type 00 class 0x060000
<7>[ 6.269857] pci 0000:40:07.3: [8086:3c6b] type 00 class 0x060000
<7>[ 6.277308] pci 0000:40:07.4: [8086:3c6c] type 00 class 0x060000
<6>[ 6.284925] pci 0000:40:01.0: PCI bridge to [bus 41]
<6>[ 6.291133] pci 0000:40:02.0: PCI bridge to [bus 42]
<7>[ 6.297194] pci_bus 0000:40: on NUMA node 1 (pxm 1)
<6>[ 6.303114] acpi PNP0A08:01: Disabling ASPM (FADT indicates it is unsupported)
<6>[ 6.321768] ACPI: PCI Root Bridge [PCI2] (domain 0000 [bus 80-be])
<6>[ 6.329156] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
<6>[ 6.339471] acpi PNP0A08:02: _OSC: platform does not support [AER]
<6>[ 6.347145] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
<6>[ 6.357381] PCI host bridge to bus 0000:80
<6>[ 6.362433] pci_bus 0000:80: root bus resource [bus 80-be]
<6>[ 6.369036] pci_bus 0000:80: root bus resource [io 0x8000-0xbfff]
<6>[ 6.376411] pci_bus 0000:80: root bus resource [mem 0xec000000-0xf7ffffff]
<6>[ 6.384566] pci_bus 0000:80: root bus resource [mem 0x3c0100000000-0x3c017fffffff]
<7>[ 6.393908] pci 0000:80:02.0: [8086:3c04] type 01 class 0x060400
<7>[ 6.401214] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
<6>[ 6.408576] pci 0000:80:02.0: System wakeup disabled by ACPI
<7>[ 6.415576] pci 0000:80:03.0: [8086:3c08] type 01 class 0x060400
<7>[ 6.422882] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
<6>[ 6.430221] pci 0000:80:03.0: System wakeup disabled by ACPI
<7>[ 6.437206] pci 0000:80:04.0: [8086:3c20] type 00 class 0x088000
<7>[ 6.444415] pci 0000:80:04.0: reg 0x10: [mem 0xf7f70000-0xf7f73fff 64bit]
<7>[ 6.452778] pci 0000:80:04.1: [8086:3c21] type 00 class 0x088000
<7>[ 6.459992] pci 0000:80:04.1: reg 0x10: [mem 0xf7f60000-0xf7f63fff 64bit]
<7>[ 6.468338] pci 0000:80:04.2: [8086:3c22] type 00 class 0x088000
<7>[ 6.475550] pci 0000:80:04.2: reg 0x10: [mem 0xf7f50000-0xf7f53fff 64bit]
<7>[ 6.483901] pci 0000:80:04.3: [8086:3c23] type 00 class 0x088000
<7>[ 6.491110] pci 0000:80:04.3: reg 0x10: [mem 0xf7f40000-0xf7f43fff 64bit]
<7>[ 6.499467] pci 0000:80:04.4: [8086:3c24] type 00 class 0x088000
<7>[ 6.506662] pci 0000:80:04.4: reg 0x10: [mem 0xf7f30000-0xf7f33fff 64bit]
<7>[ 6.515006] pci 0000:80:04.5: [8086:3c25] type 00 class 0x088000
<7>[ 6.522207] pci 0000:80:04.5: reg 0x10: [mem 0xf7f20000-0xf7f23fff 64bit]
<7>[ 6.530521] pci 0000:80:04.6: [8086:3c26] type 00 class 0x088000
<7>[ 6.537736] pci 0000:80:04.6: reg 0x10: [mem 0xf7f10000-0xf7f13fff 64bit]
<7>[ 6.546096] pci 0000:80:04.7: [8086:3c27] type 00 class 0x088000
<7>[ 6.553309] pci 0000:80:04.7: reg 0x10: [mem 0xf7f00000-0xf7f03fff 64bit]
<7>[ 6.561648] pci 0000:80:05.0: [8086:3c28] type 00 class 0x088000
<7>[ 6.569122] pci 0000:80:05.2: [8086:3c2a] type 00 class 0x088000
<7>[ 6.576556] pci 0000:80:05.4: [8086:3c2c] type 00 class 0x080020
<7>[ 6.583765] pci 0000:80:05.4: reg 0x10: [mem 0xec000000-0xec000fff]
<7>[ 6.591508] pci 0000:80:05.6: [8086:3c40] type 00 class 0x110100
<7>[ 6.598953] pci 0000:80:06.0: [8086:3c60] type 00 class 0x088000
<7>[ 6.606365] pci 0000:80:06.1: [8086:3c61] type 00 class 0x060000
<7>[ 6.613831] pci 0000:80:06.2: [8086:3c62] type 00 class 0x060000
<7>[ 6.621307] pci 0000:80:06.3: [8086:3c63] type 00 class 0x060000
<7>[ 6.628731] pci 0000:80:06.4: [8086:3c64] type 00 class 0x060000
<7>[ 6.636191] pci 0000:80:06.5: [8086:3c65] type 00 class 0x060000
<7>[ 6.643647] pci 0000:80:06.6: [8086:3c66] type 00 class 0x060000
<7>[ 6.651075] pci 0000:80:06.7: [8086:3c67] type 00 class 0x060000
<7>[ 6.658485] pci 0000:80:07.0: [8086:3c68] type 00 class 0x060000
<7>[ 6.665944] pci 0000:80:07.1: [8086:3c69] type 00 class 0x060000
<7>[ 6.673377] pci 0000:80:07.2: [8086:3c6a] type 00 class 0x060000
<7>[ 6.680824] pci 0000:80:07.3: [8086:3c6b] type 00 class 0x060000
<7>[ 6.688240] pci 0000:80:07.4: [8086:3c6c] type 00 class 0x060000
<6>[ 6.695996] acpiphp: Slot [2] registered
<6>[ 6.700962] pci 0000:80:02.0: PCI bridge to [bus 81]
<6>[ 6.707170] pci 0000:80:03.0: PCI bridge to [bus 82]
<7>[ 6.713215] pci_bus 0000:80: on NUMA node 2 (pxm 2)
<6>[ 6.719125] acpi PNP0A08:02: Disabling ASPM (FADT indicates it is unsupported)
<6>[ 6.728483] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus c0-fe])
<6>[ 6.735865] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
<6>[ 6.746190] acpi PNP0A08:03: _OSC: platform does not support [AER]
<6>[ 6.753862] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
<6>[ 6.764087] PCI host bridge to bus 0000:c0
<6>[ 6.769153] pci_bus 0000:c0: root bus resource [bus c0-fe]
<6>[ 6.775754] pci_bus 0000:c0: root bus resource [io 0xc000-0xffff]
<6>[ 6.783126] pci_bus 0000:c0: root bus resource [mem 0xf8000000-0xfbffffff]
<6>[ 6.791266] pci_bus 0000:c0: root bus resource [mem 0x3c0180000000-0x3c01ffffffff]
<7>[ 6.800616] pci 0000:c0:02.0: [8086:3c04] type 01 class 0x060400
<7>[ 6.807911] pci 0000:c0:02.0: PME# supported from D0 D3hot D3cold
<6>[ 6.815259] pci 0000:c0:02.0: System wakeup disabled by ACPI
<7>[ 6.822251] pci 0000:c0:03.0: [8086:3c08] type 01 class 0x060400
<7>[ 6.829562] pci 0000:c0:03.0: PME# supported from D0 D3hot D3cold
<6>[ 6.836901] pci 0000:c0:03.0: System wakeup disabled by ACPI
<7>[ 6.843872] pci 0000:c0:04.0: [8086:3c20] type 00 class 0x088000
<7>[ 6.851071] pci 0000:c0:04.0: reg 0x10: [mem 0xfbf70000-0xfbf73fff 64bit]
<7>[ 6.859421] pci 0000:c0:04.1: [8086:3c21] type 00 class 0x088000
<7>[ 6.866615] pci 0000:c0:04.1: reg 0x10: [mem 0xfbf60000-0xfbf63fff 64bit]
<7>[ 6.874950] pci 0000:c0:04.2: [8086:3c22] type 00 class 0x088000
<7>[ 6.882164] pci 0000:c0:04.2: reg 0x10: [mem 0xfbf50000-0xfbf53fff 64bit]
<7>[ 6.890511] pci 0000:c0:04.3: [8086:3c23] type 00 class 0x088000
<7>[ 6.897718] pci 0000:c0:04.3: reg 0x10: [mem 0xfbf40000-0xfbf43fff 64bit]
<7>[ 6.906065] pci 0000:c0:04.4: [8086:3c24] type 00 class 0x088000
<7>[ 6.913281] pci 0000:c0:04.4: reg 0x10: [mem 0xfbf30000-0xfbf33fff 64bit]
<7>[ 6.921643] pci 0000:c0:04.5: [8086:3c25] type 00 class 0x088000
<7>[ 6.928859] pci 0000:c0:04.5: reg 0x10: [mem 0xfbf20000-0xfbf23fff 64bit]
<7>[ 6.937215] pci 0000:c0:04.6: [8086:3c26] type 00 class 0x088000
<7>[ 6.944424] pci 0000:c0:04.6: reg 0x10: [mem 0xfbf10000-0xfbf13fff 64bit]
<7>[ 6.952767] pci 0000:c0:04.7: [8086:3c27] type 00 class 0x088000
<7>[ 6.959967] pci 0000:c0:04.7: reg 0x10: [mem 0xfbf00000-0xfbf03fff 64bit]
<7>[ 6.968299] pci 0000:c0:05.0: [8086:3c28] type 00 class 0x088000
<7>[ 6.975759] pci 0000:c0:05.2: [8086:3c2a] type 00 class 0x088000
<7>[ 6.983203] pci 0000:c0:05.4: [8086:3c2c] type 00 class 0x080020
<7>[ 6.990400] pci 0000:c0:05.4: reg 0x10: [mem 0xf8000000-0xf8000fff]
<7>[ 6.998142] pci 0000:c0:05.6: [8086:3c40] type 00 class 0x110100
<7>[ 7.005595] pci 0000:c0:06.0: [8086:3c60] type 00 class 0x088000
<7>[ 7.013017] pci 0000:c0:06.1: [8086:3c61] type 00 class 0x060000
<7>[ 7.020440] pci 0000:c0:06.2: [8086:3c62] type 00 class 0x060000
<7>[ 7.027871] pci 0000:c0:06.3: [8086:3c63] type 00 class 0x060000
<7>[ 7.035309] pci 0000:c0:06.4: [8086:3c64] type 00 class 0x060000
<7>[ 7.042720] pci 0000:c0:06.5: [8086:3c65] type 00 class 0x060000
<7>[ 7.050175] pci 0000:c0:06.6: [8086:3c66] type 00 class 0x060000
<7>[ 7.057628] pci 0000:c0:06.7: [8086:3c67] type 00 class 0x060000
<7>[ 7.065067] pci 0000:c0:07.0: [8086:3c68] type 00 class 0x060000
<7>[ 7.072495] pci 0000:c0:07.1: [8086:3c69] type 00 class 0x060000
<7>[ 7.079940] pci 0000:c0:07.2: [8086:3c6a] type 00 class 0x060000
<7>[ 7.087380] pci 0000:c0:07.3: [8086:3c6b] type 00 class 0x060000
<7>[ 7.094793] pci 0000:c0:07.4: [8086:3c6c] type 00 class 0x060000
<6>[ 7.102603] acpiphp: Slot [2-2] registered
<6>[ 7.107727] pci 0000:c0:02.0: PCI bridge to [bus c1]
<6>[ 7.114112] acpiphp: Slot [2-3] registered
<6>[ 7.119238] pci 0000:c0:03.0: PCI bridge to [bus c2]
<7>[ 7.125287] pci_bus 0000:c0: on NUMA node 3 (pxm 3)
<6>[ 7.131195] acpi PNP0A08:03: Disabling ASPM (FADT indicates it is unsupported)
<6>[ 7.161441] ACPI: PCI Root Bridge [UCR0] (domain 0000 [bus 3f])
<6>[ 7.168532] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
<6>[ 7.178585] acpi PNP0A03:00: _OSC: platform does not support [PCIeHotplug PME AER]
<6>[ 7.187953] acpi PNP0A03:00: _OSC: OS now controls [PCIeCapability]
<6>[ 7.195641] PCI host bridge to bus 0000:3f
<6>[ 7.200687] pci_bus 0000:3f: root bus resource [bus 3f]
<7>[ 7.207006] pci 0000:3f:08.0: [8086:3c80] type 00 class 0x088000
<7>[ 7.214388] pci 0000:3f:08.2: [8086:3c41] type 00 class 0x110100
<7>[ 7.221764] pci 0000:3f:08.3: [8086:3c83] type 00 class 0x088000
<7>[ 7.229155] pci 0000:3f:08.4: [8086:3c84] type 00 class 0x088000
<7>[ 7.236515] pci 0000:3f:08.5: [8086:3c85] type 00 class 0x088000
<7>[ 7.243891] pci 0000:3f:08.6: [8086:3c86] type 00 class 0x088000
<7>[ 7.251303] pci 0000:3f:08.7: [8086:3c87] type 00 class 0x088000
<7>[ 7.258762] pci 0000:3f:09.0: [8086:3c90] type 00 class 0x088000
<7>[ 7.266138] pci 0000:3f:09.2: [8086:3c42] type 00 class 0x110100
<7>[ 7.273533] pci 0000:3f:09.3: [8086:3c93] type 00 class 0x088000
<7>[ 7.280945] pci 0000:3f:09.4: [8086:3c94] type 00 class 0x088000
<7>[ 7.288349] pci 0000:3f:09.5: [8086:3c95] type 00 class 0x088000
<7>[ 7.295745] pci 0000:3f:09.6: [8086:3c96] type 00 class 0x088000
<7>[ 7.303088] pci 0000:3f:0a.0: [8086:3cc0] type 00 class 0x088000
<7>[ 7.310454] pci 0000:3f:0a.1: [8086:3cc1] type 00 class 0x088000
<7>[ 7.317806] pci 0000:3f:0a.2: [8086:3cc2] type 00 class 0x088000
<7>[ 7.325157] pci 0000:3f:0a.3: [8086:3cd0] type 00 class 0x088000
<7>[ 7.332519] pci 0000:3f:0a.4: [8086:3cc4] type 00 class 0x088000
<7>[ 7.339876] pci 0000:3f:0a.5: [8086:3cc5] type 00 class 0x088000
<7>[ 7.347210] pci 0000:3f:0a.6: [8086:3cc6] type 00 class 0x088000
<7>[ 7.354551] pci 0000:3f:0a.7: [8086:3cc7] type 00 class 0x088000
<7>[ 7.361914] pci 0000:3f:0b.0: [8086:3ce0] type 00 class 0x088000
<7>[ 7.369306] pci 0000:3f:0b.2: [8086:3ce2] type 00 class 0x088000
<7>[ 7.376638] pci 0000:3f:0b.3: [8086:3ce3] type 00 class 0x088000
<7>[ 7.383972] pci 0000:3f:0c.0: [8086:3ce8] type 00 class 0x088000
<7>[ 7.391303] pci 0000:3f:0c.1: [8086:3ce8] type 00 class 0x088000
<7>[ 7.398649] pci 0000:3f:0c.2: [8086:3ce8] type 00 class 0x088000
<7>[ 7.406011] pci 0000:3f:0c.3: [8086:3ce8] type 00 class 0x088000
<7>[ 7.413356] pci 0000:3f:0c.6: [8086:3cf4] type 00 class 0x088000
<7>[ 7.420710] pci 0000:3f:0c.7: [8086:3cf6] type 00 class 0x088000
<7>[ 7.428072] pci 0000:3f:0d.0: [8086:3ce8] type 00 class 0x088000
<7>[ 7.435412] pci 0000:3f:0d.1: [8086:3ce8] type 00 class 0x088000
<7>[ 7.442752] pci 0000:3f:0d.2: [8086:3ce8] type 00 class 0x088000
<7>[ 7.450089] pci 0000:3f:0d.3: [8086:3ce8] type 00 class 0x088000
<7>[ 7.457451] pci 0000:3f:0d.6: [8086:3cf5] type 00 class 0x088000
<7>[ 7.464812] pci 0000:3f:0e.0: [8086:3ca0] type 00 class 0x088000
<7>[ 7.472180] pci 0000:3f:0e.1: [8086:3c46] type 00 class 0x110100
<7>[ 7.479541] pci 0000:3f:0e.2: [8086:3c70] type 00 class 0x088000
<7>[ 7.486923] pci 0000:3f:0f.0: [8086:3ca8] type 00 class 0x088000
<7>[ 7.494304] pci 0000:3f:0f.1: [8086:3c71] type 00 class 0x088000
<7>[ 7.501654] pci 0000:3f:0f.2: [8086:3caa] type 00 class 0x088000
<7>[ 7.509033] pci 0000:3f:0f.3: [8086:3cab] type 00 class 0x088000
<7>[ 7.516413] pci 0000:3f:0f.4: [8086:3cac] type 00 class 0x088000
<7>[ 7.523790] pci 0000:3f:0f.5: [8086:3cad] type 00 class 0x088000
<7>[ 7.531181] pci 0000:3f:0f.6: [8086:3cae] type 00 class 0x088000
<7>[ 7.538526] pci 0000:3f:0f.7: [8086:3caf] type 00 class 0x088000
<7>[ 7.545894] pci 0000:3f:10.0: [8086:3cb0] type 00 class 0x088000
<7>[ 7.553252] pci 0000:3f:10.1: [8086:3cb1] type 00 class 0x088000
<7>[ 7.560609] pci 0000:3f:10.2: [8086:3cb2] type 00 class 0x088000
<7>[ 7.567963] pci 0000:3f:10.3: [8086:3cb3] type 00 class 0x088000
<7>[ 7.575322] pci 0000:3f:10.4: [8086:3cb4] type 00 class 0x088000
<7>[ 7.582683] pci 0000:3f:10.5: [8086:3cb5] type 00 class 0x088000
<7>[ 7.590047] pci 0000:3f:10.6: [8086:3cb6] type 00 class 0x088000
<7>[ 7.597458] pci 0000:3f:10.7: [8086:3cb7] type 00 class 0x088000
<7>[ 7.604822] pci 0000:3f:11.0: [8086:3cb8] type 00 class 0x088000
<7>[ 7.621521] pci 0000:3f:11.1: [8086:3cb9] type 00 class 0x088000
<7>[ 7.628869] pci 0000:3f:11.2: [8086:3cba] type 00 class 0x088000
<7>[ 7.636210] pci 0000:3f:11.3: [8086:3cbb] type 00 class 0x088000
<7>[ 7.643536] pci 0000:3f:11.4: [8086:3cbc] type 00 class 0x088000
<7>[ 7.650883] pci 0000:3f:11.5: [8086:3cbd] type 00 class 0x088000
<7>[ 7.658228] pci 0000:3f:11.6: [8086:3cbe] type 00 class 0x088000
<7>[ 7.665584] pci 0000:3f:11.7: [8086:3cbf] type 00 class 0x088000
<7>[ 7.672942] pci 0000:3f:13.0: [8086:3ce4] type 00 class 0x088000
<7>[ 7.680292] pci 0000:3f:13.1: [8086:3c43] type 00 class 0x110100
<7>[ 7.687619] pci 0000:3f:13.4: [8086:3ce6] type 00 class 0x110100
<7>[ 7.694985] pci 0000:3f:13.5: [8086:3c44] type 00 class 0x110100
<7>[ 7.702310] pci 0000:3f:13.6: [8086:3c45] type 00 class 0x088000
<6>[ 7.709694] acpi PNP0A03:00: Disabling ASPM (FADT indicates it is unsupported)
<6>[ 7.718739] ACPI: PCI Root Bridge [UCR1] (domain 0000 [bus 7f])
<6>[ 7.725823] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
<6>[ 7.735877] acpi PNP0A03:01: _OSC: platform does not support [PCIeHotplug PME AER]
<6>[ 7.745256] acpi PNP0A03:01: _OSC: OS now controls [PCIeCapability]
<6>[ 7.752923] PCI host bridge to bus 0000:7f
<6>[ 7.757980] pci_bus 0000:7f: root bus resource [bus 7f]
<7>[ 7.764293] pci 0000:7f:08.0: [8086:3c80] type 00 class 0x088000
<7>[ 7.771641] pci 0000:7f:08.2: [8086:3c41] type 00 class 0x110100
<7>[ 7.779003] pci 0000:7f:08.3: [8086:3c83] type 00 class 0x088000
<7>[ 7.786383] pci 0000:7f:08.4: [8086:3c84] type 00 class 0x088000
<7>[ 7.793759] pci 0000:7f:08.5: [8086:3c85] type 00 class 0x088000
<7>[ 7.801117] pci 0000:7f:08.6: [8086:3c86] type 00 class 0x088000
<7>[ 7.808501] pci 0000:7f:08.7: [8086:3c87] type 00 class 0x088000
<7>[ 7.815857] pci 0000:7f:09.0: [8086:3c90] type 00 class 0x088000
<7>[ 7.823217] pci 0000:7f:09.2: [8086:3c42] type 00 class 0x110100
<7>[ 7.830562] pci 0000:7f:09.3: [8086:3c93] type 00 class 0x088000
<7>[ 7.837961] pci 0000:7f:09.4: [8086:3c94] type 00 class 0x088000
<7>[ 7.845384] pci 0000:7f:09.5: [8086:3c95] type 00 class 0x088000
<7>[ 7.852774] pci 0000:7f:09.6: [8086:3c96] type 00 class 0x088000
<7>[ 7.860159] pci 0000:7f:0a.0: [8086:3cc0] type 00 class 0x088000
<7>[ 7.867525] pci 0000:7f:0a.1: [8086:3cc1] type 00 class 0x088000
<7>[ 7.874879] pci 0000:7f:0a.2: [8086:3cc2] type 00 class 0x088000
<7>[ 7.882257] pci 0000:7f:0a.3: [8086:3cd0] type 00 class 0x088000
<7>[ 7.889624] pci 0000:7f:0a.4: [8086:3cc4] type 00 class 0x088000
<7>[ 7.896995] pci 0000:7f:0a.5: [8086:3cc5] type 00 class 0x088000
<7>[ 7.904382] pci 0000:7f:0a.6: [8086:3cc6] type 00 class 0x088000
<7>[ 7.911732] pci 0000:7f:0a.7: [8086:3cc7] type 00 class 0x088000
<7>[ 7.919089] pci 0000:7f:0b.0: [8086:3ce0] type 00 class 0x088000
<7>[ 7.926478] pci 0000:7f:0b.2: [8086:3ce2] type 00 class 0x088000
<7>[ 7.933831] pci 0000:7f:0b.3: [8086:3ce3] type 00 class 0x088000
<7>[ 7.941208] pci 0000:7f:0c.0: [8086:3ce8] type 00 class 0x088000
<7>[ 7.948576] pci 0000:7f:0c.1: [8086:3ce8] type 00 class 0x088000
<7>[ 7.955962] pci 0000:7f:0c.2: [8086:3ce8] type 00 class 0x088000
<7>[ 7.963316] pci 0000:7f:0c.3: [8086:3ce8] type 00 class 0x088000
<7>[ 7.970708] pci 0000:7f:0c.6: [8086:3cf4] type 00 class 0x088000
<7>[ 7.978076] pci 0000:7f:0c.7: [8086:3cf6] type 00 class 0x088000
<7>[ 7.985454] pci 0000:7f:0d.0: [8086:3ce8] type 00 class 0x088000
<7>[ 7.992822] pci 0000:7f:0d.1: [8086:3ce8] type 00 class 0x088000
<7>[ 8.000212] pci 0000:7f:0d.2: [8086:3ce8] type 00 class 0x088000
<7>[ 8.007573] pci 0000:7f:0d.3: [8086:3ce8] type 00 class 0x088000
<7>[ 8.014957] pci 0000:7f:0d.6: [8086:3cf5] type 00 class 0x088000
<7>[ 8.022315] pci 0000:7f:0e.0: [8086:3ca0] type 00 class 0x088000
<7>[ 8.029685] pci 0000:7f:0e.1: [8086:3c46] type 00 class 0x110100
<7>[ 8.037078] pci 0000:7f:0e.2: [8086:3c70] type 00 class 0x088000
<7>[ 8.044475] pci 0000:7f:0f.0: [8086:3ca8] type 00 class 0x088000
<7>[ 8.051852] pci 0000:7f:0f.1: [8086:3c71] type 00 class 0x088000
<7>[ 8.059237] pci 0000:7f:0f.2: [8086:3caa] type 00 class 0x088000
<7>[ 8.066627] pci 0000:7f:0f.3: [8086:3cab] type 00 class 0x088000
<7>[ 8.074045] pci 0000:7f:0f.4: [8086:3cac] type 00 class 0x088000
<7>[ 8.081423] pci 0000:7f:0f.5: [8086:3cad] type 00 class 0x088000
<7>[ 8.088838] pci 0000:7f:0f.6: [8086:3cae] type 00 class 0x088000
<7>[ 8.096195] pci 0000:7f:0f.7: [8086:3caf] type 00 class 0x088000
<7>[ 8.103582] pci 0000:7f:10.0: [8086:3cb0] type 00 class 0x088000
<7>[ 8.110960] pci 0000:7f:10.1: [8086:3cb1] type 00 class 0x088000
<7>[ 8.118362] pci 0000:7f:10.2: [8086:3cb2] type 00 class 0x088000
<7>[ 8.125742] pci 0000:7f:10.3: [8086:3cb3] type 00 class 0x088000
<7>[ 8.133146] pci 0000:7f:10.4: [8086:3cb4] type 00 class 0x088000
<7>[ 8.140554] pci 0000:7f:10.5: [8086:3cb5] type 00 class 0x088000
<7>[ 8.147930] pci 0000:7f:10.6: [8086:3cb6] type 00 class 0x088000
<7>[ 8.155308] pci 0000:7f:10.7: [8086:3cb7] type 00 class 0x088000
<7>[ 8.162710] pci 0000:7f:11.0: [8086:3cb8] type 00 class 0x088000
<7>[ 8.170068] pci 0000:7f:11.1: [8086:3cb9] type 00 class 0x088000
<7>[ 8.177466] pci 0000:7f:11.2: [8086:3cba] type 00 class 0x088000
<7>[ 8.184830] pci 0000:7f:11.3: [8086:3cbb] type 00 class 0x088000
<7>[ 8.192191] pci 0000:7f:11.4: [8086:3cbc] type 00 class 0x088000
<7>[ 8.199559] pci 0000:7f:11.5: [8086:3cbd] type 00 class 0x088000
<7>[ 8.206935] pci 0000:7f:11.6: [8086:3cbe] type 00 class 0x088000
<7>[ 8.214308] pci 0000:7f:11.7: [8086:3cbf] type 00 class 0x088000
<7>[ 8.221690] pci 0000:7f:13.0: [8086:3ce4] type 00 class 0x088000
<7>[ 8.229063] pci 0000:7f:13.1: [8086:3c43] type 00 class 0x110100
<7>[ 8.236425] pci 0000:7f:13.4: [8086:3ce6] type 00 class 0x110100
<7>[ 8.243828] pci 0000:7f:13.5: [8086:3c44] type 00 class 0x110100
<7>[ 8.251243] pci 0000:7f:13.6: [8086:3c45] type 00 class 0x088000
<6>[ 8.258632] acpi PNP0A03:01: Disabling ASPM (FADT indicates it is unsupported)
<6>[ 8.267749] ACPI: PCI Root Bridge [UCR2] (domain 0000 [bus bf])
<6>[ 8.274852] acpi PNP0A03:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
<6>[ 8.284917] acpi PNP0A03:02: _OSC: platform does not support [PCIeHotplug PME AER]
<6>[ 8.294284] acpi PNP0A03:02: _OSC: OS now controls [PCIeCapability]
<6>[ 8.301977] PCI host bridge to bus 0000:bf
<6>[ 8.307033] pci_bus 0000:bf: root bus resource [bus bf]
<7>[ 8.313358] pci 0000:bf:08.0: [8086:3c80] type 00 class 0x088000
<7>[ 8.320719] pci 0000:bf:08.2: [8086:3c41] type 00 class 0x110100
<7>[ 8.328070] pci 0000:bf:08.3: [8086:3c83] type 00 class 0x088000
<7>[ 8.335475] pci 0000:bf:08.4: [8086:3c84] type 00 class 0x088000
<7>[ 8.342890] pci 0000:bf:08.5: [8086:3c85] type 00 class 0x088000
<7>[ 8.350260] pci 0000:bf:08.6: [8086:3c86] type 00 class 0x088000
<7>[ 8.357672] pci 0000:bf:08.7: [8086:3c87] type 00 class 0x088000
<7>[ 8.365043] pci 0000:bf:09.0: [8086:3c90] type 00 class 0x088000
<7>[ 8.372410] pci 0000:bf:09.2: [8086:3c42] type 00 class 0x110100
<7>[ 8.379824] pci 0000:bf:09.3: [8086:3c93] type 00 class 0x088000
<7>[ 8.387240] pci 0000:bf:09.4: [8086:3c94] type 00 class 0x088000
<7>[ 8.394645] pci 0000:bf:09.5: [8086:3c95] type 00 class 0x088000
<7>[ 8.402068] pci 0000:bf:09.6: [8086:3c96] type 00 class 0x088000
<7>[ 8.409452] pci 0000:bf:0a.0: [8086:3cc0] type 00 class 0x088000
<7>[ 8.416811] pci 0000:bf:0a.1: [8086:3cc1] type 00 class 0x088000
<7>[ 8.424176] pci 0000:bf:0a.2: [8086:3cc2] type 00 class 0x088000
<7>[ 8.431519] pci 0000:bf:0a.3: [8086:3cd0] type 00 class 0x088000
<7>[ 8.438903] pci 0000:bf:0a.4: [8086:3cc4] type 00 class 0x088000
<7>[ 8.446252] pci 0000:bf:0a.5: [8086:3cc5] type 00 class 0x088000
<7>[ 8.453603] pci 0000:bf:0a.6: [8086:3cc6] type 00 class 0x088000
<7>[ 8.460956] pci 0000:bf:0a.7: [8086:3cc7] type 00 class 0x088000
<7>[ 8.468298] pci 0000:bf:0b.0: [8086:3ce0] type 00 class 0x088000
<7>[ 8.475674] pci 0000:bf:0b.2: [8086:3ce2] type 00 class 0x088000
<7>[ 8.483027] pci 0000:bf:0b.3: [8086:3ce3] type 00 class 0x088000
<7>[ 8.490384] pci 0000:bf:0c.0: [8086:3ce8] type 00 class 0x088000
<7>[ 8.497731] pci 0000:bf:0c.1: [8086:3ce8] type 00 class 0x088000
<7>[ 8.505118] pci 0000:bf:0c.2: [8086:3ce8] type 00 class 0x088000
<7>[ 8.512455] pci 0000:bf:0c.3: [8086:3ce8] type 00 class 0x088000
<7>[ 8.519836] pci 0000:bf:0c.6: [8086:3cf4] type 00 class 0x088000
<7>[ 8.527182] pci 0000:bf:0c.7: [8086:3cf6] type 00 class 0x088000
<7>[ 8.534551] pci 0000:bf:0d.0: [8086:3ce8] type 00 class 0x088000
<7>[ 8.541918] pci 0000:bf:0d.1: [8086:3ce8] type 00 class 0x088000
<7>[ 8.549274] pci 0000:bf:0d.2: [8086:3ce8] type 00 class 0x088000
<7>[ 8.556611] pci 0000:bf:0d.3: [8086:3ce8] type 00 class 0x088000
<7>[ 8.563968] pci 0000:bf:0d.6: [8086:3cf5] type 00 class 0x088000
<7>[ 8.571338] pci 0000:bf:0e.0: [8086:3ca0] type 00 class 0x088000
<7>[ 8.578718] pci 0000:bf:0e.1: [8086:3c46] type 00 class 0x110100
<7>[ 8.586078] pci 0000:bf:0e.2: [8086:3c70] type 00 class 0x088000
<7>[ 8.593462] pci 0000:bf:0f.0: [8086:3ca8] type 00 class 0x088000
<7>[ 8.600840] pci 0000:bf:0f.1: [8086:3c71] type 00 class 0x088000
<7>[ 8.608198] pci 0000:bf:0f.2: [8086:3caa] type 00 class 0x088000
<7>[ 8.615587] pci 0000:bf:0f.3: [8086:3cab] type 00 class 0x088000
<7>[ 8.622981] pci 0000:bf:0f.4: [8086:3cac] type 00 class 0x088000
<7>[ 8.630368] pci 0000:bf:0f.5: [8086:3cad] type 00 class 0x088000
<7>[ 8.637762] pci 0000:bf:0f.6: [8086:3cae] type 00 class 0x088000
<7>[ 8.645098] pci 0000:bf:0f.7: [8086:3caf] type 00 class 0x088000
<7>[ 8.652440] pci 0000:bf:10.0: [8086:3cb0] type 00 class 0x088000
<7>[ 8.659842] pci 0000:bf:10.1: [8086:3cb1] type 00 class 0x088000
<7>[ 8.667222] pci 0000:bf:10.2: [8086:3cb2] type 00 class 0x088000
<7>[ 8.674622] pci 0000:bf:10.3: [8086:3cb3] type 00 class 0x088000
<7>[ 8.682015] pci 0000:bf:10.4: [8086:3cb4] type 00 class 0x088000
<7>[ 8.689380] pci 0000:bf:10.5: [8086:3cb5] type 00 class 0x088000
<7>[ 8.696764] pci 0000:bf:10.6: [8086:3cb6] type 00 class 0x088000
<7>[ 8.704161] pci 0000:bf:10.7: [8086:3cb7] type 00 class 0x088000
<7>[ 8.711541] pci 0000:bf:11.0: [8086:3cb8] type 00 class 0x088000
<7>[ 8.718891] pci 0000:bf:11.1: [8086:3cb9] type 00 class 0x088000
<7>[ 8.726264] pci 0000:bf:11.2: [8086:3cba] type 00 class 0x088000
<7>[ 8.733619] pci 0000:bf:11.3: [8086:3cbb] type 00 class 0x088000
<7>[ 8.740977] pci 0000:bf:11.4: [8086:3cbc] type 00 class 0x088000
<7>[ 8.748305] pci 0000:bf:11.5: [8086:3cbd] type 00 class 0x088000
<7>[ 8.755691] pci 0000:bf:11.6: [8086:3cbe] type 00 class 0x088000
<7>[ 8.763059] pci 0000:bf:11.7: [8086:3cbf] type 00 class 0x088000
<7>[ 8.770468] pci 0000:bf:13.0: [8086:3ce4] type 00 class 0x088000
<7>[ 8.777840] pci 0000:bf:13.1: [8086:3c43] type 00 class 0x110100
<7>[ 8.785226] pci 0000:bf:13.4: [8086:3ce6] type 00 class 0x110100
<7>[ 8.792554] pci 0000:bf:13.5: [8086:3c44] type 00 class 0x110100
<7>[ 8.799936] pci 0000:bf:13.6: [8086:3c45] type 00 class 0x088000
<6>[ 8.807362] acpi PNP0A03:02: Disabling ASPM (FADT indicates it is unsupported)
<6>[ 8.816392] ACPI: PCI Root Bridge [UCR3] (domain 0000 [bus ff])
<6>[ 8.823488] acpi PNP0A03:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
<6>[ 8.833540] acpi PNP0A03:03: _OSC: platform does not support [PCIeHotplug PME AER]
<6>[ 8.842918] acpi PNP0A03:03: _OSC: OS now controls [PCIeCapability]
<6>[ 8.850615] PCI host bridge to bus 0000:ff
<6>[ 8.855677] pci_bus 0000:ff: root bus resource [bus ff]
<7>[ 8.861995] pci 0000:ff:08.0: [8086:3c80] type 00 class 0x088000
<7>[ 8.869355] pci 0000:ff:08.2: [8086:3c41] type 00 class 0x110100
<7>[ 8.876694] pci 0000:ff:08.3: [8086:3c83] type 00 class 0x088000
<7>[ 8.884098] pci 0000:ff:08.4: [8086:3c84] type 00 class 0x088000
<7>[ 8.900794] pci 0000:ff:08.5: [8086:3c85] type 00 class 0x088000
<7>[ 8.908191] pci 0000:ff:08.6: [8086:3c86] type 00 class 0x088000
<7>[ 8.915563] pci 0000:ff:08.7: [8086:3c87] type 00 class 0x088000
<7>[ 8.922958] pci 0000:ff:09.0: [8086:3c90] type 00 class 0x088000
<7>[ 8.930301] pci 0000:ff:09.2: [8086:3c42] type 00 class 0x110100
<7>[ 8.937642] pci 0000:ff:09.3: [8086:3c93] type 00 class 0x088000
<7>[ 8.945016] pci 0000:ff:09.4: [8086:3c94] type 00 class 0x088000
<7>[ 8.952406] pci 0000:ff:09.5: [8086:3c95] type 00 class 0x088000
<7>[ 8.959830] pci 0000:ff:09.6: [8086:3c96] type 00 class 0x088000
<7>[ 8.967227] pci 0000:ff:0a.0: [8086:3cc0] type 00 class 0x088000
<7>[ 8.974566] pci 0000:ff:0a.1: [8086:3cc1] type 00 class 0x088000
<7>[ 8.981933] pci 0000:ff:0a.2: [8086:3cc2] type 00 class 0x088000
<7>[ 8.989287] pci 0000:ff:0a.3: [8086:3cd0] type 00 class 0x088000
<7>[ 8.996615] pci 0000:ff:0a.4: [8086:3cc4] type 00 class 0x088000
<7>[ 9.003997] pci 0000:ff:0a.5: [8086:3cc5] type 00 class 0x088000
<7>[ 9.011349] pci 0000:ff:0a.6: [8086:3cc6] type 00 class 0x088000
<7>[ 9.018683] pci 0000:ff:0a.7: [8086:3cc7] type 00 class 0x088000
<7>[ 9.026028] pci 0000:ff:0b.0: [8086:3ce0] type 00 class 0x088000
<7>[ 9.033390] pci 0000:ff:0b.2: [8086:3ce2] type 00 class 0x088000
<7>[ 9.040713] pci 0000:ff:0b.3: [8086:3ce3] type 00 class 0x088000
<7>[ 9.048097] pci 0000:ff:0c.0: [8086:3ce8] type 00 class 0x088000
<7>[ 9.055458] pci 0000:ff:0c.1: [8086:3ce8] type 00 class 0x088000
<7>[ 9.062801] pci 0000:ff:0c.2: [8086:3ce8] type 00 class 0x088000
<7>[ 9.070175] pci 0000:ff:0c.3: [8086:3ce8] type 00 class 0x088000
<7>[ 9.077537] pci 0000:ff:0c.6: [8086:3cf4] type 00 class 0x088000
<7>[ 9.084865] pci 0000:ff:0c.7: [8086:3cf6] type 00 class 0x088000
<7>[ 9.092235] pci 0000:ff:0d.0: [8086:3ce8] type 00 class 0x088000
<7>[ 9.099574] pci 0000:ff:0d.1: [8086:3ce8] type 00 class 0x088000
<7>[ 9.106950] pci 0000:ff:0d.2: [8086:3ce8] type 00 class 0x088000
<7>[ 9.114307] pci 0000:ff:0d.3: [8086:3ce8] type 00 class 0x088000
<7>[ 9.121658] pci 0000:ff:0d.6: [8086:3cf5] type 00 class 0x088000
<7>[ 9.128994] pci 0000:ff:0e.0: [8086:3ca0] type 00 class 0x088000
<7>[ 9.136369] pci 0000:ff:0e.1: [8086:3c46] type 00 class 0x110100
<7>[ 9.143723] pci 0000:ff:0e.2: [8086:3c70] type 00 class 0x088000
<7>[ 9.151096] pci 0000:ff:0f.0: [8086:3ca8] type 00 class 0x088000
<7>[ 9.158483] pci 0000:ff:0f.1: [8086:3c71] type 00 class 0x088000
<7>[ 9.165872] pci 0000:ff:0f.2: [8086:3caa] type 00 class 0x088000
<7>[ 9.173266] pci 0000:ff:0f.3: [8086:3cab] type 00 class 0x088000
<7>[ 9.180692] pci 0000:ff:0f.4: [8086:3cac] type 00 class 0x088000
<7>[ 9.188142] pci 0000:ff:0f.5: [8086:3cad] type 00 class 0x088000
<7>[ 9.195503] pci 0000:ff:0f.6: [8086:3cae] type 00 class 0x088000
<7>[ 9.202871] pci 0000:ff:0f.7: [8086:3caf] type 00 class 0x088000
<7>[ 9.210233] pci 0000:ff:10.0: [8086:3cb0] type 00 class 0x088000
<7>[ 9.217608] pci 0000:ff:10.1: [8086:3cb1] type 00 class 0x088000
<7>[ 9.224964] pci 0000:ff:10.2: [8086:3cb2] type 00 class 0x088000
<7>[ 9.232354] pci 0000:ff:10.3: [8086:3cb3] type 00 class 0x088000
<7>[ 9.239713] pci 0000:ff:10.4: [8086:3cb4] type 00 class 0x088000
<7>[ 9.247111] pci 0000:ff:10.5: [8086:3cb5] type 00 class 0x088000
<7>[ 9.254479] pci 0000:ff:10.6: [8086:3cb6] type 00 class 0x088000
<7>[ 9.261878] pci 0000:ff:10.7: [8086:3cb7] type 00 class 0x088000
<7>[ 9.269236] pci 0000:ff:11.0: [8086:3cb8] type 00 class 0x088000
<7>[ 9.276597] pci 0000:ff:11.1: [8086:3cb9] type 00 class 0x088000
<7>[ 9.283960] pci 0000:ff:11.2: [8086:3cba] type 00 class 0x088000
<7>[ 9.291321] pci 0000:ff:11.3: [8086:3cbb] type 00 class 0x088000
<7>[ 9.298696] pci 0000:ff:11.4: [8086:3cbc] type 00 class 0x088000
<7>[ 9.306047] pci 0000:ff:11.5: [8086:3cbd] type 00 class 0x088000
<7>[ 9.313405] pci 0000:ff:11.6: [8086:3cbe] type 00 class 0x088000
<7>[ 9.320795] pci 0000:ff:11.7: [8086:3cbf] type 00 class 0x088000
<7>[ 9.328149] pci 0000:ff:13.0: [8086:3ce4] type 00 class 0x088000
<7>[ 9.335521] pci 0000:ff:13.1: [8086:3c43] type 00 class 0x110100
<7>[ 9.342874] pci 0000:ff:13.4: [8086:3ce6] type 00 class 0x110100
<7>[ 9.350237] pci 0000:ff:13.5: [8086:3c44] type 00 class 0x110100
<7>[ 9.357612] pci 0000:ff:13.6: [8086:3c45] type 00 class 0x088000
<6>[ 9.364993] acpi PNP0A03:03: Disabling ASPM (FADT indicates it is unsupported)
<4>[ 9.374226] ACPI: Enabled 6 GPEs in block 00 to 3F
<6>[ 9.381054] vgaarb: device added: PCI:0000:09:00.0,decodes=io+mem,owns=io+mem,locks=none
<6>[ 9.391328] vgaarb: loaded
<6>[ 9.394816] vgaarb: bridge control possible 0000:09:00.0
<5>[ 9.401574] SCSI subsystem initialized
<7>[ 9.406671] libata version 3.00 loaded.
<6>[ 9.411768] ACPI: bus type USB registered
<6>[ 9.416913] usbcore: registered new interface driver usbfs
<6>[ 9.423626] usbcore: registered new interface driver hub
<6>[ 9.430197] usbcore: registered new device driver usb
<6>[ 9.436501] pps_core: LinuxPPS API ver. 1 registered
<6>[ 9.442531] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
<6>[ 9.453694] PTP clock support registered
<6>[ 9.459247] EDAC MC: Ver: 3.0.0
<6>[ 9.464395] PCI: Using ACPI for IRQ routing
<7>[ 9.474654] PCI: pci_cache_line_size set to 64 bytes
<7>[ 9.481642] e820: reserve RAM buffer [mem 0x0008f400-0x0008ffff]
<7>[ 9.488850] e820: reserve RAM buffer [mem 0xbb3c7000-0xbbffffff]
<7>[ 9.496043] e820: reserve RAM buffer [mem 0xbe000000-0xbfffffff]
<6>[ 9.504525] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
<6>[ 9.512711] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
<6>[ 9.523096] Switched to clocksource hpet
<6>[ 9.552561] pnp: PnP ACPI init
<6>[ 9.556564] ACPI: bus type PNP registered
<7>[ 9.561734] pnp 00:00: [dma 4]
<7>[ 9.565807] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
<7>[ 9.573759] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
<7>[ 9.581852] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
<7>[ 9.589706] IOAPIC[0]: Set routing entry (0-13 -> 0x3d -> IRQ 13 Mode:0 Active:0 Dest:0)
<7>[ 9.599807] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
<6>[ 9.608419] system 00:04: [io 0x0680-0x069f] has been reserved
<6>[ 9.615518] system 00:04: [io 0xffff] has been reserved
<6>[ 9.621972] system 00:04: [io 0xffff] has been reserved
<6>[ 9.628384] system 00:04: [io 0xffff] has been reserved
<6>[ 9.634816] system 00:04: [io 0x0400-0x0453] could not be reserved
<6>[ 9.642307] system 00:04: [io 0x0458-0x047f] has been reserved
<6>[ 9.649401] system 00:04: [io 0x0500-0x057f] has been reserved
<6>[ 9.656501] system 00:04: [io 0x0600-0x061f] has been reserved
<6>[ 9.663600] system 00:04: [io 0x0ca2-0x0ca5] has been reserved
<6>[ 9.670688] system 00:04: [io 0x0cf9] could not be reserved
<7>[ 9.677501] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
<7>[ 9.685598] IOAPIC[0]: Set routing entry (0-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:0)
<7>[ 9.695467] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
<6>[ 9.703695] system 00:06: [io 0x0454-0x0457] has been reserved
<7>[ 9.710794] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
<7>[ 9.720499] IOAPIC[0]: Set routing entry (0-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:0)
<7>[ 9.730275] pnp 00:07: [dma 0 disabled]
<7>[ 9.735273] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active)
<7>[ 9.743377] IOAPIC[0]: Set routing entry (0-3 -> 0x33 -> IRQ 3 Mode:0 Active:0 Dest:0)
<7>[ 9.753141] pnp 00:08: [dma 0 disabled]
<7>[ 9.758162] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
<6>[ 9.766940] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
<6>[ 9.774829] system 00:09: [mem 0xdffff000-0xdfffffff] has been reserved
<6>[ 9.782726] system 00:09: [mem 0xc0000000-0xcfffffff] has been reserved
<6>[ 9.790621] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
<6>[ 9.798510] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
<6>[ 9.806394] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
<6>[ 9.814659] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
<6>[ 9.822920] system 00:09: [mem 0xfec00000-0xfecfffff] could not be reserved
<6>[ 9.831185] system 00:09: [mem 0xd0f70000-0xd0f70fff] has been reserved
<7>[ 9.839065] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
<6>[ 9.848517] system 00:0a: [mem 0x00000000-0x0009cfff] could not be reserved
<7>[ 9.856787] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
<6>[ 9.865489] pnp: PnP ACPI: found 11 devices
<6>[ 9.870670] ACPI: bus type PNP unregistered
<6>[ 9.888399] pci 0000:02:08.0: PCI bridge to [bus 03]
<6>[ 9.894458] pci 0000:02:08.0: bridge window [io 0x2000-0x2fff]
<6>[ 9.901777] pci 0000:02:08.0: bridge window [mem 0xd0d00000-0xd0dfffff]
<6>[ 9.909883] pci 0000:02:08.0: bridge window [mem 0xdc800000-0xdd1fffff 64bit pref]
<6>[ 9.919463] pci 0000:01:00.0: PCI bridge to [bus 02-03]
<6>[ 9.925803] pci 0000:01:00.0: bridge window [io 0x2000-0x2fff]
<6>[ 9.933111] pci 0000:01:00.0: bridge window [mem 0xd0d00000-0xd0dfffff]
<6>[ 9.941191] pci 0000:01:00.0: bridge window [mem 0xdc800000-0xdd1fffff 64bit pref]
<6>[ 9.950755] pci 0000:00:01.0: PCI bridge to [bus 01-03]
<6>[ 9.957085] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
<6>[ 9.964392] pci 0000:00:01.0: bridge window [mem 0xd0d00000-0xd0efffff]
<6>[ 9.972472] pci 0000:00:01.0: bridge window [mem 0xdc800000-0xdd1fffff 64bit pref]
<6>[ 9.982005] pci 0000:00:02.0: PCI bridge to [bus 04]
<6>[ 9.988054] pci 0000:00:03.0: PCI bridge to [bus 05]
<6>[ 9.994126] pci 0000:00:03.2: PCI bridge to [bus 06-07]
<6>[ 10.000466] pci 0000:00:03.2: bridge window [io 0x1000-0x1fff]
<6>[ 10.007780] pci 0000:00:03.2: bridge window [mem 0xd0900000-0xd0cfffff]
<6>[ 10.015866] pci 0000:00:03.2: bridge window [mem 0xdd400000-0xdd8fffff 64bit pref]
<6>[ 10.025411] pci 0000:00:1c.0: PCI bridge to [bus 08]
<6>[ 10.031478] pci 0000:00:1c.7: PCI bridge to [bus 09]
<6>[ 10.037526] pci 0000:00:1c.7: bridge window [mem 0xd0000000-0xd08fffff]
<6>[ 10.045611] pci 0000:00:1c.7: bridge window [mem 0xde000000-0xdeffffff 64bit pref]
<6>[ 10.055170] pci 0000:00:1e.0: PCI bridge to [bus 0a]
<7>[ 10.061230] pci_bus 0000:00: resource 4 [io 0x0000-0x5fff]
<7>[ 10.067936] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
<7>[ 10.075434] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000c3fff]
<7>[ 10.082924] pci_bus 0000:00: resource 7 [mem 0x000c4000-0x000c7fff]
<7>[ 10.090437] pci_bus 0000:00: resource 8 [mem 0x000c8000-0x000cbfff]
<7>[ 10.097947] pci_bus 0000:00: resource 9 [mem 0x000cc000-0x000cffff]
<7>[ 10.105456] pci_bus 0000:00: resource 10 [mem 0x000d4000-0x000d7fff]
<7>[ 10.113053] pci_bus 0000:00: resource 11 [mem 0x000d8000-0x000dbfff]
<7>[ 10.120652] pci_bus 0000:00: resource 12 [mem 0x000dc000-0x000dffff]
<7>[ 10.128252] pci_bus 0000:00: resource 13 [mem 0x000e0000-0x000e3fff]
<7>[ 10.135854] pci_bus 0000:00: resource 14 [mem 0x000e4000-0x000e7fff]
<7>[ 10.143453] pci_bus 0000:00: resource 15 [mem 0x000e8000-0x000ebfff]
<7>[ 10.151054] pci_bus 0000:00: resource 16 [mem 0x000ec000-0x000effff]
<7>[ 10.158653] pci_bus 0000:00: resource 17 [mem 0x000f0000-0x000fffff]
<7>[ 10.166240] pci_bus 0000:00: resource 18 [mem 0xd0000000-0xdfffffff]
<7>[ 10.183431] pci_bus 0000:00: resource 19 [mem 0x3c0000000000-0x3c007fffffff]
<7>[ 10.191810] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
<7>[ 10.198532] pci_bus 0000:01: resource 1 [mem 0xd0d00000-0xd0efffff]
<7>[ 10.206033] pci_bus 0000:01: resource 2 [mem 0xdc800000-0xdd1fffff 64bit pref]
<7>[ 10.214990] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
<7>[ 10.221702] pci_bus 0000:02: resource 1 [mem 0xd0d00000-0xd0dfffff]
<7>[ 10.229191] pci_bus 0000:02: resource 2 [mem 0xdc800000-0xdd1fffff 64bit pref]
<7>[ 10.238153] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
<7>[ 10.244863] pci_bus 0000:03: resource 1 [mem 0xd0d00000-0xd0dfffff]
<7>[ 10.252361] pci_bus 0000:03: resource 2 [mem 0xdc800000-0xdd1fffff 64bit pref]
<7>[ 10.261317] pci_bus 0000:06: resource 0 [io 0x1000-0x1fff]
<7>[ 10.268042] pci_bus 0000:06: resource 1 [mem 0xd0900000-0xd0cfffff]
<7>[ 10.275534] pci_bus 0000:06: resource 2 [mem 0xdd400000-0xdd8fffff 64bit pref]
<7>[ 10.284497] pci_bus 0000:09: resource 1 [mem 0xd0000000-0xd08fffff]
<7>[ 10.291995] pci_bus 0000:09: resource 2 [mem 0xde000000-0xdeffffff 64bit pref]
<7>[ 10.300952] pci_bus 0000:0a: resource 4 [io 0x0000-0x5fff]
<7>[ 10.307670] pci_bus 0000:0a: resource 5 [mem 0x000a0000-0x000bffff]
<7>[ 10.315168] pci_bus 0000:0a: resource 6 [mem 0x000c0000-0x000c3fff]
<7>[ 10.322661] pci_bus 0000:0a: resource 7 [mem 0x000c4000-0x000c7fff]
<7>[ 10.330167] pci_bus 0000:0a: resource 8 [mem 0x000c8000-0x000cbfff]
<7>[ 10.337676] pci_bus 0000:0a: resource 9 [mem 0x000cc000-0x000cffff]
<7>[ 10.345180] pci_bus 0000:0a: resource 10 [mem 0x000d4000-0x000d7fff]
<7>[ 10.352777] pci_bus 0000:0a: resource 11 [mem 0x000d8000-0x000dbfff]
<7>[ 10.360377] pci_bus 0000:0a: resource 12 [mem 0x000dc000-0x000dffff]
<7>[ 10.367973] pci_bus 0000:0a: resource 13 [mem 0x000e0000-0x000e3fff]
<7>[ 10.375578] pci_bus 0000:0a: resource 14 [mem 0x000e4000-0x000e7fff]
<7>[ 10.383179] pci_bus 0000:0a: resource 15 [mem 0x000e8000-0x000ebfff]
<7>[ 10.390792] pci_bus 0000:0a: resource 16 [mem 0x000ec000-0x000effff]
<7>[ 10.398378] pci_bus 0000:0a: resource 17 [mem 0x000f0000-0x000fffff]
<7>[ 10.405967] pci_bus 0000:0a: resource 18 [mem 0xd0000000-0xdfffffff]
<7>[ 10.413562] pci_bus 0000:0a: resource 19 [mem 0x3c0000000000-0x3c007fffffff]
<6>[ 10.421966] pci 0000:40:01.0: PCI bridge to [bus 41]
<6>[ 10.428042] pci 0000:40:02.0: PCI bridge to [bus 42]
<7>[ 10.434109] pci_bus 0000:40: resource 4 [io 0x03b0-0x03df]
<7>[ 10.440834] pci_bus 0000:40: resource 5 [io 0x6000-0x7fff]
<7>[ 10.447560] pci_bus 0000:40: resource 6 [mem 0x000a0000-0x000bffff]
<7>[ 10.455063] pci_bus 0000:40: resource 7 [mem 0xe0000000-0xebffffff]
<7>[ 10.462560] pci_bus 0000:40: resource 8 [mem 0x3c0080000000-0x3c00ffffffff]
<6>[ 10.470877] pci 0000:80:02.0: PCI bridge to [bus 81]
<6>[ 10.476951] pci 0000:80:03.0: PCI bridge to [bus 82]
<7>[ 10.483004] pci_bus 0000:80: resource 4 [io 0x8000-0xbfff]
<7>[ 10.489732] pci_bus 0000:80: resource 5 [mem 0xec000000-0xf7ffffff]
<7>[ 10.497238] pci_bus 0000:80: resource 6 [mem 0x3c0100000000-0x3c017fffffff]
<6>[ 10.505559] pci 0000:c0:02.0: PCI bridge to [bus c1]
<6>[ 10.511635] pci 0000:c0:03.0: PCI bridge to [bus c2]
<7>[ 10.517698] pci_bus 0000:c0: resource 4 [io 0xc000-0xffff]
<7>[ 10.524421] pci_bus 0000:c0: resource 5 [mem 0xf8000000-0xfbffffff]
<7>[ 10.531922] pci_bus 0000:c0: resource 6 [mem 0x3c0180000000-0x3c01ffffffff]
<6>[ 10.540553] NET: Registered protocol family 2
<6>[ 10.546830] TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
<6>[ 10.557611] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
<6>[ 10.565926] TCP: Hash tables configured (established 524288 bind 65536)
<6>[ 10.573950] TCP: reno registered
<6>[ 10.578256] UDP hash table entries: 32768 (order: 8, 1048576 bytes)
<6>[ 10.586244] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes)
<6>[ 10.595099] NET: Registered protocol family 1
<6>[ 10.600977] RPC: Registered named UNIX socket transport module.
<6>[ 10.608097] RPC: Registered udp transport module.
<6>[ 10.613852] RPC: Registered tcp transport module.
<6>[ 10.619606] RPC: Registered tcp NFSv4.1 backchannel transport module.
<7>[ 10.627792] IOAPIC[0]: Set routing entry (0-22 -> 0x41 -> IRQ 22 Mode:1 Active:1 Dest:0)
<7>[ 10.638106] IOAPIC[0]: Set routing entry (0-20 -> 0x51 -> IRQ 20 Mode:1 Active:1 Dest:0)
<7>[ 10.648251] pci 0000:09:00.0: Boot video device
<7>[ 10.654656] PCI: CLS 64 bytes, default 64
<6>[ 10.659735] Trying to unpack rootfs image as initramfs...
<6>[ 17.721286] Freeing initrd memory: 213320K (ffff880072fa1000 - ffff88007fff3000)
<6>[ 17.730480] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
<6>[ 17.738194] software IO TLB [mem 0xb73c7000-0xbb3c7000] (64MB) mapped at [ffff8800b73c7000-ffff8800bb3c6fff]
<6>[ 17.759812] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
<6>[ 17.772617] Scanning for low memory corruption every 60 seconds
<6>[ 17.782008] AVX version of gcm_enc/dec engaged.
<6>[ 17.788931] sha1_ssse3: Using AVX optimized SHA-1 implementation
<6>[ 17.805346] futex hash table entries: 16384 (order: 8, 1048576 bytes)
<4>[ 17.856841] bounce pool size: 64 pages
<6>[ 17.861532] HugeTLB registered 2 MB page size, pre-allocated 0 pages
<5>[ 17.876282] VFS: Disk quotas dquot_6.5.2
<4>[ 17.881378] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
<5>[ 17.892351] NFS: Registering the id_resolver key type
<5>[ 17.898514] Key type id_resolver registered
<5>[ 17.903665] Key type id_legacy registered
<6>[ 17.908626] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
<6>[ 17.916628] Installing knfsd (copyright (C) 1996 okir@xxxxxxxxxxxx).
<6>[ 17.925291] ROMFS MTD (C) 2007 Red Hat, Inc.
<6>[ 17.930820] fuse init (API version 7.22)
<6>[ 17.936147] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
<6>[ 17.949584] msgmni has been set to 32768
<6>[ 17.959878] NET: Registered protocol family 38
<5>[ 17.965345] Key type asymmetric registered
<6>[ 17.970697] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
<6>[ 17.980180] io scheduler noop registered
<6>[ 17.985055] io scheduler deadline registered
<6>[ 17.990326] io scheduler cfq registered (default)
<7>[ 17.997637] IOAPIC[1]: Set routing entry (1-23 -> 0x61 -> IRQ 47 Mode:1 Active:1 Dest:0)
<7>[ 18.007658] pcieport 0000:00:01.0: irq 136 for MSI/MSI-X
<7>[ 18.014535] pcieport 0000:00:02.0: irq 137 for MSI/MSI-X
<7>[ 18.021399] pcieport 0000:00:03.0: irq 138 for MSI/MSI-X
<7>[ 18.028247] pcieport 0000:00:03.2: irq 139 for MSI/MSI-X
<7>[ 18.035100] IOAPIC[0]: Set routing entry (0-16 -> 0xb1 -> IRQ 16 Mode:1 Active:1 Dest:0)
<7>[ 18.045052] pcieport 0000:00:1c.0: irq 140 for MSI/MSI-X
<7>[ 18.051896] IOAPIC[0]: Set routing entry (0-19 -> 0xd1 -> IRQ 19 Mode:1 Active:1 Dest:0)
<7>[ 18.061838] pcieport 0000:00:1c.7: irq 141 for MSI/MSI-X
<7>[ 18.068553] IOAPIC[1]: Set routing entry (1-2 -> 0x22 -> IRQ 26 Mode:1 Active:1 Dest:0)
<7>[ 18.078938] IOAPIC[2]: Set routing entry (2-23 -> 0x42 -> IRQ 71 Mode:1 Active:1 Dest:0)
<7>[ 18.088986] pcieport 0000:40:01.0: irq 142 for MSI/MSI-X
<7>[ 18.095766] pcieport 0000:40:02.0: irq 143 for MSI/MSI-X
<7>[ 18.102972] IOAPIC[3]: Set routing entry (3-23 -> 0x72 -> IRQ 95 Mode:1 Active:1 Dest:0)
<7>[ 18.113080] pcieport 0000:80:02.0: irq 144 for MSI/MSI-X
<7>[ 18.120233] pcieport 0000:80:03.0: irq 145 for MSI/MSI-X
<7>[ 18.127267] IOAPIC[4]: Set routing entry (4-23 -> 0xa2 -> IRQ 119 Mode:1 Active:1 Dest:0)
<7>[ 18.137402] pcieport 0000:c0:02.0: irq 146 for MSI/MSI-X
<7>[ 18.144328] pcieport 0000:c0:03.0: irq 147 for MSI/MSI-X
<6>[ 18.151331] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
<6>[ 18.159633] pcieport 0000:01:00.0: Signaling PME through PCIe PME interrupt
<6>[ 18.167927] pcieport 0000:02:08.0: Signaling PME through PCIe PME interrupt
<6>[ 18.176228] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
<6>[ 18.184047] pci 0000:03:00.3: Signaling PME through PCIe PME interrupt
<6>[ 18.191868] pci 0000:03:00.4: Signaling PME through PCIe PME interrupt
<6>[ 18.199674] pci 0000:03:00.5: Signaling PME through PCIe PME interrupt
<7>[ 18.207489] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
<6>[ 18.215521] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
<7>[ 18.223812] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
<6>[ 18.231850] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
<7>[ 18.240152] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
<6>[ 18.248200] pcieport 0000:00:03.2: Signaling PME through PCIe PME interrupt
<6>[ 18.256495] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
<6>[ 18.264291] pci 0000:06:00.1: Signaling PME through PCIe PME interrupt
<7>[ 18.272098] pcie_pme 0000:00:03.2:pcie01: service driver pcie_pme loaded
<6>[ 18.280135] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
<7>[ 18.288444] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
<6>[ 18.296474] pcieport 0000:00:1c.7: Signaling PME through PCIe PME interrupt
<6>[ 18.304760] pci 0000:09:00.0: Signaling PME through PCIe PME interrupt
<7>[ 18.312551] pcie_pme 0000:00:1c.7:pcie01: service driver pcie_pme loaded
<6>[ 18.320580] pcieport 0000:40:01.0: Signaling PME through PCIe PME interrupt
<7>[ 18.328861] pcie_pme 0000:40:01.0:pcie01: service driver pcie_pme loaded
<6>[ 18.336874] pcieport 0000:40:02.0: Signaling PME through PCIe PME interrupt
<7>[ 18.345157] pcie_pme 0000:40:02.0:pcie01: service driver pcie_pme loaded
<6>[ 18.353188] pcieport 0000:80:02.0: Signaling PME through PCIe PME interrupt
<7>[ 18.361461] pcie_pme 0000:80:02.0:pcie01: service driver pcie_pme loaded
<6>[ 18.369496] pcieport 0000:80:03.0: Signaling PME through PCIe PME interrupt
<7>[ 18.377768] pcie_pme 0000:80:03.0:pcie01: service driver pcie_pme loaded
<6>[ 18.385804] pcieport 0000:c0:02.0: Signaling PME through PCIe PME interrupt
<7>[ 18.394083] pcie_pme 0000:c0:02.0:pcie01: service driver pcie_pme loaded
<6>[ 18.402123] pcieport 0000:c0:03.0: Signaling PME through PCIe PME interrupt
<7>[ 18.410397] pcie_pme 0000:c0:03.0:pcie01: service driver pcie_pme loaded
<4>[ 18.418539] ioapic: probe of 0000:00:05.4 failed with error -22
<4>[ 18.425893] ioapic: probe of 0000:40:05.4 failed with error -22
<4>[ 18.433116] ioapic: probe of 0000:80:05.4 failed with error -22
<4>[ 18.440420] ioapic: probe of 0000:c0:05.4 failed with error -22
<6>[ 18.447887] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
<6>[ 18.454880] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
<7>[ 18.462795] intel_idle: MWAIT substates: 0x21120
<7>[ 18.468463] intel_idle: v0.4 model 0x2D
<7>[ 18.473253] intel_idle: lapic_timer_reliable_states 0xffffffff
<6>[ 18.486430] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
<6>[ 18.495611] ACPI: Power Button [PWRF]
<6>[ 18.500820] ERST: Error Record Serialization Table (ERST) support is initialized.
<6>[ 18.510120] pstore: Registered erst as persistent store backend
<6>[ 18.517470] ghes_edac: This EDAC driver relies on BIOS to enumerate memory and get error reports.
<6>[ 18.537893] ghes_edac: Unfortunately, not all BIOSes reflect the memory layout correctly.
<6>[ 18.547943] ghes_edac: So, the end result of using this driver varies from vendor to vendor.
<6>[ 18.558278] ghes_edac: If you find incorrect reports, please contact your hardware vendor
<6>[ 18.568316] ghes_edac: to correct its BIOS.
<6>[ 18.573487] ghes_edac: This system has 48 DIMM sockets.
<6>[ 18.584050] EDAC MC0: Giving out device to module ghes_edac.c controller ghes_edac: DEV ghes (INTERRUPT)
<6>[ 18.595934] EDAC MC1: Giving out device to module ghes_edac.c controller ghes_edac: DEV ghes (INTERRUPT)
<6>[ 18.607934] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
<6>[ 18.617208] EINJ: Error INJection is initialized.
<6>[ 18.623614] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
<6>[ 18.651823] 00:07: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
<6>[ 18.681669] 00:08: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
<6>[ 18.692853] Non-volatile memory driver v1.3
<6>[ 18.705223] brd: module loaded
<6>[ 18.712034] loop: module loaded
<6>[ 18.716386] lkdtm: No crash points registered, enable through debugfs
<4>[ 18.724336] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20131218/utaddress-258)
<6>[ 18.743106] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
<6>[ 18.750847] tsc: Refined TSC clocksource calibration: 2693.509 MHz
<4>[ 18.762718] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20131218/utaddress-258)
<4>[ 18.781481] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000053f (\FBPC) (20131218/utaddress-258)
<6>[ 18.800229] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
<4>[ 18.812459] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20131218/utaddress-258)
<4>[ 18.831216] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000053f (\FBPC) (20131218/utaddress-258)
<4>[ 18.849953] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000052f (\_SI_.SIOR) (20131218/utaddress-258)
<6>[ 18.869185] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
<4>[ 18.881416] lpc_ich: Resource conflict(s) found affecting gpio_ich
<6>[ 18.889624] Loading iSCSI transport class v2.0-870.
<6>[ 18.897138] Adaptec aacraid driver 1.2-0[30200]-ms
<5>[ 18.903186] aic94xx: Adaptec aic94xx SAS/SATA driver version 1.0.3 loaded
<4>[ 18.911598] qla2xxx [0000:00:00.0]-0005: : QLogic Fibre Channel HBA Driver: 8.06.00.12-k.
<6>[ 18.921922] megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006)
<6>[ 18.931133] megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006)
<6>[ 18.939591] megasas: 06.700.06.00-rc1 Sat. Aug. 31 17:00:00 PDT 2013
<4>[ 18.947456] GDT-HA: Storage RAID Controller Driver. Version: 3.05
<6>[ 18.954879] RocketRAID 3xxx/4xxx Controller driver v1.8
<7>[ 18.961717] ahci 0000:00:1f.2: version 3.0
<7>[ 18.967030] IOAPIC[0]: Set routing entry (0-21 -> 0x63 -> IRQ 21 Mode:1 Active:1 Dest:0)
<7>[ 18.977067] ahci 0000:00:1f.2: irq 148 for MSI/MSI-X
<6>[ 18.998750] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
<6>[ 19.008760] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
<6>[ 19.061067] scsi0 : ahci
<6>[ 19.064895] scsi1 : ahci
<6>[ 19.068673] scsi2 : ahci
<6>[ 19.072475] scsi3 : ahci
<6>[ 19.076249] scsi4 : ahci
<6>[ 19.080026] scsi5 : ahci
<6>[ 19.083560] ata1: SATA max UDMA/133 abar m2048@0xd0f00000 port 0xd0f00100 irq 148
<6>[ 19.092781] ata2: SATA max UDMA/133 abar m2048@0xd0f00000 port 0xd0f00180 irq 148
<6>[ 19.101995] ata3: SATA max UDMA/133 abar m2048@0xd0f00000 port 0xd0f00200 irq 148
<6>[ 19.111199] ata4: SATA max UDMA/133 abar m2048@0xd0f00000 port 0xd0f00280 irq 148
<6>[ 19.120412] ata5: SATA max UDMA/133 abar m2048@0xd0f00000 port 0xd0f00300 irq 148
<6>[ 19.129618] ata6: SATA max UDMA/133 abar m2048@0xd0f00000 port 0xd0f00380 irq 148
<6>[ 19.140117] tun: Universal TUN/TAP device driver, 1.6
<6>[ 19.146260] tun: (C) 1999-2004 Max Krasnyansky <maxk@xxxxxxxxxxxx>
<6>[ 19.154210] pcnet32: pcnet32.c:v1.35 21.Apr.2008 tsbogend@xxxxxxxxxxxxxxxx
<6>[ 19.162677] Atheros(R) L2 Ethernet Driver - version 2.2.3
<6>[ 19.169220] Copyright (c) 2007 Atheros Corporation.
<6>[ 19.175867] dmfe: Davicom DM9xxx net driver, version 1.36.4 (2002-01-17)
<4>[ 19.183996] v1.01-e (2.4 port) Sep-11-2006 Donald Becker <becker@xxxxxxxxx>
<4>[ 19.183996] http://www.scyld.com/network/drivers.html
<6>[ 19.198991] uli526x: ULi M5261/M5263 net driver, version 0.9.3 (2005-7-29)
<6>[ 19.207392] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
<6>[ 19.214682] e100: Copyright(c) 1999-2006 Intel Corporation
<6>[ 19.221492] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
<6>[ 19.229855] e1000: Copyright (c) 1999-2006 Intel Corporation.
<6>[ 19.236985] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
<6>[ 19.243990] e1000e: Copyright(c) 1999 - 2013 Intel Corporation.
<6>[ 19.251375] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.0.5-k
<6>[ 19.259638] igb: Copyright (c) 2007-2013 Intel Corporation.
<6>[ 19.266535] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 3.19.1-k
<6>[ 19.276059] ixgbe: Copyright (c) 1999-2013 Intel Corporation.
<7>[ 19.283134] IOAPIC[1]: Set routing entry (1-16 -> 0x83 -> IRQ 40 Mode:1 Active:1 Dest:0)
<6>[ 19.458511] ata4: SATA link down (SStatus 0 SControl 300)
<6>[ 19.465047] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
<6>[ 19.472462] ata6: SATA link down (SStatus 0 SControl 300)
<6>[ 19.478972] ata5: SATA link down (SStatus 0 SControl 300)
<6>[ 19.485485] ata1: SATA link down (SStatus 0 SControl 300)
<6>[ 19.492011] ata2.00: ATAPI: TEAC DV-W28S-V, 1.0A, max UDMA/100
<6>[ 19.499315] ata3: SATA link down (SStatus 0 SControl 300)
<6>[ 19.510460] ata2.00: configured for UDMA/100
<5>[ 19.520420] scsi 1:0:0:0: CD-ROM TEAC DV-W28S-V 1.0A PQ: 0 ANSI: 5
<5>[ 19.531335] scsi 1:0:0:0: Attached scsi generic sg0 type 5
<7>[ 19.705529] ixgbe 0000:06:00.0: irq 149 for MSI/MSI-X
<7>[ 19.711666] ixgbe 0000:06:00.0: irq 150 for MSI/MSI-X
<7>[ 19.717801] ixgbe 0000:06:00.0: irq 151 for MSI/MSI-X
<7>[ 19.723931] ixgbe 0000:06:00.0: irq 152 for MSI/MSI-X
<7>[ 19.730061] ixgbe 0000:06:00.0: irq 153 for MSI/MSI-X
<7>[ 19.736180] ixgbe 0000:06:00.0: irq 154 for MSI/MSI-X
<7>[ 19.742311] ixgbe 0000:06:00.0: irq 155 for MSI/MSI-X
<7>[ 19.748439] ixgbe 0000:06:00.0: irq 156 for MSI/MSI-X
<7>[ 19.754750] ixgbe 0000:06:00.0: irq 157 for MSI/MSI-X
<6>[ 19.754790] Switched to clocksource tsc
<7>[ 19.765663] ixgbe 0000:06:00.0: irq 158 for MSI/MSI-X
<7>[ 19.771799] ixgbe 0000:06:00.0: irq 159 for MSI/MSI-X
<7>[ 19.777926] ixgbe 0000:06:00.0: irq 160 for MSI/MSI-X
<7>[ 19.784055] ixgbe 0000:06:00.0: irq 161 for MSI/MSI-X
<7>[ 19.790201] ixgbe 0000:06:00.0: irq 162 for MSI/MSI-X
<7>[ 19.796339] ixgbe 0000:06:00.0: irq 163 for MSI/MSI-X
<7>[ 19.802477] ixgbe 0000:06:00.0: irq 164 for MSI/MSI-X
<7>[ 19.808613] ixgbe 0000:06:00.0: irq 165 for MSI/MSI-X
<7>[ 19.814750] ixgbe 0000:06:00.0: irq 166 for MSI/MSI-X
<7>[ 19.820888] ixgbe 0000:06:00.0: irq 167 for MSI/MSI-X
<7>[ 19.827038] ixgbe 0000:06:00.0: irq 168 for MSI/MSI-X
<7>[ 19.833177] ixgbe 0000:06:00.0: irq 169 for MSI/MSI-X
<7>[ 19.839312] ixgbe 0000:06:00.0: irq 170 for MSI/MSI-X
<7>[ 19.845449] ixgbe 0000:06:00.0: irq 171 for MSI/MSI-X
<7>[ 19.851591] ixgbe 0000:06:00.0: irq 172 for MSI/MSI-X
<7>[ 19.857719] ixgbe 0000:06:00.0: irq 173 for MSI/MSI-X
<7>[ 19.863857] ixgbe 0000:06:00.0: irq 174 for MSI/MSI-X
<7>[ 19.870013] ixgbe 0000:06:00.0: irq 175 for MSI/MSI-X
<7>[ 19.876149] ixgbe 0000:06:00.0: irq 176 for MSI/MSI-X
<7>[ 19.882288] ixgbe 0000:06:00.0: irq 177 for MSI/MSI-X
<7>[ 19.888430] ixgbe 0000:06:00.0: irq 178 for MSI/MSI-X
<7>[ 19.894568] ixgbe 0000:06:00.0: irq 179 for MSI/MSI-X
<7>[ 19.900707] ixgbe 0000:06:00.0: irq 180 for MSI/MSI-X
<7>[ 19.906848] ixgbe 0000:06:00.0: irq 181 for MSI/MSI-X
<7>[ 19.912984] ixgbe 0000:06:00.0: irq 182 for MSI/MSI-X
<7>[ 19.919128] ixgbe 0000:06:00.0: irq 183 for MSI/MSI-X
<7>[ 19.925268] ixgbe 0000:06:00.0: irq 184 for MSI/MSI-X
<7>[ 19.931408] ixgbe 0000:06:00.0: irq 185 for MSI/MSI-X
<7>[ 19.937545] ixgbe 0000:06:00.0: irq 186 for MSI/MSI-X
<7>[ 19.943681] ixgbe 0000:06:00.0: irq 187 for MSI/MSI-X
<7>[ 19.949823] ixgbe 0000:06:00.0: irq 188 for MSI/MSI-X
<7>[ 19.955962] ixgbe 0000:06:00.0: irq 189 for MSI/MSI-X
<7>[ 19.962100] ixgbe 0000:06:00.0: irq 190 for MSI/MSI-X
<7>[ 19.968249] ixgbe 0000:06:00.0: irq 191 for MSI/MSI-X
<7>[ 19.974378] ixgbe 0000:06:00.0: irq 192 for MSI/MSI-X
<7>[ 19.980507] ixgbe 0000:06:00.0: irq 193 for MSI/MSI-X
<7>[ 19.986643] ixgbe 0000:06:00.0: irq 194 for MSI/MSI-X
<7>[ 19.992784] ixgbe 0000:06:00.0: irq 195 for MSI/MSI-X
<7>[ 19.998915] ixgbe 0000:06:00.0: irq 196 for MSI/MSI-X
<7>[ 20.005054] ixgbe 0000:06:00.0: irq 197 for MSI/MSI-X
<7>[ 20.011194] ixgbe 0000:06:00.0: irq 198 for MSI/MSI-X
<7>[ 20.017325] ixgbe 0000:06:00.0: irq 199 for MSI/MSI-X
<7>[ 20.023460] ixgbe 0000:06:00.0: irq 200 for MSI/MSI-X
<7>[ 20.029603] ixgbe 0000:06:00.0: irq 201 for MSI/MSI-X
<7>[ 20.035741] ixgbe 0000:06:00.0: irq 202 for MSI/MSI-X
<7>[ 20.041880] ixgbe 0000:06:00.0: irq 203 for MSI/MSI-X
<7>[ 20.048015] ixgbe 0000:06:00.0: irq 204 for MSI/MSI-X
<7>[ 20.054146] ixgbe 0000:06:00.0: irq 205 for MSI/MSI-X
<7>[ 20.060281] ixgbe 0000:06:00.0: irq 206 for MSI/MSI-X
<7>[ 20.075735] ixgbe 0000:06:00.0: irq 207 for MSI/MSI-X
<7>[ 20.081874] ixgbe 0000:06:00.0: irq 208 for MSI/MSI-X
<7>[ 20.088011] ixgbe 0000:06:00.0: irq 209 for MSI/MSI-X
<7>[ 20.094158] ixgbe 0000:06:00.0: irq 210 for MSI/MSI-X
<7>[ 20.100296] ixgbe 0000:06:00.0: irq 211 for MSI/MSI-X
<7>[ 20.106431] ixgbe 0000:06:00.0: irq 212 for MSI/MSI-X
<6>[ 20.112861] ixgbe 0000:06:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
<6>[ 20.183463] ixgbe 0000:06:00.0: PCI Express bandwidth of 32GT/s available
<6>[ 20.191534] ixgbe 0000:06:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
<6>[ 20.240144] ixgbe 0000:06:00.0: MAC: 3, PHY: 3, PBA No: 000000-000
<6>[ 20.247539] ixgbe 0000:06:00.0: 00:1e:67:2b:58:92
<6>[ 20.406196] ixgbe 0000:06:00.0: Intel(R) 10 Gigabit Network Connection
<7>[ 20.414237] IOAPIC[1]: Set routing entry (1-17 -> 0xd8 -> IRQ 41 Mode:1 Active:1 Dest:0)
<7>[ 20.835415] ixgbe 0000:06:00.1: irq 213 for MSI/MSI-X
<7>[ 20.841560] ixgbe 0000:06:00.1: irq 214 for MSI/MSI-X
<7>[ 20.847686] ixgbe 0000:06:00.1: irq 215 for MSI/MSI-X
<7>[ 20.853813] ixgbe 0000:06:00.1: irq 216 for MSI/MSI-X
<7>[ 20.859941] ixgbe 0000:06:00.1: irq 217 for MSI/MSI-X
<7>[ 20.866065] ixgbe 0000:06:00.1: irq 218 for MSI/MSI-X
<7>[ 20.872194] ixgbe 0000:06:00.1: irq 219 for MSI/MSI-X
<7>[ 20.878321] ixgbe 0000:06:00.1: irq 220 for MSI/MSI-X
<7>[ 20.884460] ixgbe 0000:06:00.1: irq 221 for MSI/MSI-X
<7>[ 20.890590] ixgbe 0000:06:00.1: irq 222 for MSI/MSI-X
<7>[ 20.896718] ixgbe 0000:06:00.1: irq 223 for MSI/MSI-X
<7>[ 20.902853] ixgbe 0000:06:00.1: irq 224 for MSI/MSI-X
<7>[ 20.908982] ixgbe 0000:06:00.1: irq 225 for MSI/MSI-X
<7>[ 20.915115] ixgbe 0000:06:00.1: irq 226 for MSI/MSI-X
<7>[ 20.921250] ixgbe 0000:06:00.1: irq 227 for MSI/MSI-X
<7>[ 20.927386] ixgbe 0000:06:00.1: irq 228 for MSI/MSI-X
<7>[ 20.933514] ixgbe 0000:06:00.1: irq 229 for MSI/MSI-X
<7>[ 20.939638] ixgbe 0000:06:00.1: irq 230 for MSI/MSI-X
<7>[ 20.945763] ixgbe 0000:06:00.1: irq 231 for MSI/MSI-X
<7>[ 20.951897] ixgbe 0000:06:00.1: irq 232 for MSI/MSI-X
<7>[ 20.958024] ixgbe 0000:06:00.1: irq 233 for MSI/MSI-X
<7>[ 20.964151] ixgbe 0000:06:00.1: irq 234 for MSI/MSI-X
<7>[ 20.970281] ixgbe 0000:06:00.1: irq 235 for MSI/MSI-X
<7>[ 20.976406] ixgbe 0000:06:00.1: irq 236 for MSI/MSI-X
<7>[ 20.982559] ixgbe 0000:06:00.1: irq 237 for MSI/MSI-X
<7>[ 20.988687] ixgbe 0000:06:00.1: irq 238 for MSI/MSI-X
<7>[ 20.994811] ixgbe 0000:06:00.1: irq 239 for MSI/MSI-X
<7>[ 21.000942] ixgbe 0000:06:00.1: irq 240 for MSI/MSI-X
<7>[ 21.007069] ixgbe 0000:06:00.1: irq 241 for MSI/MSI-X
<7>[ 21.013194] ixgbe 0000:06:00.1: irq 242 for MSI/MSI-X
<7>[ 21.019328] ixgbe 0000:06:00.1: irq 243 for MSI/MSI-X
<7>[ 21.025478] ixgbe 0000:06:00.1: irq 244 for MSI/MSI-X
<7>[ 21.031605] ixgbe 0000:06:00.1: irq 245 for MSI/MSI-X
<7>[ 21.037734] ixgbe 0000:06:00.1: irq 246 for MSI/MSI-X
<7>[ 21.043861] ixgbe 0000:06:00.1: irq 247 for MSI/MSI-X
<7>[ 21.049989] ixgbe 0000:06:00.1: irq 248 for MSI/MSI-X
<7>[ 21.056117] ixgbe 0000:06:00.1: irq 249 for MSI/MSI-X
<7>[ 21.062248] ixgbe 0000:06:00.1: irq 250 for MSI/MSI-X
<7>[ 21.068373] ixgbe 0000:06:00.1: irq 251 for MSI/MSI-X
<7>[ 21.074500] ixgbe 0000:06:00.1: irq 252 for MSI/MSI-X
<7>[ 21.080648] ixgbe 0000:06:00.1: irq 253 for MSI/MSI-X
<7>[ 21.086778] ixgbe 0000:06:00.1: irq 254 for MSI/MSI-X
<7>[ 21.092906] ixgbe 0000:06:00.1: irq 255 for MSI/MSI-X
<7>[ 21.099035] ixgbe 0000:06:00.1: irq 256 for MSI/MSI-X
<7>[ 21.105162] ixgbe 0000:06:00.1: irq 257 for MSI/MSI-X
<7>[ 21.111289] ixgbe 0000:06:00.1: irq 258 for MSI/MSI-X
<7>[ 21.117414] ixgbe 0000:06:00.1: irq 259 for MSI/MSI-X
<7>[ 21.123542] ixgbe 0000:06:00.1: irq 260 for MSI/MSI-X
<7>[ 21.129672] ixgbe 0000:06:00.1: irq 261 for MSI/MSI-X
<7>[ 21.135797] ixgbe 0000:06:00.1: irq 262 for MSI/MSI-X
<7>[ 21.141925] ixgbe 0000:06:00.1: irq 263 for MSI/MSI-X
<7>[ 21.148053] ixgbe 0000:06:00.1: irq 264 for MSI/MSI-X
<7>[ 21.154180] ixgbe 0000:06:00.1: irq 265 for MSI/MSI-X
<7>[ 21.160314] ixgbe 0000:06:00.1: irq 266 for MSI/MSI-X
<7>[ 21.166444] ixgbe 0000:06:00.1: irq 267 for MSI/MSI-X
<7>[ 21.172571] ixgbe 0000:06:00.1: irq 268 for MSI/MSI-X
<7>[ 21.178713] ixgbe 0000:06:00.1: irq 269 for MSI/MSI-X
<7>[ 21.184843] ixgbe 0000:06:00.1: irq 270 for MSI/MSI-X
<7>[ 21.190974] ixgbe 0000:06:00.1: irq 271 for MSI/MSI-X
<7>[ 21.197102] ixgbe 0000:06:00.1: irq 272 for MSI/MSI-X
<7>[ 21.203230] ixgbe 0000:06:00.1: irq 273 for MSI/MSI-X
<7>[ 21.209361] ixgbe 0000:06:00.1: irq 274 for MSI/MSI-X
<7>[ 21.215490] ixgbe 0000:06:00.1: irq 275 for MSI/MSI-X
<7>[ 21.221623] ixgbe 0000:06:00.1: irq 276 for MSI/MSI-X
<6>[ 21.228017] ixgbe 0000:06:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
<6>[ 21.298462] ixgbe 0000:06:00.1: PCI Express bandwidth of 32GT/s available
<6>[ 21.306539] ixgbe 0000:06:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
<6>[ 21.355099] ixgbe 0000:06:00.1: MAC: 3, PHY: 3, PBA No: 000000-000
<6>[ 21.362493] ixgbe 0000:06:00.1: 00:1e:67:2b:58:93
<6>[ 21.519177] ixgbe 0000:06:00.1: Intel(R) 10 Gigabit Network Connection
<6>[ 21.527426] ixgb: Intel(R) PRO/10GbE Network Driver - version 1.0.135-k2-NAPI
<6>[ 21.535920] ixgb: Copyright (c) 1999-2008 Intel Corporation.
<6>[ 21.543395] sky2: driver version 1.30
<6>[ 21.550549] usbcore: registered new interface driver catc
<6>[ 21.557236] usbcore: registered new interface driver kaweth
<6>[ 21.563963] pegasus: v0.9.3 (2013/04/25), Pegasus/Pegasus II USB Ethernet driver
<6>[ 21.573282] usbcore: registered new interface driver pegasus
<6>[ 21.580324] usbcore: registered new interface driver rtl8150
<6>[ 21.587345] usbcore: registered new interface driver asix
<6>[ 21.594109] usbcore: registered new interface driver ax88179_178a
<6>[ 21.601701] usbcore: registered new interface driver cdc_ether
<6>[ 21.608970] usbcore: registered new interface driver r815x
<6>[ 21.615891] usbcore: registered new interface driver cdc_eem
<6>[ 21.622972] usbcore: registered new interface driver dm9601
<6>[ 21.630002] usbcore: registered new interface driver CoreChips
<6>[ 21.637256] usbcore: registered new interface driver smsc75xx
<6>[ 21.644431] usbcore: registered new interface driver smsc95xx
<6>[ 21.651564] usbcore: registered new interface driver gl620a
<6>[ 21.658514] usbcore: registered new interface driver net1080
<6>[ 21.665548] usbcore: registered new interface driver plusb
<6>[ 21.672362] usbcore: registered new interface driver rndis_host
<6>[ 21.679722] usbcore: registered new interface driver cdc_subset
<6>[ 21.687030] usbcore: registered new interface driver zaurus
<6>[ 21.693975] usbcore: registered new interface driver MOSCHIP usb-ethernet driver
<6>[ 21.703340] usbcore: registered new interface driver int51x1
<6>[ 21.710388] usbcore: registered new interface driver ipheth
<6>[ 21.717357] usbcore: registered new interface driver sierra_net
<6>[ 21.724720] usbcore: registered new interface driver cdc_ncm
<6>[ 21.731543] Fusion MPT base driver 3.04.20
<6>[ 21.736614] Copyright (c) 1999-2008 LSI Corporation
<6>[ 21.742574] Fusion MPT SPI Host driver 3.04.20
<6>[ 21.748332] Fusion MPT FC Host driver 3.04.20
<6>[ 21.754009] Fusion MPT SAS Host driver 3.04.20
<6>[ 21.759774] Fusion MPT misc device (ioctl) driver 3.04.20
<6>[ 21.766687] mptctl: Registered with Fusion MPT base driver
<6>[ 21.773317] mptctl: /dev/mptctl @ (major,minor=10,220)
<6>[ 21.780629] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
<6>[ 21.788455] ehci-pci: EHCI PCI platform driver
<6>[ 21.794767] ehci-pci 0000:00:1a.0: EHCI Host Controller
<6>[ 21.801486] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
<6>[ 21.810651] ehci-pci 0000:00:1a.0: debug port 2
<7>[ 21.820107] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
<6>[ 21.828198] ehci-pci 0000:00:1a.0: irq 22, io mem 0xd0f20000
<6>[ 21.845436] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
<6>[ 21.853213] hub 1-0:1.0: USB hub found
<6>[ 21.857904] hub 1-0:1.0: 2 ports detected
<6>[ 21.863680] ehci-pci 0000:00:1d.0: EHCI Host Controller
<6>[ 21.870473] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
<6>[ 21.879620] ehci-pci 0000:00:1d.0: debug port 2
<7>[ 21.889069] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
<6>[ 21.897173] ehci-pci 0000:00:1d.0: irq 20, io mem 0xd0f10000
<6>[ 21.913423] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
<6>[ 21.921229] hub 2-0:1.0: USB hub found
<6>[ 21.925931] hub 2-0:1.0: 2 ports detected
<6>[ 21.931610] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
<6>[ 21.939061] ohci-pci: OHCI PCI platform driver
<6>[ 21.944874] uhci_hcd: USB Universal Host Controller Interface driver
<6>[ 21.953117] usbcore: registered new interface driver usb-storage
<6>[ 21.960603] usbcore: registered new interface driver ums-alauda
<6>[ 21.967977] usbcore: registered new interface driver ums-datafab
<6>[ 21.975368] usbcore: registered new interface driver ums-freecom
<6>[ 21.982807] usbcore: registered new interface driver ums-isd200
<6>[ 21.990168] usbcore: registered new interface driver ums-jumpshot
<6>[ 21.997725] usbcore: registered new interface driver ums-sddr09
<6>[ 22.005025] usbcore: registered new interface driver ums-sddr55
<6>[ 22.012391] usbcore: registered new interface driver ums-usbat
<6>[ 22.019634] usbcore: registered new interface driver usbtest
<6>[ 22.027127] i8042: PNP: No PS/2 controller found. Probing ports directly.
<6>[ 22.173478] usb 1-1: new high-speed USB device number 2 using ehci-pci
<6>[ 22.314599] hub 1-1:1.0: USB hub found
<6>[ 22.319333] hub 1-1:1.0: 6 ports detected
<6>[ 22.437147] usb 2-1: new high-speed USB device number 2 using ehci-pci
<3>[ 22.546565] i8042: Can't read CTR while initializing i8042
<4>[ 22.553191] i8042: probe of i8042 failed with error -5
<6>[ 22.560446] mousedev: PS/2 mouse device common for all mice
<6>[ 22.568178] rtc_cmos 00:05: RTC can wake from S4
<6>[ 22.574191] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
<6>[ 22.574450] hub 2-1:1.0: USB hub found
<6>[ 22.574640] hub 2-1:1.0: 8 ports detected
<6>[ 22.591165] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
<6>[ 22.601085] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
<6>[ 22.607882] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
<6>[ 22.617886] iTCO_vendor_support: vendor-support=0
<6>[ 22.624480] softdog: Software Watchdog Timer: 0.08 initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
<6>[ 22.637734] md: linear personality registered for level -1
<6>[ 22.644356] md: raid0 personality registered for level 0
<6>[ 22.645243] usb 1-1.5: new full-speed USB device number 3 using ehci-pci
<6>[ 22.668345] md: raid1 personality registered for level 1
<6>[ 22.674798] md: raid10 personality registered for level 10
<6>[ 22.681761] md: raid6 personality registered for level 6
<6>[ 22.688202] md: raid5 personality registered for level 5
<6>[ 22.694644] md: raid4 personality registered for level 4
<6>[ 22.701056] md: multipath personality registered for level -4
<6>[ 22.707967] md: faulty personality registered for level -5
<6>[ 22.716690] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@xxxxxxxxxx
<6>[ 22.727903] device-mapper: multipath: version 1.6.0 loaded
<6>[ 22.734568] device-mapper: multipath round-robin: version 1.0.0 loaded
<6>[ 22.738876] hub 1-1.5:1.0: USB hub found
<6>[ 22.739070] hub 1-1.5:1.0: 4 ports detected
<6>[ 22.752433] device-mapper: cache-policy-mq: version 1.2.0 loaded
<6>[ 22.759636] device-mapper: cache cleaner: version 1.0.0 loaded
<6>[ 22.767022] Intel P-state driver initializing.
<6>[ 22.772541] Intel pstate controlling: cpu 0
<6>[ 22.777748] Intel pstate controlling: cpu 1
<6>[ 22.782951] Intel pstate controlling: cpu 2
<6>[ 22.788146] Intel pstate controlling: cpu 3
<6>[ 22.793328] Intel pstate controlling: cpu 4
<6>[ 22.798522] Intel pstate controlling: cpu 5
<6>[ 22.803722] Intel pstate controlling: cpu 6
<6>[ 22.808925] Intel pstate controlling: cpu 7
<6>[ 22.814122] Intel pstate controlling: cpu 8
<6>[ 22.819292] Intel pstate controlling: cpu 9
<6>[ 22.824476] Intel pstate controlling: cpu 10
<6>[ 22.829759] Intel pstate controlling: cpu 11
<6>[ 22.835026] Intel pstate controlling: cpu 12
<6>[ 22.840331] Intel pstate controlling: cpu 13
<6>[ 22.845151] usb 2-1.4: new full-speed USB device number 3 using ehci-pci
<6>[ 22.853554] Intel pstate controlling: cpu 14
<6>[ 22.858829] Intel pstate controlling: cpu 15
<6>[ 22.864131] Intel pstate controlling: cpu 16
<6>[ 22.869419] Intel pstate controlling: cpu 17
<6>[ 22.874723] Intel pstate controlling: cpu 18
<6>[ 22.880012] Intel pstate controlling: cpu 19
<6>[ 22.885304] Intel pstate controlling: cpu 20
<6>[ 22.890609] Intel pstate controlling: cpu 21
<6>[ 22.895908] Intel pstate controlling: cpu 22
<6>[ 22.901204] Intel pstate controlling: cpu 23
<6>[ 22.906492] Intel pstate controlling: cpu 24
<6>[ 22.911760] Intel pstate controlling: cpu 25
<6>[ 22.917013] Intel pstate controlling: cpu 26
<6>[ 22.922307] Intel pstate controlling: cpu 27
<6>[ 22.927608] Intel pstate controlling: cpu 28
<6>[ 22.932890] Intel pstate controlling: cpu 29
<6>[ 22.938136] Intel pstate controlling: cpu 30
<6>[ 22.943446] Intel pstate controlling: cpu 31
<6>[ 22.948723] Intel pstate controlling: cpu 32
<6>[ 22.954007] Intel pstate controlling: cpu 33
<6>[ 22.959281] Intel pstate controlling: cpu 34
<6>[ 22.964556] Intel pstate controlling: cpu 35
<6>[ 22.969878] Intel pstate controlling: cpu 36
<6>[ 22.975174] Intel pstate controlling: cpu 37
<6>[ 22.980467] Intel pstate controlling: cpu 38
<6>[ 22.985787] Intel pstate controlling: cpu 39
<6>[ 22.991079] Intel pstate controlling: cpu 40
<6>[ 22.996365] Intel pstate controlling: cpu 41
<6>[ 23.001649] Intel pstate controlling: cpu 42
<6>[ 23.006918] Intel pstate controlling: cpu 43
<6>[ 23.009076] usb 1-1.5.1: new low-speed USB device number 4 using ehci-pci
<6>[ 23.020269] Intel pstate controlling: cpu 44
<6>[ 23.025536] Intel pstate controlling: cpu 45
<6>[ 23.030830] Intel pstate controlling: cpu 46
<6>[ 23.036098] Intel pstate controlling: cpu 47
<6>[ 23.041380] Intel pstate controlling: cpu 48
<6>[ 23.046680] Intel pstate controlling: cpu 49
<6>[ 23.051973] Intel pstate controlling: cpu 50
<6>[ 23.057266] Intel pstate controlling: cpu 51
<6>[ 23.062588] Intel pstate controlling: cpu 52
<6>[ 23.067872] Intel pstate controlling: cpu 53
<6>[ 23.073162] Intel pstate controlling: cpu 54
<6>[ 23.078477] Intel pstate controlling: cpu 55
<6>[ 23.083752] Intel pstate controlling: cpu 56
<6>[ 23.089047] Intel pstate controlling: cpu 57
<6>[ 23.094360] Intel pstate controlling: cpu 58
<6>[ 23.099643] Intel pstate controlling: cpu 59
<6>[ 23.104923] Intel pstate controlling: cpu 60
<6>[ 23.110215] Intel pstate controlling: cpu 61
<6>[ 23.115533] Intel pstate controlling: cpu 62
<6>[ 23.120836] Intel pstate controlling: cpu 63
<6>[ 23.126916] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
<6>[ 23.140691] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.0/0003:046B:FF10.0001/input/input1
<6>[ 23.158570] hid-generic 0003:046B:FF10.0001: input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1d.0-1.4/input0
<6>[ 23.177653] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.1/0003:046B:FF10.0002/input/input2
<6>[ 23.195977] hid-generic 0003:046B:FF10.0002: input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1d.0-1.4/input1
<6>[ 23.215620] input: ATEN International Co. Ltd CS1716A V1.0.098 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:0557:2261.0003/input/input3
<6>[ 23.233884] hid-generic 0003:0557:2261.0003: input: USB HID v1.00 Keyboard [ATEN International Co. Ltd CS1716A V1.0.098] on usb-0000:00:1a.0-1.5.1/input0
<6>[ 23.270091] input: ATEN International Co. Ltd CS1716A V1.0.098 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:0557:2261.0004/input/input4
<6>[ 23.288387] hid-generic 0003:0557:2261.0004: input: USB HID v1.00 Device [ATEN International Co. Ltd CS1716A V1.0.098] on usb-0000:00:1a.0-1.5.1/input1
<6>[ 23.321231] input: ATEN International Co. Ltd CS1716A V1.0.098 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.2/0003:0557:2261.0005/input/input5
<6>[ 23.339979] hid-generic 0003:0557:2261.0005: input: USB HID v1.10 Mouse [ATEN International Co. Ltd CS1716A V1.0.098] on usb-0000:00:1a.0-1.5.1/input2
<6>[ 23.356357] usbcore: registered new interface driver usbhid
<6>[ 23.363102] usbhid: USB HID core driver
<6>[ 23.368761] TCP: bic registered
<6>[ 23.372756] Initializing XFRM netlink socket
<6>[ 23.379353] NET: Registered protocol family 10
<6>[ 23.385724] sit: IPv6 over IPv4 tunneling driver
<6>[ 23.392560] NET: Registered protocol family 17
<6>[ 23.398083] 8021q: 802.1Q VLAN Support v1.8
<6>[ 23.405653] DCCP: Activated CCID 2 (TCP-like)
<6>[ 23.411041] DCCP: Activated CCID 3 (TCP-Friendly Rate Control)
<6>[ 23.419987] sctp: Hash tables configured (established 65536 bind 65536)
<6>[ 23.428335] tipc: Activated (version 2.0.0)
<6>[ 23.433651] NET: Registered protocol family 30
<6>[ 23.439646] tipc: Started in single node mode
<5>[ 23.445049] Key type dns_resolver registered
<7>[ 23.460551]
<7>[ 23.460551] printing PIC contents
<7>[ 23.466813] ... PIC IMR: ffff
<7>[ 23.470707] ... PIC IRR: 0c20
<7>[ 23.474628] ... PIC ISR: 0000
<7>[ 23.478545] ... PIC ELCR: 0e20
<7>[ 23.482527] printing local APIC contents on CPU#0/0:
<6>[ 23.488538] ... APIC ID: 00000000 (0)
<6>[ 23.493572] ... APIC VERSION: 01060015
<7>[ 23.498223] ... APIC TASKPRI: 00000000 (00)
<7>[ 23.503345] ... APIC PROCPRI: 00000000
<7>[ 23.507995] ... APIC LDR: 01000000
<7>[ 23.512251] ... APIC DFR: ffffffff
<7>[ 23.516500] ... APIC SPIV: 000001ff
<7>[ 23.520855] ... APIC ISR field:
<4>[ 23.524820] 0000000000000000000000000000000000000000000000000000000000000000
<7>[ 23.533842] ... APIC TMR field:
<4>[ 23.537805] 0000000000000000000200020000000000000000000000000000000000000000
<7>[ 23.546829] ... APIC IRR field:
<4>[ 23.550791] 0000000000000000000000000000000000000000000000000000000000000000
<7>[ 23.559831] ... APIC ESR: 00000000
<7>[ 23.564081] ... APIC ICR: 000000fd
<7>[ 23.568341] ... APIC ICR2: 23000000
<7>[ 23.572699] ... APIC LVTT: 000400ef
<7>[ 23.577048] ... APIC LVTPC: 00000400
<7>[ 23.581498] ... APIC LVT0: 00010700
<7>[ 23.585850] ... APIC LVT1: 00000400
<7>[ 23.590199] ... APIC LVTERR: 000000fe
<7>[ 23.594746] ... APIC TMICT: 00000000
<7>[ 23.599193] ... APIC TMCCT: 00000000
<7>[ 23.603638] ... APIC TDCR: 00000000
<4>[ 23.607985]
<7>[ 23.610114] number of MP IRQ sources: 15.
<7>[ 23.615100] number of IO-APIC #0 registers: 24.
<7>[ 23.620632] number of IO-APIC #1 registers: 24.
<7>[ 23.626179] number of IO-APIC #2 registers: 24.
<7>[ 23.631714] number of IO-APIC #3 registers: 24.
<7>[ 23.637259] number of IO-APIC #4 registers: 24.
<6>[ 23.642804] testing the IO APIC.......................
<7>[ 23.649034] IO APIC #0......
<7>[ 23.652716] .... register #00: 00000000
<7>[ 23.657464] ....... : physical APIC id: 00
<7>[ 23.662808] ....... : Delivery Type: 0
<7>[ 23.667765] ....... : LTS : 0
<7>[ 23.672723] .... register #01: 00170020
<7>[ 23.677489] ....... : max redirection entries: 17
<7>[ 23.683616] ....... : PRQ implemented: 0
<7>[ 23.688868] ....... : IO APIC version: 20
<7>[ 23.694218] .... IRQ redirection table:
<4>[ 23.698987] 1 0 0 0 0 0 0 00
<4>[ 23.704530] 0 0 0 0 0 0 0 31
<4>[ 23.710060] 0 0 0 0 0 0 0 30
<4>[ 23.715605] 0 0 0 0 0 0 0 33
<4>[ 23.721157] 0 0 0 0 0 0 0 34
<4>[ 23.726704] 0 0 0 0 0 0 0 35
<4>[ 23.741628] 0 0 0 0 0 0 0 36
<4>[ 23.747173] 0 0 0 0 0 0 0 37
<4>[ 23.752713] 0 0 0 0 0 0 0 38
<4>[ 23.758258] 0 1 0 0 0 0 0 39
<4>[ 23.763803] 0 0 0 0 0 0 0 3A
<4>[ 23.769349] 0 0 0 0 0 0 0 3B
<4>[ 23.774893] 0 0 0 0 0 0 0 3C
<4>[ 23.780438] 0 0 0 0 0 0 0 3D
<4>[ 23.785983] 0 0 0 0 0 0 0 3E
<4>[ 23.791529] 0 0 0 0 0 0 0 3F
<4>[ 23.797075] 1 1 0 1 0 0 0 B1
<4>[ 23.802602] 1 0 0 0 0 0 0 00
<4>[ 23.808147] 1 0 0 0 0 0 0 00
<4>[ 23.813690] 1 1 0 1 0 0 0 D1
<4>[ 23.819225] 0 1 0 1 0 0 0 51
<4>[ 23.824771] 1 1 0 1 0 0 0 63
<4>[ 23.830313] 0 1 0 1 0 0 0 41
<4>[ 23.835842] 1 0 0 0 0 0 0 00
<7>[ 23.841387] IO APIC #1......
<7>[ 23.845081] .... register #00: 01000000
<7>[ 23.849838] ....... : physical APIC id: 01
<7>[ 23.855185] ....... : Delivery Type: 0
<7>[ 23.860145] ....... : LTS : 0
<7>[ 23.865106] .... register #01: 00170020
<7>[ 23.869874] ....... : max redirection entries: 17
<7>[ 23.876002] ....... : PRQ implemented: 0
<7>[ 23.881253] ....... : IO APIC version: 20
<7>[ 23.886601] .... register #02: 00000000
<7>[ 23.891369] ....... : arbitration: 00
<7>[ 23.896333] .... register #03: 00000001
<7>[ 23.901081] ....... : Boot DT : 1
<7>[ 23.905945] .... IRQ redirection table:
<4>[ 23.910710] 1 0 0 0 0 0 0 00
<4>[ 23.916251] 1 0 0 0 0 0 0 00
<4>[ 23.921797] 1 1 0 1 0 0 0 22
<4>[ 23.927339] 1 0 0 0 0 0 0 00
<4>[ 23.932872] 1 0 0 0 0 0 0 00
<4>[ 23.938421] 1 0 0 0 0 0 0 00
<4>[ 23.943960] 1 0 0 0 0 0 0 00
<4>[ 23.949495] 1 0 0 0 0 0 0 00
<4>[ 23.955041] 1 0 0 0 0 0 0 00
<4>[ 23.960585] 1 0 0 0 0 0 0 00
<4>[ 23.966128] 1 0 0 0 0 0 0 00
<4>[ 23.971671] 1 0 0 0 0 0 0 00
<4>[ 23.977215] 1 0 0 0 0 0 0 00
<4>[ 23.982759] 1 0 0 0 0 0 0 00
<4>[ 23.988306] 1 0 0 0 0 0 0 00
<4>[ 23.993849] 1 0 0 0 0 0 0 00
<4>[ 23.999391] 1 1 0 1 0 0 0 83
<4>[ 24.004933] 1 1 0 1 0 0 0 D8
<4>[ 24.010468] 1 0 0 0 0 0 0 00
<4>[ 24.016011] 1 0 0 0 0 0 0 00
<4>[ 24.021552] 1 0 0 0 0 0 0 00
<4>[ 24.027090] 1 0 0 0 0 0 0 00
<4>[ 24.032635] 1 0 0 0 0 0 0 00
<4>[ 24.038180] 1 1 0 1 0 0 0 61
<7>[ 24.043706] IO APIC #2......
<7>[ 24.047402] .... register #00: 02000000
<7>[ 24.052168] ....... : physical APIC id: 02
<7>[ 24.057516] ....... : Delivery Type: 0
<7>[ 24.062474] ....... : LTS : 0
<7>[ 24.067425] .... register #01: 00170020
<7>[ 24.072189] ....... : max redirection entries: 17
<7>[ 24.078299] ....... : PRQ implemented: 0
<7>[ 24.083551] ....... : IO APIC version: 20
<7>[ 24.088904] .... register #02: 00000000
<7>[ 24.093670] ....... : arbitration: 00
<7>[ 24.098627] .... register #03: 00000001
<7>[ 24.103391] ....... : Boot DT : 1
<7>[ 24.108238] .... IRQ redirection table:
<4>[ 24.113005] 1 0 0 0 0 0 0 00
<4>[ 24.118547] 1 0 0 0 0 0 0 00
<4>[ 24.124081] 1 0 0 0 0 0 0 00
<4>[ 24.129624] 1 0 0 0 0 0 0 00
<4>[ 24.135166] 1 0 0 0 0 0 0 00
<4>[ 24.140699] 1 0 0 0 0 0 0 00
<4>[ 24.146243] 1 0 0 0 0 0 0 00
<4>[ 24.151785] 1 0 0 0 0 0 0 00
<4>[ 24.157318] 1 0 0 0 0 0 0 00
<4>[ 24.162862] 1 0 0 0 0 0 0 00
<4>[ 24.168406] 1 0 0 0 0 0 0 00
<4>[ 24.173952] 1 0 0 0 0 0 0 00
<4>[ 24.179494] 1 0 0 0 0 0 0 00
<4>[ 24.185037] 1 0 0 0 0 0 0 00
<4>[ 24.190581] 1 0 0 0 0 0 0 00
<4>[ 24.196124] 1 0 0 0 0 0 0 00
<4>[ 24.201669] 1 0 0 0 0 0 0 00
<4>[ 24.207227] 1 0 0 0 0 0 0 00
<4>[ 24.212763] 1 0 0 0 0 0 0 00
<4>[ 24.218309] 1 0 0 0 0 0 0 00
<4>[ 24.223853] 1 0 0 0 0 0 0 00
<4>[ 24.229382] 1 0 0 0 0 0 0 00
<4>[ 24.234919] 1 0 0 0 0 0 0 00
<4>[ 24.240463] 1 1 0 1 0 0 0 42
<7>[ 24.246016] IO APIC #3......
<7>[ 24.249695] .... register #00: 03000000
<7>[ 24.254443] ....... : physical APIC id: 03
<7>[ 24.259801] ....... : Delivery Type: 0
<7>[ 24.264758] ....... : LTS : 0
<7>[ 24.269713] .... register #01: 00170020
<7>[ 24.274476] ....... : max redirection entries: 17
<7>[ 24.280600] ....... : PRQ implemented: 0
<7>[ 24.285827] ....... : IO APIC version: 20
<7>[ 24.291177] .... register #02: 00000000
<7>[ 24.295942] ....... : arbitration: 00
<7>[ 24.300884] .... register #03: 00000001
<7>[ 24.305634] ....... : Boot DT : 1
<7>[ 24.310491] .... IRQ redirection table:
<4>[ 24.315248] 1 0 0 0 0 0 0 00
<4>[ 24.320794] 1 0 0 0 0 0 0 00
<4>[ 24.326337] 1 0 0 0 0 0 0 00
<4>[ 24.331873] 1 0 0 0 0 0 0 00
<4>[ 24.337419] 1 0 0 0 0 0 0 00
<4>[ 24.342960] 1 0 0 0 0 0 0 00
<4>[ 24.348496] 1 0 0 0 0 0 0 00
<4>[ 24.354039] 1 0 0 0 0 0 0 00
<4>[ 24.359589] 1 0 0 0 0 0 0 00
<4>[ 24.365123] 1 0 0 0 0 0 0 00
<4>[ 24.370665] 1 0 0 0 0 0 0 00
<4>[ 24.376205] 1 0 0 0 0 0 0 00
<4>[ 24.381740] 1 0 0 0 0 0 0 00
<4>[ 24.387286] 1 0 0 0 0 0 0 00
<4>[ 24.392829] 1 0 0 0 0 0 0 00
<4>[ 24.398372] 1 0 0 0 0 0 0 00
<4>[ 24.403913] 1 0 0 0 0 0 0 00
<4>[ 24.409456] 1 0 0 0 0 0 0 00
<4>[ 24.414998] 1 0 0 0 0 0 0 00
<4>[ 24.420525] 1 0 0 0 0 0 0 00
<4>[ 24.426057] 1 0 0 0 0 0 0 00
<4>[ 24.431600] 1 0 0 0 0 0 0 00
<4>[ 24.437133] 1 0 0 0 0 0 0 00
<4>[ 24.442667] 1 1 0 1 0 0 0 72
<7>[ 24.448211] IO APIC #4......
<7>[ 24.451877] .... register #00: 04000000
<7>[ 24.456642] ....... : physical APIC id: 04
<7>[ 24.461991] ....... : Delivery Type: 0
<7>[ 24.466938] ....... : LTS : 0
<7>[ 24.471902] .... register #01: 00170020
<7>[ 24.476654] ....... : max redirection entries: 17
<7>[ 24.482780] ....... : PRQ implemented: 0
<7>[ 24.488020] ....... : IO APIC version: 20
<7>[ 24.493358] .... register #02: 00000000
<7>[ 24.498122] ....... : arbitration: 00
<7>[ 24.503077] .... register #03: 00000001
<7>[ 24.507835] ....... : Boot DT : 1
<7>[ 24.512695] .... IRQ redirection table:
<4>[ 24.517443] 1 0 0 0 0 0 0 00
<4>[ 24.522978] 1 0 0 0 0 0 0 00
<4>[ 24.528521] 1 0 0 0 0 0 0 00
<4>[ 24.534064] 1 0 0 0 0 0 0 00
<4>[ 24.539599] 1 0 0 0 0 0 0 00
<4>[ 24.545142] 1 0 0 0 0 0 0 00
<4>[ 24.550682] 1 0 0 0 0 0 0 00
<4>[ 24.556208] 1 0 0 0 0 0 0 00
<4>[ 24.561736] 1 0 0 0 0 0 0 00
<4>[ 24.567277] 1 0 0 0 0 0 0 00
<4>[ 24.572812] 1 0 0 0 0 0 0 00
<4>[ 24.578355] 1 0 0 0 0 0 0 00
<4>[ 24.583896] 1 0 0 0 0 0 0 00
<4>[ 24.589430] 1 0 0 0 0 0 0 00
<4>[ 24.594970] 1 0 0 0 0 0 0 00
<4>[ 24.600513] 1 0 0 0 0 0 0 00
<4>[ 24.606055] 1 0 0 0 0 0 0 00
<4>[ 24.611596] 1 0 0 0 0 0 0 00
<4>[ 24.617139] 1 0 0 0 0 0 0 00
<4>[ 24.622682] 1 0 0 0 0 0 0 00
<4>[ 24.628208] 1 0 0 0 0 0 0 00
<4>[ 24.633734] 1 0 0 0 0 0 0 00
<4>[ 24.639276] 1 0 0 0 0 0 0 00
<4>[ 24.644825] 1 1 0 1 0 0 0 A2
<7>[ 24.650364] IRQ to pin mappings:
<7>[ 24.654450] IRQ0 -> 0:2
<7>[ 24.657834] IRQ1 -> 0:1
<7>[ 24.661181] IRQ3 -> 0:3
<7>[ 24.664549] IRQ4 -> 0:4
<7>[ 24.667907] IRQ5 -> 0:5
<7>[ 24.671268] IRQ6 -> 0:6
<7>[ 24.674629] IRQ7 -> 0:7
<7>[ 24.677981] IRQ8 -> 0:8
<7>[ 24.681351] IRQ9 -> 0:9
<7>[ 24.693997] IRQ10 -> 0:10
<7>[ 24.697560] IRQ11 -> 0:11
<7>[ 24.701116] IRQ12 -> 0:12
<7>[ 24.704673] IRQ13 -> 0:13
<7>[ 24.708217] IRQ14 -> 0:14
<7>[ 24.711764] IRQ15 -> 0:15
<7>[ 24.715322] IRQ16 -> 0:16
<7>[ 24.718895] IRQ19 -> 0:19
<7>[ 24.722441] IRQ20 -> 0:20
<7>[ 24.725981] IRQ21 -> 0:21
<7>[ 24.729548] IRQ22 -> 0:22
<7>[ 24.733108] IRQ26 -> 1:2
<7>[ 24.736567] IRQ40 -> 1:16
<7>[ 24.740109] IRQ41 -> 1:17
<7>[ 24.743649] IRQ47 -> 1:23
<7>[ 24.747228] IRQ71 -> 2:23
<7>[ 24.750784] IRQ95 -> 3:23
<7>[ 24.754352] IRQ119 -> 4:23
<6>[ 24.758040] .................................... done.
<6>[ 24.764839] registered taskstats version 1
<6>[ 24.773406] rtc_cmos 00:05: setting system clock to 2014-03-27 15:56:32 UTC (1395935792)
<6>[ 24.783356] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
<6>[ 24.790558] EDD information not available.
<6>[ 25.073067] pps pps0: new PPS source ptp0
<6>[ 25.078059] ixgbe 0000:06:00.0: registered PHC device on eth0
<6>[ 25.489542] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
<6>[ 25.496569] 8021q: adding VLAN 0 to HW filter on device eth0
<6>[ 25.782925] pps pps1: new PPS source ptp1
<6>[ 25.787946] ixgbe 0000:06:00.1: registered PHC device on eth1
<6>[ 26.199006] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
<6>[ 26.206040] 8021q: adding VLAN 0 to HW filter on device eth1
<6>[ 28.350996] ixgbe 0000:06:00.0 eth0: NIC Link is Up 1 Gbps, Flow Control: RX/TX
<6>[ 28.362586] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
<5>[ 28.378470] Sending DHCP requests .., OK
<4>[ 31.744963] IP-Config: Got DHCP answer from 192.168.1.1, my address is 192.168.1.197
<6>[ 31.756058] ixgbe 0000:06:00.1: removed PHC on eth1
<6>[ 32.181947] IP-Config: Complete:
<6>[ 32.186098] device=eth0, hwaddr=00:1e:67:2b:58:92, ipaddr=192.168.1.197, mask=255.255.255.0, gw=192.168.1.1
<6>[ 32.198360] host=lkp-sbx04, domain=lkp.intel.com, nis-domain=(none)
<6>[ 32.206344] bootserver=192.168.1.1, rootserver=192.168.1.1, rootpath=
<6>[ 32.213929] nameserver0=192.168.1.1
<7>[ 32.219570] PM: Hibernation image not present or could not be loaded.
<6>[ 32.229445] Freeing unused kernel memory: 1424K (ffffffff82138000 - ffffffff8229c000)
<6>[ 32.239083] Write protecting the kernel read-only data: 16384k
<6>[ 32.247503] Freeing unused kernel memory: 196K (ffff8800019cf000 - ffff880001a00000)
<6>[ 32.263429] Freeing unused kernel memory: 2032K (ffff880001e04000 - ffff880002000000)
<6>[ 32.698990] ipmi message handler version 39.2
<6>[ 32.706584] IPMI System Interface driver.
<6>[ 32.711822] ipmi_si: probing via SMBIOS
<6>[ 32.711825] ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
<6>[ 32.711828] ipmi_si: Adding SMBIOS-specified kcs state machine
<6>[ 32.711833] ipmi_si: probing via SPMI
<6>[ 32.711835] ipmi_si: SPMI: io 0xca2 regsize 1 spacing 1 irq 0
<6>[ 32.711837] ipmi_si: Adding SPMI-specified kcs state machine duplicate interface
<6>[ 32.711840] ipmi_si: Trying SMBIOS-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
<6>[ 32.831900] microcode: CPU0 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.839173] microcode: CPU1 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.846662] microcode: CPU2 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.854154] microcode: CPU3 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.861669] microcode: CPU4 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.864531] ipmi_si ipmi_si.0: Found new BMC (man_id: 0x000157, prod_id: 0x005c, dev_id: 0x21)
<6>[ 32.864550] ipmi_si ipmi_si.0: IPMI kcs interface initialized
<6>[ 32.887050] microcode: CPU5 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.894300] microcode: CPU6 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.901517] microcode: CPU7 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.908753] microcode: CPU8 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.916046] microcode: CPU9 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.923394] microcode: CPU10 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.930730] microcode: CPU11 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.938066] microcode: CPU12 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.945393] microcode: CPU13 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.952723] microcode: CPU14 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.960158] microcode: CPU15 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.967552] microcode: CPU16 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.974955] microcode: CPU17 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.982369] microcode: CPU18 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.989765] microcode: CPU19 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 32.997148] microcode: CPU20 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.004532] microcode: CPU21 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.011950] microcode: CPU22 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.019373] microcode: CPU23 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.026793] microcode: CPU24 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.034186] microcode: CPU25 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.041577] microcode: CPU26 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.048956] microcode: CPU27 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.056310] microcode: CPU28 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.063683] microcode: CPU29 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.071045] microcode: CPU30 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.078433] microcode: CPU31 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.085791] microcode: CPU32 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.093100] microcode: CPU33 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.100440] microcode: CPU34 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.107761] microcode: CPU35 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.115092] microcode: CPU36 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.122413] microcode: CPU37 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.129739] microcode: CPU38 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.137063] microcode: CPU39 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.144397] microcode: CPU40 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.151793] microcode: CPU41 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.159214] microcode: CPU42 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.166608] microcode: CPU43 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.174032] microcode: CPU44 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.181400] microcode: CPU45 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.188814] microcode: CPU46 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.196172] microcode: CPU47 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.203577] microcode: CPU48 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.210992] microcode: CPU49 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.218393] microcode: CPU50 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.225816] microcode: CPU51 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.233203] microcode: CPU52 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.240601] microcode: CPU53 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.247998] microcode: CPU54 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.255412] microcode: CPU55 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.262813] microcode: CPU56 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.270225] microcode: CPU57 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.277603] microcode: CPU58 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.284984] microcode: CPU59 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.292343] microcode: CPU60 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.299726] microcode: CPU61 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.307114] microcode: CPU62 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.314483] microcode: CPU63 sig=0x206d7, pf=0x40, revision=0x70a
<6>[ 33.322113] microcode: Microcode Update Driver: v2.00 <tigran@xxxxxxxxxxxxxxxxxxxx>, Peter Oruba
<5>[ 34.518925] random: vgscan urandom read with 90 bits of entropy available