From: "Li, ZhenHua" <zhen-hual@hp.com>
To: "Li, Zhen-Hua" <zhen-hual@hp.com>
Cc: dwmw2@infradead.org, indou.takao@jp.fujitsu.com, bhe@redhat.com,
joro@8bytes.org, vgoyal@redhat.com, dyoung@redhat.com,
iommu@lists.linux-foundation.org, linux-kernel@vger.kernel.org,
linux-pci@vger.kernel.org, kexec@lists.infradead.org,
alex.williamson@redhat.com, ddutile@redhat.com,
ishii.hironobu@jp.fujitsu.com, bhelgaas@google.com,
doug.hatch@hp.com, jerry.hoemann@hp.com, tom.vaden@hp.com,
li.zhang6@hp.com, lisa.mitchell@hp.com,
billsumnerlinux@gmail.com, rwright@hp.com
Subject: Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
Date: Thu, 23 Apr 2015 16:35:16 +0800 [thread overview]
Message-ID: <5538AEC4.8030307@hp.com> (raw)
In-Reply-To: <1428655333-19504-1-git-send-email-zhen-hual@hp.com>
[-- Attachment #1: Type: text/plain, Size: 8550 bytes --]
Tested on HP Superdome X.
Result: Passed.
PCI list and log are attached.
superdomex_boot.log: Log for first kernel.
superdomex_dump.log: Log for kdump kernel.
lspci: log for command lspci
Thanks
Zhenhua
On 04/10/2015 04:42 PM, Li, Zhen-Hua wrote:
> This patchset is an update of Bill Sumner's patchset, implements a fix for:
> If a kernel boots with intel_iommu=on on a system that supports intel vt-d,
> when a panic happens, the kdump kernel will boot with these faults:
>
> dmar: DRHD: handling fault status reg 102
> dmar: DMAR:[DMA Read] Request device [01:00.0] fault addr fff80000
> DMAR:[fault reason 01] Present bit in root entry is clear
>
> dmar: DRHD: handling fault status reg 2
> dmar: INTR-REMAP: Request device [[61:00.0] fault index 42
> INTR-REMAP:[fault reason 34] Present field in the IRTE entry is clear
>
> On some system, the interrupt remapping fault will also happen even if the
> intel_iommu is not set to on, because the interrupt remapping will be enabled
> when x2apic is needed by the system.
>
> The cause of the DMA fault is described in Bill's original version, and the
> INTR-Remap fault is caused by a similar reason. In short, the initialization
> of vt-d drivers causes the in-flight DMA and interrupt requests get wrong
> response.
>
> To fix this problem, we modifies the behaviors of the intel vt-d in the
> crashdump kernel:
>
> For DMA Remapping:
> 1. To accept the vt-d hardware in an active state,
> 2. Do not disable and re-enable the translation, keep it enabled.
> 3. Use the old root entry table, do not rewrite the RTA register.
> 4. Malloc and use new context entry table, copy data from the old ones that
> used by the old kernel.
> 5. Keep using the old page tables before driver is loaded.
> 6. After device driver is loaded, when it issues the first dma_map command,
> free the dmar_domain structure for this device, and generate a new one, so
> that the device can be assigned a new and empty page table.
> 7. When a new context entry table is generated, we also save its address to
> the old root entry table.
>
> For Interrupt Remapping:
> 1. To accept the vt-d hardware in an active state,
> 2. Do not disable and re-enable the interrupt remapping, keep it enabled.
> 3. Use the old interrupt remapping table, do not rewrite the IRTA register.
> 4. When ioapic entry is setup, the interrupt remapping table is changed, and
> the updated data will be stored to the old interrupt remapping table.
>
> Advantages of this approach:
> 1. All manipulation of the IO-device is done by the Linux device-driver
> for that device.
> 2. This approach behaves in a manner very similar to operation without an
> active iommu.
> 3. Any activity between the IO-device and its RMRR areas is handled by the
> device-driver in the same manner as during a non-kdump boot.
> 4. If an IO-device has no driver in the kdump kernel, it is simply left alone.
> This supports the practice of creating a special kdump kernel without
> drivers for any devices that are not required for taking a crashdump.
> 5. Minimal code-changes among the existing mainline intel vt-d code.
>
> Summary of changes in this patch set:
> 1. Added some useful function for root entry table in code intel-iommu.c
> 2. Added new members to struct root_entry and struct irte;
> 3. Functions to load old root entry table to iommu->root_entry from the memory
> of old kernel.
> 4. Functions to malloc new context entry table and copy the data from the old
> ones to the malloced new ones.
> 5. Functions to enable support for DMA remapping in kdump kernel.
> 6. Functions to load old irte data from the old kernel to the kdump kernel.
> 7. Some code changes that support other behaviours that have been listed.
> 8. In the new functions, use physical address as "unsigned long" type, not
> pointers.
>
> Original version by Bill Sumner:
> https://lkml.org/lkml/2014/1/10/518
> https://lkml.org/lkml/2014/4/15/716
> https://lkml.org/lkml/2014/4/24/836
>
> Zhenhua's updates:
> https://lkml.org/lkml/2014/10/21/134
> https://lkml.org/lkml/2014/12/15/121
> https://lkml.org/lkml/2014/12/22/53
> https://lkml.org/lkml/2015/1/6/1166
> https://lkml.org/lkml/2015/1/12/35
> https://lkml.org/lkml/2015/3/19/33
>
> Changelog[v10]:
> 1. Do not use CONFIG_CRASH_DUMP and is_kdump_kernel().
> Use one flag which stores the te and ir status in last kernel:
> iommu->pre_enabled_trans
> iommu->pre_enabled_ir
>
> Changelog[v9]:
> 1. Add new function iommu_attach_domain_with_id.
> 2. Do not copy old page tables, keep using the old ones.
> 3. Remove functions:
> intel_iommu_did_to_domain_values_entry
> intel_iommu_get_dids_from_old_kernel
> device_to_domain_id
> copy_page_addr
> copy_page_table
> copy_context_entry
> copy_context_entry_table
> 4. Add new function device_to_existing_context_entry.
>
> Changelog[v8]:
> 1. Add a missing __iommu_flush_cache in function copy_page_table.
>
> Changelog[v7]:
> 1. Use __iommu_flush_cache to flush the data to hardware.
>
> Changelog[v6]:
> 1. Use "unsigned long" as type of physical address.
> 2. Use new function unmap_device_dma to unmap the old dma.
> 3. Some small incorrect bits order for aw shift.
>
> Changelog[v5]:
> 1. Do not disable and re-enable traslation and interrupt remapping.
> 2. Use old root entry table.
> 3. Use old interrupt remapping table.
> 4. New functions to copy data from old kernel, and save to old kernel mem.
> 5. New functions to save updated root entry table and irte table.
> 6. Use intel_unmap to unmap the old dma;
> 7. Allocate new pages while driver is being loaded.
>
> Changelog[v4]:
> 1. Cut off the patches that move some defines and functions to new files.
> 2. Reduce the numbers of patches to five, make it more easier to read.
> 3. Changed the name of functions, make them consistent with current context
> get/set functions.
> 4. Add change to function __iommu_attach_domain.
>
> Changelog[v3]:
> 1. Commented-out "#define DEBUG 1" to eliminate debug messages.
> 2. Updated the comments about changes in each version.
> 3. Fixed: one-line added to Copy-Translations patch to initialize the iovad
> struct as recommended by Baoquan He [bhe@redhat.com]
> init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
>
> Changelog[v2]:
> The following series implements a fix for:
> A kdump problem about DMA that has been discussed for a long time. That is,
> when a kernel panics and boots into the kdump kernel, DMA started by the
> panicked kernel is not stopped before the kdump kernel is booted and the
> kdump kernel disables the IOMMU while this DMA continues. This causes the
> IOMMU to stop translating the DMA addresses as IOVAs and begin to treat
> them as physical memory addresses -- which causes the DMA to either:
> (1) generate DMAR errors or
> (2) generate PCI SERR errors or
> (3) transfer data to or from incorrect areas of memory. Often this
> causes the dump to fail.
>
> Changelog[v1]:
> The original version.
>
> Changed in this version:
> 1. Do not disable and re-enable traslation and interrupt remapping.
> 2. Use old root entry table.
> 3. Use old interrupt remapping table.
> 4. Use "unsigned long" as physical address.
> 5. Use intel_unmap to unmap the old dma;
>
> Baoquan He <bhe@redhat.com> helps testing this patchset.
> Takao Indoh <indou.takao@jp.fujitsu.com> gives valuable suggestions.
>
> Li, Zhen-Hua (10):
> iommu/vt-d: New function to attach domain with id
> iommu/vt-d: Items required for kdump
> iommu/vt-d: Function to get old context entry
> iommu/vt-d: functions to copy data from old mem
> iommu/vt-d: Add functions to load and save old re
> iommu/vt-d: datatypes and functions used for kdump
> iommu/vt-d: enable kdump support in iommu module
> iommu/vt-d: assign new page table for dma_map
> iommu/vt-d: Copy functions for irte
> iommu/vt-d: Use old irte in kdump kernel
>
> drivers/iommu/intel-iommu.c | 518 ++++++++++++++++++++++++++++++++++--
> drivers/iommu/intel_irq_remapping.c | 96 ++++++-
> include/linux/intel-iommu.h | 16 ++
> 3 files changed, 605 insertions(+), 25 deletions(-)
>
[-- Attachment #2: superdomex_boot.log --]
[-- Type: text/x-log, Size: 158996 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 4.0.0-rc7.v10u2 (root@dhb5.fcux.usa.hp.com) (gcc version 4.8.2 20140120 (Red Hat 4.8.2-16) (GCC) ) #1 SMP Thu Apr 9 02:19:13 EDT 2015
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us crashkernel=512M vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008dfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000078bfefff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000078bff000-0x00000000799fefff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000799ff000-0x000000007bdfefff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000007bdff000-0x000000007bffefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000007bfff000-0x000000007bffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ff1fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000100000fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x0000000100001000-0x000000207fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000004000000000-0x0000004000000fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x0000004000001000-0x0000009fffffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000fdfe0000000-0x00000fdfffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe060000000-0x00000fe07fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe0e0000000-0x00000fe0ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe160000000-0x00000fe17fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe1e0000000-0x00000fe1ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe260000000-0x00000fe27fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe2e0000000-0x00000fe2ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe360000000-0x00000fe37fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe3e0000000-0x00000fe3ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe460000000-0x00000fe47fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe4e0000000-0x00000fe4ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe560000000-0x00000fe57fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe5e0000000-0x00000fe5ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe660000000-0x00000fe67fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe6e0000000-0x00000fe6ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe760000000-0x00000fe77fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe7e0000000-0x00000fe7ffffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] e820: update [mem 0x77787018-0x777fd857] usable ==> usable
[ 0.000000] e820: update [mem 0x77755018-0x77786e57] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008dfff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000008e000-0x000000000008ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000077755017] usable
[ 0.000000] reserve setup_data: [mem 0x0000000077755018-0x0000000077786e57] usable
[ 0.000000] reserve setup_data: [mem 0x0000000077786e58-0x0000000077787017] usable
[ 0.000000] reserve setup_data: [mem 0x0000000077787018-0x00000000777fd857] usable
[ 0.000000] reserve setup_data: [mem 0x00000000777fd858-0x0000000078bfefff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000078bff000-0x00000000799fefff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000799ff000-0x000000007bdfefff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000007bdff000-0x000000007bffefff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x000000007bfff000-0x000000007bffffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000080000000-0x000000008fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ff1fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x0000000100000fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x0000000100001000-0x000000207fffffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000004000000000-0x0000004000000fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x0000004000001000-0x0000009fffffffff] usable
[ 0.000000] reserve setup_data: [mem 0x00000fdfe0000000-0x00000fdfffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe060000000-0x00000fe07fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe0e0000000-0x00000fe0ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe160000000-0x00000fe17fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe1e0000000-0x00000fe1ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe260000000-0x00000fe27fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe2e0000000-0x00000fe2ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe360000000-0x00000fe37fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe3e0000000-0x00000fe3ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe460000000-0x00000fe47fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe4e0000000-0x00000fe4ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe560000000-0x00000fe57fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe5e0000000-0x00000fe5ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe660000000-0x00000fe67fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe6e0000000-0x00000fe6ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe760000000-0x00000fe77fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000fe7e0000000-0x00000fe7ffffffff] reserved
[ 0.000000] efi: EFI v2.31 by HP
[ 0.000000] efi: ACPI=0x7bffe000 ACPI 2.0=0x7bffe014 SMBIOS=0x799f8000
[ 0.000000] efi: mem00: [Boot Code | | | | | |WB|WT|WC|UC] range=[0x0000000000000000-0x0000000000001000) (0MB)
[ 0.000000] efi: mem01: [Loader Data | | | | | |WB|WT|WC|UC] range=[0x0000000000001000-0x0000000000002000) (0MB)
[ 0.000000] efi: mem02: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x0000000000002000-0x000000000008e000) (0MB)
[ 0.000000] efi: mem03: [Reserved | | | | | |WB|WT|WC|UC] range=[0x000000000008e000-0x0000000000090000) (0MB)
[ 0.000000] efi: mem04: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x0000000000090000-0x00000000000a0000) (0MB)
[ 0.000000] efi: mem05: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x0000000000100000-0x0000000001000000) (15MB)
[ 0.000000] efi: mem06: [Loader Data | | | | | |WB|WT|WC|UC] range=[0x0000000001000000-0x000000000212d000) (17MB)
[ 0.000000] efi: mem07: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x000000000212d000-0x000000003f4b3000) (979MB)
[ 0.000000] efi: mem08: [Loader Data | | | | | |WB|WT|WC|UC] range=[0x000000003f4b3000-0x000000005c800000) (467MB)
[ 0.000000] efi: mem09: [Boot Data | | | | | |WB|WT|WC|UC] range=[0x000000005c800000-0x000000005ca00000) (2MB)
[ 0.000000] efi: mem10: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x000000005ca00000-0x000000006d038000) (262MB)
[ 0.000000] efi: mem11: [Boot Data | | | | | |WB|WT|WC|UC] range=[0x000000006d038000-0x000000006f3fc000) (35MB)
[ 0.000000] efi: mem12: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x000000006f3fc000-0x00000000738e8000) (68MB)
[ 0.000000] efi: mem13: [Boot Data | | | | | |WB|WT|WC|UC] range=[0x00000000738e8000-0x0000000073e21000) (5MB)
[ 0.000000] efi: mem14: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x0000000073e21000-0x0000000073e3b000) (0MB)
[ 0.000000] efi: mem15: [Boot Data | | | | | |WB|WT|WC|UC] range=[0x0000000073e3b000-0x0000000073e3e000) (0MB)
[ 0.000000] efi: mem16: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x0000000073e3e000-0x0000000073e5f000) (0MB)
[ 0.000000] efi: mem17: [Boot Data | | | | | |WB|WT|WC|UC] range=[0x0000000073e5f000-0x0000000073f68000) (1MB)
[ 0.000000] efi: mem18: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x0000000073f68000-0x0000000073f69000) (0MB)
[ 0.000000] efi: mem19: [Boot Data | | | | | |WB|WT|WC|UC] range=[0x0000000073f69000-0x00000000742b9000) (3MB)
[ 0.000000] efi: mem20: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x00000000742b9000-0x00000000742fb000) (0MB)
[ 0.000000] efi: mem21: [Boot Data | | | | | |WB|WT|WC|UC] range=[0x00000000742fb000-0x0000000074313000) (0MB)
[ 0.000000] efi: mem22: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x0000000074313000-0x0000000074333000) (0MB)
[ 0.000000] efi: mem23: [Boot Data | | | | | |WB|WT|WC|UC] range=[0x0000000074333000-0x0000000074359000) (0MB)
[ 0.000000] efi: mem24: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x0000000074359000-0x000000007436e000) (0MB)
[ 0.000000] efi: mem25: [Boot Data | | | | | |WB|WT|WC|UC] range=[0x000000007436e000-0x0000000074559000) (1MB)
[ 0.000000] efi: mem26: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x0000000074559000-0x000000007457a000) (0MB)
[ 0.000000] efi: mem27: [Boot Data | | | | | |WB|WT|WC|UC] range=[0x000000007457a000-0x0000000074595000) (0MB)
[ 0.000000] efi: mem28: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x0000000074595000-0x0000000074596000) (0MB)
[ 0.000000] efi: mem29: [Boot Data | | | | | |WB|WT|WC|UC] range=[0x0000000074596000-0x00000000746a6000) (1MB)
[ 0.000000] efi: mem30: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x00000000746a6000-0x00000000746a8000) (0MB)
[ 0.000000] efi: mem31: [Boot Data | | | | | |WB|WT|WC|UC] range=[0x00000000746a8000-0x00000000773ff000) (45MB)
[ 0.000000] efi: mem32: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x00000000773ff000-0x0000000077754000) (3MB)
[ 0.000000] efi: mem33: [Loader Data | | | | | |WB|WT|WC|UC] range=[0x0000000077754000-0x00000000777ff000) (0MB)
[ 0.000000] efi: mem34: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x00000000777ff000-0x0000000077b16000) (3MB)
[ 0.000000] efi: mem35: [Loader Code | | | | | |WB|WT|WC|UC] range=[0x0000000077b16000-0x0000000077bff000) (0MB)
[ 0.000000] efi: mem36: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x0000000077bff000-0x000000007823e000) (6MB)
[ 0.000000] efi: mem37: [Boot Code | | | | | |WB|WT|WC|UC] range=[0x000000007823e000-0x0000000078bff000) (9MB)
[ 0.000000] efi: mem38: [Runtime Data |RUN| | | | |WB|WT|WC|UC] range=[0x0000000078bff000-0x00000000790ff000) (5MB)
[ 0.000000] efi: mem39: [Runtime Code |RUN| | | | |WB|WT|WC|UC] range=[0x00000000790ff000-0x00000000798ff000) (8MB)
[ 0.000000] efi: mem40: [Reserved | | | | | |WB|WT|WC|UC] range=[0x00000000798ff000-0x00000000799ff000) (1MB)
[ 0.000000] efi: mem41: [ACPI Memory NVS | | | | | |WB|WT|WC|UC] range=[0x00000000799ff000-0x000000007bdff000) (36MB)
[ 0.000000] efi: mem42: [ACPI Reclaim Memory| | | | | |WB|WT|WC|UC] range=[0x000000007bdff000-0x000000007bfff000) (2MB)
[ 0.000000] efi: mem43: [Boot Data | | | | | |WB|WT|WC|UC] range=[0x000000007bfff000-0x000000007c000000) (0MB)
[ 0.000000] efi: mem44: [ACPI Memory NVS | | | | | |WB|WT|WC|UC] range=[0x0000000100000000-0x0000000100001000) (0MB)
[ 0.000000] efi: mem45: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x0000000100001000-0x0000002080000000) (129023MB)
[ 0.000000] efi: mem46: [ACPI Memory NVS | | | | | |WB|WT|WC|UC] range=[0x0000004000000000-0x0000004000001000) (0MB)
[ 0.000000] efi: mem47: [Conventional Memory| | | | | |WB|WT|WC|UC] range=[0x0000004000001000-0x000000a000000000) (393215MB)
[ 0.000000] efi: mem48: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x0000000080000000-0x0000000090000000) (256MB)
[ 0.000000] efi: mem49: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[ 0.000000] efi: mem50: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000000ff000000-0x00000000ff200000) (2MB)
[ 0.000000] efi: mem51: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fdfe0000000-0x00000fe000000000) (512MB)
[ 0.000000] efi: mem52: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe060000000-0x00000fe080000000) (512MB)
[ 0.000000] efi: mem53: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe0e0000000-0x00000fe100000000) (512MB)
[ 0.000000] efi: mem54: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe160000000-0x00000fe180000000) (512MB)
[ 0.000000] efi: mem55: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe1e0000000-0x00000fe200000000) (512MB)
[ 0.000000] efi: mem56: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe260000000-0x00000fe280000000) (512MB)
[ 0.000000] efi: mem57: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe2e0000000-0x00000fe300000000) (512MB)
[ 0.000000] efi: mem58: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe360000000-0x00000fe380000000) (512MB)
[ 0.000000] efi: mem59: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe3e0000000-0x00000fe400000000) (512MB)
[ 0.000000] efi: mem60: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe460000000-0x00000fe480000000) (512MB)
[ 0.000000] efi: mem61: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe4e0000000-0x00000fe500000000) (512MB)
[ 0.000000] efi: mem62: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe560000000-0x00000fe580000000) (512MB)
[ 0.000000] efi: mem63: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe5e0000000-0x00000fe600000000) (512MB)
[ 0.000000] efi: mem64: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe660000000-0x00000fe680000000) (512MB)
[ 0.000000] efi: mem65: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe6e0000000-0x00000fe700000000) (512MB)
[ 0.000000] efi: mem66: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe760000000-0x00000fe780000000) (512MB)
[ 0.000000] efi: mem67: [Memory Mapped I/O |RUN| | | | | | | |UC] range=[0x00000fe7e0000000-0x00000fe800000000) (512MB)
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: HP Superdome2 16s x86, BIOS Bundle: 005.073.000 SFW: 015.082.000 08/08/2014
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] e820: last_pfn = 0xa000000 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: write-back
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-DFFFF write-protect
[ 0.000000] E0000-FFFFF uncachable
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000080000000 mask 3FFF80000000 uncachable
[ 0.000000] 1 base 0F0000000000 mask 3F8000000000 uncachable
[ 0.000000] 2 base 0F8000000000 mask 3FC000000000 uncachable
[ 0.000000] 3 base 0FC000000000 mask 3FE000000000 uncachable
[ 0.000000] 4 base 0FE000000000 mask 3FF000000000 uncachable
[ 0.000000] 5 base 0000FF000000 mask 3FFFFFE00000 uncachable
[ 0.000000] 6 base 0FDF80000000 mask 3FFF80000000 uncachable
[ 0.000000] 7 base 0FE000000000 mask 3FF800000000 uncachable
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] PAT configuration [0-7]: WB WC UC- UC WB WC UC- UC
[ 0.000000] x2apic: enabled by BIOS, switching to x2apic ops
[ 0.000000] e820: last_pfn = 0x7c000 max_arch_pfn = 0x400000000
[ 0.000000] Base memory trampoline at [ffff880000099000] 99000 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 [0x01fa1000, 0x01fa1fff] PGTABLE
[ 0.000000] BRK [0x01fa2000, 0x01fa2fff] PGTABLE
[ 0.000000] BRK [0x01fa3000, 0x01fa3fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x9fffe00000-0x9fffffffff]
[ 0.000000] [mem 0x9fffe00000-0x9fffffffff] page 1G
[ 0.000000] BRK [0x01fa4000, 0x01fa4fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x9fe0000000-0x9fffdfffff]
[ 0.000000] [mem 0x9fe0000000-0x9fffdfffff] page 1G
[ 0.000000] init_memory_mapping: [mem 0x8000000000-0x9fdfffffff]
[ 0.000000] [mem 0x8000000000-0x9fdfffffff] page 1G
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x78bfefff]
[ 0.000000] [mem 0x00100000-0x001fffff] page 4k
[ 0.000000] [mem 0x00200000-0x789fffff] page 2M
[ 0.000000] [mem 0x78a00000-0x78bfefff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x7bfff000-0x7bffffff]
[ 0.000000] [mem 0x7bfff000-0x7bffffff] page 4k
[ 0.000000] BRK [0x01fa5000, 0x01fa5fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x100001000-0x207fffffff]
[ 0.000000] [mem 0x100001000-0x1001fffff] page 4k
[ 0.000000] [mem 0x100200000-0x13fffffff] page 2M
[ 0.000000] [mem 0x140000000-0x207fffffff] page 1G
[ 0.000000] BRK [0x01fa6000, 0x01fa6fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x4000001000-0x7fffffffff]
[ 0.000000] [mem 0x4000001000-0x40001fffff] page 4k
[ 0.000000] [mem 0x4000200000-0x403fffffff] page 2M
[ 0.000000] [mem 0x4040000000-0x7fffffffff] page 1G
[ 0.000000] RAMDISK: [mem 0x3f4b3000-0x3ffe7fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x000000007BFFE014 000024 (v02 HP )
[ 0.000000] ACPI: XSDT 0x000000007BFFD0E8 0000AC (v01 HP 03010201 00000002 MSFT 01000013)
[ 0.000000] ACPI: FACP 0x000000007BFFB000 00010C (v05 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: DSDT 0x000000007BFF1000 0004A8 (v02 HP CORE 00000002 HPAG 00020000)
[ 0.000000] ACPI: FACS 0x000000007AD00000 000040
[ 0.000000] ACPI: MCEJ 0x000000007BFFC000 000130 (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: HPET 0x000000007BFFA000 000038 (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: MCFG 0x000000007BFF9000 00003C (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: SLIT 0x000000007BFF8000 00003C (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: APIC 0x000000007BFF7000 000DA8 (v03 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: SRAT 0x000000007BFF6000 000C38 (v02 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: SPMI 0x000000007BFF5000 000040 (v05 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: SPCR 0x000000007BFF4000 000050 (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: DBGP 0x000000007BFF3000 000034 (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: RASF 0x000000007BFF2000 000030 (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: SSDT 0x000000007BFD7000 019FB9 (v02 HP BLADE000 00000002 HPAG 00020000)
[ 0.000000] ACPI: SSDT 0x000000007BFBD000 0196F0 (v02 HP BLADE001 00000002 HPAG 00020000)
[ 0.000000] ACPI: DMAR 0x000000007BFBB000 000368 (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: HEST 0x000000007BFBA000 000184 (v01 INTEL 00000001 INTL 00000001)
[ 0.000000] ACPI: BERT 0x000000007BFB9000 000030 (v01 INTEL 00000001 INTL 00000001)
[ 0.000000] ACPI: EINJ 0x000000007BFB8000 000150 (v01 INTEL 00000001 INTL 00000001)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] System requires x2apic physical mode
[ 0.000000] Setting APIC routing to physical x2apic.
[ 0.000000] SRAT: PXM 0 -> APIC 0x0000 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0001 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0002 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0003 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0004 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0005 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0006 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0007 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0008 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0009 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x000a -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x000b -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x000c -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x000d -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x000e -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x000f -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0010 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0011 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0012 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0013 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0014 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0015 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0016 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0017 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0018 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0019 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x001a -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x001b -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x001c -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x001d -> Node 0
[ 0.000000] SRAT: PXM 1 -> APIC 0x0020 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0021 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0022 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0023 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0024 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0025 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0026 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0027 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0028 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0029 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x002a -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x002b -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x002c -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x002d -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x002e -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x002f -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0030 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0031 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0032 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0033 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0034 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0035 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0036 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0037 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0038 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0039 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x003a -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x003b -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x003c -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x003d -> Node 1
[ 0.000000] SRAT: PXM 2 -> APIC 0x0040 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0041 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0042 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0043 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0044 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0045 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0046 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0047 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0048 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0049 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x004a -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x004b -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x004c -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x004d -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x004e -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x004f -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0050 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0051 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0052 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0053 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0054 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0055 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0056 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0057 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0058 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0059 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x005a -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x005b -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x005c -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x005d -> Node 2
[ 0.000000] SRAT: PXM 3 -> APIC 0x0060 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0061 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0062 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0063 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0064 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0065 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0066 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0067 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0068 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0069 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x006a -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x006b -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x006c -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x006d -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x006e -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x006f -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0070 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0071 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0072 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0073 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0074 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0075 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0076 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0077 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0078 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x0079 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x007a -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x007b -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x007c -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x007d -> Node 3
[ 0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[ 0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[ 0.000000] SRAT: Node 1 PXM 1 [mem 0x4000000000-0x5fffffffff]
[ 0.000000] SRAT: Node 2 PXM 2 [mem 0x6000000000-0x7fffffffff]
[ 0.000000] SRAT: Node 3 PXM 3 [mem 0x8000000000-0x9fffffffff]
[ 0.000000] NUMA: Initialized distance table, cnt=4
[ 0.000000] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00000000-0x207fffffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x207ffda000-0x207fffffff]
[ 0.000000] NODE_DATA(1) allocated [mem 0x5ffffda000-0x5fffffffff]
[ 0.000000] NODE_DATA(2) allocated [mem 0x7ffffda000-0x7fffffffff]
[ 0.000000] NODE_DATA(3) allocated [mem 0x9ffffd4000-0x9fffff9fff]
[ 0.000000] Reserving 512MB of memory at 384MB for crashkernel (System RAM: 524171MB)
[ 0.000000] [ffffea0000000000-ffffea0081ffffff] PMD -> [ffff881fffe00000-ffff88207fdfffff] on node 0
[ 0.000000] [ffffea0100000000-ffffea017fffffff] PMD -> [ffff885f7fe00000-ffff885fffdfffff] on node 1
[ 0.000000] [ffffea0180000000-ffffea01ffffffff] PMD -> [ffff887f7fe00000-ffff887fffdfffff] on node 2
[ 0.000000] [ffffea0200000000-ffffea027fffffff] PMD -> [ffff889f7f600000-ffff889fff5fffff] on node 3
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.000000] Normal [mem 0x0000000100000000-0x0000009fffffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000008dfff]
[ 0.000000] node 0: [mem 0x0000000000090000-0x000000000009ffff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x0000000078bfefff]
[ 0.000000] node 0: [mem 0x000000007bfff000-0x000000007bffffff]
[ 0.000000] node 0: [mem 0x0000000100001000-0x000000207fffffff]
[ 0.000000] node 1: [mem 0x0000004000001000-0x0000005fffffffff]
[ 0.000000] node 2: [mem 0x0000006000000000-0x0000007fffffffff]
[ 0.000000] node 3: [mem 0x0000008000000000-0x0000009fffffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fffffff]
[ 0.000000] On node 0 totalpages: 33524636
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 22 pages reserved
[ 0.000000] DMA zone: 3997 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 7664 pages used for memmap
[ 0.000000] DMA32 zone: 490496 pages, LIFO batch:31
[ 0.000000] Normal zone: 516096 pages used for memmap
[ 0.000000] Normal zone: 33030143 pages, LIFO batch:31
[ 0.000000] Initmem setup node 1 [mem 0x0000004000001000-0x0000005fffffffff]
[ 0.000000] On node 1 totalpages: 33554431
[ 0.000000] Normal zone: 524288 pages used for memmap
[ 0.000000] Normal zone: 33554431 pages, LIFO batch:31
[ 0.000000] Initmem setup node 2 [mem 0x0000006000000000-0x0000007fffffffff]
[ 0.000000] On node 2 totalpages: 33554432
[ 0.000000] Normal zone: 524288 pages used for memmap
[ 0.000000] Normal zone: 33554432 pages, LIFO batch:31
[ 0.000000] Initmem setup node 3 [mem 0x0000008000000000-0x0000009fffffffff]
[ 0.000000] On node 3 totalpages: 33554432
[ 0.000000] Normal zone: 524288 pages used for memmap
[ 0.000000] Normal zone: 33554432 pages, LIFO batch:31
[ 0.000000] tboot: non-0 tboot_addr but it is not of type E820_RESERVED
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] System requires x2apic physical mode
[ 0.000000] ACPI: X2APIC (apic_id[0x00] uid[0x00] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x02] uid[0x02] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x04] uid[0x04] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x06] uid[0x06] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x08] uid[0x08] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x0a] uid[0x0a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x0c] uid[0x0c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x0e] uid[0x0e] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x10] uid[0x10] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x12] uid[0x12] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x14] uid[0x14] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x16] uid[0x16] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x18] uid[0x18] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1a] uid[0x1a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1c] uid[0x1c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x20] uid[0x24] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x22] uid[0x26] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x24] uid[0x28] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x26] uid[0x2a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x28] uid[0x2c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x2a] uid[0x2e] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x2c] uid[0x30] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x2e] uid[0x32] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x30] uid[0x34] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x32] uid[0x36] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x34] uid[0x38] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x36] uid[0x3a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x38] uid[0x3c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x3a] uid[0x3e] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x3c] uid[0x40] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x40] uid[0x48] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x42] uid[0x4a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x44] uid[0x4c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x46] uid[0x4e] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x48] uid[0x50] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x4a] uid[0x52] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x4c] uid[0x54] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x4e] uid[0x56] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x50] uid[0x58] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x52] uid[0x5a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x54] uid[0x5c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x56] uid[0x5e] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x58] uid[0x60] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x5a] uid[0x62] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x5c] uid[0x64] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x60] uid[0x6c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x62] uid[0x6e] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x64] uid[0x70] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x66] uid[0x72] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x68] uid[0x74] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x6a] uid[0x76] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x6c] uid[0x78] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x6e] uid[0x7a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x70] uid[0x7c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x72] uid[0x7e] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x74] uid[0x80] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x76] uid[0x82] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x78] uid[0x84] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x7a] uid[0x86] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x7c] uid[0x88] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x01] uid[0x01] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x03] uid[0x03] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x05] uid[0x05] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x07] uid[0x07] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x09] uid[0x09] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x0b] uid[0x0b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x0d] uid[0x0d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x0f] uid[0x0f] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x11] uid[0x11] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x13] uid[0x13] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x15] uid[0x15] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x17] uid[0x17] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x19] uid[0x19] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1b] uid[0x1b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1d] uid[0x1d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x21] uid[0x25] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x23] uid[0x27] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x25] uid[0x29] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x27] uid[0x2b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x29] uid[0x2d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x2b] uid[0x2f] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x2d] uid[0x31] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x2f] uid[0x33] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x31] uid[0x35] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x33] uid[0x37] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x35] uid[0x39] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x37] uid[0x3b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x39] uid[0x3d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x3b] uid[0x3f] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x3d] uid[0x41] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x41] uid[0x49] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x43] uid[0x4b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x45] uid[0x4d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x47] uid[0x4f] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x49] uid[0x51] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x4b] uid[0x53] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x4d] uid[0x55] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x4f] uid[0x57] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x51] uid[0x59] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x53] uid[0x5b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x55] uid[0x5d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x57] uid[0x5f] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x59] uid[0x61] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x5b] uid[0x63] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x5d] uid[0x65] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x61] uid[0x6d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x63] uid[0x6f] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x65] uid[0x71] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x67] uid[0x73] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x69] uid[0x75] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x6b] uid[0x77] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x6d] uid[0x79] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x6f] uid[0x7b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x71] uid[0x7d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x73] uid[0x7f] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x75] uid[0x81] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x77] uid[0x83] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x79] uid[0x85] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x7b] uid[0x87] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x7d] uid[0x89] enabled)
[ 0.000000] ACPI: X2APIC_NMI (uid[0x00] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x01] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x02] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x03] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x04] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x05] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x06] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x07] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x08] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x09] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x0a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x0b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x0c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x0d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x0e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x0f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x10] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x11] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x12] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x13] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x14] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x15] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x16] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x17] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x18] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x19] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x1a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x1b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x1c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x1d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x24] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x25] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x26] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x27] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x28] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x29] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x2a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x2b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x2c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x2d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x2e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x2f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x30] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x31] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x32] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x33] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x34] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x35] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x36] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x37] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x38] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x39] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x3a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x3b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x3c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x3d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x3e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x3f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x40] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x41] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x48] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x49] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x4a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x4b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x4c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x4d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x4e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x4f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x50] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x51] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x52] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x53] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x54] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x55] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x56] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x57] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x58] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x59] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x5a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x5b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x5c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x5d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x5e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x5f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x60] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x61] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x62] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x63] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x64] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x65] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x6c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x6d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x6e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x6f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x70] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x71] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x72] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x73] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x74] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x75] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x76] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x77] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x78] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x79] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x7a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x7b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x7c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x7d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x7e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x7f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x80] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x81] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x82] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x83] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x84] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x85] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x86] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x87] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x88] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x89] high level lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: IOAPIC (id[0x09] address[0xfec01000] gsi_base[24])
[ 0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-47
[ 0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec04000] gsi_base[48])
[ 0.000000] IOAPIC[2]: apic_id 10, version 32, address 0xfec04000, GSI 48-71
[ 0.000000] ACPI: IOAPIC (id[0x0b] address[0xfec08000] gsi_base[72])
[ 0.000000] IOAPIC[3]: apic_id 11, version 32, address 0xfec08000, GSI 72-95
[ 0.000000] ACPI: IOAPIC (id[0x0c] address[0xfec09000] gsi_base[96])
[ 0.000000] IOAPIC[4]: apic_id 12, version 32, address 0xfec09000, GSI 96-119
[ 0.000000] ACPI: IOAPIC (id[0x0d] address[0xfec0c000] gsi_base[120])
[ 0.000000] IOAPIC[5]: apic_id 13, version 32, address 0xfec0c000, GSI 120-143
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[ 0.000000] smpboot: Allowing 120 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0008e000-0x0008ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x77755000-0x77755fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x77786000-0x77786fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x77787000-0x77787fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x777fd000-0x777fdfff]
[ 0.000000] PM: Registered nosave memory: [mem 0x78bff000-0x799fefff]
[ 0.000000] PM: Registered nosave memory: [mem 0x799ff000-0x7bdfefff]
[ 0.000000] PM: Registered nosave memory: [mem 0x7bdff000-0x7bffefff]
[ 0.000000] PM: Registered nosave memory: [mem 0x7c000000-0x7fffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x80000000-0x8fffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x90000000-0xfed1bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfeffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xff1fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xff200000-0xffffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x100000000-0x100000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x2080000000-0x3fffffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x4000000000-0x4000000fff]
[ 0.000000] e820: [mem 0x90000000-0xfed1bfff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:120 nr_cpu_ids:120 nr_node_ids:4
[ 0.000000] PERCPU: Embedded 32 pages/cpu @ffff881fffa00000 s91544 r8192 d31336 u131072
[ 0.000000] pcpu-alloc: s91544 r8192 d31336 u131072 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 000 001 002 003 004 005 006 007 008 009 010 011 012 013 014 060
[ 0.000000] pcpu-alloc: [0] 061 062 063 064 065 066 067 068 069 070 071 072 073 074 --- ---
[ 0.000000] pcpu-alloc: [1] 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 075
[ 0.000000] pcpu-alloc: [1] 076 077 078 079 080 081 082 083 084 085 086 087 088 089 --- ---
[ 0.000000] pcpu-alloc: [2] 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 090
[ 0.000000] pcpu-alloc: [2] 091 092 093 094 095 096 097 098 099 100 101 102 103 104 --- ---
[ 0.000000] pcpu-alloc: [3] 045 046 047 048 049 050 051 052 053 054 055 056 057 058 059 105
[ 0.000000] pcpu-alloc: [3] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 --- ---
[ 0.000000] Built 4 zonelists in Node order, mobility grouping on. Total pages: 132091221
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us crashkernel=512M vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on
[ 0.000000] Intel-IOMMU: enabled
[ 0.000000] log_buf_len individual max cpu contribution: 4096 bytes
[ 0.000000] log_buf_len total cpu_extra contributions: 487424 bytes
[ 0.000000] log_buf_len min size: 524288 bytes
[ 0.000000] log_buf_len: 1048576 bytes
[ 0.000000] early log buf free: 472608(90%)
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[ 0.000000] AGP: Checking aperture...
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] Memory: 527618408K/536751724K available (6899K kernel code, 1427K rwdata, 3228K rodata, 1704K init, 2688K bss, 9133316K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=120, Nodes=4
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=120.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=120
[ 0.000000] NR_IRQS:524544 nr_irqs:3424 16
[ 0.000000] Offload RCU callbacks from all CPUs
[ 0.000000] Offload RCU callbacks from CPUs: 0-119.
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [ttyS0] enabled
[ 0.000000] mempolicy: Enabling 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 2793.819 MHz processor
[ 0.000164] Calibrating delay loop (skipped), value calculated using timer frequency.. 5587.63 BogoMIPS (lpj=2793819)
[ 0.012102] pid_max: default: 122880 minimum: 960
[ 0.017404] ACPI: Core revision 20150204
[ 0.032570] ACPI: All ACPI Tables successfully acquired
[ 0.040156] Security Framework initialized
[ 0.044803] SELinux: Initializing.
[ 0.048752] SELinux: Starting in permissive mode
[ 0.087385] Dentry cache hash table entries: 67108864 (order: 17, 536870912 bytes)
[ 0.304007] Inode-cache hash table entries: 33554432 (order: 16, 268435456 bytes)
[ 0.404609] Mount-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.413456] Mountpoint-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.428585] Initializing cgroup subsys blkio
[ 0.433429] Initializing cgroup subsys memory
[ 0.438423] Initializing cgroup subsys devices
[ 0.443417] Initializing cgroup subsys freezer
[ 0.448412] Initializing cgroup subsys net_cls
[ 0.453419] Initializing cgroup subsys perf_event
[ 0.458793] Initializing cgroup subsys hugetlb
[ 0.464032] CPU: Physical Processor ID: 0
[ 0.468538] CPU: Processor Core ID: 0
[ 0.473527] mce: CPU supports 32 MCE banks
[ 0.478203] CPU0: Thermal monitoring enabled (TM1)
[ 0.483632] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[ 0.489794] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[ 0.496876] Freeing SMP alternatives memory: 28K (ffffffff81cf7000 - ffffffff81cfe000)
[ 0.510186] ftrace: allocating 25687 entries in 101 pages
[ 0.529790] dmar: Host address width 44
[ 0.534104] dmar: DRHD base: 0x00000093ff8000 flags: 0x0
[ 0.540095] dmar: IOMMU 0: reg_base_addr 93ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[ 0.549188] dmar: DRHD base: 0x00000097ff8000 flags: 0x0
[ 0.555163] dmar: IOMMU 1: reg_base_addr 97ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[ 0.564252] dmar: DRHD base: 0x0000009bff8000 flags: 0x0
[ 0.570234] dmar: IOMMU 2: reg_base_addr 9bff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[ 0.579330] dmar: DRHD base: 0x0000009fff8000 flags: 0x0
[ 0.585304] dmar: IOMMU 3: reg_base_addr 9fff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[ 0.594395] dmar: RMRR base: 0x00000079911000 end: 0x00000079913fff
[ 0.601438] dmar: RMRR base: 0x0000007990e000 end: 0x00000079910fff
[ 0.608481] dmar: ATSR flags: 0x0
[ 0.612208] dmar: ATSR flags: 0x0
[ 0.615934] dmar: ATSR flags: 0x0
[ 0.619659] dmar: ATSR flags: 0x0
[ 0.623383] dmar: RHSA base: 0x00000093ff8000 proximity domain: 0x0
[ 0.630426] dmar: RHSA base: 0x00000097ff8000 proximity domain: 0x1
[ 0.637467] dmar: RHSA base: 0x0000009bff8000 proximity domain: 0x2
[ 0.644507] dmar: RHSA base: 0x0000009fff8000 proximity domain: 0x3
[ 0.651551] IOAPIC id 13 under DRHD base 0x9fff8000 IOMMU 3
[ 0.657909] IOAPIC id 11 under DRHD base 0x9bff8000 IOMMU 2
[ 0.664268] IOAPIC id 12 under DRHD base 0x9bff8000 IOMMU 2
[ 0.670626] IOAPIC id 10 under DRHD base 0x97ff8000 IOMMU 1
[ 0.676986] IOAPIC id 8 under DRHD base 0x93ff8000 IOMMU 0
[ 0.683249] IOAPIC id 9 under DRHD base 0x93ff8000 IOMMU 0
[ 0.689512] HPET id 0 under DRHD base 0x93ff8000
[ 0.698379] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.707215] Enabled IRQ remapping in x2apic mode
[ 0.712419] System requires x2apic physical mode
[ 0.714163] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.730927] TSC deadline timer enabled
[ 0.730952] smpboot: CPU0: Intel(R) Xeon(R) CPU E7-2890 v2 @ 2.80GHz (fam: 06, model: 3e, stepping: 07)
[ 0.741559] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
[ 0.753143] ... version: 3
[ 0.757642] ... bit width: 48
[ 0.762236] ... generic registers: 4
[ 0.766735] ... value mask: 0000ffffffffffff
[ 0.772696] ... max period: 0000ffffffffffff
[ 0.778656] ... fixed-purpose events: 3
[ 0.783152] ... event mask: 000000070000000f
[ 0.792461] x86: Booting SMP configuration:
[ 0.797159] .... node #0, CPUs: #1
[ 0.827714] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.837122] #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 #14
[ 1.037843] .... node #1, CPUs: #15 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27 #28 #29
[ 1.376996] .... node #2, CPUs: #30 #31 #32 #33 #34 #35 #36 #37 #38 #39 #40 #41 #42 #43 #44
[ 1.717647] .... node #3, CPUs: #45 #46 #47 #48 #49 #50 #51 #52 #53 #54 #55 #56 #57 #58 #59
[ 2.058125] .... node #0, CPUs: #60 #61 #62 #63 #64 #65 #66 #67 #68 #69 #70 #71 #72 #73 #74
[ 2.291256] .... node #1, CPUs: #75 #76 #77 #78 #79 #80 #81 #82 #83 #84 #85 #86 #87 #88 #89
[ 2.559283] .... node #2, CPUs: #90 #91 #92 #93 #94 #95 #96 #97 #98 #99 #100 #101 #102 #103 #104
[ 2.828440] .... node #3, CPUs: #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119
[ 3.097277] x86: Booted up 4 nodes, 120 CPUs
[ 3.102294] smpboot: Total of 120 processors activated (671389.98 BogoMIPS)
[ 3.661767] devtmpfs: initialized
[ 3.665566] Using 2GB memory block size for large-memory system
[ 3.676425] evm: security.selinux
[ 3.680146] evm: security.ima
[ 3.683477] evm: security.capability
[ 3.687659] PM: Registering ACPI NVS region [mem 0x799ff000-0x7bdfefff] (37748736 bytes)
[ 3.697231] PM: Registering ACPI NVS region [mem 0x100000000-0x100000fff] (4096 bytes)
[ 3.706124] PM: Registering ACPI NVS region [mem 0x4000000000-0x4000000fff] (4096 bytes)
[ 3.717159] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[ 3.726459] NET: Registered protocol family 16
[ 3.736709] cpuidle: using governor menu
[ 3.741258] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 3.749760] ACPI: bus type PCI registered
[ 3.754262] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 3.761690] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0x80000000-0x83ffffff] (base 0x80000000)
[ 3.772145] PCI: MMCONFIG at [mem 0x80000000-0x83ffffff] reserved in E820
[ 3.779869] PCI: Using configuration type 1 for base access
[ 3.796823] ACPI: Added _OSI(Module Device)
[ 3.801521] ACPI: Added _OSI(Processor Device)
[ 3.806509] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 3.811790] ACPI: Added _OSI(Processor Aggregator Device)
[ 3.840014] ACPI: Interpreter enabled
[ 3.844129] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
[ 3.854508] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
[ 3.864887] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20150204/hwxface-580)
[ 3.875264] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20150204/hwxface-580)
[ 3.885642] ACPI: (supports S0 S5)
[ 3.889460] ACPI: Using IOAPIC for interrupt routing
[ 3.895095] HEST: Table parsing has been initialized.
[ 3.900769] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 3.923282] ACPI: PCI Root Bridge [IO00] (domain 0000 [bus 00-0f])
[ 3.930227] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 3.939453] acpi PNP0A08:00: PCIe AER handled by firmware
[ 3.945582] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 3.954258] PCI host bridge to bus 0000:00
[ 3.958859] pci_bus 0000:00: root bus resource [bus 00-0f]
[ 3.965020] pci_bus 0000:00: root bus resource [io 0x1000-0x3fff window]
[ 3.972645] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 3.980268] pci_bus 0000:00: root bus resource [mem 0x90000000-0x93efffff window]
[ 3.988674] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 3.997080] pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfedfffff window]
[ 4.005483] pci_bus 0000:00: root bus resource [mem 0xfc000000000-0xfc07fffffff window]
[ 4.014472] pci_bus 0000:00: root bus resource [mem 0xfe200000000-0xfe27fffffff window]
[ 4.023472] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[ 4.023552] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[ 4.023636] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[ 4.023728] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[ 4.023806] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[ 4.023897] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[ 4.023974] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[ 4.024067] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[ 4.024138] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000
[ 4.024156] pci 0000:00:04.0: reg 0x10: [mem 0xfc07ff1c000-0xfc07ff1ffff 64bit]
[ 4.024291] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000
[ 4.024308] pci 0000:00:04.1: reg 0x10: [mem 0xfc07ff18000-0xfc07ff1bfff 64bit]
[ 4.024435] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000
[ 4.024451] pci 0000:00:04.2: reg 0x10: [mem 0xfc07ff14000-0xfc07ff17fff 64bit]
[ 4.024583] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000
[ 4.024600] pci 0000:00:04.3: reg 0x10: [mem 0xfc07ff10000-0xfc07ff13fff 64bit]
[ 4.024724] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000
[ 4.024741] pci 0000:00:04.4: reg 0x10: [mem 0xfc07ff0c000-0xfc07ff0ffff 64bit]
[ 4.024866] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000
[ 4.024883] pci 0000:00:04.5: reg 0x10: [mem 0xfc07ff08000-0xfc07ff0bfff 64bit]
[ 4.025011] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000
[ 4.025029] pci 0000:00:04.6: reg 0x10: [mem 0xfc07ff04000-0xfc07ff07fff 64bit]
[ 4.025152] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000
[ 4.025169] pci 0000:00:04.7: reg 0x10: [mem 0xfc07ff00000-0xfc07ff03fff 64bit]
[ 4.025300] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[ 4.025409] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[ 4.025489] pci 0000:00:1c.0: [8086:1d1e] type 01 class 0x060400
[ 4.025584] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 4.025610] pci 0000:00:1c.0: Enabling MPC IRBNCE
[ 4.030891] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[ 4.038481] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[ 4.038505] pci 0000:00:1d.0: reg 0x10: [mem 0x90400000-0x904003ff]
[ 4.038609] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 4.038669] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[ 4.038933] pci 0000:01:00.0: [8086:10f8] type 00 class 0x020000
[ 4.038944] pci 0000:01:00.0: reg 0x10: [mem 0x90200000-0x902fffff]
[ 4.038958] pci 0000:01:00.0: reg 0x18: [io 0x0000-0x001f]
[ 4.038965] pci 0000:01:00.0: reg 0x1c: [mem 0x90304000-0x90307fff]
[ 4.038983] pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0007ffff pref]
[ 4.039029] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 4.039060] pci 0000:01:00.0: reg 0x184: [mem 0xfc07fb00000-0xfc07fb03fff 64bit pref]
[ 4.039074] pci 0000:01:00.0: reg 0x190: [mem 0xfc07fa00000-0xfc07fa03fff 64bit pref]
[ 4.039138] pci 0000:01:00.1: [8086:10f8] type 00 class 0x020000
[ 4.039148] pci 0000:01:00.1: reg 0x10: [mem 0x90100000-0x901fffff]
[ 4.039161] pci 0000:01:00.1: reg 0x18: [io 0x0000-0x001f]
[ 4.039169] pci 0000:01:00.1: reg 0x1c: [mem 0x90300000-0x90303fff]
[ 4.039187] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[ 4.039232] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[ 4.039259] pci 0000:01:00.1: reg 0x184: [mem 0xfc07f900000-0xfc07f903fff 64bit pref]
[ 4.039273] pci 0000:01:00.1: reg 0x190: [mem 0xfc07f800000-0xfc07f803fff 64bit pref]
[ 4.040483] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[ 4.046355] pci 0000:00:02.0: bridge window [mem 0x90100000-0x903fffff]
[ 4.046360] pci 0000:00:02.0: bridge window [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[ 4.046466] pci 0000:03:00.0: [1077:2031] type 00 class 0x0c0400
[ 4.046481] pci 0000:03:00.0: reg 0x10: [mem 0xfc07fe0a000-0xfc07fe0bfff 64bit pref]
[ 4.046492] pci 0000:03:00.0: reg 0x18: [mem 0xfc07fe04000-0xfc07fe07fff 64bit pref]
[ 4.046503] pci 0000:03:00.0: reg 0x20: [mem 0xfc07fd00000-0xfc07fdfffff 64bit pref]
[ 4.046511] pci 0000:03:00.0: reg 0x30: [mem 0x00000000-0x0003ffff pref]
[ 4.046556] pci 0000:03:00.0: PME# supported from D3cold
[ 4.046629] pci 0000:03:00.1: [1077:2031] type 00 class 0x0c0400
[ 4.046643] pci 0000:03:00.1: reg 0x10: [mem 0xfc07fe08000-0xfc07fe09fff 64bit pref]
[ 4.046654] pci 0000:03:00.1: reg 0x18: [mem 0xfc07fe00000-0xfc07fe03fff 64bit pref]
[ 4.046666] pci 0000:03:00.1: reg 0x20: [mem 0xfc07fc00000-0xfc07fcfffff 64bit pref]
[ 4.046674] pci 0000:03:00.1: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
[ 4.046717] pci 0000:03:00.1: PME# supported from D3cold
[ 4.048385] pci 0000:00:02.2: PCI bridge to [bus 03]
[ 4.053971] pci 0000:00:02.2: bridge window [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[ 4.054067] pci 0000:00:03.0: PCI bridge to [bus 04]
[ 4.059719] pci 0000:00:11.0: PCI bridge to [bus 05]
[ 4.065385] pci 0000:06:00.0: [103c:3306] type 00 class 0x088000
[ 4.065412] pci 0000:06:00.0: reg 0x10: [io 0x1400-0x14ff]
[ 4.065429] pci 0000:06:00.0: reg 0x14: [mem 0x93a8c000-0x93a8c1ff]
[ 4.065445] pci 0000:06:00.0: reg 0x18: [io 0x1200-0x12ff]
[ 4.065664] pci 0000:06:00.1: [102b:0533] type 00 class 0x030000
[ 4.065690] pci 0000:06:00.1: reg 0x10: [mem 0x92000000-0x92ffffff pref]
[ 4.065706] pci 0000:06:00.1: reg 0x14: [mem 0x93a88000-0x93a8bfff]
[ 4.065723] pci 0000:06:00.1: reg 0x18: [mem 0x93000000-0x937fffff]
[ 4.065938] pci 0000:06:00.2: [103c:3307] type 00 class 0x088000
[ 4.065964] pci 0000:06:00.2: reg 0x10: [io 0x1000-0x10ff]
[ 4.065980] pci 0000:06:00.2: reg 0x14: [mem 0x93a8c400-0x93a8c4ff]
[ 4.065997] pci 0000:06:00.2: reg 0x18: [mem 0x93800000-0x938fffff]
[ 4.066013] pci 0000:06:00.2: reg 0x1c: [mem 0x93a00000-0x93a7ffff]
[ 4.066029] pci 0000:06:00.2: reg 0x20: [mem 0x93a80000-0x93a87fff]
[ 4.066045] pci 0000:06:00.2: reg 0x24: [mem 0x93900000-0x939fffff]
[ 4.066061] pci 0000:06:00.2: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[ 4.066145] pci 0000:06:00.2: PME# supported from D0 D3hot D3cold
[ 4.066229] pci 0000:06:00.4: [103c:3300] type 00 class 0x0c0300
[ 4.066319] pci 0000:06:00.4: reg 0x20: [io 0x1500-0x151f]
[ 4.068355] pci 0000:00:1c.0: PCI bridge to [bus 06]
[ 4.073933] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
[ 4.073937] pci 0000:00:1c.0: bridge window [mem 0x92000000-0x93efffff]
[ 4.073943] pci 0000:00:1c.0: bridge window [mem 0x00000000-0x000fffff 64bit pref]
[ 4.074000] pci_bus 0000:00: on NUMA node 0
[ 4.074002] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
[ 4.082250] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 4.091799] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 4.101348] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 4.110905] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 4.120458] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 4.130007] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 4.139558] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 4.149109] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 4.158651] ACPI: PCI Root Bridge [IO01] (domain 0000 [bus 10-1f])
[ 4.165591] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 4.174813] acpi PNP0A08:01: PCIe AER handled by firmware
[ 4.180941] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 4.189587] PCI host bridge to bus 0000:10
[ 4.194188] pci_bus 0000:10: root bus resource [bus 10-1f]
[ 4.200350] pci_bus 0000:10: root bus resource [io 0x4000-0x7fff window]
[ 4.207973] pci_bus 0000:10: root bus resource [mem 0x94000000-0x97ff7fff window]
[ 4.216379] pci_bus 0000:10: root bus resource [mem 0xfc400000000-0xfc47fffffff window]
[ 4.225385] pci 0000:10:02.0: [8086:0e04] type 01 class 0x060400
[ 4.225482] pci 0000:10:02.0: PME# supported from D0 D3hot D3cold
[ 4.225558] pci 0000:10:02.2: [8086:0e06] type 01 class 0x060400
[ 4.225653] pci 0000:10:02.2: PME# supported from D0 D3hot D3cold
[ 4.225722] pci 0000:10:03.0: [8086:0e08] type 01 class 0x060400
[ 4.225819] pci 0000:10:03.0: PME# supported from D0 D3hot D3cold
[ 4.225886] pci 0000:10:04.0: [8086:0e20] type 00 class 0x088000
[ 4.225904] pci 0000:10:04.0: reg 0x10: [mem 0xfc47ff1c000-0xfc47ff1ffff 64bit]
[ 4.226031] pci 0000:10:04.1: [8086:0e21] type 00 class 0x088000
[ 4.226048] pci 0000:10:04.1: reg 0x10: [mem 0xfc47ff18000-0xfc47ff1bfff 64bit]
[ 4.226171] pci 0000:10:04.2: [8086:0e22] type 00 class 0x088000
[ 4.226189] pci 0000:10:04.2: reg 0x10: [mem 0xfc47ff14000-0xfc47ff17fff 64bit]
[ 4.226316] pci 0000:10:04.3: [8086:0e23] type 00 class 0x088000
[ 4.226334] pci 0000:10:04.3: reg 0x10: [mem 0xfc47ff10000-0xfc47ff13fff 64bit]
[ 4.226464] pci 0000:10:04.4: [8086:0e24] type 00 class 0x088000
[ 4.226481] pci 0000:10:04.4: reg 0x10: [mem 0xfc47ff0c000-0xfc47ff0ffff 64bit]
[ 4.226605] pci 0000:10:04.5: [8086:0e25] type 00 class 0x088000
[ 4.226623] pci 0000:10:04.5: reg 0x10: [mem 0xfc47ff08000-0xfc47ff0bfff 64bit]
[ 4.226749] pci 0000:10:04.6: [8086:0e26] type 00 class 0x088000
[ 4.226767] pci 0000:10:04.6: reg 0x10: [mem 0xfc47ff04000-0xfc47ff07fff 64bit]
[ 4.226891] pci 0000:10:04.7: [8086:0e27] type 00 class 0x088000
[ 4.226908] pci 0000:10:04.7: reg 0x10: [mem 0xfc47ff00000-0xfc47ff03fff 64bit]
[ 4.227137] pci 0000:10:02.0: PCI bridge to [bus 11]
[ 4.232777] pci 0000:10:02.2: PCI bridge to [bus 12]
[ 4.238455] pci 0000:10:03.0: PCI bridge to [bus 13]
[ 4.244063] pci_bus 0000:10: on NUMA node 1
[ 4.244065] acpi PNP0A08:01: Disabling ASPM (FADT indicates it is unsupported)
[ 4.253864] ACPI: PCI Root Bridge [IO02] (domain 0000 [bus 20-2f])
[ 4.260807] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 4.270030] acpi PNP0A08:02: PCIe AER handled by firmware
[ 4.276159] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 4.284822] PCI host bridge to bus 0000:20
[ 4.289420] pci_bus 0000:20: root bus resource [bus 20-2f]
[ 4.295581] pci_bus 0000:20: root bus resource [io 0x8000-0xbfff window]
[ 4.303204] pci_bus 0000:20: root bus resource [mem 0x98000000-0x9befffff window]
[ 4.311609] pci_bus 0000:20: root bus resource [mem 0xf0800000000-0xf087fffffff window]
[ 4.320610] pci 0000:20:00.0: [8086:0e00] type 00 class 0x060000
[ 4.320692] pci 0000:20:00.0: PME# supported from D0 D3hot D3cold
[ 4.320768] pci 0000:20:02.0: [8086:0e04] type 01 class 0x060400
[ 4.320872] pci 0000:20:02.0: PME# supported from D0 D3hot D3cold
[ 4.320949] pci 0000:20:02.2: [8086:0e06] type 01 class 0x060400
[ 4.321053] pci 0000:20:02.2: PME# supported from D0 D3hot D3cold
[ 4.321136] pci 0000:20:03.0: [8086:0e08] type 01 class 0x060400
[ 4.321241] pci 0000:20:03.0: PME# supported from D0 D3hot D3cold
[ 4.321315] pci 0000:20:04.0: [8086:0e20] type 00 class 0x088000
[ 4.321334] pci 0000:20:04.0: reg 0x10: [mem 0xf087ff1c000-0xf087ff1ffff 64bit]
[ 4.321475] pci 0000:20:04.1: [8086:0e21] type 00 class 0x088000
[ 4.321494] pci 0000:20:04.1: reg 0x10: [mem 0xf087ff18000-0xf087ff1bfff 64bit]
[ 4.321634] pci 0000:20:04.2: [8086:0e22] type 00 class 0x088000
[ 4.321653] pci 0000:20:04.2: reg 0x10: [mem 0xf087ff14000-0xf087ff17fff 64bit]
[ 4.321795] pci 0000:20:04.3: [8086:0e23] type 00 class 0x088000
[ 4.321815] pci 0000:20:04.3: reg 0x10: [mem 0xf087ff10000-0xf087ff13fff 64bit]
[ 4.321952] pci 0000:20:04.4: [8086:0e24] type 00 class 0x088000
[ 4.321971] pci 0000:20:04.4: reg 0x10: [mem 0xf087ff0c000-0xf087ff0ffff 64bit]
[ 4.322106] pci 0000:20:04.5: [8086:0e25] type 00 class 0x088000
[ 4.322125] pci 0000:20:04.5: reg 0x10: [mem 0xf087ff08000-0xf087ff0bfff 64bit]
[ 4.322260] pci 0000:20:04.6: [8086:0e26] type 00 class 0x088000
[ 4.322280] pci 0000:20:04.6: reg 0x10: [mem 0xf087ff04000-0xf087ff07fff 64bit]
[ 4.322415] pci 0000:20:04.7: [8086:0e27] type 00 class 0x088000
[ 4.322434] pci 0000:20:04.7: reg 0x10: [mem 0xf087ff00000-0xf087ff03fff 64bit]
[ 4.322579] pci 0000:20:11.0: [8086:1d3e] type 01 class 0x060400
[ 4.322699] pci 0000:20:11.0: PME# supported from D0 D3hot D3cold
[ 4.322786] pci 0000:20:1c.0: [8086:1d1e] type 01 class 0x060400
[ 4.322890] pci 0000:20:1c.0: PME# supported from D0 D3hot D3cold
[ 4.322917] pci 0000:20:1c.0: Enabling MPC IRBNCE
[ 4.328201] pci 0000:20:1c.0: Intel PCH root port ACS workaround enabled
[ 4.335791] pci 0000:20:1d.0: [8086:1d26] type 00 class 0x0c0320
[ 4.335816] pci 0000:20:1d.0: reg 0x10: [mem 0x98300000-0x983003ff]
[ 4.335928] pci 0000:20:1d.0: PME# supported from D0 D3hot D3cold
[ 4.335991] pci 0000:20:1f.0: [8086:1d41] type 00 class 0x060100
[ 4.336274] pci 0000:21:00.0: [8086:10f8] type 00 class 0x020000
[ 4.336286] pci 0000:21:00.0: reg 0x10: [mem 0x98100000-0x981fffff]
[ 4.336301] pci 0000:21:00.0: reg 0x18: [io 0x0000-0x001f]
[ 4.336308] pci 0000:21:00.0: reg 0x1c: [mem 0x98204000-0x98207fff]
[ 4.336329] pci 0000:21:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[ 4.336380] pci 0000:21:00.0: PME# supported from D0 D3hot D3cold
[ 4.336416] pci 0000:21:00.0: reg 0x184: [mem 0xf087fe00000-0xf087fe03fff 64bit pref]
[ 4.336430] pci 0000:21:00.0: reg 0x190: [mem 0xf087fd00000-0xf087fd03fff 64bit pref]
[ 4.336500] pci 0000:21:00.1: [8086:10f8] type 00 class 0x020000
[ 4.336512] pci 0000:21:00.1: reg 0x10: [mem 0x98000000-0x980fffff]
[ 4.336526] pci 0000:21:00.1: reg 0x18: [io 0x0000-0x001f]
[ 4.336534] pci 0000:21:00.1: reg 0x1c: [mem 0x98200000-0x98203fff]
[ 4.336553] pci 0000:21:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[ 4.336605] pci 0000:21:00.1: PME# supported from D0 D3hot D3cold
[ 4.336635] pci 0000:21:00.1: reg 0x184: [mem 0xf087fc00000-0xf087fc03fff 64bit pref]
[ 4.336650] pci 0000:21:00.1: reg 0x190: [mem 0xf087fb00000-0xf087fb03fff 64bit pref]
[ 4.337755] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[ 4.343628] pci 0000:20:02.0: bridge window [mem 0x98000000-0x982fffff]
[ 4.343634] pci 0000:20:02.0: bridge window [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[ 4.343741] pci 0000:20:02.2: PCI bridge to [bus 23]
[ 4.349426] pci 0000:20:03.0: PCI bridge to [bus 24]
[ 4.355083] pci 0000:20:11.0: PCI bridge to [bus 25]
[ 4.360761] pci 0000:26:00.0: [103c:3306] type 00 class 0x088000
[ 4.360788] pci 0000:26:00.0: reg 0x10: [io 0x0000-0x00ff]
[ 4.360806] pci 0000:26:00.0: reg 0x14: [mem 0x9bd88000-0x9bd881ff]
[ 4.360824] pci 0000:26:00.0: reg 0x18: [io 0x0000-0x00ff]
[ 4.361055] pci 0000:26:00.2: [103c:3307] type 00 class 0x088000
[ 4.361083] pci 0000:26:00.2: reg 0x10: [io 0x0000-0x00ff]
[ 4.361099] pci 0000:26:00.2: reg 0x14: [mem 0x9bd88400-0x9bd884ff]
[ 4.361116] pci 0000:26:00.2: reg 0x18: [mem 0x9bb00000-0x9bbfffff]
[ 4.361134] pci 0000:26:00.2: reg 0x1c: [mem 0x9bd00000-0x9bd7ffff]
[ 4.361152] pci 0000:26:00.2: reg 0x20: [mem 0x9bd80000-0x9bd87fff]
[ 4.361168] pci 0000:26:00.2: reg 0x24: [mem 0x9bc00000-0x9bcfffff]
[ 4.361185] pci 0000:26:00.2: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[ 4.361274] pci 0000:26:00.2: PME# supported from D0 D3hot D3cold
[ 4.362695] pci 0000:20:1c.0: PCI bridge to [bus 26]
[ 4.368292] pci 0000:20:1c.0: bridge window [mem 0x9bb00000-0x9befffff]
[ 4.368299] pci 0000:20:1c.0: bridge window [mem 0x00000000-0x000fffff 64bit pref]
[ 4.368350] pci_bus 0000:20: on NUMA node 2
[ 4.368351] acpi PNP0A08:02: Disabling ASPM (FADT indicates it is unsupported)
[ 4.376526] ACPI: PCI Root Bridge [IO03] (domain 0000 [bus 30-3f])
[ 4.383471] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 4.392697] acpi PNP0A08:03: PCIe AER handled by firmware
[ 4.398825] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 4.407473] PCI host bridge to bus 0000:30
[ 4.412072] pci_bus 0000:30: root bus resource [bus 30-3f]
[ 4.418232] pci_bus 0000:30: root bus resource [io 0xc000-0xffff window]
[ 4.425856] pci_bus 0000:30: root bus resource [mem 0x9c000000-0x9fff7fff window]
[ 4.434259] pci_bus 0000:30: root bus resource [mem 0xf0c00000000-0xf0c7fffffff window]
[ 4.443263] pci 0000:30:02.0: [8086:0e04] type 01 class 0x060400
[ 4.443369] pci 0000:30:02.0: PME# supported from D0 D3hot D3cold
[ 4.443445] pci 0000:30:02.2: [8086:0e06] type 01 class 0x060400
[ 4.443547] pci 0000:30:02.2: PME# supported from D0 D3hot D3cold
[ 4.443621] pci 0000:30:03.0: [8086:0e08] type 01 class 0x060400
[ 4.443726] pci 0000:30:03.0: PME# supported from D0 D3hot D3cold
[ 4.443795] pci 0000:30:04.0: [8086:0e20] type 00 class 0x088000
[ 4.443814] pci 0000:30:04.0: reg 0x10: [mem 0xf0c7ff1c000-0xf0c7ff1ffff 64bit]
[ 4.443949] pci 0000:30:04.1: [8086:0e21] type 00 class 0x088000
[ 4.443967] pci 0000:30:04.1: reg 0x10: [mem 0xf0c7ff18000-0xf0c7ff1bfff 64bit]
[ 4.444100] pci 0000:30:04.2: [8086:0e22] type 00 class 0x088000
[ 4.444119] pci 0000:30:04.2: reg 0x10: [mem 0xf0c7ff14000-0xf0c7ff17fff 64bit]
[ 4.444254] pci 0000:30:04.3: [8086:0e23] type 00 class 0x088000
[ 4.444273] pci 0000:30:04.3: reg 0x10: [mem 0xf0c7ff10000-0xf0c7ff13fff 64bit]
[ 4.444407] pci 0000:30:04.4: [8086:0e24] type 00 class 0x088000
[ 4.444427] pci 0000:30:04.4: reg 0x10: [mem 0xf0c7ff0c000-0xf0c7ff0ffff 64bit]
[ 4.444557] pci 0000:30:04.5: [8086:0e25] type 00 class 0x088000
[ 4.444576] pci 0000:30:04.5: reg 0x10: [mem 0xf0c7ff08000-0xf0c7ff0bfff 64bit]
[ 4.444708] pci 0000:30:04.6: [8086:0e26] type 00 class 0x088000
[ 4.444726] pci 0000:30:04.6: reg 0x10: [mem 0xf0c7ff04000-0xf0c7ff07fff 64bit]
[ 4.444856] pci 0000:30:04.7: [8086:0e27] type 00 class 0x088000
[ 4.444875] pci 0000:30:04.7: reg 0x10: [mem 0xf0c7ff00000-0xf0c7ff03fff 64bit]
[ 4.445117] pci 0000:30:02.0: PCI bridge to [bus 31]
[ 4.450763] pci 0000:30:02.2: PCI bridge to [bus 32]
[ 4.456450] pci 0000:30:03.0: PCI bridge to [bus 33]
[ 4.462059] pci_bus 0000:30: on NUMA node 3
[ 4.462060] acpi PNP0A08:03: Disabling ASPM (FADT indicates it is unsupported)
[ 4.470231] ACPI: Enabled 1 GPEs in block 80 to FF
[ 4.475943] vgaarb: setting as boot device: PCI:0000:06:00.1
[ 4.482310] vgaarb: device added: PCI:0000:06:00.1,decodes=io+mem,owns=io+mem,locks=none
[ 4.491443] vgaarb: loaded
[ 4.494481] vgaarb: bridge control possible 0000:06:00.1
[ 4.500811] SCSI subsystem initialized
[ 4.505074] ACPI: bus type USB registered
[ 4.509613] usbcore: registered new interface driver usbfs
[ 4.515782] usbcore: registered new interface driver hub
[ 4.522745] usbcore: registered new device driver usb
[ 4.530014] PCI: Using ACPI for IRQ routing
[ 4.535053] PCI: Discovered peer bus 0f
[ 4.539361] PCI: root bus 0f: using default resources
[ 4.539364] PCI: Probing PCI hardware (bus 0f)
[ 4.539424] PCI host bridge to bus 0000:0f
[ 4.544073] pci_bus 0000:0f: root bus resource [io 0x0000-0xffff]
[ 4.551027] pci_bus 0000:0f: root bus resource [mem 0x00000000-0x3fffffffffff]
[ 4.559136] pci_bus 0000:0f: No busn resource found for root bus, will use [bus 0f-ff]
[ 4.568031] pci_bus 0000:0f: busn_res: can not insert [bus 0f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-0f])
[ 4.568053] pci 0000:0f:08.0: [8086:0e80] type 00 class 0x088000
[ 4.568204] pci 0000:0f:08.2: [8086:0e32] type 00 class 0x110100
[ 4.568278] pci 0000:0f:09.0: [8086:0e90] type 00 class 0x088000
[ 4.568346] pci 0000:0f:09.2: [8086:0e33] type 00 class 0x110100
[ 4.568416] pci 0000:0f:0a.0: [8086:0ec0] type 00 class 0x088000
[ 4.568479] pci 0000:0f:0a.1: [8086:0ec1] type 00 class 0x088000
[ 4.568548] pci 0000:0f:0a.2: [8086:0ec2] type 00 class 0x088000
[ 4.568612] pci 0000:0f:0a.3: [8086:0ec3] type 00 class 0x088000
[ 4.568679] pci 0000:0f:0b.0: [8086:0e1e] type 00 class 0x088000
[ 4.568745] pci 0000:0f:0b.3: [8086:0e1f] type 00 class 0x088000
[ 4.568810] pci 0000:0f:0c.0: [8086:0ee0] type 00 class 0x088000
[ 4.568885] pci 0000:0f:0c.1: [8086:0ee2] type 00 class 0x088000
[ 4.568947] pci 0000:0f:0c.2: [8086:0ee4] type 00 class 0x088000
[ 4.569012] pci 0000:0f:0c.3: [8086:0ee6] type 00 class 0x088000
[ 4.569084] pci 0000:0f:0c.4: [8086:0ee8] type 00 class 0x088000
[ 4.569148] pci 0000:0f:0c.5: [8086:0eea] type 00 class 0x088000
[ 4.569211] pci 0000:0f:0c.6: [8086:0eec] type 00 class 0x088000
[ 4.569274] pci 0000:0f:0c.7: [8086:0eee] type 00 class 0x088000
[ 4.569371] pci 0000:0f:0d.0: [8086:0ee1] type 00 class 0x088000
[ 4.569433] pci 0000:0f:0d.1: [8086:0ee3] type 00 class 0x088000
[ 4.569497] pci 0000:0f:0d.2: [8086:0ee5] type 00 class 0x088000
[ 4.569562] pci 0000:0f:0d.3: [8086:0ee7] type 00 class 0x088000
[ 4.569626] pci 0000:0f:0d.4: [8086:0ee9] type 00 class 0x088000
[ 4.569689] pci 0000:0f:0d.5: [8086:0eeb] type 00 class 0x088000
[ 4.569752] pci 0000:0f:0d.6: [8086:0eed] type 00 class 0x088000
[ 4.569816] pci 0000:0f:0e.0: [8086:0ea0] type 00 class 0x088000
[ 4.569883] pci 0000:0f:0e.1: [8086:0e30] type 00 class 0x110100
[ 4.569961] pci 0000:0f:0f.0: [8086:0ea8] type 00 class 0x088000
[ 4.570055] pci 0000:0f:0f.1: [8086:0e71] type 00 class 0x088000
[ 4.570140] pci 0000:0f:0f.2: [8086:0eaa] type 00 class 0x088000
[ 4.570233] pci 0000:0f:0f.3: [8086:0eab] type 00 class 0x088000
[ 4.570320] pci 0000:0f:0f.4: [8086:0eac] type 00 class 0x088000
[ 4.570406] pci 0000:0f:0f.5: [8086:0ead] type 00 class 0x088000
[ 4.570491] pci 0000:0f:10.0: [8086:0eb0] type 00 class 0x088000
[ 4.570578] pci 0000:0f:10.1: [8086:0eb1] type 00 class 0x088000
[ 4.570665] pci 0000:0f:10.2: [8086:0eb2] type 00 class 0x088000
[ 4.570749] pci 0000:0f:10.3: [8086:0eb3] type 00 class 0x088000
[ 4.570836] pci 0000:0f:10.4: [8086:0eb4] type 00 class 0x088000
[ 4.570926] pci 0000:0f:10.5: [8086:0eb5] type 00 class 0x088000
[ 4.571014] pci 0000:0f:10.6: [8086:0eb6] type 00 class 0x088000
[ 4.571105] pci 0000:0f:10.7: [8086:0eb7] type 00 class 0x088000
[ 4.571193] pci 0000:0f:11.0: [8086:0ef8] type 00 class 0x088000
[ 4.571279] pci 0000:0f:11.1: [8086:0ef9] type 00 class 0x088000
[ 4.571367] pci 0000:0f:11.2: [8086:0efa] type 00 class 0x088000
[ 4.571455] pci 0000:0f:11.4: [8086:0efc] type 00 class 0x088000
[ 4.571543] pci 0000:0f:11.5: [8086:0efd] type 00 class 0x088000
[ 4.571634] pci 0000:0f:13.0: [8086:0e1d] type 00 class 0x088000
[ 4.571699] pci 0000:0f:13.1: [8086:0e34] type 00 class 0x110100
[ 4.571766] pci 0000:0f:13.4: [8086:0e81] type 00 class 0x088000
[ 4.571835] pci 0000:0f:13.5: [8086:0e36] type 00 class 0x110100
[ 4.571900] pci 0000:0f:13.6: [8086:0e37] type 00 class 0x110100
[ 4.571969] pci 0000:0f:16.0: [8086:0ec8] type 00 class 0x088000
[ 4.572035] pci 0000:0f:16.1: [8086:0ec9] type 00 class 0x088000
[ 4.572103] pci 0000:0f:16.2: [8086:0eca] type 00 class 0x088000
[ 4.572176] pci 0000:0f:18.0: [8086:0e40] type 00 class 0x088000
[ 4.572247] pci 0000:0f:18.2: [8086:0e3a] type 00 class 0x110100
[ 4.572332] pci 0000:0f:1c.0: [8086:0e60] type 00 class 0x088000
[ 4.572434] pci 0000:0f:1c.1: [8086:0e38] type 00 class 0x110100
[ 4.572516] pci 0000:0f:1d.0: [8086:0e68] type 00 class 0x088000
[ 4.572611] pci 0000:0f:1d.1: [8086:0e79] type 00 class 0x088000
[ 4.572703] pci 0000:0f:1d.2: [8086:0e6a] type 00 class 0x088000
[ 4.572792] pci 0000:0f:1d.3: [8086:0e6b] type 00 class 0x088000
[ 4.572883] pci 0000:0f:1d.4: [8086:0e6c] type 00 class 0x088000
[ 4.572972] pci 0000:0f:1d.5: [8086:0e6d] type 00 class 0x088000
[ 4.573064] pci 0000:0f:1e.0: [8086:0ef0] type 00 class 0x088000
[ 4.573155] pci 0000:0f:1e.1: [8086:0ef1] type 00 class 0x088000
[ 4.573247] pci 0000:0f:1e.2: [8086:0ef2] type 00 class 0x088000
[ 4.573337] pci 0000:0f:1e.3: [8086:0ef3] type 00 class 0x088000
[ 4.573428] pci 0000:0f:1e.4: [8086:0ef4] type 00 class 0x088000
[ 4.573526] pci 0000:0f:1e.5: [8086:0ef5] type 00 class 0x088000
[ 4.573617] pci 0000:0f:1e.6: [8086:0ef6] type 00 class 0x088000
[ 4.573707] pci 0000:0f:1e.7: [8086:0ef7] type 00 class 0x088000
[ 4.573797] pci 0000:0f:1f.0: [8086:0ed8] type 00 class 0x088000
[ 4.573888] pci 0000:0f:1f.1: [8086:0ed9] type 00 class 0x088000
[ 4.573979] pci 0000:0f:1f.4: [8086:0edc] type 00 class 0x088000
[ 4.574067] pci 0000:0f:1f.5: [8086:0edd] type 00 class 0x088000
[ 4.574157] pci 0000:0f:1f.6: [8086:0ede] type 00 class 0x088000
[ 4.574242] pci 0000:0f:1f.7: [8086:0edf] type 00 class 0x088000
[ 4.574332] pci_bus 0000:0f: busn_res: [bus 0f-ff] end is updated to 0f
[ 4.574334] pci_bus 0000:0f: busn_res: can not insert [bus 0f] under domain [bus 00-ff] (conflicts with (null) [bus 00-0f])
[ 4.574564] PCI: Discovered peer bus 1f
[ 4.578866] PCI: root bus 1f: using default resources
[ 4.578867] PCI: Probing PCI hardware (bus 1f)
[ 4.578891] PCI host bridge to bus 0000:1f
[ 4.583490] pci_bus 0000:1f: root bus resource [io 0x0000-0xffff]
[ 4.590431] pci_bus 0000:1f: root bus resource [mem 0x00000000-0x3fffffffffff]
[ 4.598543] pci_bus 0000:1f: No busn resource found for root bus, will use [bus 1f-ff]
[ 4.607436] pci_bus 0000:1f: busn_res: can not insert [bus 1f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 10-1f])
[ 4.607447] pci 0000:1f:08.0: [8086:0e80] type 00 class 0x088000
[ 4.607522] pci 0000:1f:08.2: [8086:0e32] type 00 class 0x110100
[ 4.607590] pci 0000:1f:09.0: [8086:0e90] type 00 class 0x088000
[ 4.607663] pci 0000:1f:09.2: [8086:0e33] type 00 class 0x110100
[ 4.607735] pci 0000:1f:0a.0: [8086:0ec0] type 00 class 0x088000
[ 4.607798] pci 0000:1f:0a.1: [8086:0ec1] type 00 class 0x088000
[ 4.607862] pci 0000:1f:0a.2: [8086:0ec2] type 00 class 0x088000
[ 4.607928] pci 0000:1f:0a.3: [8086:0ec3] type 00 class 0x088000
[ 4.607997] pci 0000:1f:0b.0: [8086:0e1e] type 00 class 0x088000
[ 4.608062] pci 0000:1f:0b.3: [8086:0e1f] type 00 class 0x088000
[ 4.608122] pci 0000:1f:0c.0: [8086:0ee0] type 00 class 0x088000
[ 4.608185] pci 0000:1f:0c.1: [8086:0ee2] type 00 class 0x088000
[ 4.608248] pci 0000:1f:0c.2: [8086:0ee4] type 00 class 0x088000
[ 4.608317] pci 0000:1f:0c.3: [8086:0ee6] type 00 class 0x088000
[ 4.608385] pci 0000:1f:0c.4: [8086:0ee8] type 00 class 0x088000
[ 4.608454] pci 0000:1f:0c.5: [8086:0eea] type 00 class 0x088000
[ 4.608519] pci 0000:1f:0c.6: [8086:0eec] type 00 class 0x088000
[ 4.608582] pci 0000:1f:0c.7: [8086:0eee] type 00 class 0x088000
[ 4.608643] pci 0000:1f:0d.0: [8086:0ee1] type 00 class 0x088000
[ 4.608709] pci 0000:1f:0d.1: [8086:0ee3] type 00 class 0x088000
[ 4.608771] pci 0000:1f:0d.2: [8086:0ee5] type 00 class 0x088000
[ 4.608835] pci 0000:1f:0d.3: [8086:0ee7] type 00 class 0x088000
[ 4.608898] pci 0000:1f:0d.4: [8086:0ee9] type 00 class 0x088000
[ 4.608965] pci 0000:1f:0d.5: [8086:0eeb] type 00 class 0x088000
[ 4.609030] pci 0000:1f:0d.6: [8086:0eed] type 00 class 0x088000
[ 4.609094] pci 0000:1f:0e.0: [8086:0ea0] type 00 class 0x088000
[ 4.609164] pci 0000:1f:0e.1: [8086:0e30] type 00 class 0x110100
[ 4.609239] pci 0000:1f:0f.0: [8086:0ea8] type 00 class 0x088000
[ 4.609330] pci 0000:1f:0f.1: [8086:0e71] type 00 class 0x088000
[ 4.609418] pci 0000:1f:0f.2: [8086:0eaa] type 00 class 0x088000
[ 4.609511] pci 0000:1f:0f.3: [8086:0eab] type 00 class 0x088000
[ 4.609598] pci 0000:1f:0f.4: [8086:0eac] type 00 class 0x088000
[ 4.609688] pci 0000:1f:0f.5: [8086:0ead] type 00 class 0x088000
[ 4.609778] pci 0000:1f:10.0: [8086:0eb0] type 00 class 0x088000
[ 4.609868] pci 0000:1f:10.1: [8086:0eb1] type 00 class 0x088000
[ 4.609957] pci 0000:1f:10.2: [8086:0eb2] type 00 class 0x088000
[ 4.610044] pci 0000:1f:10.3: [8086:0eb3] type 00 class 0x088000
[ 4.610133] pci 0000:1f:10.4: [8086:0eb4] type 00 class 0x088000
[ 4.610220] pci 0000:1f:10.5: [8086:0eb5] type 00 class 0x088000
[ 4.610307] pci 0000:1f:10.6: [8086:0eb6] type 00 class 0x088000
[ 4.610397] pci 0000:1f:10.7: [8086:0eb7] type 00 class 0x088000
[ 4.610487] pci 0000:1f:11.0: [8086:0ef8] type 00 class 0x088000
[ 4.610575] pci 0000:1f:11.1: [8086:0ef9] type 00 class 0x088000
[ 4.610661] pci 0000:1f:11.2: [8086:0efa] type 00 class 0x088000
[ 4.610749] pci 0000:1f:11.4: [8086:0efc] type 00 class 0x088000
[ 4.610836] pci 0000:1f:11.5: [8086:0efd] type 00 class 0x088000
[ 4.610922] pci 0000:1f:13.0: [8086:0e1d] type 00 class 0x088000
[ 4.610988] pci 0000:1f:13.1: [8086:0e34] type 00 class 0x110100
[ 4.611058] pci 0000:1f:13.4: [8086:0e81] type 00 class 0x088000
[ 4.611123] pci 0000:1f:13.5: [8086:0e36] type 00 class 0x110100
[ 4.611192] pci 0000:1f:13.6: [8086:0e37] type 00 class 0x110100
[ 4.611263] pci 0000:1f:16.0: [8086:0ec8] type 00 class 0x088000
[ 4.611331] pci 0000:1f:16.1: [8086:0ec9] type 00 class 0x088000
[ 4.611398] pci 0000:1f:16.2: [8086:0eca] type 00 class 0x088000
[ 4.611479] pci 0000:1f:18.0: [8086:0e40] type 00 class 0x088000
[ 4.611593] pci 0000:1f:18.2: [8086:0e3a] type 00 class 0x110100
[ 4.611687] pci 0000:1f:1c.0: [8086:0e60] type 00 class 0x088000
[ 4.611761] pci 0000:1f:1c.1: [8086:0e38] type 00 class 0x110100
[ 4.611843] pci 0000:1f:1d.0: [8086:0e68] type 00 class 0x088000
[ 4.611934] pci 0000:1f:1d.1: [8086:0e79] type 00 class 0x088000
[ 4.612023] pci 0000:1f:1d.2: [8086:0e6a] type 00 class 0x088000
[ 4.612110] pci 0000:1f:1d.3: [8086:0e6b] type 00 class 0x088000
[ 4.612198] pci 0000:1f:1d.4: [8086:0e6c] type 00 class 0x088000
[ 4.612287] pci 0000:1f:1d.5: [8086:0e6d] type 00 class 0x088000
[ 4.612381] pci 0000:1f:1e.0: [8086:0ef0] type 00 class 0x088000
[ 4.612476] pci 0000:1f:1e.1: [8086:0ef1] type 00 class 0x088000
[ 4.612568] pci 0000:1f:1e.2: [8086:0ef2] type 00 class 0x088000
[ 4.612663] pci 0000:1f:1e.3: [8086:0ef3] type 00 class 0x088000
[ 4.612753] pci 0000:1f:1e.4: [8086:0ef4] type 00 class 0x088000
[ 4.612843] pci 0000:1f:1e.5: [8086:0ef5] type 00 class 0x088000
[ 4.612934] pci 0000:1f:1e.6: [8086:0ef6] type 00 class 0x088000
[ 4.613024] pci 0000:1f:1e.7: [8086:0ef7] type 00 class 0x088000
[ 4.613115] pci 0000:1f:1f.0: [8086:0ed8] type 00 class 0x088000
[ 4.613204] pci 0000:1f:1f.1: [8086:0ed9] type 00 class 0x088000
[ 4.613296] pci 0000:1f:1f.4: [8086:0edc] type 00 class 0x088000
[ 4.613383] pci 0000:1f:1f.5: [8086:0edd] type 00 class 0x088000
[ 4.613474] pci 0000:1f:1f.6: [8086:0ede] type 00 class 0x088000
[ 4.613562] pci 0000:1f:1f.7: [8086:0edf] type 00 class 0x088000
[ 4.613648] pci_bus 0000:1f: busn_res: [bus 1f-ff] end is updated to 1f
[ 4.613650] pci_bus 0000:1f: busn_res: can not insert [bus 1f] under domain [bus 00-ff] (conflicts with (null) [bus 10-1f])
[ 4.613945] PCI: Discovered peer bus 2f
[ 4.618249] PCI: root bus 2f: using default resources
[ 4.618250] PCI: Probing PCI hardware (bus 2f)
[ 4.618271] PCI host bridge to bus 0000:2f
[ 4.622871] pci_bus 0000:2f: root bus resource [io 0x0000-0xffff]
[ 4.629813] pci_bus 0000:2f: root bus resource [mem 0x00000000-0x3fffffffffff]
[ 4.637923] pci_bus 0000:2f: No busn resource found for root bus, will use [bus 2f-ff]
[ 4.646817] pci_bus 0000:2f: busn_res: can not insert [bus 2f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 20-2f])
[ 4.646828] pci 0000:2f:08.0: [8086:0e80] type 00 class 0x088000
[ 4.646897] pci 0000:2f:08.2: [8086:0e32] type 00 class 0x110100
[ 4.646965] pci 0000:2f:09.0: [8086:0e90] type 00 class 0x088000
[ 4.647029] pci 0000:2f:09.2: [8086:0e33] type 00 class 0x110100
[ 4.647104] pci 0000:2f:0a.0: [8086:0ec0] type 00 class 0x088000
[ 4.647166] pci 0000:2f:0a.1: [8086:0ec1] type 00 class 0x088000
[ 4.647225] pci 0000:2f:0a.2: [8086:0ec2] type 00 class 0x088000
[ 4.647292] pci 0000:2f:0a.3: [8086:0ec3] type 00 class 0x088000
[ 4.647353] pci 0000:2f:0b.0: [8086:0e1e] type 00 class 0x088000
[ 4.647412] pci 0000:2f:0b.3: [8086:0e1f] type 00 class 0x088000
[ 4.647478] pci 0000:2f:0c.0: [8086:0ee0] type 00 class 0x088000
[ 4.647538] pci 0000:2f:0c.1: [8086:0ee2] type 00 class 0x088000
[ 4.647598] pci 0000:2f:0c.2: [8086:0ee4] type 00 class 0x088000
[ 4.647657] pci 0000:2f:0c.3: [8086:0ee6] type 00 class 0x088000
[ 4.647719] pci 0000:2f:0c.4: [8086:0ee8] type 00 class 0x088000
[ 4.647776] pci 0000:2f:0c.5: [8086:0eea] type 00 class 0x088000
[ 4.647839] pci 0000:2f:0c.6: [8086:0eec] type 00 class 0x088000
[ 4.647899] pci 0000:2f:0c.7: [8086:0eee] type 00 class 0x088000
[ 4.647961] pci 0000:2f:0d.0: [8086:0ee1] type 00 class 0x088000
[ 4.648023] pci 0000:2f:0d.1: [8086:0ee3] type 00 class 0x088000
[ 4.648083] pci 0000:2f:0d.2: [8086:0ee5] type 00 class 0x088000
[ 4.648145] pci 0000:2f:0d.3: [8086:0ee7] type 00 class 0x088000
[ 4.648206] pci 0000:2f:0d.4: [8086:0ee9] type 00 class 0x088000
[ 4.648264] pci 0000:2f:0d.5: [8086:0eeb] type 00 class 0x088000
[ 4.648323] pci 0000:2f:0d.6: [8086:0eed] type 00 class 0x088000
[ 4.648381] pci 0000:2f:0e.0: [8086:0ea0] type 00 class 0x088000
[ 4.648447] pci 0000:2f:0e.1: [8086:0e30] type 00 class 0x110100
[ 4.648519] pci 0000:2f:0f.0: [8086:0ea8] type 00 class 0x088000
[ 4.648597] pci 0000:2f:0f.1: [8086:0e71] type 00 class 0x088000
[ 4.648676] pci 0000:2f:0f.2: [8086:0eaa] type 00 class 0x088000
[ 4.648753] pci 0000:2f:0f.3: [8086:0eab] type 00 class 0x088000
[ 4.648840] pci 0000:2f:0f.4: [8086:0eac] type 00 class 0x088000
[ 4.648924] pci 0000:2f:0f.5: [8086:0ead] type 00 class 0x088000
[ 4.649004] pci 0000:2f:10.0: [8086:0eb0] type 00 class 0x088000
[ 4.649089] pci 0000:2f:10.1: [8086:0eb1] type 00 class 0x088000
[ 4.649174] pci 0000:2f:10.2: [8086:0eb2] type 00 class 0x088000
[ 4.649255] pci 0000:2f:10.3: [8086:0eb3] type 00 class 0x088000
[ 4.649337] pci 0000:2f:10.4: [8086:0eb4] type 00 class 0x088000
[ 4.649420] pci 0000:2f:10.5: [8086:0eb5] type 00 class 0x088000
[ 4.649503] pci 0000:2f:10.6: [8086:0eb6] type 00 class 0x088000
[ 4.649583] pci 0000:2f:10.7: [8086:0eb7] type 00 class 0x088000
[ 4.649664] pci 0000:2f:11.0: [8086:0ef8] type 00 class 0x088000
[ 4.649753] pci 0000:2f:11.1: [8086:0ef9] type 00 class 0x088000
[ 4.649838] pci 0000:2f:11.2: [8086:0efa] type 00 class 0x088000
[ 4.649921] pci 0000:2f:11.4: [8086:0efc] type 00 class 0x088000
[ 4.650001] pci 0000:2f:11.5: [8086:0efd] type 00 class 0x088000
[ 4.650088] pci 0000:2f:13.0: [8086:0e1d] type 00 class 0x088000
[ 4.650150] pci 0000:2f:13.1: [8086:0e34] type 00 class 0x110100
[ 4.650213] pci 0000:2f:13.4: [8086:0e81] type 00 class 0x088000
[ 4.650275] pci 0000:2f:13.5: [8086:0e36] type 00 class 0x110100
[ 4.650419] pci 0000:2f:13.6: [8086:0e37] type 00 class 0x110100
[ 4.650486] pci 0000:2f:16.0: [8086:0ec8] type 00 class 0x088000
[ 4.650549] pci 0000:2f:16.1: [8086:0ec9] type 00 class 0x088000
[ 4.650612] pci 0000:2f:16.2: [8086:0eca] type 00 class 0x088000
[ 4.650684] pci 0000:2f:18.0: [8086:0e40] type 00 class 0x088000
[ 4.650751] pci 0000:2f:18.2: [8086:0e3a] type 00 class 0x110100
[ 4.650827] pci 0000:2f:1c.0: [8086:0e60] type 00 class 0x088000
[ 4.650902] pci 0000:2f:1c.1: [8086:0e38] type 00 class 0x110100
[ 4.650982] pci 0000:2f:1d.0: [8086:0e68] type 00 class 0x088000
[ 4.651067] pci 0000:2f:1d.1: [8086:0e79] type 00 class 0x088000
[ 4.651152] pci 0000:2f:1d.2: [8086:0e6a] type 00 class 0x088000
[ 4.651235] pci 0000:2f:1d.3: [8086:0e6b] type 00 class 0x088000
[ 4.651320] pci 0000:2f:1d.4: [8086:0e6c] type 00 class 0x088000
[ 4.651401] pci 0000:2f:1d.5: [8086:0e6d] type 00 class 0x088000
[ 4.651486] pci 0000:2f:1e.0: [8086:0ef0] type 00 class 0x088000
[ 4.651570] pci 0000:2f:1e.1: [8086:0ef1] type 00 class 0x088000
[ 4.651654] pci 0000:2f:1e.2: [8086:0ef2] type 00 class 0x088000
[ 4.651739] pci 0000:2f:1e.3: [8086:0ef3] type 00 class 0x088000
[ 4.651824] pci 0000:2f:1e.4: [8086:0ef4] type 00 class 0x088000
[ 4.651915] pci 0000:2f:1e.5: [8086:0ef5] type 00 class 0x088000
[ 4.651999] pci 0000:2f:1e.6: [8086:0ef6] type 00 class 0x088000
[ 4.652083] pci 0000:2f:1e.7: [8086:0ef7] type 00 class 0x088000
[ 4.652167] pci 0000:2f:1f.0: [8086:0ed8] type 00 class 0x088000
[ 4.652251] pci 0000:2f:1f.1: [8086:0ed9] type 00 class 0x088000
[ 4.652365] pci 0000:2f:1f.4: [8086:0edc] type 00 class 0x088000
[ 4.652448] pci 0000:2f:1f.5: [8086:0edd] type 00 class 0x088000
[ 4.652531] pci 0000:2f:1f.6: [8086:0ede] type 00 class 0x088000
[ 4.652612] pci 0000:2f:1f.7: [8086:0edf] type 00 class 0x088000
[ 4.652694] pci_bus 0000:2f: busn_res: [bus 2f-ff] end is updated to 2f
[ 4.652696] pci_bus 0000:2f: busn_res: can not insert [bus 2f] under domain [bus 00-ff] (conflicts with (null) [bus 20-2f])
[ 4.652886] PCI: Discovered peer bus 3f
[ 4.657189] PCI: root bus 3f: using default resources
[ 4.657190] PCI: Probing PCI hardware (bus 3f)
[ 4.657214] PCI host bridge to bus 0000:3f
[ 4.661811] pci_bus 0000:3f: root bus resource [io 0x0000-0xffff]
[ 4.668749] pci_bus 0000:3f: root bus resource [mem 0x00000000-0x3fffffffffff]
[ 4.676861] pci_bus 0000:3f: No busn resource found for root bus, will use [bus 3f-ff]
[ 4.685753] pci_bus 0000:3f: busn_res: can not insert [bus 3f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 30-3f])
[ 4.685763] pci 0000:3f:08.0: [8086:0e80] type 00 class 0x088000
[ 4.685831] pci 0000:3f:08.2: [8086:0e32] type 00 class 0x110100
[ 4.685895] pci 0000:3f:09.0: [8086:0e90] type 00 class 0x088000
[ 4.685955] pci 0000:3f:09.2: [8086:0e33] type 00 class 0x110100
[ 4.686023] pci 0000:3f:0a.0: [8086:0ec0] type 00 class 0x088000
[ 4.686081] pci 0000:3f:0a.1: [8086:0ec1] type 00 class 0x088000
[ 4.686139] pci 0000:3f:0a.2: [8086:0ec2] type 00 class 0x088000
[ 4.686195] pci 0000:3f:0a.3: [8086:0ec3] type 00 class 0x088000
[ 4.686257] pci 0000:3f:0b.0: [8086:0e1e] type 00 class 0x088000
[ 4.686313] pci 0000:3f:0b.3: [8086:0e1f] type 00 class 0x088000
[ 4.686368] pci 0000:3f:0c.0: [8086:0ee0] type 00 class 0x088000
[ 4.686426] pci 0000:3f:0c.1: [8086:0ee2] type 00 class 0x088000
[ 4.686481] pci 0000:3f:0c.2: [8086:0ee4] type 00 class 0x088000
[ 4.686534] pci 0000:3f:0c.3: [8086:0ee6] type 00 class 0x088000
[ 4.686586] pci 0000:3f:0c.4: [8086:0ee8] type 00 class 0x088000
[ 4.686639] pci 0000:3f:0c.5: [8086:0eea] type 00 class 0x088000
[ 4.686691] pci 0000:3f:0c.6: [8086:0eec] type 00 class 0x088000
[ 4.686745] pci 0000:3f:0c.7: [8086:0eee] type 00 class 0x088000
[ 4.686801] pci 0000:3f:0d.0: [8086:0ee1] type 00 class 0x088000
[ 4.686854] pci 0000:3f:0d.1: [8086:0ee3] type 00 class 0x088000
[ 4.686914] pci 0000:3f:0d.2: [8086:0ee5] type 00 class 0x088000
[ 4.686971] pci 0000:3f:0d.3: [8086:0ee7] type 00 class 0x088000
[ 4.687027] pci 0000:3f:0d.4: [8086:0ee9] type 00 class 0x088000
[ 4.687082] pci 0000:3f:0d.5: [8086:0eeb] type 00 class 0x088000
[ 4.687138] pci 0000:3f:0d.6: [8086:0eed] type 00 class 0x088000
[ 4.687194] pci 0000:3f:0e.0: [8086:0ea0] type 00 class 0x088000
[ 4.687254] pci 0000:3f:0e.1: [8086:0e30] type 00 class 0x110100
[ 4.687320] pci 0000:3f:0f.0: [8086:0ea8] type 00 class 0x088000
[ 4.687398] pci 0000:3f:0f.1: [8086:0e71] type 00 class 0x088000
[ 4.687472] pci 0000:3f:0f.2: [8086:0eaa] type 00 class 0x088000
[ 4.687547] pci 0000:3f:0f.3: [8086:0eab] type 00 class 0x088000
[ 4.687621] pci 0000:3f:0f.4: [8086:0eac] type 00 class 0x088000
[ 4.687696] pci 0000:3f:0f.5: [8086:0ead] type 00 class 0x088000
[ 4.687777] pci 0000:3f:10.0: [8086:0eb0] type 00 class 0x088000
[ 4.687854] pci 0000:3f:10.1: [8086:0eb1] type 00 class 0x088000
[ 4.687928] pci 0000:3f:10.2: [8086:0eb2] type 00 class 0x088000
[ 4.688009] pci 0000:3f:10.3: [8086:0eb3] type 00 class 0x088000
[ 4.688087] pci 0000:3f:10.4: [8086:0eb4] type 00 class 0x088000
[ 4.688164] pci 0000:3f:10.5: [8086:0eb5] type 00 class 0x088000
[ 4.688242] pci 0000:3f:10.6: [8086:0eb6] type 00 class 0x088000
[ 4.688322] pci 0000:3f:10.7: [8086:0eb7] type 00 class 0x088000
[ 4.688402] pci 0000:3f:11.0: [8086:0ef8] type 00 class 0x088000
[ 4.688540] pci 0000:3f:11.1: [8086:0ef9] type 00 class 0x088000
[ 4.688615] pci 0000:3f:11.2: [8086:0efa] type 00 class 0x088000
[ 4.688691] pci 0000:3f:11.4: [8086:0efc] type 00 class 0x088000
[ 4.688767] pci 0000:3f:11.5: [8086:0efd] type 00 class 0x088000
[ 4.688843] pci 0000:3f:13.0: [8086:0e1d] type 00 class 0x088000
[ 4.688899] pci 0000:3f:13.1: [8086:0e34] type 00 class 0x110100
[ 4.688957] pci 0000:3f:13.4: [8086:0e81] type 00 class 0x088000
[ 4.689013] pci 0000:3f:13.5: [8086:0e36] type 00 class 0x110100
[ 4.689070] pci 0000:3f:13.6: [8086:0e37] type 00 class 0x110100
[ 4.689131] pci 0000:3f:16.0: [8086:0ec8] type 00 class 0x088000
[ 4.689200] pci 0000:3f:16.1: [8086:0ec9] type 00 class 0x088000
[ 4.689256] pci 0000:3f:16.2: [8086:0eca] type 00 class 0x088000
[ 4.689321] pci 0000:3f:18.0: [8086:0e40] type 00 class 0x088000
[ 4.689385] pci 0000:3f:18.2: [8086:0e3a] type 00 class 0x110100
[ 4.689453] pci 0000:3f:1c.0: [8086:0e60] type 00 class 0x088000
[ 4.689514] pci 0000:3f:1c.1: [8086:0e38] type 00 class 0x110100
[ 4.689583] pci 0000:3f:1d.0: [8086:0e68] type 00 class 0x088000
[ 4.689661] pci 0000:3f:1d.1: [8086:0e79] type 00 class 0x088000
[ 4.689739] pci 0000:3f:1d.2: [8086:0e6a] type 00 class 0x088000
[ 4.689818] pci 0000:3f:1d.3: [8086:0e6b] type 00 class 0x088000
[ 4.689896] pci 0000:3f:1d.4: [8086:0e6c] type 00 class 0x088000
[ 4.689973] pci 0000:3f:1d.5: [8086:0e6d] type 00 class 0x088000
[ 4.690053] pci 0000:3f:1e.0: [8086:0ef0] type 00 class 0x088000
[ 4.690132] pci 0000:3f:1e.1: [8086:0ef1] type 00 class 0x088000
[ 4.690209] pci 0000:3f:1e.2: [8086:0ef2] type 00 class 0x088000
[ 4.690291] pci 0000:3f:1e.3: [8086:0ef3] type 00 class 0x088000
[ 4.690367] pci 0000:3f:1e.4: [8086:0ef4] type 00 class 0x088000
[ 4.690441] pci 0000:3f:1e.5: [8086:0ef5] type 00 class 0x088000
[ 4.690515] pci 0000:3f:1e.6: [8086:0ef6] type 00 class 0x088000
[ 4.690587] pci 0000:3f:1e.7: [8086:0ef7] type 00 class 0x088000
[ 4.690662] pci 0000:3f:1f.0: [8086:0ed8] type 00 class 0x088000
[ 4.690734] pci 0000:3f:1f.1: [8086:0ed9] type 00 class 0x088000
[ 4.690817] pci 0000:3f:1f.4: [8086:0edc] type 00 class 0x088000
[ 4.690889] pci 0000:3f:1f.5: [8086:0edd] type 00 class 0x088000
[ 4.690964] pci 0000:3f:1f.6: [8086:0ede] type 00 class 0x088000
[ 4.691040] pci 0000:3f:1f.7: [8086:0edf] type 00 class 0x088000
[ 4.691114] pci_bus 0000:3f: busn_res: [bus 3f-ff] end is updated to 3f
[ 4.691116] pci_bus 0000:3f: busn_res: can not insert [bus 3f] under domain [bus 00-ff] (conflicts with (null) [bus 30-3f])
[ 4.691129] PCI: pci_cache_line_size set to 64 bytes
[ 4.691815] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[ 4.691818] e820: reserve RAM buffer [mem 0x77755018-0x77ffffff]
[ 4.691819] e820: reserve RAM buffer [mem 0x77787018-0x77ffffff]
[ 4.691820] e820: reserve RAM buffer [mem 0x78bff000-0x7bffffff]
[ 4.692190] NetLabel: Initializing
[ 4.696008] NetLabel: domain hash size = 128
[ 4.700898] NetLabel: protocols = UNLABELED CIPSOv4
[ 4.706496] NetLabel: unlabeled traffic allowed by default
[ 4.712849] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 4.719881] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 4.729035] Switched to clocksource hpet
[ 4.745387] pnp: PnP ACPI init
[ 4.749433] pnp 00:00: Plug and Play ACPI device, IDs IPI0001 (active)
[ 4.749533] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 4.750136] pnp: PnP ACPI: found 2 devices
[ 4.756963] pci 0000:01:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 4.768104] pci 0000:03:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[ 4.779241] pci 0000:21:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 4.790378] pci 0000:21:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 4.801582] pci 0000:00:02.2: BAR 14: assigned [mem 0x90000000-0x900fffff]
[ 4.809305] pci 0000:00:02.0: BAR 13: assigned [io 0x2000-0x2fff]
[ 4.816249] pci 0000:01:00.0: BAR 6: assigned [mem 0x90380000-0x903fffff pref]
[ 4.824363] pci 0000:01:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[ 4.832278] pci 0000:01:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[ 4.840586] pci 0000:01:00.0: BAR 2: assigned [io 0x2000-0x201f]
[ 4.847433] pci 0000:01:00.1: BAR 2: assigned [io 0x2020-0x203f]
[ 4.854279] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[ 4.860152] pci 0000:00:02.0: bridge window [io 0x2000-0x2fff]
[ 4.867003] pci 0000:00:02.0: bridge window [mem 0x90100000-0x903fffff]
[ 4.874630] pci 0000:00:02.0: bridge window [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[ 4.883918] pci 0000:03:00.0: BAR 6: assigned [mem 0x90000000-0x9003ffff pref]
[ 4.892030] pci 0000:03:00.1: BAR 6: assigned [mem 0x90040000-0x9007ffff pref]
[ 4.900141] pci 0000:00:02.2: PCI bridge to [bus 03]
[ 4.905719] pci 0000:00:02.2: bridge window [mem 0x90000000-0x900fffff]
[ 4.913344] pci 0000:00:02.2: bridge window [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[ 4.922632] pci 0000:00:03.0: PCI bridge to [bus 04]
[ 4.928219] pci 0000:00:11.0: PCI bridge to [bus 05]
[ 4.933810] pci 0000:06:00.2: BAR 6: assigned [mem 0x93a90000-0x93a9ffff pref]
[ 4.941922] pci 0000:00:1c.0: PCI bridge to [bus 06]
[ 4.947500] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
[ 4.954348] pci 0000:00:1c.0: bridge window [mem 0x92000000-0x93efffff]
[ 4.961982] pci_bus 0000:00: resource 4 [io 0x1000-0x3fff window]
[ 4.961983] pci_bus 0000:00: resource 5 [io 0x0000-0x0cf7 window]
[ 4.961985] pci_bus 0000:00: resource 6 [mem 0x90000000-0x93efffff window]
[ 4.961986] pci_bus 0000:00: resource 7 [mem 0x000a0000-0x000bffff window]
[ 4.961987] pci_bus 0000:00: resource 8 [mem 0xfed00000-0xfedfffff window]
[ 4.961989] pci_bus 0000:00: resource 9 [mem 0xfc000000000-0xfc07fffffff window]
[ 4.961990] pci_bus 0000:00: resource 10 [mem 0xfe200000000-0xfe27fffffff window]
[ 4.961993] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 4.961994] pci_bus 0000:01: resource 1 [mem 0x90100000-0x903fffff]
[ 4.961995] pci_bus 0000:01: resource 2 [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[ 4.961998] pci_bus 0000:03: resource 1 [mem 0x90000000-0x900fffff]
[ 4.961999] pci_bus 0000:03: resource 2 [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[ 4.962001] pci_bus 0000:06: resource 0 [io 0x1000-0x1fff]
[ 4.962002] pci_bus 0000:06: resource 1 [mem 0x92000000-0x93efffff]
[ 4.962026] pci 0000:10:02.0: PCI bridge to [bus 11]
[ 4.967614] pci 0000:10:02.2: PCI bridge to [bus 12]
[ 4.973200] pci 0000:10:03.0: PCI bridge to [bus 13]
[ 4.978786] pci_bus 0000:10: resource 4 [io 0x4000-0x7fff window]
[ 4.978787] pci_bus 0000:10: resource 5 [mem 0x94000000-0x97ff7fff window]
[ 4.978789] pci_bus 0000:10: resource 6 [mem 0xfc400000000-0xfc47fffffff window]
[ 4.978830] pci 0000:20:02.0: BAR 13: assigned [io 0x8000-0x8fff]
[ 4.985772] pci 0000:20:1c.0: BAR 13: assigned [io 0x9000-0x9fff]
[ 4.992715] pci 0000:21:00.0: BAR 6: assigned [mem 0x98280000-0x982fffff pref]
[ 5.000828] pci 0000:21:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[ 5.008747] pci 0000:21:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[ 5.017053] pci 0000:21:00.0: BAR 2: assigned [io 0x8000-0x801f]
[ 5.023898] pci 0000:21:00.1: BAR 2: assigned [io 0x8020-0x803f]
[ 5.030745] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[ 5.036613] pci 0000:20:02.0: bridge window [io 0x8000-0x8fff]
[ 5.043461] pci 0000:20:02.0: bridge window [mem 0x98000000-0x982fffff]
[ 5.051088] pci 0000:20:02.0: bridge window [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[ 5.060374] pci 0000:20:02.2: PCI bridge to [bus 23]
[ 5.065961] pci 0000:20:03.0: PCI bridge to [bus 24]
[ 5.071547] pci 0000:20:11.0: PCI bridge to [bus 25]
[ 5.077136] pci 0000:26:00.2: BAR 6: assigned [mem 0x9bd90000-0x9bd9ffff pref]
[ 5.085249] pci 0000:26:00.0: BAR 0: assigned [io 0x9000-0x90ff]
[ 5.092096] pci 0000:26:00.0: BAR 2: assigned [io 0x9400-0x94ff]
[ 5.098943] pci 0000:26:00.2: BAR 0: assigned [io 0x9800-0x98ff]
[ 5.105790] pci 0000:20:1c.0: PCI bridge to [bus 26]
[ 5.111367] pci 0000:20:1c.0: bridge window [io 0x9000-0x9fff]
[ 5.118214] pci 0000:20:1c.0: bridge window [mem 0x9bb00000-0x9befffff]
[ 5.125847] pci_bus 0000:20: resource 4 [io 0x8000-0xbfff window]
[ 5.125848] pci_bus 0000:20: resource 5 [mem 0x98000000-0x9befffff window]
[ 5.125849] pci_bus 0000:20: resource 6 [mem 0xf0800000000-0xf087fffffff window]
[ 5.125851] pci_bus 0000:21: resource 0 [io 0x8000-0x8fff]
[ 5.125852] pci_bus 0000:21: resource 1 [mem 0x98000000-0x982fffff]
[ 5.125854] pci_bus 0000:21: resource 2 [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[ 5.125856] pci_bus 0000:26: resource 0 [io 0x9000-0x9fff]
[ 5.125857] pci_bus 0000:26: resource 1 [mem 0x9bb00000-0x9befffff]
[ 5.125877] pci 0000:30:02.0: PCI bridge to [bus 31]
[ 5.131465] pci 0000:30:02.2: PCI bridge to [bus 32]
[ 5.137049] pci 0000:30:03.0: PCI bridge to [bus 33]
[ 5.142633] pci_bus 0000:30: resource 4 [io 0xc000-0xffff window]
[ 5.142634] pci_bus 0000:30: resource 5 [mem 0x9c000000-0x9fff7fff window]
[ 5.142636] pci_bus 0000:30: resource 6 [mem 0xf0c00000000-0xf0c7fffffff window]
[ 5.142645] pci_bus 0000:0f: resource 4 [io 0x0000-0xffff]
[ 5.142646] pci_bus 0000:0f: resource 5 [mem 0x00000000-0x3fffffffffff]
[ 5.142656] pci_bus 0000:1f: resource 4 [io 0x0000-0xffff]
[ 5.142657] pci_bus 0000:1f: resource 5 [mem 0x00000000-0x3fffffffffff]
[ 5.142668] pci_bus 0000:2f: resource 4 [io 0x0000-0xffff]
[ 5.142669] pci_bus 0000:2f: resource 5 [mem 0x00000000-0x3fffffffffff]
[ 5.142679] pci_bus 0000:3f: resource 4 [io 0x0000-0xffff]
[ 5.142680] pci_bus 0000:3f: resource 5 [mem 0x00000000-0x3fffffffffff]
[ 5.142830] NET: Registered protocol family 2
[ 5.149825] TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
[ 5.159842] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 5.167714] TCP: Hash tables configured (established 524288 bind 65536)
[ 5.175196] TCP: reno registered
[ 5.179010] UDP hash table entries: 65536 (order: 9, 2097152 bytes)
[ 5.186834] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes)
[ 5.195821] NET: Registered protocol family 1
[ 5.201140] pci 0000:06:00.1: Video device with shadowed ROM
[ 5.201993] PCI: CLS 64 bytes, default 64
[ 5.202151] Unpacking initramfs...
[ 5.385292] Freeing initrd memory: 11476K (ffff88003f4b3000 - ffff88003ffe8000)
[ 5.396627] IOMMU: dmar3 using Queued invalidation
[ 5.402014] IOMMU: dmar2 using Queued invalidation
[ 5.407398] IOMMU: dmar1 using Queued invalidation
[ 5.412784] IOMMU: dmar0 using Queued invalidation
[ 5.418180] IOMMU: Setting RMRR:
[ 5.421854] IOMMU: Setting identity map for device 0000:20:1d.0 [0x7990e000 - 0x79910fff]
[ 5.431144] IOMMU: Setting identity map for device 0000:00:1d.0 [0x79911000 - 0x79913fff]
[ 5.440401] IOMMU: Prepare 0-16MiB unity mapping for LPC
[ 5.446396] IOMMU: Setting identity map for device 0000:00:1f.0 [0x0 - 0xffffff]
[ 5.454788] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[ 5.480378] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[ 5.496177] microcode: CPU0 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.502933] microcode: CPU1 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.509684] microcode: CPU2 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.516435] microcode: CPU3 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.523187] microcode: CPU4 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.529939] microcode: CPU5 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.536691] microcode: CPU6 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.543440] microcode: CPU7 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.550190] microcode: CPU8 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.556941] microcode: CPU9 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.563691] microcode: CPU10 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.570541] microcode: CPU11 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.577388] microcode: CPU12 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.584237] microcode: CPU13 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.591085] microcode: CPU14 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.597952] microcode: CPU15 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.604848] microcode: CPU16 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.611699] microcode: CPU17 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.618549] microcode: CPU18 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.625396] microcode: CPU19 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.632245] microcode: CPU20 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.639092] microcode: CPU21 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.645944] microcode: CPU22 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.652793] microcode: CPU23 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.659640] microcode: CPU24 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.666491] microcode: CPU25 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.673339] microcode: CPU26 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.680186] microcode: CPU27 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.687035] microcode: CPU28 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.693884] microcode: CPU29 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.700782] microcode: CPU30 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.707642] microcode: CPU31 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.714494] microcode: CPU32 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.721347] microcode: CPU33 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.728198] microcode: CPU34 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.735046] microcode: CPU35 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.741896] microcode: CPU36 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.748745] microcode: CPU37 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.755594] microcode: CPU38 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.762441] microcode: CPU39 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.769291] microcode: CPU40 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.776139] microcode: CPU41 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.782989] microcode: CPU42 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.789836] microcode: CPU43 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.796683] microcode: CPU44 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.803550] microcode: CPU45 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.810417] microcode: CPU46 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.817263] microcode: CPU47 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.824111] microcode: CPU48 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.830959] microcode: CPU49 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.837801] microcode: CPU50 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.844652] microcode: CPU51 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.851499] microcode: CPU52 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.858347] microcode: CPU53 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.865193] microcode: CPU54 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.872040] microcode: CPU55 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.878888] microcode: CPU56 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.885735] microcode: CPU57 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.892584] microcode: CPU58 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.899432] microcode: CPU59 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.906282] microcode: CPU60 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.913130] microcode: CPU61 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.919976] microcode: CPU62 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.926822] microcode: CPU63 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.933668] microcode: CPU64 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.940516] microcode: CPU65 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.947361] microcode: CPU66 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.954210] microcode: CPU67 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.961057] microcode: CPU68 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.967903] microcode: CPU69 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.974748] microcode: CPU70 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.981596] microcode: CPU71 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.988441] microcode: CPU72 sig=0x306e7, pf=0x80, revision=0x70e
[ 5.995286] microcode: CPU73 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.002134] microcode: CPU74 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.008984] microcode: CPU75 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.015834] microcode: CPU76 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.022683] microcode: CPU77 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.029528] microcode: CPU78 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.036381] microcode: CPU79 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.043227] microcode: CPU80 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.050075] microcode: CPU81 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.056923] microcode: CPU82 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.063769] microcode: CPU83 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.070616] microcode: CPU84 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.077462] microcode: CPU85 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.084310] microcode: CPU86 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.091157] microcode: CPU87 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.098006] microcode: CPU88 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.104855] microcode: CPU89 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.111709] microcode: CPU90 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.118557] microcode: CPU91 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.125405] microcode: CPU92 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.132252] microcode: CPU93 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.139099] microcode: CPU94 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.145945] microcode: CPU95 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.152793] microcode: CPU96 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.159640] microcode: CPU97 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.166489] microcode: CPU98 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.173335] microcode: CPU99 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.180181] microcode: CPU100 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.187129] microcode: CPU101 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.194073] microcode: CPU102 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.201017] microcode: CPU103 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.207960] microcode: CPU104 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.214904] microcode: CPU105 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.221849] microcode: CPU106 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.228792] microcode: CPU107 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.235734] microcode: CPU108 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.242678] microcode: CPU109 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.249620] microcode: CPU110 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.256564] microcode: CPU111 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.263507] microcode: CPU112 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.270456] microcode: CPU113 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.277400] microcode: CPU114 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.284342] microcode: CPU115 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.291286] microcode: CPU116 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.298232] microcode: CPU117 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.305175] microcode: CPU118 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.312120] microcode: CPU119 sig=0x306e7, pf=0x80, revision=0x70e
[ 6.319173] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 6.337619] futex hash table entries: 32768 (order: 9, 2097152 bytes)
[ 6.345481] Initialise system trusted keyring
[ 6.350461] audit: initializing netlink subsys (disabled)
[ 6.356591] audit: type=2000 audit(1428561281.609:1): initialized
[ 6.365131] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 6.373672] zpool: loaded
[ 6.376617] zbud: loaded
[ 6.379862] VFS: Disk quotas dquot_6.5.2
[ 6.384384] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 6.392832] Key type big_key registered
[ 6.397148] SELinux: Registering netfilter hooks
[ 6.409570] alg: No test for stdrng (krng)
[ 6.414219] NET: Registered protocol family 38
[ 6.419245] Key type asymmetric registered
[ 6.423855] Asymmetric key parser 'x509' registered
[ 6.429361] bounce: pool size: 64 pages
[ 6.433722] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[ 6.442953] io scheduler noop registered
[ 6.447365] io scheduler deadline registered (default)
[ 6.453217] io scheduler cfq registered
[ 6.464350] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[ 6.472180] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[ 6.479517] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[ 6.486859] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
[ 6.486867] tsc: Refined TSC clocksource calibration: 2793.687 MHz
[ 6.493887] pcieport 0000:00:02.2: Signaling PME through PCIe PME interrupt
[ 6.501713] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[ 6.509049] pci 0000:03:00.1: Signaling PME through PCIe PME interrupt
[ 6.516389] pcie_pme 0000:00:02.2:pcie01: service driver pcie_pme loaded
[ 6.516415] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[ 6.524248] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[ 6.524274] pcieport 0000:00:11.0: Signaling PME through PCIe PME interrupt
[ 6.532101] pcie_pme 0000:00:11.0:pcie01: service driver pcie_pme loaded
[ 6.532135] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[ 6.539955] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[ 6.547293] pci 0000:06:00.1: Signaling PME through PCIe PME interrupt
[ 6.554627] pci 0000:06:00.2: Signaling PME through PCIe PME interrupt
[ 6.561964] pci 0000:06:00.4: Signaling PME through PCIe PME interrupt
[ 6.569302] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[ 6.569337] pcieport 0000:10:02.0: Signaling PME through PCIe PME interrupt
[ 6.577165] pcie_pme 0000:10:02.0:pcie01: service driver pcie_pme loaded
[ 6.577198] pcieport 0000:10:02.2: Signaling PME through PCIe PME interrupt
[ 6.585021] pcie_pme 0000:10:02.2:pcie01: service driver pcie_pme loaded
[ 6.585053] pcieport 0000:10:03.0: Signaling PME through PCIe PME interrupt
[ 6.592882] pcie_pme 0000:10:03.0:pcie01: service driver pcie_pme loaded
[ 6.592906] pcieport 0000:20:02.0: Signaling PME through PCIe PME interrupt
[ 6.600730] pci 0000:21:00.0: Signaling PME through PCIe PME interrupt
[ 6.608063] pci 0000:21:00.1: Signaling PME through PCIe PME interrupt
[ 6.615400] pcie_pme 0000:20:02.0:pcie01: service driver pcie_pme loaded
[ 6.615420] pcieport 0000:20:02.2: Signaling PME through PCIe PME interrupt
[ 6.623252] pcie_pme 0000:20:02.2:pcie01: service driver pcie_pme loaded
[ 6.623374] pcieport 0000:20:03.0: Signaling PME through PCIe PME interrupt
[ 6.631200] pcie_pme 0000:20:03.0:pcie01: service driver pcie_pme loaded
[ 6.631221] pcieport 0000:20:11.0: Signaling PME through PCIe PME interrupt
[ 6.639045] pcie_pme 0000:20:11.0:pcie01: service driver pcie_pme loaded
[ 6.639065] pcieport 0000:20:1c.0: Signaling PME through PCIe PME interrupt
[ 6.646889] pci 0000:26:00.0: Signaling PME through PCIe PME interrupt
[ 6.654221] pci 0000:26:00.2: Signaling PME through PCIe PME interrupt
[ 6.661560] pcie_pme 0000:20:1c.0:pcie01: service driver pcie_pme loaded
[ 6.661583] pcieport 0000:30:02.0: Signaling PME through PCIe PME interrupt
[ 6.669407] pcie_pme 0000:30:02.0:pcie01: service driver pcie_pme loaded
[ 6.669426] pcieport 0000:30:02.2: Signaling PME through PCIe PME interrupt
[ 6.677251] pcie_pme 0000:30:02.2:pcie01: service driver pcie_pme loaded
[ 6.677269] pcieport 0000:30:03.0: Signaling PME through PCIe PME interrupt
[ 6.685096] pcie_pme 0000:30:03.0:pcie01: service driver pcie_pme loaded
[ 6.685103] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 6.691387] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 6.698872] efifb: probing for efifb
[ 6.702930] efifb: framebuffer at 0x92000000, mapped to 0xffffc90035480000, using 3072k, total 3072k
[ 6.713193] efifb: mode is 1024x768x32, linelength=4096, pages=1
[ 6.719939] efifb: scrolling: redraw
[ 6.723957] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 6.763619] Console: switching to colour frame buffer device 128x48
[ 6.803254] fb0: EFI VGA frame buffer device
[ 6.808059] intel_idle: MWAIT substates: 0x1120
[ 6.808060] intel_idle: v0.4 model 0x3E
[ 6.808061] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 6.811857] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 6.821248] ACPI: Power Button [PWRB]
[ 6.828347] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[ 6.836769] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 6.864612] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 6.874031] Non-volatile memory driver v1.3
[ 6.878768] Linux agpgart interface v0.103
[ 6.884098] rdac: device handler registered
[ 6.888875] hp_sw: device handler registered
[ 6.893676] emc: device handler registered
[ 6.898277] alua: device handler registered
[ 6.903013] libphy: Fixed MDIO Bus: probed
[ 6.907694] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 6.915050] ehci-pci: EHCI PCI platform driver
[ 6.920601] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 6.926562] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
[ 6.934889] ehci-pci 0000:00:1d.0: debug port 2
[ 6.943907] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 6.943925] ehci-pci 0000:00:1d.0: irq 23, io mem 0x90400000
[ 6.955672] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 6.962189] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 6.969813] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 6.977929] usb usb1: Product: EHCI Host Controller
[ 6.983407] usb usb1: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[ 6.990351] usb usb1: SerialNumber: 0000:00:1d.0
[ 6.995664] hub 1-0:1.0: USB hub found
[ 6.999884] hub 1-0:1.0: 2 ports detected
[ 7.005054] ehci-pci 0000:20:1d.0: EHCI Host Controller
[ 7.011050] ehci-pci 0000:20:1d.0: new USB bus registered, assigned bus number 2
[ 7.019380] ehci-pci 0000:20:1d.0: debug port 2
[ 7.028398] ehci-pci 0000:20:1d.0: cache line size of 64 is not supported
[ 7.028429] ehci-pci 0000:20:1d.0: irq 46, io mem 0x98300000
[ 7.040775] ehci-pci 0000:20:1d.0: USB 2.0 started, EHCI 1.00
[ 7.047307] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 7.054934] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 7.063048] usb usb2: Product: EHCI Host Controller
[ 7.068525] usb usb2: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[ 7.075467] usb usb2: SerialNumber: 0000:20:1d.0
[ 7.080791] hub 2-0:1.0: USB hub found
[ 7.085015] hub 2-0:1.0: 2 ports detected
[ 7.089789] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 7.096742] ohci-pci: OHCI PCI platform driver
[ 7.101770] uhci_hcd: USB Universal Host Controller Interface driver
[ 7.108996] uhci_hcd 0000:06:00.4: UHCI Host Controller
[ 7.114939] uhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 3
[ 7.123266] uhci_hcd 0000:06:00.4: detected 8 ports
[ 7.128746] uhci_hcd 0000:06:00.4: port count misdetected? forcing to 2 ports
[ 7.136801] uhci_hcd 0000:06:00.4: irq 16, io base 0x00001500
[ 7.143377] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 7.151004] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 7.159117] usb usb3: Product: UHCI Host Controller
[ 7.164595] usb usb3: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[ 7.171538] usb usb3: SerialNumber: 0000:06:00.4
[ 7.176825] hub 3-0:1.0: USB hub found
[ 7.181044] hub 3-0:1.0: 2 ports detected
[ 7.185928] usbcore: registered new interface driver usbserial
[ 7.192494] usbcore: registered new interface driver usbserial_generic
[ 7.199840] usbserial: USB Serial support registered for generic
[ 7.206616] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 7.306117] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 7.391227] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 7.430660] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[ 7.438189] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 7.446446] hub 1-1:1.0: USB hub found
[ 7.450803] hub 1-1:1.0: 8 ports detected
[ 8.264599] i8042: No controller found
[ 8.268916] Switched to clocksource tsc
[ 8.268976] mousedev: PS/2 mouse device common for all mice
[ 8.269475] rtc_cmos 00:01: RTC can wake from S4
[ 8.269723] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[ 8.269781] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 8.269807] Intel P-state driver initializing.
[ 8.280750] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[ 8.280753] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 8.281192] hub 2-1:1.0: USB hub found
[ 8.281416] hub 2-1:1.0: 8 ports detected
[ 8.285050] EFI Variables Facility v0.08 2004-May-17
[ 8.306314] hidraw: raw HID events driver (C) Jiri Kosina
[ 8.306486] usbcore: registered new interface driver usbhid
[ 8.306487] usbhid: USB HID core driver
[ 8.306591] drop_monitor: Initializing network drop monitor service
[ 8.306991] TCP: cubic registered
[ 8.306997] Initializing XFRM netlink socket
[ 8.307264] NET: Registered protocol family 10
[ 8.309402] NET: Registered protocol family 17
[ 8.313579] Loading compiled-in X.509 certificates
[ 8.314485] Loaded X.509 cert 'Magrathea: Glacier signing key: 307113a598e2a4626872c8019495ffd1ab8d036a'
[ 8.314503] registered taskstats version 1
[ 8.319948] Key type trusted registered
[ 8.327646] Key type encrypted registered
[ 8.327656] ima: No TPM chip found, activating TPM-bypass!
[ 8.327731] evm: HMAC attrs: 0x1
[ 8.332339] rtc_cmos 00:01: setting system clock to 2015-04-09 06:34:50 UTC (1428561290)
[ 8.440072] Freeing unused kernel memory: 1704K (ffffffff81b4d000 - ffffffff81cf7000)
[ 8.442684] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[ 8.502978] systemd[1]: systemd 208 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[ 8.519572] systemd[1]: Running in initial RAM disk.
[ 8.537224] usb 1-1.3: New USB device found, idVendor=0424, idProduct=2660
[ 8.537341] systemd[1]: Set hostname to <dhb5.fcux.usa.hp.com>.
[ 8.551640] usb 1-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 8.551743] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
[ 8.552066] hub 1-1.3:1.0: USB hub found
[ 8.552150] hub 1-1.3:1.0: 2 ports detected
[ 8.577376] random: systemd urandom read with 10 bits of entropy available
[ 8.637307] usb 2-1.3: New USB device found, idVendor=0424, idProduct=2660
[ 8.645051] usb 2-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 8.653930] hub 2-1.3:1.0: USB hub found
[ 8.658495] hub 2-1.3:1.0: 2 ports detected
[ 8.659677] systemd[1]: Expecting device dev-disk-by\x2duuid-227bc7d6\x2d3f21\x2d4e34\x2db43d\x2d7f65c5e3dbcc.device...
[ 8.685007] systemd[1]: Starting -.slice.
[ 8.694976] systemd[1]: Created slice -.slice.
[ 8.700129] systemd[1]: Starting System Slice.
[ 8.711982] systemd[1]: Created slice System Slice.
[ 8.717566] systemd[1]: Starting Slices.
[ 8.727000] systemd[1]: Reached target Slices.
[ 8.732101] systemd[1]: Starting Timers.
[ 8.741014] systemd[1]: Reached target Timers.
[ 8.746119] systemd[1]: Starting Journal Socket.
[ 8.758024] systemd[1]: Listening on Journal Socket.
[ 8.763863] systemd[1]: Starting dracut cmdline hook...
[ 8.775622] systemd[1]: Starting Journal Service...
[ 8.793115] systemd[1]: Started Journal Service.
[ 8.805320] systemd-journald[955]: Vacuuming done, freed 0 bytes
[ 8.894627] device-mapper: uevent: version 1.0.3
[ 8.901087] device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised: dm-devel@redhat.com
[ 8.918129] device-mapper: multipath: version 1.8.0 loaded
[ 9.043076] systemd-udevd[1109]: starting version 208
[ 9.148278] [drm] Initialized drm 1.1.0 20060810
[ 9.154459] qla2xxx [0000:00:00.0]-0005: : QLogic Fibre Channel HBA Driver: 8.07.00.16-k.
[ 9.164786] qla2xxx [0000:03:00.0]-011c: : MSI-X vector count: 31.
[ 9.173021] qla2xxx [0000:03:00.0]-001d: : Found an ISP2031 irq 47 iobase 0xffffc9003543e000.
[ 9.194637] checking generic (92000000 300000) vs hw (92000000 1000000)
[ 9.194640] fb: switching to mgag200drmfb from EFI VGA
[ 9.201176] Console: switching to colour dummy device 80x25
[ 9.218672] [TTM] Zone kernel: Available graphics memory: 263902940 kiB
[ 9.226206] [TTM] Zone dma32: Available graphics memory: 2097152 kiB
[ 9.233545] [TTM] Initializing pool allocator
[ 9.240088] [TTM] Initializing DMA pool allocator
[ 9.300190] fbcon: mgadrmfb (fb0) is primary device
[ 9.501853] Console: switching to colour frame buffer device 128x48
[ 9.547921] mgag200 0000:06:00.1: fb0: mgadrmfb frame buffer device
[ 9.547922] mgag200 0000:06:00.1: registered panic notifier
[ 9.648081] [drm] Initialized mgag200 1.0.0 20110418 for 0000:06:00.1 on minor 0
[ 10.754648] scsi host0: qla2xxx
[ 10.761537] qla2xxx [0000:03:00.0]-00fb:0: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[ 10.770449] qla2xxx [0000:03:00.0]-00fc:0: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.0 hdma+ host#=0 fw=7.03.01 (d0d5).
[ 10.782726] qla2xxx [0000:03:00.1]-011c: : MSI-X vector count: 31.
[ 10.789672] qla2xxx [0000:03:00.1]-001d: : Found an ISP2031 irq 50 iobase 0xffffc9003543a000.
[ 11.542666] qla2xxx [0000:03:00.0]-500a:0: LOOP UP detected (8 Gbps).
[ 12.160433] scsi host1: qla2xxx
[ 12.167552] qla2xxx [0000:03:00.1]-00fb:1: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[ 12.176464] qla2xxx [0000:03:00.1]-00fc:1: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.1 hdma+ host#=1 fw=7.03.01 (d0d5).
[ 12.765519] scsi: waiting for bus probes to complete ...
[ 17.183350] scsi 0:0:0:0: Enclosure HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 17.193517] scsi 0:0:0:0: alua: supports implicit TPGS
[ 17.199816] scsi 0:0:0:0: alua: port group 01 rel port 05
[ 17.206101] scsi 0:0:0:0: alua: port group 01 state N non-preferred supports tOlusNA
[ 17.214817] scsi 0:0:0:0: alua: Attached
[ 17.221863] scsi 0:0:0:50: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 17.231626] scsi 0:0:0:50: alua: supports implicit TPGS
[ 17.238186] scsi 0:0:0:50: alua: port group 01 rel port 05
[ 17.244511] scsi 0:0:0:50: alua: port group 01 state N non-preferred supports tOlusNA
[ 17.253318] scsi 0:0:0:50: alua: Attached
[ 17.258817] scsi 0:0:0:51: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 17.269640] scsi 0:0:0:51: alua: supports implicit TPGS
[ 17.276194] sd 0:0:0:51: alua: port group 01 rel port 05
[ 17.276228] sd 0:0:0:51: [sdb] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[ 17.276231] sd 0:0:0:50: [sda] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[ 17.299908] sd 0:0:0:51: alua: port group 01 state N non-preferred supports tOlusNA
[ 17.299923] sd 0:0:0:51: [sdb] Write Protect is off
[ 17.299928] sd 0:0:0:50: [sda] Write Protect is off
[ 17.299930] sd 0:0:0:51: [sdb] Mode Sense: d7 00 00 08
[ 17.299933] sd 0:0:0:50: [sda] Mode Sense: d7 00 00 08
[ 17.319574] sd 0:0:0:51: alua: Attached
[ 17.319658] sd 0:0:0:51: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 17.319684] sd 0:0:0:50: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 17.345785] scsi 0:0:0:52: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 17.355572] scsi 0:0:0:52: alua: supports implicit TPGS
[ 17.361748] scsi 0:0:0:52: alua: port group 01 rel port 05
[ 17.368028] scsi 0:0:0:52: alua: port group 01 state N non-preferred supports tOlusNA
[ 17.376868] scsi 0:0:0:52: alua: Attached
[ 17.382181] sd 0:0:0:52: [sdc] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[ 17.391138] scsi 0:0:0:53: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 17.400828] sd 0:0:0:52: [sdc] Write Protect is off
[ 17.406321] sd 0:0:0:52: [sdc] Mode Sense: d7 00 00 08
[ 17.406394] scsi 0:0:0:53: alua: supports implicit TPGS
[ 17.406453] sd 0:0:0:52: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 17.409007] sd 0:0:0:52: [sdc] Attached SCSI disk
[ 17.428209] scsi 0:0:0:53: alua: port group 01 rel port 05
[ 17.435706] scsi 0:0:0:53: alua: port group 01 state N non-preferred supports tOlusNA
[ 17.444513] scsi 0:0:0:53: alua: Attached
[ 17.449226] sda: sda1 sda2 sda3 sda4
[ 17.449437] sd 0:0:0:53: [sdd] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[ 17.449894] sd 0:0:0:53: [sdd] Write Protect is off
[ 17.449903] sd 0:0:0:53: [sdd] Mode Sense: d7 00 00 08
[ 17.449968] scsi 0:0:0:54: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 17.450035] sd 0:0:0:53: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 17.450461] scsi 0:0:0:54: alua: supports implicit TPGS
[ 17.450668] scsi 0:0:0:54: alua: port group 01 rel port 05
[ 17.450740] scsi 0:0:0:54: alua: port group 01 state N non-preferred supports tOlusNA
[ 17.450742] scsi 0:0:0:54: alua: Attached
[ 17.451174] sd 0:0:0:54: [sde] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[ 17.451582] sd 0:0:0:54: [sde] Write Protect is off
[ 17.451584] sd 0:0:0:54: [sde] Mode Sense: d7 00 00 08
[ 17.451681] sd 0:0:0:54: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 17.457124] scsi 0:0:1:0: Enclosure HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 17.458471] scsi 0:0:1:0: alua: supports implicit TPGS
[ 17.458701] scsi 0:0:1:0: alua: port group 00 rel port 01
[ 17.458770] scsi 0:0:1:0: alua: port group 00 state N non-preferred supports tOlusNA
[ 17.458771] scsi 0:0:1:0: alua: Attached
[ 17.460646] scsi 0:0:1:50: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 17.461554] scsi 0:0:1:50: alua: supports implicit TPGS
[ 17.461781] scsi 0:0:1:50: alua: port group 00 rel port 01
[ 17.461850] scsi 0:0:1:50: alua: port group 00 state A preferred supports tOlusNA
[ 17.461852] scsi 0:0:1:50: alua: Attached
[ 17.462501] sd 0:0:0:54: [sde] Attached SCSI disk
[ 17.462547] sd 0:0:0:53: [sdd] Attached SCSI disk
[ 17.462651] sd 0:0:1:50: [sdf] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[ 17.462708] scsi 0:0:1:51: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 17.463490] scsi 0:0:1:51: alua: supports implicit TPGS
[ 17.463491] sd 0:0:1:50: [sdf] Write Protect is off
[ 17.463494] sd 0:0:1:50: [sdf] Mode Sense: d7 00 00 08
[ 17.463689] scsi 0:0:1:51: alua: port group 00 rel port 01
[ 17.463702] sd 0:0:1:50: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 17.463757] scsi 0:0:1:51: alua: port group 00 state A preferred supports tOlusNA
[ 17.463758] scsi 0:0:1:51: alua: Attached
[ 17.464039] sd 0:0:1:51: [sdg] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[ 17.464523] sdb: sdb1 sdb2 sdb3
[ 17.464578] scsi 0:0:1:52: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 17.464870] sd 0:0:1:51: [sdg] Write Protect is off
[ 17.464872] sd 0:0:1:51: [sdg] Mode Sense: d7 00 00 08
[ 17.465383] sd 0:0:1:51: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 17.465616] scsi 0:0:1:52: alua: supports implicit TPGS
[ 17.465906] scsi 0:0:1:52: alua: port group 00 rel port 01
[ 17.466004] scsi 0:0:1:52: alua: port group 00 state A preferred supports tOlusNA
[ 17.466006] scsi 0:0:1:52: alua: Attached
[ 17.466291] sd 0:0:1:52: [sdh] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[ 17.466852] scsi 0:0:1:53: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 17.467495] sd 0:0:0:51: [sdb] Attached SCSI disk
[ 17.467867] sd 0:0:1:52: [sdh] Write Protect is off
[ 17.467870] sd 0:0:1:52: [sdh] Mode Sense: d7 00 00 08
[ 17.468188] scsi 0:0:1:53: alua: supports implicit TPGS
[ 17.468237] sd 0:0:1:52: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 17.468624] random: nonblocking pool is initialized
[ 17.468672] scsi 0:0:1:53: alua: port group 00 rel port 01
[ 17.468776] scsi 0:0:1:53: alua: port group 00 state A preferred supports tOlusNA
[ 17.468778] scsi 0:0:1:53: alua: Attached
[ 17.469143] sdf: sdf1 sdf2 sdf3 sdf4
[ 17.470241] sd 0:0:1:53: [sdi] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[ 17.470279] scsi 0:0:1:54: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 17.471056] sd 0:0:1:53: [sdi] Write Protect is off
[ 17.471059] sd 0:0:1:53: [sdi] Mode Sense: d7 00 00 08
[ 17.471068] scsi 0:0:1:54: alua: supports implicit TPGS
[ 17.471773] sd 0:0:1:53: [sdi] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 17.471831] scsi 0:0:1:54: alua: port group 00 rel port 01
[ 17.472295] scsi 0:0:1:54: alua: port group 00 state A preferred supports tOlusNA
[ 17.472297] scsi 0:0:1:54: alua: Attached
[ 17.473091] sd 0:0:1:50: [sdf] Attached SCSI disk
[ 17.473244] sd 0:0:1:54: [sdj] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[ 17.474096] sd 0:0:1:54: [sdj] Write Protect is off
[ 17.474099] sd 0:0:1:54: [sdj] Mode Sense: d7 00 00 08
[ 17.474625] sdg: sdg1 sdg2 sdg3
[ 17.474798] sd 0:0:1:54: [sdj] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 17.476228] sd 0:0:1:52: [sdh] Attached SCSI disk
[ 17.477347] sd 0:0:1:51: [sdg] Attached SCSI disk
[ 17.479458] sd 0:0:1:53: [sdi] Attached SCSI disk
[ 17.481173] sd 0:0:1:54: [sdj] Attached SCSI disk
[ 17.781654] device-mapper: multipath service-time: version 0.2.0 loaded
[ 17.932605] sd 0:0:0:50: [sda] Attached SCSI disk
[ 18.459031] EXT4-fs (dm-10): mounted filesystem with ordered data mode. Opts: (null)
[ 18.780230] systemd-journald[955]: Received SIGTERM
[ 19.352078] audit: type=1404 audit(1428561301.505:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[ 19.456614] SELinux: 2048 avtab hash slots, 99663 rules.
[ 19.476653] SELinux: 2048 avtab hash slots, 99663 rules.
[ 19.505114] SELinux: 8 users, 86 roles, 4799 types, 280 bools, 1 sens, 1024 cats
[ 19.505117] SELinux: 83 classes, 99663 rules
[ 19.509631] SELinux: Permission audit_read in class capability2 not defined in policy.
[ 19.518629] SELinux: Class binder not defined in policy.
[ 19.524693] SELinux: the above unknown classes and permissions will be allowed
[ 19.532815] SELinux: Completing initialization.
[ 19.532816] SELinux: Setting up existing superblocks.
[ 19.546312] audit: type=1403 audit(1428561301.699:3): policy loaded auid=4294967295 ses=4294967295
[ 19.563151] systemd[1]: Successfully loaded SELinux policy in 226.528ms.
[ 19.704253] audit: type=1400 audit(1428561301.857:4): avc: denied { associate } for pid=1 comm="systemd" name="/" dev="pstore" ino=14346 scontext=system_u:object_r:sysfs_t:s0 tcontext=system_u:object_r:pstorefs_t:s0 tclass=filesystem permissive=0
[ 19.729278] systemd[1]: Unable to fix label of /sys/fs/pstore: Permission denied
[ 19.804910] systemd[1]: Relabelled /dev and /run in 67.019ms.
[ 20.851270] systemd-journald[1773]: Vacuuming done, freed 0 bytes
[ 21.003725] EXT4-fs (dm-10): re-mounted. Opts: (null)
[ 21.106532] systemd-udevd[1824]: starting version 208
[ 21.165723] RPC: Registered named UNIX socket transport module.
[ 21.172382] RPC: Registered udp transport module.
[ 21.177674] RPC: Registered tcp transport module.
[ 21.182963] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 21.269395] ipmi message handler version 39.2
[ 21.294240] IPMI System Interface driver.
[ 21.299268] ipmi_si: probing via ACPI
[ 21.303419] ipmi_si 00:00: [mem 0xfe262110000-0xfe262110002] regsize 1 spacing 1 irq 20
[ 21.312466] ipmi_si: Adding ACPI-specified bt state machine
[ 21.318852] ipmi_si: probing via SPMI
[ 21.323094] ipmi_si: SPMI: mem 0xfe262110000 regsize 1 spacing 1 irq 20
[ 21.330550] ipmi_si: Adding SPMI-specified bt state machine duplicate interface
[ 21.336785] ipmi_si: Trying ACPI-specified bt state machine at mem address 0xfe262110000, slave address 0x0, irq 20
[ 21.343755] ipmi_si 00:00: Using irq 20
[ 21.355256] dca service started, version 1.12.1
[ 21.362168] input: PC Speaker as /devices/platform/pcspkr/input/input1
[ 21.372082] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 21.372224] EDAC MC: Ver: 3.0.0
[ 21.373828] IPMI BT: req2rsp=6 secs retries=16
[ 21.398917] ipmi_si 00:00: Found new BMC (man_id: 0x00000b, prod_id: 0x1002, dev_id: 0x40)
[ 21.408271] ipmi_si 00:00: IPMI bt interface initialized
[ 21.418674] lpc_ich 0000:20:1f.0: I/O space for ACPI uninitialized
[ 21.425731] lpc_ich 0000:20:1f.0: No MFD cells added
[ 21.433854] ioatdma: Intel(R) QuickData Technology Driver 4.00
[ 21.434361] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[ 21.434384] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[ 21.434402] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[ 21.434427] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[ 21.434445] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[ 21.434456] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[ 21.434461] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[ 21.434467] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[ 21.434473] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[ 21.434478] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[ 21.434480] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[ 21.434486] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[ 21.434492] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[ 21.434501] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[ 21.434509] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[ 21.434511] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[ 21.434517] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[ 21.434523] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[ 21.434528] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[ 21.434533] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[ 21.434535] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[ 21.434541] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[ 21.434547] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[ 21.434552] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[ 21.434558] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[ 21.434560] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[ 21.434565] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[ 21.434571] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[ 21.434576] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[ 21.434582] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[ 21.434583] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[ 21.434589] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[ 21.434595] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[ 21.434600] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[ 21.434606] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[ 21.434608] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[ 21.434629] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[ 21.434635] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[ 21.434640] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[ 21.434645] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[ 21.434647] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[ 21.434657] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[ 21.434663] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[ 21.434668] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[ 21.434673] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[ 21.434675] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[ 21.434682] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[ 21.434687] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[ 21.434693] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[ 21.434698] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[ 21.434700] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[ 21.434709] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[ 21.434716] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[ 21.434726] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[ 21.434737] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[ 21.434739] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[ 21.434749] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[ 21.434757] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[ 21.434763] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[ 21.434770] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[ 21.434772] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[ 21.434796] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[ 21.434801] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[ 21.434807] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[ 21.434812] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[ 21.434813] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
[ 21.434826] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
[ 21.434913] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[ 21.435391] EDAC MC0: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#0: DEV 0000:0f:0e.0 (POLLED)
[ 21.435591] EDAC MC1: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#1: DEV 0000:1f:0e.0 (POLLED)
[ 21.435861] EDAC MC2: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#2: DEV 0000:2f:0e.0 (POLLED)
[ 21.437391] EDAC MC3: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#3: DEV 0000:3f:0e.0 (POLLED)
[ 21.437392] EDAC sbridge: Ver: 1.1.0
[ 21.439861] hpwdt 0000:06:00.0: HP Watchdog Timer Driver: NMI decoding initialized, allow kernel dump: ON (default = 1/ON)
[ 21.440263] hpwdt 0000:06:00.0: HP Watchdog Timer Driver: 1.3.3, timer margin: 30 seconds (nowayout=0).
[ 21.576078] pps_core: LinuxPPS API ver. 1 registered
[ 21.581663] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 21.618453] ses 0:0:0:0: Attached Enclosure device
[ 21.625306] ses 0:0:1:0: Attached Enclosure device
[ 21.633067] iTCO_vendor_support: vendor-support=0
[ 21.633078] Adding 2047996k swap on /dev/mapper/rhel_dhb5-swap. Priority:-1 extents:1 across:2047996k FS
[ 21.655955] PTP clock support registered
[ 21.661130] ipmi device interface
[ 21.667317] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 21.675242] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[ 21.691156] AVX version of gcm_enc/dec engaged.
[ 21.696997] AES CTR mode by8 optimization enabled
[ 21.698929] EXT4-fs (dm-9): mounted filesystem with ordered data mode. Opts: (null)
[ 21.723041] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[ 21.775542] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.0.1-k
[ 21.784153] ixgbe: Copyright (c) 1999-2014 Intel Corporation.
[ 21.791878] alg: No test for crc32 (crc32-pclmul)
[ 21.837656] FAT-fs (dm-8): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 21.856906] systemd-journald[1773]: Received request to flush runtime journal from PID 1
[ 21.875050] audit: type=1305 audit(1428561304.025:5): audit_pid=2540 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1
[ 21.884916] ixgbe 0000:01:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[ 21.885053] ixgbe 0000:01:00.0: PCI Express bandwidth of 32GT/s available
[ 21.885054] ixgbe 0000:01:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[ 21.885389] ixgbe 0000:01:00.0: MAC: 2, PHY: 1, PBA No: G33590-000
[ 21.885393] ixgbe 0000:01:00.0: e4:11:5b:9a:f4:48
[ 21.927966] ixgbe 0000:01:00.0: Intel(R) 10 Gigabit Network Connection
[ 22.023465] ixgbe 0000:01:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[ 22.033759] ixgbe 0000:01:00.1: PCI Express bandwidth of 32GT/s available
[ 22.042805] ixgbe 0000:01:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[ 22.052850] ixgbe 0000:01:00.1: MAC: 2, PHY: 1, PBA No: G33590-000
[ 22.060917] ixgbe 0000:01:00.1: e4:11:5b:9a:f4:49
[ 22.104737] ixgbe 0000:01:00.1: Intel(R) 10 Gigabit Network Connection
[ 22.203838] ixgbe 0000:21:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[ 22.214138] ixgbe 0000:21:00.0: PCI Express bandwidth of 32GT/s available
[ 22.223310] ixgbe 0000:21:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[ 22.233092] ixgbe 0000:21:00.0: MAC: 2, PHY: 1, PBA No: G33590-000
[ 22.241268] ixgbe 0000:21:00.0: e4:11:5b:9a:ed:84
[ 22.248589] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 22.257585] ses 0:0:0:0: Attached scsi generic sg0 type 13
[ 22.263946] sd 0:0:0:50: Attached scsi generic sg1 type 0
[ 22.270142] sd 0:0:0:51: Attached scsi generic sg2 type 0
[ 22.276382] sd 0:0:0:52: Attached scsi generic sg3 type 0
[ 22.283972] sd 0:0:0:53: Attached scsi generic sg4 type 0
[ 22.284504] ixgbe 0000:21:00.0: Intel(R) 10 Gigabit Network Connection
[ 22.300523] sd 0:0:0:54: Attached scsi generic sg5 type 0
[ 22.307423] ses 0:0:1:0: Attached scsi generic sg6 type 13
[ 22.313803] sd 0:0:1:50: Attached scsi generic sg7 type 0
[ 22.320115] sd 0:0:1:51: Attached scsi generic sg8 type 0
[ 22.326439] sd 0:0:1:52: Attached scsi generic sg9 type 0
[ 22.332725] sd 0:0:1:53: Attached scsi generic sg10 type 0
[ 22.339114] sd 0:0:1:54: Attached scsi generic sg11 type 0
[ 22.379597] ixgbe 0000:21:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[ 22.389217] ixgbe 0000:21:00.1: PCI Express bandwidth of 32GT/s available
[ 22.396849] ixgbe 0000:21:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[ 22.405212] ixgbe 0000:21:00.1: MAC: 2, PHY: 1, PBA No: G33590-000
[ 22.412154] ixgbe 0000:21:00.1: e4:11:5b:9a:ed:85
[ 22.453746] ixgbe 0000:21:00.1: Intel(R) 10 Gigabit Network Connection
[ 22.467412] ixgbe 0000:21:00.1 ens50403203f1: renamed from eth3
[ 22.494387] systemd-udevd[1834]: renamed network interface eth3 to ens50403203f1
[ 22.518371] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 22.568413] ixgbe 0000:01:00.0 eno32: renamed from eth0
[ 22.585591] systemd-udevd[1835]: renamed network interface eth0 to eno32
[ 22.617298] Ebtables v2.0 registered
[ 22.668266] ixgbe 0000:01:00.1 ens50402691f1: renamed from eth1
[ 22.705712] systemd-udevd[1839]: renamed network interface eth1 to ens50402691f1
[ 22.705718] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[ 22.769151] ixgbe 0000:21:00.0 eno384: renamed from eth2
[ 22.790791] systemd-udevd[1840]: renamed network interface eth2 to eno384
[ 22.898431] cfg80211: Calling CRDA to update world regulatory domain
[ 23.000971] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
[ 23.270609] ixgbe 0000:01:00.0: registered PHC device on eno32
[ 23.281251] ixgbe 0000:01:00.0 eno32: NIC Link is Up 10 Gbps, Flow Control: None
[ 23.597832] ixgbe 0000:01:00.1: registered PHC device on ens50402691f1
[ 23.608722] ixgbe 0000:01:00.1 ens50402691f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[ 23.908562] ixgbe 0000:21:00.0: registered PHC device on eno384
[ 23.918991] ixgbe 0000:21:00.0 eno384: NIC Link is Up 10 Gbps, Flow Control: None
[ 24.216920] ixgbe 0000:21:00.1: registered PHC device on ens50403203f1
[ 24.227378] ixgbe 0000:21:00.1 ens50403203f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[ 33.256689] qla2xxx [0000:03:00.1]-8038:1: Cable is unplugged...
[48319.454576] hpilo 0000:06:00.2: Open could not dequeue a packet
[57716.150688] hpilo 0000:06:00.2: Open could not dequeue a packet
[105365.068430] hpilo 0000:06:00.2: Open could not dequeue a packet
[125704.610472] hpilo 0000:06:00.2: Open could not dequeue a packet
[210189.867789] perf interrupt took too long (2697 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
[312433.072947] hpilo 0000:06:00.2: Open could not dequeue a packet
[319465.196351] hpilo 0000:06:00.2: Open could not dequeue a packet
[454397.519972] perf interrupt took too long (5264 > 5000), lowering kernel.perf_event_max_sample_rate to 25000
[496698.512924] hpilo 0000:06:00.2: Open could not dequeue a packet
[518643.486101] hpilo 0000:06:00.2: Open could not dequeue a packet
[540406.727950] hpilo 0000:06:00.2: Closing, but controller still active
[555461.338496] hpilo 0000:06:00.2: Open could not dequeue a packet
[558403.097119] hpilo 0000:06:00.2: Open could not dequeue a packet
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: superdomex_dump.log --]
[-- Type: text/x-log; name="superdomex_dump.log", Size: 108368 bytes --]
[root@dhb5 ~]# echo c > /proc/sysrq-trigger
[612372.032509] sysrq: SysRq : Trigger a crash
[612372.037385] BUG: unable to handle kernel NULL pointer dereference at (null)
[612372.046291] IP: [<ffffffff8141af96>] sysrq_handle_crash+0x16/0x20
[612372.053248] PGD 7f59044067 PUD 7f59045067 PMD 0
[612372.058554] Oops: 0002 [#1] SMP
[612372.062290] Modules linked in: ip6t_rpfilter ip6t_REJECT nf_reject_ipv6 nf_conntrack_ipv6 nf_defrag_ipv6 ipt_REJECT nf_reject_ipv4 nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack cfg80211 rfkill ebtable_nat ebtable_broute bridge stp llc ebtable_filter ebtables ip6table_mangle ip6table_security ip6table_raw ip6table_filter ip6_tables iptable_mangle iptable_security iptable_raw iptable_filter sg ip_tables x86_pkg_temp_thermal coretemp kvm_intel kvm vfat crct10dif_pclmul fat crc32_pclmul ixgbe crc32c_intel ghash_clmulni_intel aesni_intel iTCO_wdt ptp lrw ipmi_devintf iTCO_vendor_support gf128mul ses glue_helper pps_core ablk_helper enclosure mdio hpilo hpwdt sb_edac cryptd lpc_ich ioatdma nfsd pcspkr shpchp edac_core dca mfd_core ipmi_si auth_rpcgss ipmi_msghandler nfs_acl lockd grace sunrpc ext4 jbd2 dm_service_time sd_mod mgag200 syscopyarea sysfillrect sysimgblt i2c_algo_bit drm_kms_helper ttm qla2xxx drm i2c_core scsi_transport_fc dm_mirror dm_region_hash dm_log dm_multipath dm_mod
[612372.162142] CPU: 16 PID: 25330 Comm: bash Not tainted 4.0.0-rc7.v10u2 #1
[612372.169764] Hardware name: HP Superdome2 16s x86, BIOS Bundle: 005.073.000 SFW: 015.082.000 08/08/2014
[612372.180310] task: ffff881fc84051c0 ti: ffff881f98990000 task.ti: ffff881f98990000
[612372.188808] RIP: 0010:[<ffffffff8141af96>] [<ffffffff8141af96>] sysrq_handle_crash+0x16/0x20
[612372.198484] RSP: 0018:ffff881f98993e58 EFLAGS: 00010246
[612372.204541] RAX: 000000000000000f RBX: ffffffff81ad0fa0 RCX: 0000000000000000
[612372.212646] RDX: 0000000000000000 RSI: ffff885f7fa2e6d8 RDI: 0000000000000063
[612372.220752] RBP: ffff881f98993e58 R08: 00000000000000c2 R09: ffff889fffeb3580
[612372.228860] R10: 00000000000008e0 R11: 00000000000008df R12: 0000000000000063
[612372.236965] R13: 0000000000000000 R14: 0000000000000007 R15: 0000000000000000
[612372.245073] FS: 00007fac00982740(0000) GS:ffff885f7fa20000(0000) knlGS:0000000000000000
[612372.254251] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[612372.260795] CR2: 0000000000000000 CR3: 0000007f5e7b7000 CR4: 00000000001407e0
[612372.268903] Stack:
[612372.271256] ffff881f98993e88 ffffffff8141b817 0000000000000002 00007fac00987000
[612372.279689] 0000000000000002 ffff881f98993f48 ffff881f98993ea8 ffffffff8141bcc3
[612372.288130] 0000000000000001 ffff887f7134b800 ffff881f98993ed8 ffffffff8125dffd
[612372.296562] Call Trace:
[612372.299407] [<ffffffff8141b817>] __handle_sysrq+0x107/0x170
[612372.305855] [<ffffffff8141bcc3>] write_sysrq_trigger+0x33/0x40
[612372.312602] [<ffffffff8125dffd>] proc_reg_write+0x3d/0x80
[612372.318864] [<ffffffff811f2f37>] vfs_write+0xb7/0x1f0
[612372.324728] [<ffffffff8102336c>] ? do_audit_syscall_entry+0x6c/0x70
[612372.331958] [<ffffffff811f3bb5>] SyS_write+0x55/0xd0
[612372.337728] [<ffffffff816b7ac9>] system_call_fastpath+0x12/0x17
[612372.344566] Code: c1 f7 ff ff eb db 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 0f 1f 44 00 00 55 c7 05 f8 92 60 00 01 00 00 00 48 89 e5 0f ae f8 <c6> 04 25 00 00 00 00 01 5d c3 0f 1f 44 00 00 55 31 c0 48 89 e5
[612372.366415] RIP [<ffffffff8141af96>] sysrq_handle_crash+0x16/0x20
[612372.373456] RSP <ffff881f98993e58>
[612372.377465] CR2: 0000000000000000
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 4.0.0-rc7.v10u2 (root@dhb5.fcux.usa.hp.com) (gcc version 4.8.2 20140120 (Red Hat 4.8.2-16) (GCC) ) #1 SMP Thu Apr 9 02:19:13 EDT 2015
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on irqpoll nr_cpus=4 reset_devices cgroup_disable=memory mce=off numa=off udev.children-max=2 panic=10 rootflags=nofail acpi_no_memhotplug disable_cpu_apicid=0 memmap=exactmap memmap=564K@4K memmap=523700K@393216K acpi_rsdp=0x7bffe014 elfcorehdr=916916K memmap=36864K#1992700K memmap=2048K#2029564K memmap=4K#4194304K memmap=4K#268435456K
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000100-0x000000000008dfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000078bfefff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000078bff000-0x00000000799fefff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000799ff000-0x000000007bdfefff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000007bdff000-0x000000007bffefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000007bfff000-0x000000007bffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ff1fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000100000fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x0000000100001000-0x000000207fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000004000000000-0x0000004000000fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x0000004000001000-0x0000009fffffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000fdfe0000000-0x00000fdfffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe060000000-0x00000fe07fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe0e0000000-0x00000fe0ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe160000000-0x00000fe17fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe1e0000000-0x00000fe1ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe260000000-0x00000fe27fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe2e0000000-0x00000fe2ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe360000000-0x00000fe37fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe3e0000000-0x00000fe3ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe460000000-0x00000fe47fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe4e0000000-0x00000fe4ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe560000000-0x00000fe57fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe5e0000000-0x00000fe5ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe660000000-0x00000fe67fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe6e0000000-0x00000fe6ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe760000000-0x00000fe77fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000fe7e0000000-0x00000fe7ffffffff] reserved
[ 0.000000] e820: last_pfn = 0xa000000 max_arch_pfn = 0x400000000
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] e820: user-defined physical RAM map:
[ 0.000000] user: [mem 0x0000000000001000-0x000000000008dfff] usable
[ 0.000000] user: [mem 0x0000000018000000-0x0000000037f6cfff] usable
[ 0.000000] user: [mem 0x00000000799ff000-0x000000007bffefff] ACPI data
[ 0.000000] user: [mem 0x0000000100000000-0x0000000100000fff] ACPI data
[ 0.000000] user: [mem 0x0000004000000000-0x0000004000000fff] ACPI data
[ 0.000000] DMI not present or invalid.
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] e820: last_pfn = 0x37f6d max_arch_pfn = 0x400000000
[ 0.000000] PAT configuration [0-7]: WB WC UC- UC WB WC UC- UC
[ 0.000000] x2apic: enabled by BIOS, switching to x2apic ops
[ 0.000000] Using GB pages for direct mapping
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] init_memory_mapping: [mem 0x37000000-0x371fffff]
[ 0.000000] init_memory_mapping: [mem 0x20000000-0x36ffffff]
[ 0.000000] init_memory_mapping: [mem 0x18000000-0x1fffffff]
[ 0.000000] init_memory_mapping: [mem 0x37200000-0x37f6cfff]
[ 0.000000] RAMDISK: [mem 0x37384000-0x37f59fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x000000007BFFE014 000024 (v02 HP )
[ 0.000000] ACPI: XSDT 0x000000007BFFD0E8 0000AC (v01 HP 03010201 00000002 MSFT 01000013)
[ 0.000000] ACPI: FACP 0x000000007BFFB000 00010C (v05 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: DSDT 0x000000007BFF1000 0004A8 (v02 HP CORE 00000002 HPAG 00020000)
[ 0.000000] ACPI: FACS 0x000000007AD00000 000040
[ 0.000000] ACPI: MCEJ 0x000000007BFFC000 000130 (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: HPET 0x000000007BFFA000 000038 (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: MCFG 0x000000007BFF9000 00003C (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: SLIT 0x000000007BFF8000 00003C (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: APIC 0x000000007BFF7000 000DA8 (v03 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: SRAT 0x000000007BFF6000 000C38 (v02 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: SPMI 0x000000007BFF5000 000040 (v05 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: SPCR 0x000000007BFF4000 000050 (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: DBGP 0x000000007BFF3000 000034 (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: RASF 0x000000007BFF2000 000030 (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: SSDT 0x000000007BFD7000 019FB9 (v02 HP BLADE000 00000002 HPAG 00020000)
[ 0.000000] ACPI: SSDT 0x000000007BFBD000 0196F0 (v02 HP BLADE001 00000002 HPAG 00020000)
[ 0.000000] ACPI: DMAR 0x000000007BFBB000 000368 (v01 HP 03010201 00000002 HPAG 00020000)
[ 0.000000] ACPI: HEST 0x000000007BFBA000 000184 (v01 INTEL 00000001 INTL 00000001)
[ 0.000000] ACPI: BERT 0x000000007BFB9000 000030 (v01 INTEL 00000001 INTL 00000001)
[ 0.000000] ACPI: EINJ 0x000000007BFB8000 000150 (v01 INTEL 00000001 INTL 00000001)
[ 0.000000] Setting APIC routing to physical x2apic.
[ 0.000000] NUMA turned off
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x0000000037f6cfff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x3735e000-0x37383fff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x0000000037f6cfff]
[ 0.000000] Normal empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000008dfff]
[ 0.000000] node 0: [mem 0x0000000018000000-0x0000000037f6cfff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000037f6cfff]
[ 0.000000] ACPI: X2APIC (apic_id[0x00] uid[0x00] enabled)
[ 0.000000] APIC: Disabling requested cpu. Processor 0/0x0 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x02] uid[0x02] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x04] uid[0x04] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x06] uid[0x06] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x08] uid[0x08] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu. Processor 4/0x8 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x0a] uid[0x0a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu. Processor 5/0xa ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x0c] uid[0x0c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu. Processor 6/0xc ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x0e] uid[0x0e] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu. Processor 7/0xe ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x10] uid[0x10] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu. Processor 8/0x10 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x12] uid[0x12] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu. Processor 9/0x12 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x14] uid[0x14] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu. Processor 10/0x14 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x16] uid[0x16] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu. Processor 11/0x16 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x18] uid[0x18] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu. Processor 12/0x18 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1a] uid[0x1a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu. Processor 13/0x1a ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1c] uid[0x1c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu. Processor 14/0x1c ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x20] uid[0x24] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu. Processor 15/0x20 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x22] uid[0x26] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x24] uid[0x28] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 17/0x24 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x26] uid[0x2a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 18/0x26 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x28] uid[0x2c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 19/0x28 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x2a] uid[0x2e] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 20/0x2a ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x2c] uid[0x30] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 21/0x2c ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x2e] uid[0x32] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 22/0x2e ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x30] uid[0x34] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 23/0x30 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x32] uid[0x36] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 24/0x32 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x34] uid[0x38] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 25/0x34 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x36] uid[0x3a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 26/0x36 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x38] uid[0x3c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 27/0x38 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x3a] uid[0x3e] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 28/0x3a ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x3c] uid[0x40] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 29/0x3c ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x40] uid[0x48] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 30/0x40 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x42] uid[0x4a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 31/0x42 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x44] uid[0x4c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 32/0x44 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x46] uid[0x4e] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 33/0x46 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x48] uid[0x50] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 34/0x48 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x4a] uid[0x52] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 35/0x4a ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x4c] uid[0x54] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 36/0x4c ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x4e] uid[0x56] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 37/0x4e ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x50] uid[0x58] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 38/0x50 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x52] uid[0x5a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 39/0x52 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x54] uid[0x5c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 40/0x54 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x56] uid[0x5e] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 41/0x56 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x58] uid[0x60] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 42/0x58 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x5a] uid[0x62] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 43/0x5a ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x5c] uid[0x64] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 44/0x5c ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x60] uid[0x6c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 45/0x60 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x62] uid[0x6e] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 46/0x62 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x64] uid[0x70] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 47/0x64 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x66] uid[0x72] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 48/0x66 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x68] uid[0x74] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 49/0x68 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x6a] uid[0x76] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 50/0x6a ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x6c] uid[0x78] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 51/0x6c ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x6e] uid[0x7a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 52/0x6e ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x70] uid[0x7c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 53/0x70 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x72] uid[0x7e] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 54/0x72 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x74] uid[0x80] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 55/0x74 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x76] uid[0x82] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 56/0x76 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x78] uid[0x84] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 57/0x78 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x7a] uid[0x86] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 58/0x7a ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x7c] uid[0x88] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 59/0x7c ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x01] uid[0x01] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 60/0x1 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x03] uid[0x03] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 61/0x3 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x05] uid[0x05] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 62/0x5 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x07] uid[0x07] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 63/0x7 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x09] uid[0x09] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 64/0x9 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x0b] uid[0x0b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 65/0xb ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x0d] uid[0x0d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 66/0xd ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x0f] uid[0x0f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 67/0xf ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x11] uid[0x11] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 68/0x11 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x13] uid[0x13] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 69/0x13 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x15] uid[0x15] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 70/0x15 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x17] uid[0x17] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 71/0x17 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x19] uid[0x19] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 72/0x19 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1b] uid[0x1b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 73/0x1b ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1d] uid[0x1d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 74/0x1d ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x21] uid[0x25] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 75/0x21 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x23] uid[0x27] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 76/0x23 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x25] uid[0x29] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 77/0x25 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x27] uid[0x2b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 78/0x27 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x29] uid[0x2d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 79/0x29 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x2b] uid[0x2f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 80/0x2b ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x2d] uid[0x31] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 81/0x2d ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x2f] uid[0x33] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 82/0x2f ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x31] uid[0x35] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 83/0x31 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x33] uid[0x37] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 84/0x33 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x35] uid[0x39] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 85/0x35 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x37] uid[0x3b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 86/0x37 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x39] uid[0x3d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 87/0x39 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x3b] uid[0x3f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 88/0x3b ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x3d] uid[0x41] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 89/0x3d ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x41] uid[0x49] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 90/0x41 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x43] uid[0x4b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 91/0x43 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x45] uid[0x4d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 92/0x45 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x47] uid[0x4f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 93/0x47 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x49] uid[0x51] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 94/0x49 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x4b] uid[0x53] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 95/0x4b ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x4d] uid[0x55] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 96/0x4d ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x4f] uid[0x57] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 97/0x4f ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x51] uid[0x59] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 98/0x51 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x53] uid[0x5b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 99/0x53 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x55] uid[0x5d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 100/0x55 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x57] uid[0x5f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 101/0x57 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x59] uid[0x61] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 102/0x59 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x5b] uid[0x63] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 103/0x5b ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x5d] uid[0x65] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 104/0x5d ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x61] uid[0x6d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 105/0x61 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x63] uid[0x6f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 106/0x63 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x65] uid[0x71] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 107/0x65 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x67] uid[0x73] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 108/0x67 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x69] uid[0x75] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 109/0x69 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x6b] uid[0x77] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 110/0x6b ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x6d] uid[0x79] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 111/0x6d ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x6f] uid[0x7b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 112/0x6f ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x71] uid[0x7d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 113/0x71 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x73] uid[0x7f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 114/0x73 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x75] uid[0x81] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 115/0x75 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x77] uid[0x83] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 116/0x77 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x79] uid[0x85] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 117/0x79 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x7b] uid[0x87] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 118/0x7b ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x7d] uid[0x89] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 119/0x7d ignored.
[ 0.000000] ACPI: X2APIC_NMI (uid[0x00] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x01] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x02] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x03] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x04] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x05] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x06] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x07] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x08] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x09] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x0a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x0b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x0c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x0d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x0e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x0f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x10] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x11] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x12] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x13] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x14] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x15] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x16] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x17] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x18] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x19] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x1a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x1b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x1c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x1d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x24] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x25] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x26] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x27] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x28] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x29] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x2a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x2b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x2c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x2d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x2e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x2f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x30] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x31] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x32] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x33] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x34] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x35] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x36] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x37] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x38] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x39] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x3a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x3b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x3c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x3d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x3e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x3f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x40] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x41] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x48] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x49] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x4a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x4b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x4c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x4d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x4e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x4f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x50] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x51] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x52] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x53] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x54] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x55] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x56] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x57] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x58] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x59] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x5a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x5b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x5c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x5d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x5e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x5f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x60] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x61] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x62] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x63] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x64] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x65] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x6c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x6d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x6e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x6f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x70] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x71] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x72] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x73] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x74] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x75] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x76] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x77] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x78] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x79] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x7a] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x7b] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x7c] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x7d] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x7e] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x7f] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x80] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x81] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x82] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x83] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x84] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x85] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x86] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x87] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x88] high level lint[0x1])
[ 0.000000] ACPI: X2APIC_NMI (uid[0x89] high level lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: IOAPIC (id[0x09] address[0xfec01000] gsi_base[24])
[ 0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-47
[ 0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec04000] gsi_base[48])
[ 0.000000] IOAPIC[2]: apic_id 10, version 32, address 0xfec04000, GSI 48-71
[ 0.000000] ACPI: IOAPIC (id[0x0b] address[0xfec08000] gsi_base[72])
[ 0.000000] IOAPIC[3]: apic_id 11, version 32, address 0xfec08000, GSI 72-95
[ 0.000000] ACPI: IOAPIC (id[0x0c] address[0xfec09000] gsi_base[96])
[ 0.000000] IOAPIC[4]: apic_id 12, version 32, address 0xfec09000, GSI 96-119
[ 0.000000] ACPI: IOAPIC (id[0x0d] address[0xfec0c000] gsi_base[120])
[ 0.000000] IOAPIC[5]: apic_id 13, version 32, address 0xfec0c000, GSI 120-143
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[ 0.000000] smpboot: 120 Processors exceeds NR_CPUS limit of 4
[ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0008e000-0x17ffffff]
[ 0.000000] e820: [mem 0x7bfff000-0xffffffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 32 pages/cpu @ffff880037000000 s91544 r8192 d31336 u524288
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 128996
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on irqpoll nr_cpus=4 reset_devices cgroup_disable=memory mce=off numa=off udev.children-max=2 panic=10 rootflags=nofail acpi_no_memhotplug disable_cpu_apicid=0 memmap=exactmap memmap=564K@4K memmap=523700K@393216K acpi_rsdp=0x7bffe014 elfcorehdr=916916K memmap=36864K#1992700K memmap=2048K#2029564K memmap=4K#4194304K memmap=4K#268435456K
[ 0.000000] Intel-IOMMU: enabled
[ 0.000000] Misrouted IRQ fixup and polling support enabled
[ 0.000000] This may significantly impact system performance
[ 0.000000] Disabling memory control group subsystem
[ 0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes)
[ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[ 0.000000] AGP: Checking aperture...
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] Memory: 484896K/524264K available (6899K kernel code, 1427K rwdata, 3228K rodata, 1704K init, 2688K bss, 39368K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.000000] NR_IRQS:524544 nr_irqs:1024 16
[ 0.000000] Offload RCU callbacks from all CPUs
[ 0.000000] Offload RCU callbacks from CPUs: 0-3.
[ 0.000000] Spurious LAPIC timer interrupt on cpu 0
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [ttyS0] enabled
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2793.528 MHz processor
[ 0.000030] Calibrating delay loop (skipped), value calculated using timer frequency.. 5587.05 BogoMIPS (lpj=2793528)
[ 0.011950] pid_max: default: 32768 minimum: 301
[ 0.017136] ACPI: Core revision 20150204
[ 0.030375] ACPI: All ACPI Tables successfully acquired
[ 0.036276] Security Framework initialized
[ 0.040879] SELinux: Initializing.
[ 0.044851] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.052761] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.060525] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
[ 0.067949] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)
[ 0.076007] Initializing cgroup subsys blkio
[ 0.080797] Initializing cgroup subsys memory
[ 0.085686] Initializing cgroup subsys devices
[ 0.090671] Initializing cgroup subsys freezer
[ 0.095657] Initializing cgroup subsys net_cls
[ 0.100643] Initializing cgroup subsys perf_event
[ 0.105921] Initializing cgroup subsys hugetlb
[ 0.110936] CPU: Physical Processor ID: 1
[ 0.115432] CPU: Processor Core ID: 1
[ 0.119547] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.126287] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.134981] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[ 0.141135] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[ 0.148100] Freeing SMP alternatives memory: 28K (ffffffff81cf7000 - ffffffff81cfe000)
[ 0.158353] ftrace: allocating 25687 entries in 101 pages
[ 0.176442] dmar: Host address width 44
[ 0.180746] dmar: DRHD base: 0x00000093ff8000 flags: 0x0
[ 0.186712] dmar: IOMMU 0: reg_base_addr 93ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[ 0.195794] dmar: DRHD base: 0x00000097ff8000 flags: 0x0
[ 0.201756] dmar: IOMMU 1: reg_base_addr 97ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[ 0.210838] dmar: DRHD base: 0x0000009bff8000 flags: 0x0
[ 0.216803] dmar: IOMMU 2: reg_base_addr 9bff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[ 0.225886] dmar: DRHD base: 0x0000009fff8000 flags: 0x0
[ 0.231848] dmar: IOMMU 3: reg_base_addr 9fff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[ 0.240931] dmar: RMRR base: 0x00000079911000 end: 0x00000079913fff
[ 0.247965] dmar: RMRR base: 0x0000007990e000 end: 0x00000079910fff
[ 0.254998] dmar: ATSR flags: 0x0
[ 0.258715] dmar: ATSR flags: 0x0
[ 0.262431] dmar: ATSR flags: 0x0
[ 0.266148] dmar: ATSR flags: 0x0
[ 0.269863] dmar: RHSA base: 0x00000093ff8000 proximity domain: 0x0
[ 0.276896] dmar: RHSA base: 0x00000097ff8000 proximity domain: 0x1
[ 0.283929] dmar: RHSA base: 0x0000009bff8000 proximity domain: 0x2
[ 0.290960] dmar: RHSA base: 0x0000009fff8000 proximity domain: 0x3
[ 0.297994] IOAPIC id 13 under DRHD base 0x9fff8000 IOMMU 3
[ 0.304342] IOAPIC id 11 under DRHD base 0x9bff8000 IOMMU 2
[ 0.310692] IOAPIC id 12 under DRHD base 0x9bff8000 IOMMU 2
[ 0.317041] IOAPIC id 10 under DRHD base 0x97ff8000 IOMMU 1
[ 0.323391] IOAPIC id 8 under DRHD base 0x93ff8000 IOMMU 0
[ 0.329645] IOAPIC id 9 under DRHD base 0x93ff8000 IOMMU 0
[ 0.335897] HPET id 0 under DRHD base 0x93ff8000
[ 0.342640] IR is enabled prior to OS.
[ 0.346849] IR is enabled prior to OS.
[ 0.351056] IR is enabled prior to OS.
[ 0.355264] IR is enabled prior to OS.
[ 0.359473] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.377636] Enabled IRQ remapping in x2apic mode
[ 0.384371] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.401150] smpboot: CPU0: Intel(R) Xeon(R) CPU E7-2890 v2 @ 2.80GHz (fam: 06, model: 3e, stepping: 07)
[ 0.411746] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Broken BIOS detected, complain to your hardware vendor.
[ 0.427041] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 38d is b0)
[ 0.435635] Intel PMU driver.
[ 0.438964] ... version: 3
[ 0.443461] ... bit width: 48
[ 0.448055] ... generic registers: 4
[ 0.452554] ... value mask: 0000ffffffffffff
[ 0.458515] ... max period: 0000ffffffffffff
[ 0.464476] ... fixed-purpose events: 3
[ 0.468972] ... event mask: 000000070000000f
[ 0.475539] x86: Booting SMP configuration:
[ 0.480237] .... node #0, CPUs: #1
[ 0.578185] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.587491] #2 #3
[ 0.617753] x86: Booted up 1 node, 4 CPUs
[ 0.622458] smpboot: Total of 4 processors activated (22360.76 BogoMIPS)
[ 0.644450] devtmpfs: initialized
[ 0.649952] evm: security.selinux
[ 0.653673] evm: security.ima
[ 0.657000] evm: security.capability
[ 0.661315] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[ 0.669287] NET: Registered protocol family 16
[ 0.678998] cpuidle: using governor menu
[ 0.683500] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.692000] ACPI: bus type PCI registered
[ 0.696500] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.703792] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0x80000000-0x83ffffff] (base 0x80000000)
[ 0.714244] PCI: not using MMCONFIG
[ 0.718158] PCI: Using configuration type 1 for base access
[ 0.729404] ACPI: Added _OSI(Module Device)
[ 0.734101] ACPI: Added _OSI(Processor Device)
[ 0.739088] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.744368] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.764920] ACPI: Interpreter enabled
[ 0.769033] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
[ 0.779425] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
[ 0.789805] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20150204/hwxface-580)
[ 0.800176] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20150204/hwxface-580)
[ 0.810556] ACPI: (supports S0 S5)
[ 0.814373] ACPI: Using IOAPIC for interrupt routing
[ 0.819978] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0x80000000-0x83ffffff] (base 0x80000000)
[ 0.832714] [Firmware Info]: PCI: MMCONFIG at [mem 0x80000000-0x83ffffff] not reserved in ACPI motherboard resources
[ 0.844529] PCI: not using MMCONFIG
[ 0.848504] HEST: Table parsing has been initialized.
[ 0.854174] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.873807] APIC: Disabling requested cpu. Processor 120/0x0 ignored.
[ 0.881037] ACPI: Unable to map lapic to logical cpu number
[ 0.887322] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 121/0x1 ignored.
[ 0.896309] ACPI: Unable to map lapic to logical cpu number
[ 0.902618] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 122/0x3 ignored.
[ 0.911602] ACPI: Unable to map lapic to logical cpu number
[ 0.917911] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 123/0x5 ignored.
[ 0.926898] ACPI: Unable to map lapic to logical cpu number
[ 0.933205] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 124/0x7 ignored.
[ 0.942191] ACPI: Unable to map lapic to logical cpu number
[ 0.948487] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 125/0x8 ignored.
[ 0.957475] ACPI: Unable to map lapic to logical cpu number
[ 0.963753] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 126/0x9 ignored.
[ 0.972741] ACPI: Unable to map lapic to logical cpu number
[ 0.979037] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 127/0xa ignored.
[ 0.988023] ACPI: Unable to map lapic to logical cpu number
[ 0.994304] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 128/0xb ignored.
[ 1.003290] ACPI: Unable to map lapic to logical cpu number
[ 1.009585] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 129/0xc ignored.
[ 1.018571] ACPI: Unable to map lapic to logical cpu number
[ 1.024853] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 130/0xd ignored.
[ 1.033838] ACPI: Unable to map lapic to logical cpu number
[ 1.040137] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 131/0xe ignored.
[ 1.049123] ACPI: Unable to map lapic to logical cpu number
[ 1.055402] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 132/0xf ignored.
[ 1.064389] ACPI: Unable to map lapic to logical cpu number
[ 1.070684] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 133/0x10 ignored.
[ 1.079766] ACPI: Unable to map lapic to logical cpu number
[ 1.086047] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 134/0x11 ignored.
[ 1.095131] ACPI: Unable to map lapic to logical cpu number
[ 1.101426] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 135/0x12 ignored.
[ 1.110510] ACPI: Unable to map lapic to logical cpu number
[ 1.116789] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 136/0x13 ignored.
[ 1.125875] ACPI: Unable to map lapic to logical cpu number
[ 1.132170] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 137/0x14 ignored.
[ 1.141253] ACPI: Unable to map lapic to logical cpu number
[ 1.147533] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 138/0x15 ignored.
[ 1.156616] ACPI: Unable to map lapic to logical cpu number
[ 1.162912] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 139/0x16 ignored.
[ 1.171996] ACPI: Unable to map lapic to logical cpu number
[ 1.178277] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 140/0x17 ignored.
[ 1.187359] ACPI: Unable to map lapic to logical cpu number
[ 1.193655] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 141/0x18 ignored.
[ 1.202738] ACPI: Unable to map lapic to logical cpu number
[ 1.209018] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 142/0x19 ignored.
[ 1.218101] ACPI: Unable to map lapic to logical cpu number
[ 1.224397] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 143/0x1a ignored.
[ 1.233480] ACPI: Unable to map lapic to logical cpu number
[ 1.239759] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 144/0x1b ignored.
[ 1.248842] ACPI: Unable to map lapic to logical cpu number
[ 1.255138] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 145/0x1c ignored.
[ 1.264220] ACPI: Unable to map lapic to logical cpu number
[ 1.270499] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 146/0x1d ignored.
[ 1.279581] ACPI: Unable to map lapic to logical cpu number
[ 1.285890] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 147/0x20 ignored.
[ 1.294974] ACPI: Unable to map lapic to logical cpu number
[ 1.301254] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 148/0x21 ignored.
[ 1.310337] ACPI: Unable to map lapic to logical cpu number
[ 1.316644] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 149/0x23 ignored.
[ 1.325726] ACPI: Unable to map lapic to logical cpu number
[ 1.332023] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 150/0x24 ignored.
[ 1.341107] ACPI: Unable to map lapic to logical cpu number
[ 1.347387] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 151/0x25 ignored.
[ 1.356470] ACPI: Unable to map lapic to logical cpu number
[ 1.362765] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 152/0x26 ignored.
[ 1.371849] ACPI: Unable to map lapic to logical cpu number
[ 1.378128] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 153/0x27 ignored.
[ 1.387211] ACPI: Unable to map lapic to logical cpu number
[ 1.393507] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 154/0x28 ignored.
[ 1.402589] ACPI: Unable to map lapic to logical cpu number
[ 1.408869] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 155/0x29 ignored.
[ 1.417953] ACPI: Unable to map lapic to logical cpu number
[ 1.424248] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 156/0x2a ignored.
[ 1.433332] ACPI: Unable to map lapic to logical cpu number
[ 1.439612] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 157/0x2b ignored.
[ 1.448696] ACPI: Unable to map lapic to logical cpu number
[ 1.454991] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 158/0x2c ignored.
[ 1.464074] ACPI: Unable to map lapic to logical cpu number
[ 1.470354] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 159/0x2d ignored.
[ 1.479437] ACPI: Unable to map lapic to logical cpu number
[ 1.485732] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 160/0x2e ignored.
[ 1.494815] ACPI: Unable to map lapic to logical cpu number
[ 1.501093] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 161/0x2f ignored.
[ 1.510177] ACPI: Unable to map lapic to logical cpu number
[ 1.516472] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 162/0x30 ignored.
[ 1.525555] ACPI: Unable to map lapic to logical cpu number
[ 1.531834] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 163/0x31 ignored.
[ 1.540917] ACPI: Unable to map lapic to logical cpu number
[ 1.547214] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 164/0x32 ignored.
[ 1.556296] ACPI: Unable to map lapic to logical cpu number
[ 1.562579] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 165/0x33 ignored.
[ 1.571663] ACPI: Unable to map lapic to logical cpu number
[ 1.577957] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 166/0x34 ignored.
[ 1.587040] ACPI: Unable to map lapic to logical cpu number
[ 1.593320] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 167/0x35 ignored.
[ 1.602405] ACPI: Unable to map lapic to logical cpu number
[ 1.608701] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 168/0x36 ignored.
[ 1.617785] ACPI: Unable to map lapic to logical cpu number
[ 1.624064] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 169/0x37 ignored.
[ 1.633146] ACPI: Unable to map lapic to logical cpu number
[ 1.639441] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 170/0x38 ignored.
[ 1.648525] ACPI: Unable to map lapic to logical cpu number
[ 1.654803] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 171/0x39 ignored.
[ 1.663886] ACPI: Unable to map lapic to logical cpu number
[ 1.670181] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 172/0x3a ignored.
[ 1.679263] ACPI: Unable to map lapic to logical cpu number
[ 1.685542] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 173/0x3b ignored.
[ 1.694625] ACPI: Unable to map lapic to logical cpu number
[ 1.700923] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 174/0x3c ignored.
[ 1.710008] ACPI: Unable to map lapic to logical cpu number
[ 1.716288] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 175/0x3d ignored.
[ 1.725371] ACPI: Unable to map lapic to logical cpu number
[ 1.731651] ACPI: PCI Root Bridge [IO00] (domain 0000 [bus 00-0f])
[ 1.738592] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[ 1.746348] acpi PNP0A08:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[ 1.757299] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[ 1.770239] PCI host bridge to bus 0000:00
[ 1.774837] pci_bus 0000:00: root bus resource [bus 00-0f]
[ 1.780995] pci_bus 0000:00: root bus resource [io 0x1000-0x3fff window]
[ 1.788615] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 1.796235] pci_bus 0000:00: root bus resource [mem 0x90000000-0x93efffff window]
[ 1.804635] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 1.813034] pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfedfffff window]
[ 1.821434] pci_bus 0000:00: root bus resource [mem 0xfc000000000-0xfc07fffffff window]
[ 1.830420] pci_bus 0000:00: root bus resource [mem 0xfe200000000-0xfe27fffffff window]
[ 1.841134] pci 0000:00:1c.0: Enabling MPC IRBNCE
[ 1.846420] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[ 1.856959] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[ 1.864840] pci 0000:00:02.2: PCI bridge to [bus 03]
[ 1.870504] pci 0000:00:03.0: PCI bridge to [bus 04]
[ 1.876142] pci 0000:00:11.0: PCI bridge to [bus 05]
[ 1.884743] pci 0000:00:1c.0: PCI bridge to [bus 06]
[ 1.890494] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 1.900032] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 1.909572] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 1.919111] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 1.928647] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 1.938180] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 1.947713] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 1.957248] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 1.966778] ACPI: PCI Root Bridge [IO01] (domain 0000 [bus 10-1f])
[ 1.973717] acpi PNP0A08:01: _OSC: OS supports [ASPM ClockPM Segments MSI]
[ 1.981466] acpi PNP0A08:01: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[ 1.992410] acpi PNP0A08:01: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[ 2.005330] PCI host bridge to bus 0000:10
[ 2.009927] pci_bus 0000:10: root bus resource [bus 10-1f]
[ 2.016083] pci_bus 0000:10: root bus resource [io 0x4000-0x7fff window]
[ 2.023703] pci_bus 0000:10: root bus resource [mem 0x94000000-0x97ff7fff window]
[ 2.032103] pci_bus 0000:10: root bus resource [mem 0xfc400000000-0xfc47fffffff window]
[ 2.042477] pci 0000:10:02.0: PCI bridge to [bus 11]
[ 2.048106] pci 0000:10:02.2: PCI bridge to [bus 12]
[ 2.053764] pci 0000:10:03.0: PCI bridge to [bus 13]
[ 2.059452] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 176/0x40 ignored.
[ 2.068535] ACPI: Unable to map lapic to logical cpu number
[ 2.074821] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 177/0x41 ignored.
[ 2.083906] ACPI: Unable to map lapic to logical cpu number
[ 2.090203] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 178/0x42 ignored.
[ 2.099286] ACPI: Unable to map lapic to logical cpu number
[ 2.105569] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 179/0x43 ignored.
[ 2.114653] ACPI: Unable to map lapic to logical cpu number
[ 2.120951] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 180/0x44 ignored.
[ 2.130034] ACPI: Unable to map lapic to logical cpu number
[ 2.136315] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 181/0x45 ignored.
[ 2.145399] ACPI: Unable to map lapic to logical cpu number
[ 2.151696] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 182/0x46 ignored.
[ 2.160779] ACPI: Unable to map lapic to logical cpu number
[ 2.167061] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 183/0x47 ignored.
[ 2.176144] ACPI: Unable to map lapic to logical cpu number
[ 2.182441] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 184/0x48 ignored.
[ 2.191524] ACPI: Unable to map lapic to logical cpu number
[ 2.197803] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 185/0x49 ignored.
[ 2.206886] ACPI: Unable to map lapic to logical cpu number
[ 2.213185] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 186/0x4a ignored.
[ 2.222268] ACPI: Unable to map lapic to logical cpu number
[ 2.228550] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 187/0x4b ignored.
[ 2.237633] ACPI: Unable to map lapic to logical cpu number
[ 2.243930] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 188/0x4c ignored.
[ 2.253013] ACPI: Unable to map lapic to logical cpu number
[ 2.259295] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 189/0x4d ignored.
[ 2.268378] ACPI: Unable to map lapic to logical cpu number
[ 2.274674] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 190/0x4e ignored.
[ 2.283759] ACPI: Unable to map lapic to logical cpu number
[ 2.290040] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 191/0x4f ignored.
[ 2.299123] ACPI: Unable to map lapic to logical cpu number
[ 2.305421] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 192/0x50 ignored.
[ 2.314504] ACPI: Unable to map lapic to logical cpu number
[ 2.320785] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 193/0x51 ignored.
[ 2.329868] ACPI: Unable to map lapic to logical cpu number
[ 2.336165] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 194/0x52 ignored.
[ 2.345248] ACPI: Unable to map lapic to logical cpu number
[ 2.351527] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 195/0x53 ignored.
[ 2.360611] ACPI: Unable to map lapic to logical cpu number
[ 2.366906] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 196/0x54 ignored.
[ 2.375989] ACPI: Unable to map lapic to logical cpu number
[ 2.382273] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 197/0x55 ignored.
[ 2.391356] ACPI: Unable to map lapic to logical cpu number
[ 2.397652] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 198/0x56 ignored.
[ 2.406734] ACPI: Unable to map lapic to logical cpu number
[ 2.413016] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 199/0x57 ignored.
[ 2.422100] ACPI: Unable to map lapic to logical cpu number
[ 2.428397] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 200/0x58 ignored.
[ 2.437481] ACPI: Unable to map lapic to logical cpu number
[ 2.443760] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 201/0x59 ignored.
[ 2.452843] ACPI: Unable to map lapic to logical cpu number
[ 2.459141] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 202/0x5a ignored.
[ 2.468224] ACPI: Unable to map lapic to logical cpu number
[ 2.474506] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 203/0x5b ignored.
[ 2.483590] ACPI: Unable to map lapic to logical cpu number
[ 2.489887] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 204/0x5c ignored.
[ 2.498970] ACPI: Unable to map lapic to logical cpu number
[ 2.505252] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 205/0x5d ignored.
[ 2.514335] ACPI: Unable to map lapic to logical cpu number
[ 2.520642] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 206/0x60 ignored.
[ 2.529726] ACPI: Unable to map lapic to logical cpu number
[ 2.536007] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 207/0x61 ignored.
[ 2.545091] ACPI: Unable to map lapic to logical cpu number
[ 2.551388] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 208/0x62 ignored.
[ 2.560471] ACPI: Unable to map lapic to logical cpu number
[ 2.566752] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 209/0x63 ignored.
[ 2.575834] ACPI: Unable to map lapic to logical cpu number
[ 2.582133] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 210/0x64 ignored.
[ 2.591215] ACPI: Unable to map lapic to logical cpu number
[ 2.597498] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 211/0x65 ignored.
[ 2.606581] ACPI: Unable to map lapic to logical cpu number
[ 2.612877] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 212/0x66 ignored.
[ 2.621961] ACPI: Unable to map lapic to logical cpu number
[ 2.628242] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 213/0x67 ignored.
[ 2.637326] ACPI: Unable to map lapic to logical cpu number
[ 2.643624] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 214/0x68 ignored.
[ 2.652708] ACPI: Unable to map lapic to logical cpu number
[ 2.658991] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 215/0x69 ignored.
[ 2.668074] ACPI: Unable to map lapic to logical cpu number
[ 2.674370] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 216/0x6a ignored.
[ 2.683455] ACPI: Unable to map lapic to logical cpu number
[ 2.689736] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 217/0x6b ignored.
[ 2.698819] ACPI: Unable to map lapic to logical cpu number
[ 2.705114] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 218/0x6c ignored.
[ 2.714197] ACPI: Unable to map lapic to logical cpu number
[ 2.720478] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 219/0x6d ignored.
[ 2.729562] ACPI: Unable to map lapic to logical cpu number
[ 2.735860] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 220/0x6e ignored.
[ 2.744943] ACPI: Unable to map lapic to logical cpu number
[ 2.751224] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 221/0x6f ignored.
[ 2.760307] ACPI: Unable to map lapic to logical cpu number
[ 2.766601] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 222/0x70 ignored.
[ 2.775684] ACPI: Unable to map lapic to logical cpu number
[ 2.781965] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 223/0x71 ignored.
[ 2.791048] ACPI: Unable to map lapic to logical cpu number
[ 2.797346] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 224/0x72 ignored.
[ 2.806430] ACPI: Unable to map lapic to logical cpu number
[ 2.812712] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 225/0x73 ignored.
[ 2.821796] ACPI: Unable to map lapic to logical cpu number
[ 2.828092] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 226/0x74 ignored.
[ 2.837176] ACPI: Unable to map lapic to logical cpu number
[ 2.843455] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 227/0x75 ignored.
[ 2.852539] ACPI: Unable to map lapic to logical cpu number
[ 2.858838] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 228/0x76 ignored.
[ 2.867923] ACPI: Unable to map lapic to logical cpu number
[ 2.874204] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 229/0x77 ignored.
[ 2.883289] ACPI: Unable to map lapic to logical cpu number
[ 2.889586] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 230/0x78 ignored.
[ 2.898670] ACPI: Unable to map lapic to logical cpu number
[ 2.904952] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 231/0x79 ignored.
[ 2.914035] ACPI: Unable to map lapic to logical cpu number
[ 2.920330] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 232/0x7a ignored.
[ 2.929414] ACPI: Unable to map lapic to logical cpu number
[ 2.935698] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 233/0x7b ignored.
[ 2.944781] ACPI: Unable to map lapic to logical cpu number
[ 2.951077] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 234/0x7c ignored.
[ 2.960161] ACPI: Unable to map lapic to logical cpu number
[ 2.966442] ACPI: NR_CPUS/possible_cpus limit of 4 reached. Processor 235/0x7d ignored.
[ 2.975524] ACPI: Unable to map lapic to logical cpu number
[ 2.981801] ACPI: PCI Root Bridge [IO02] (domain 0000 [bus 20-2f])
[ 2.988740] acpi PNP0A08:02: _OSC: OS supports [ASPM ClockPM Segments MSI]
[ 2.996491] acpi PNP0A08:02: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[ 3.007434] acpi PNP0A08:02: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[ 3.020360] PCI host bridge to bus 0000:20
[ 3.024956] pci_bus 0000:20: root bus resource [bus 20-2f]
[ 3.031114] pci_bus 0000:20: root bus resource [io 0x8000-0xbfff window]
[ 3.038734] pci_bus 0000:20: root bus resource [mem 0x98000000-0x9befffff window]
[ 3.047133] pci_bus 0000:20: root bus resource [mem 0xf0800000000-0xf087fffffff window]
[ 3.057920] pci 0000:20:1c.0: Enabling MPC IRBNCE
[ 3.063201] pci 0000:20:1c.0: Intel PCH root port ACS workaround enabled
[ 3.072740] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[ 3.078706] pci 0000:20:02.2: PCI bridge to [bus 23]
[ 3.084370] pci 0000:20:03.0: PCI bridge to [bus 24]
[ 3.090011] pci 0000:20:11.0: PCI bridge to [bus 25]
[ 3.098606] pci 0000:20:1c.0: PCI bridge to [bus 26]
[ 3.104290] ACPI: PCI Root Bridge [IO03] (domain 0000 [bus 30-3f])
[ 3.111230] acpi PNP0A08:03: _OSC: OS supports [ASPM ClockPM Segments MSI]
[ 3.118981] acpi PNP0A08:03: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[ 3.129925] acpi PNP0A08:03: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[ 3.142847] PCI host bridge to bus 0000:30
[ 3.147443] pci_bus 0000:30: root bus resource [bus 30-3f]
[ 3.153601] pci_bus 0000:30: root bus resource [io 0xc000-0xffff window]
[ 3.161221] pci_bus 0000:30: root bus resource [mem 0x9c000000-0x9fff7fff window]
[ 3.169621] pci_bus 0000:30: root bus resource [mem 0xf0c00000000-0xf0c7fffffff window]
[ 3.180086] pci 0000:30:02.0: PCI bridge to [bus 31]
[ 3.185719] pci 0000:30:02.2: PCI bridge to [bus 32]
[ 3.191383] pci 0000:30:03.0: PCI bridge to [bus 33]
[ 3.197040] ACPI: Enabled 1 GPEs in block 80 to FF
[ 3.202563] vgaarb: setting as boot device: PCI:0000:06:00.1
[ 3.208913] vgaarb: device added: PCI:0000:06:00.1,decodes=io+mem,owns=io+mem,locks=none
[ 3.218001] vgaarb: loaded
[ 3.221035] vgaarb: bridge control possible 0000:06:00.1
[ 3.227066] SCSI subsystem initialized
[ 3.231296] ACPI: bus type USB registered
[ 3.235808] usbcore: registered new interface driver usbfs
[ 3.241971] usbcore: registered new interface driver hub
[ 3.247949] usbcore: registered new device driver usb
[ 3.253735] PCI: Using ACPI for IRQ routing
[ 3.258692] NetLabel: Initializing
[ 3.262509] NetLabel: domain hash size = 128
[ 3.267398] NetLabel: protocols = UNLABELED CIPSOv4
[ 3.272980] NetLabel: unlabeled traffic allowed by default
[ 3.279328] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 3.286341] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 3.294931] Switched to clocksource hpet
[ 3.305360] pnp: PnP ACPI init
[ 3.309898] pnp: PnP ACPI: found 2 devices
[ 3.316115] pci 0000:01:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 3.327253] pci 0000:03:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[ 3.338391] pci 0000:21:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 3.349525] pci 0000:21:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 3.360707] pci 0000:01:00.0: BAR 6: assigned [mem 0x90380000-0x903fffff pref]
[ 3.368819] pci 0000:01:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[ 3.376736] pci 0000:01:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[ 3.385046] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[ 3.390916] pci 0000:00:02.0: bridge window [io 0x2000-0x2fff]
[ 3.397763] pci 0000:00:02.0: bridge window [mem 0x90100000-0x903fffff]
[ 3.405389] pci 0000:00:02.0: bridge window [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[ 3.414674] pci 0000:03:00.0: BAR 6: assigned [mem 0x90000000-0x9003ffff pref]
[ 3.422787] pci 0000:03:00.1: BAR 6: assigned [mem 0x90040000-0x9007ffff pref]
[ 3.430896] pci 0000:00:02.2: PCI bridge to [bus 03]
[ 3.436473] pci 0000:00:02.2: bridge window [mem 0x90000000-0x900fffff]
[ 3.444098] pci 0000:00:02.2: bridge window [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[ 3.453383] pci 0000:00:03.0: PCI bridge to [bus 04]
[ 3.458966] pci 0000:00:11.0: PCI bridge to [bus 05]
[ 3.464554] pci 0000:06:00.2: BAR 6: assigned [mem 0x93a90000-0x93a9ffff pref]
[ 3.472667] pci 0000:00:1c.0: PCI bridge to [bus 06]
[ 3.478243] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
[ 3.485091] pci 0000:00:1c.0: bridge window [mem 0x92000000-0x93efffff]
[ 3.492757] pci 0000:10:02.0: PCI bridge to [bus 11]
[ 3.498340] pci 0000:10:02.2: PCI bridge to [bus 12]
[ 3.503923] pci 0000:10:03.0: PCI bridge to [bus 13]
[ 3.509549] pci 0000:21:00.0: BAR 6: assigned [mem 0x98280000-0x982fffff pref]
[ 3.517662] pci 0000:21:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[ 3.525578] pci 0000:21:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[ 3.533883] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[ 3.539752] pci 0000:20:02.0: bridge window [io 0x8000-0x8fff]
[ 3.546597] pci 0000:20:02.0: bridge window [mem 0x98000000-0x982fffff]
[ 3.554222] pci 0000:20:02.0: bridge window [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[ 3.563508] pci 0000:20:02.2: PCI bridge to [bus 23]
[ 3.569091] pci 0000:20:03.0: PCI bridge to [bus 24]
[ 3.574675] pci 0000:20:11.0: PCI bridge to [bus 25]
[ 3.580262] pci 0000:26:00.2: BAR 6: assigned [mem 0x9bd90000-0x9bd9ffff pref]
[ 3.588372] pci 0000:20:1c.0: PCI bridge to [bus 26]
[ 3.593947] pci 0000:20:1c.0: bridge window [io 0x9000-0x9fff]
[ 3.600795] pci 0000:20:1c.0: bridge window [mem 0x9bb00000-0x9befffff]
[ 3.608456] pci 0000:30:02.0: PCI bridge to [bus 31]
[ 3.614039] pci 0000:30:02.2: PCI bridge to [bus 32]
[ 3.619623] pci 0000:30:03.0: PCI bridge to [bus 33]
[ 3.625237] NET: Registered protocol family 2
[ 3.630278] TCP established hash table entries: 4096 (order: 3, 32768 bytes)
[ 3.638207] TCP bind hash table entries: 4096 (order: 4, 65536 bytes)
[ 3.645452] TCP: Hash tables configured (established 4096 bind 4096)
[ 3.652617] TCP: reno registered
[ 3.656244] UDP hash table entries: 256 (order: 1, 8192 bytes)
[ 3.662798] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[ 3.669873] NET: Registered protocol family 1
[ 3.680606] Unpacking initramfs...
[ 3.830067] Freeing initrd memory: 12120K (ffff880037384000 - ffff880037f5a000)
[ 3.838765] Translation is enabled prior to OS.
[ 3.843855] IOMMU Copying translate tables from panicked kernel
[ 3.850546] IOMMU: root_cache:0xffff880034248000 phys:0x009f70d14000
[ 3.857810] Translation is enabled prior to OS.
[ 3.862896] IOMMU Copying translate tables from panicked kernel
[ 3.869591] IOMMU: root_cache:0xffff88003424a000 phys:0x007f71751000
[ 3.876772] Translation is enabled prior to OS.
[ 3.881858] IOMMU Copying translate tables from panicked kernel
[ 3.888531] IOMMU: root_cache:0xffff880031db7000 phys:0x005f71a8f000
[ 3.895716] Translation is enabled prior to OS.
[ 3.900803] IOMMU Copying translate tables from panicked kernel
[ 3.907513] IOMMU: root_cache:0xffff8800342e9000 phys:0x001ff0a69000
[ 3.914648] IOMMU: dmar3 using Queued invalidation
[ 3.920028] IOMMU: dmar2 using Queued invalidation
[ 3.925409] IOMMU: dmar1 using Queued invalidation
[ 3.930789] IOMMU: dmar0 using Queued invalidation
[ 3.936204] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[ 3.945004] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[ 3.956961] microcode: CPU0 sig=0x306e7, pf=0x80, revision=0x70e
[ 3.963708] microcode: CPU1 sig=0x306e7, pf=0x80, revision=0x70e
[ 3.970461] microcode: CPU2 sig=0x306e7, pf=0x80, revision=0x70e
[ 3.977207] microcode: CPU3 sig=0x306e7, pf=0x80, revision=0x70e
[ 3.983993] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 3.994336] futex hash table entries: 1024 (order: 4, 65536 bytes)
[ 4.001295] Initialise system trusted keyring
[ 4.006206] audit: initializing netlink subsys (disabled)
[ 4.012285] audit: type=2000 audit(1429172893.405:1): initialized
[ 4.019582] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 4.027738] zpool: loaded
[ 4.030683] zbud: loaded
[ 4.033659] VFS: Disk quotas dquot_6.5.2
[ 4.038098] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 4.046046] Key type big_key registered
[ 4.051223] alg: No test for stdrng (krng)
[ 4.055833] NET: Registered protocol family 38
[ 4.060830] Key type asymmetric registered
[ 4.065431] Asymmetric key parser 'x509' registered
[ 4.070928] bounce: pool size: 64 pages
[ 4.075265] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[ 4.083617] io scheduler noop registered
[ 4.088027] io scheduler deadline registered (default)
[ 4.093826] io scheduler cfq registered
[ 4.099640] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 4.105911] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 4.113559] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 4.122941] ACPI: Power Button [PWRB]
[ 4.127347] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[ 4.135717] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
\x034.163465] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 4.172558] Non-volatile memory driver v1.3
[ 4.177288] Linux agpgart interface v0.103
[ 4.181991] rdac: device handler registered
[ 4.186723] hp_sw: device handler registered
[ 4.191519] emc: device handler registered
[ 4.196118] alua: device handler registered
[ 4.200838] libphy: Fixed MDIO Bus: probed
[ 4.205483] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 4.212819] ehci-pci: EHCI PCI platform driver
[ 4.217909] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 4.223817] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
[ 4.232139] ehci-pci 0000:00:1d.0: debug port 2
[ 4.241215] ehci-pci 0000:00:1d.0: irq 23, io mem 0x90400000
[ 4.253141] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 4.259626] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 4.267250] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.275361] usb usb1: Product: EHCI Host Controller
[ 4.280840] usb usb1: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[ 4.287780] usb usb1: SerialNumber: 0000:00:1d.0
[ 4.293060] hub 1-0:1.0: USB hub found
[ 4.297278] hub 1-0:1.0: 2 ports detected
[ 4.301946] ehci-pci 0000:20:1d.0: EHCI Host Controller
[ 4.307853] ehci-pci 0000:20:1d.0: new USB bus registered, assigned bus number 2
[ 4.316174] ehci-pci 0000:20:1d.0: debug port 2
[ 4.325245] ehci-pci 0000:20:1d.0: irq 30, io mem 0x98300000
[ 4.337246] ehci-pci 0000:20:1d.0: USB 2.0 started, EHCI 1.00
[ 4.343728] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 4.351354] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.359463] usb usb2: Product: EHCI Host Controller
[ 4.364940] usb usb2: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[ 4.371880] usb usb2: SerialNumber: 0000:20:1d.0
[ 4.377136] hub 2-0:1.0: USB hub found
[ 4.381348] hub 2-0:1.0: 2 ports detected
[ 4.385908] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 4.392855] ohci-pci: OHCI PCI platform driver
[ 4.397857] uhci_hcd: USB Universal Host Controller Interface driver
[ 4.405064] uhci_hcd 0000:06:00.4: UHCI Host Controller
[ 4.410967] uhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 3
[ 4.419292] uhci_hcd 0000:06:00.4: detected 8 ports
[ 4.424767] uhci_hcd 0000:06:00.4: port count misdetected? forcing to 2 ports
[ 4.432818] uhci_hcd 0000:06:00.4: irq 16, io base 0x00001500
[ 4.439383] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 4.447009] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.455119] usb usb3: Product: UHCI Host Controller
[ 4.460596] usb usb3: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[ 4.467536] usb usb3: SerialNumber: 0000:06:00.4
[ 4.472789] hub 3-0:1.0: USB hub found
[ 4.477004] hub 3-0:1.0: 2 ports detected
[ 4.481593] usbcore: registered new interface driver usbserial
[ 4.488169] usbcore: registered new interface driver usbserial_generic
[ 4.495506] usbserial: USB Serial support registered for generic
[ 4.502266] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 4.948011] tsc: Refined TSC clocksource calibration: 2793.687 MHz
[ 5.529759] i8042: No controller found
[ 5.534014] mousedev: PS/2 mouse device common for all mice
[ 5.540392] rtc_cmos 00:01: RTC can wake from S4
[ 5.545705] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[ 5.552578] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 5.561190] Intel P-state driver initializing.
[ 5.566280] hidraw: raw HID events driver (C) Jiri Kosina
[ 5.572436] usbcore: registered new interface driver usbhid
[ 5.578696] usbhid: USB HID core driver
[ 5.583034] drop_monitor: Initializing network drop monitor service
[ 5.590130] TCP: cubic registered
[ 5.593854] Initializing XFRM netlink socket
[ 5.598720] NET: Registered protocol family 10
[ 5.603891] NET: Registered protocol family 17
[ 5.608888] mce: Unable to init device /dev/mcelog (rc: -5)
[ 5.615368] Loading compiled-in X.509 certificates
[ 5.621393] Loaded X.509 cert 'Magrathea: Glacier signing key: 307113a598e2a4626872c8019495ffd1ab8d036a'
[ 5.632053] registered taskstats version 1
[ 5.635891] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 5.635903] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 5.652714] Key type trusted registered
[ 5.659807] Key type encrypted registered
[ 5.664317] ima: No TPM chip found, activating TPM-bypass!
[ 5.670502] evm: HMAC attrs: 0x1
[ 5.675242] rtc_cmos 00:01: setting system clock to 2015-04-16 08:28:19 UTC (1429172899)
[ 5.685045] Freeing unused kernel memory: 1704K (ffffffff81b4d000 - ffffffff81cf7000)
[ 5.696223] systemd[1]: systemd 208 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[ 5.710306] systemd[1]: Running in initial RAM disk.
Welcome to ^[[0;34mRed Hat Enterprise Linux Server 7.0 (Maipo) dracut-033-161.el7 (Initramfs)^[[0m!
[ 5.727108] systemd[1]: Set hostname to <dhb5.fcux.usa.hp.com>.
[ 5.734364] random: systemd urandom read with 3 bits of entropy available
[ 5.754384] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[ 5.761916] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 5.764178] systemd[1]: Expecting device dev-disk-by\x2duuid-309f5617\x2da658\x2d49d1\x2db464\x2dcc38f471ab07.device...
[ 5.782056] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[ 5.782057] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 5.782255] hub 1-1:1.0: USB hub found
[ 5.782310] hub 2-1:1.0: USB hub found
[ 5.782365] hub 1-1:1.0: 8 ports detected
[ 5.782420] hub 2-1:1.0: 8 ports detected
Expecting device dev-disk-by\x2duuid-309f5617\x2da65...1ab07.device...
[ 5.824208] systemd[1]: Expecting device dev-mapper-rhel_dhb5\x2dswap.device...
Expecting device dev-mapper-rhel_dhb5\x2dswap.device...
[ 5.840201] systemd[1]: Expecting device dev-disk-by\x2duuid-1C36\x2d187E.device...
Expecting device dev-disk-by\x2duuid-1C36\x2d187E.device...
[ 5.856223] systemd[1]: Expecting device dev-disk-by\x2duuid-227bc7d6\x2d3f21\x2d4e34\x2db43d\x2d7f65c5e3dbcc.device...
Expecting device dev-disk-by\x2duuid-227bc7d6\x2d3f2...3dbcc.device...
[ 5.878249] systemd[1]: Starting -.slice.
[^[[32m OK ^[[0m] Created slice -.slice.
[ 5.887258] systemd[1]: Created slice -.slice.
[ 5.892301] systemd[1]: Starting System Slice.
[^[[32m OK ^[[0m] Created slice System Slice.
[ 5.902277] systemd[1]: Created slice System Slice.
[ 5.907793] systemd[1]: Starting Slices.
[^[[32m OK ^[[0m] Reached target Slices.
[ 5.917293] systemd[1]: Reached target Slices.
[ 5.922319] systemd[1]: Starting Timers.
[^[[32m OK ^[[0m] Reached target Timers.
[ 5.931310] systemd[1]: Reached target Timers.
[ 5.936340] systemd[1]: Starting Journal Socket.
[^[[32m OK ^[[0m] Listening on Journal Socket.
[ 5.948329] systemd[1]: Listening on Journal Socket.
[ 5.953915] Switched to clocksource tsc
[ 5.954060] systemd[1]: Starting dracut cmdline hook...
Starting dracut cmdline hook...
[ 5.969628] systemd[1]: Starting Journal Service...
Starting Journal Service...
[^[[32m OK ^[[0m] Started Journa[ 5.982669] systemd-journald[120]: Vacuuming done, freed 0 bytes
l Service.
[ 5.992388] systemd[1]: Started Journal Service.
[^[[32m OK ^[[0m] Reached target Paths.
[^[[32m OK ^[[0m] Listening on udev Kernel Socket.
[^[[32m OK ^[[0m] Listening on udev Control Socket.
[^[[32m OK ^[[0m] Reached target Sockets.
Starting Apply Kernel Variables...
Starting Create list of required static device nodes...rrent kernel...
Starting Device-Mapper Multipath Device Controller...
[^[[32m OK ^[[0m] Reached target[ 6.059444] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
Swap.
[ 6.067442] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
[ 6.075902] device-mapper: uevent: version 1.0.3
[^[[32m OK ^[[0m[ 6.081236] device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised: dm-devel@redhat.com
] Reached target[ 6.093418] device-mapper: multipath: version 1.8.0 loaded
Local File Systems.
[^[[32m OK ^[[0m] Started dracut cmdline hook.
[^[[32m OK ^[[0m] Started Apply Kernel Variables.
Starting dracut pre-udev hook...
[^[[32m OK ^[[0m] Started Create list of required static device nodes ...current kernel.
Starting Create static device nodes in /dev...
[^[[32m OK ^[[0m] Started Device-Mapper Multipath Device Controller.
[^[[32m OK ^[[0m] Started Create static device nodes in /dev.
[ 6.154934] usb 1-1.3: New USB device found, idVendor=0424, idProduct=2660
[ 6.162877] usb 1-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 6.171347] hub 1-1.3:1.0: USB hub found
[ 6.175860] hub 1-1.3:1.0: 2 ports detected
[ 6.180140] usb 2-1.3: New USB device found, idVendor=0424, idProduct=2660
[ 6.187868] usb 2-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[^[[32m OK ^[[0m[ 6.196308] hub 2-1.3:1.0: USB hub found
] Started dracut[ 6.202173] hub 2-1.3:1.0: 2 ports detected
pre-udev hook.
Starting udev Kernel Device Manager...
[ 6.219086] systemd-udevd[237]: starting version 208
[^[[32m OK ^[[0m] Started udev Kernel Device Manager.
Starting udev Coldplug all Devices...
Mounting Configuration File System...
[^[[32m OK ^[[0m] Started udev Coldplug all Devices.
[^[[32m OK ^[[0m] Mounted Configuration File System.
Starting dracut initqueue hook...
[^[[32m OK ^[[0m] Reached target System Initialization.
[^[[32m OK ^[[0m] Reached target Basic System.
[ 6.285238] qla2xxx [0000:00:00.0]-0005: : QLogic Fibre Channel HBA Driver: 8.07.00.16-k.
[ 6.294497] qla2xxx [0000:03:00.0]-011c: : MSI-X vector count: 31.
[ 6.301440] qla2xxx [0000:03:00.0]-001d: : Found an ISP2031 irq 31 iobase 0xffffc900002ae000.
Starting File System Check on /dev/disk/by-uuid/227b...7f65c5e3dbcc...
systemd-fsck[272]: fsck: error 2 (No such file or directory) while executing fsck.ext2 for /dev/disk/by-uuid/227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc
[^[[32m OK ^[[0m] Started File System Check on /dev/disk/by-uuid/227bc...d-7f65c5e3dbcc.
[ 7.679447] scsi host0: qla2xxx
[ 7.683164] qla2xxx [0000:03:00.0]-00fb:0: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[ 7.692065] qla2xxx [0000:03:00.0]-00fc:0: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.0 hdma- host#=0 fw=7.03.01 (d0d5).
[ 7.704050] qla2xxx [0000:03:00.1]-011c: : MSI-X vector count: 31.
[ 7.710995] qla2xxx [0000:03:00.1]-001d: : Found an ISP2031 irq 34 iobase 0xffffc900002b0000.
[ 8.466145] qla2xxx [0000:03:00.0]-500a:0: LOOP UP detected (8 Gbps).
[ 9.070190] scsi host1: qla2xxx
[ 9.076242] qla2xxx [0000:03:00.1]-00fb:1: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[ 9.085139] qla2xxx [0000:03:00.1]-00fc:1: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.1 hdma- host#=1 fw=7.03.01 (d0d5).
[ 9.691943] scsi: waiting for bus probes to complete ...
[ 14.090926] scsi 0:0:0:0: Enclosure HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 14.100122] hpwdt 0000:06:00.0: Unable to detect the 64 Bit CRU Service.
[ 14.100519] scsi 0:0:0:0: alua: supports implicit TPGS
[ 14.101249] scsi 0:0:0:0: alua: port group 01 rel port 05
[ 14.101318] scsi 0:0:0:0: alua: port group 01 state N non-preferred supports tOlusNA
[ 14.101319] scsi 0:0:0:0: alua: Attached
[ 14.104988] scsi 0:0:0:50: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 14.105601] scsi 0:0:0:50: alua: supports implicit TPGS
[ 14.105792] scsi 0:0:0:50: alua: port group 01 rel port 05
[ 14.105856] scsi 0:0:0:50: alua: port group 01 state N non-preferred supports tOlusNA
[ 14.105857] scsi 0:0:0:50: alua: Attached
[ 14.106085] scsi 0:0:0:51: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 14.106424] scsi 0:0:0:51: alua: supports implicit TPGS
[ 14.106782] scsi 0:0:0:51: alua: port group 01 rel port 05
[ 14.107115] scsi 0:0:0:51: alua: port group 01 state N non-preferred supports tOlusNA
[ 14.107116] scsi 0:0:0:51: alua: Attached
[ 14.107348] scsi 0:0:0:52: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 14.107692] scsi 0:0:0:52: alua: supports implicit TPGS
[ 14.107895] scsi 0:0:0:52: alua: port group 01 rel port 05
[ 14.107957] scsi 0:0:0:52: alua: port group 01 state N non-preferred supports tOlusNA
[ 14.107958] scsi 0:0:0:52: alua: Attached
[ 14.108186] scsi 0:0:0:53: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 14.108670] scsi 0:0:0:53: alua: supports implicit TPGS
[ 14.109106] scsi 0:0:0:53: alua: port group 01 rel port 05
[ 14.109170] scsi 0:0:0:53: alua: port group 01 state N non-preferred supports tOlusNA
[ 14.109171] scsi 0:0:0:53: alua: Attached
[ 14.109392] scsi 0:0:0:54: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 14.109734] scsi 0:0:0:54: alua: supports implicit TPGS
[ 14.109924] scsi 0:0:0:54: alua: port group 01 rel port 05
[ 14.109988] scsi 0:0:0:54: alua: port group 01 state N non-preferred supports tOlusNA
[ 14.109989] scsi 0:0:0:54: alua: Attached
[ 14.117043] scsi 0:0:1:0: Enclosure HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 14.118896] scsi 0:0:1:0: alua: supports implicit TPGS
[ 14.120452] scsi 0:0:1:0: alua: port group 00 rel port 01
[ 14.120521] scsi 0:0:1:0: alua: port group 00 state N non-preferred supports tOlusNA
[ 14.120522] scsi 0:0:1:0: alua: Attached
[ 14.122939] scsi 0:0:1:50: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 14.123285] scsi 0:0:1:50: alua: supports implicit TPGS
[ 14.124576] scsi 0:0:1:50: alua: port group 00 rel port 01
[ 14.124641] scsi 0:0:1:50: alua: port group 00 state A preferred supports tOlusNA
[ 14.124642] scsi 0:0:1:50: alua: Attached
[ 14.124872] scsi 0:0:1:51: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 14.126323] scsi 0:0:1:51: alua: supports implicit TPGS
[ 14.126516] scsi 0:0:1:51: alua: port group 00 rel port 01
[ 14.126581] scsi 0:0:1:51: alua: port group 00 state A preferred supports tOlusNA
[ 14.126582] scsi 0:0:1:51: alua: Attached
[ 14.126806] scsi 0:0:1:52: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 14.128246] scsi 0:0:1:52: alua: supports implicit TPGS
[ 14.128441] scsi 0:0:1:52: alua: port group 00 rel port 01
[ 14.128635] scsi 0:0:1:52: alua: port group 00 state A preferred supports tOlusNA
[ 14.128636] scsi 0:0:1:52: alua: Attached
[ 14.130766] scsi 0:0:1:53: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 14.132665] scsi 0:0:1:53: alua: supports implicit TPGS
[ 14.134478] scsi 0:0:1:53: alua: port group 00 rel port 01
[ 14.134677] scsi 0:0:1:53: alua: port group 00 state A preferred supports tOlusNA
[ 14.134678] scsi 0:0:1:53: alua: Attached
[ 14.136280] scsi 0:0:1:54: Direct-Access HP P2000 G3 FC T251 PQ: 0 ANSI: 5
[ 14.138042] scsi 0:0:1:54: alua: supports implicit TPGS
[ 14.138238] scsi 0:0:1:54: alua: port group 00 rel port 01
[ 14.138302] scsi 0:0:1:54: alua: port group 00 state A preferred supports tOlusNA
[ 14.138303] scsi 0:0:1:54: alua: Attached
[ 14.153850] [drm] Initialized drm 1.1.0 20060810
[ 14.523890] [TTM] Zone kernel: Available graphics memory: 249374 kiB
[ 14.531125] [TTM] Initializing pool allocator
[ 14.536022] [TTM] Initializing DMA pool allocator
[ 14.570544] fbcon: mgadrmfb (fb0) is primary device
[ 14.693209] Console: switching to colour frame buffer device 128x48
[ 14.737835] mgag200 0000:06:00.1: fb0: mgadrmfb frame buffer device
[ 14.744877] mgag200 0000:06:00.1: registered panic notifier
[ 14.751428] sd 0:0:0:50: [sda] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[ 14.760146] sd 0:0:0:51: [sdb] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[ 14.760148] sd 0:0:0:54: [sde] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[ 14.760168] sd 0:0:0:53: [sdd] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[ 14.760231] sd 0:0:1:50: [sdf] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[ 14.760263] sd 0:0:1:51: [sdg] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[ 14.760664] sd 0:0:1:50: [sdf] Write Protect is off
[ 14.760705] sd 0:0:1:51: [sdg] Write Protect is off
[ 14.760793] sd 0:0:1:50: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 14.760828] sd 0:0:1:51: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 14.761082] sd 0:0:0:52: [sdc] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[ 14.761303] sd 0:0:1:52: [sdh] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[ 14.761314] sd 0:0:1:53: [sdi] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[ 14.761382] sd 0:0:1:54: [sdj] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[ 14.761910] sd 0:0:0:54: [sde] Write Protect is off
[ 14.761957] sd 0:0:0:50: [sda] Write Protect is off
[ 14.761976] sd 0:0:0:53: [sdd] Write Protect is off
[ 14.762051] sd 0:0:0:52: [sdc] Write Protect is off
[ 14.762071] sd 0:0:0:54: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 14.762077] sd 0:0:0:50: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 14.762134] sd 0:0:0:53: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 14.762197] sd 0:0:0:52: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 14.762655] sd 0:0:1:52: [sdh] Write Protect is off
[ 14.762671] sd 0:0:1:53: [sdi] Write Protect is off
[ 14.762679] sd 0:0:1:54: [sdj] Write Protect is off
[ 14.762799] sd 0:0:1:52: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 14.762942] sd 0:0:1:53: [sdi] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 14.762994] sd 0:0:1:54: [sdj] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 14.796120] sd 0:0:1:54: [sdj] Attached SCSI disk
[ 14.804336] sd 0:0:0:54: [sde] Attached SCSI disk
[ 14.807081] sd 0:0:0:53: [sdd] Attached SCSI disk
[ 14.808932] random: nonblocking pool is initialized
[ 14.809408] sd 0:0:0:52: [sdc] Attached SCSI disk
[ 14.809649] sd 0:0:1:52: [sdh] Attached SCSI disk
[ 14.809940] sd 0:0:1:53: [sdi] Attached SCSI disk
[ 14.826381] sdg: sdg1 sdg2 sdg3
[ 14.836077] sd 0:0:1:51: [sdg] Attached SCSI disk
[ 14.839624] sdf: sdf1 sdf2 sdf3 sdf4
[ 14.845076] sd 0:0:1:50: [sdf] Attached SCSI disk
[ 14.845605] sda: sda1 sda2 sda3 sda4
[ 14.854284] sd 0:0:0:50: [sda] Attached SCSI disk
[ 15.045217] sd 0:0:0:51: [sdb] Write Protect is off
[ 15.050811] sd 0:0:0:51: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 15.051679] [drm] Initialized mgag200 1.0.0 20110418 for 0000:06:00.1 on minor 0
[ 15.072279] sdb: sdb1 sdb2 sdb3
[ 15.076731] sd 0:0:0:51: [sdb] Attached SCSI disk
[ 15.211225] device-mapper: multipath service-time: version 0.2.0 loaded
[^[[32m OK ^[[0m] Started dracut initqueue hook.
Mounting /sysroot...
[^[[32m OK ^[[0m] Reached target Initrd Root File System.
Starting Reload Configuration from the Real Root...
[ 16.159937] EXT4-fs (dm-7): INFO: recovery required on readonly filesystem
[ 16.167662] EXT4-fs (dm-7): write access will be enabled during recovery
[^[[32m OK ^[[0m] Started Reload Configuration from the Real Root.
[^[[32m OK ^[[0m] Reached target Initrd File Systems.
[^[[32m OK ^[[0m] Reached target Initrd Default Target.
[ 16.332695] EXT4-fs (dm-7): orphan cleanup on readonly fs
[ 16.364569] EXT4-fs (dm-7): 2 orphan inodes deleted
[ 16.370109] EXT4-fs (dm-7): recovery complete
[ 16.376741] EXT4-fs (dm-7): mounted filesystem with ordered data mode. Opts: (null)
kdump: dump target is /dev/mappe[ 16.426873] EXT4-fs (dm-7): re-mounted. Opts: stripe=256,data=ordered
r/mpatha3
kdump: saving to /sysroot//var/crash/127.0.0.1-2015.04.16-04:28:30/
kdump: saving vmcore-dmesg.txt
Missing the struct log size export
kdump: saving vmcore-dmesg.txt failed
kdump: saving vmcore
\rExcluding unnecessary pages : [ 0.0 %] /\rExcluding unnecessary pages : [ 0.9 %] |\rExcluding unnecessary pages : [ 61.8 %] \\rExcluding unnecessary pages : [ 90.1 %] -\rExcluding unnecessary pages : [100.0 %] /\rExcluding unnecessary pages : [ 0.0 %] |\rExcluding unnecessary pages : [ 18.9 %] \\rExcluding unnecessary pages : [ 72.9 %] -\rExcluding unnecessary pages : [100.0 %] /\rCopying data : [ 0.0 %] |\rCopying data : [ 0.4 %] \\rCopying data : [ 0.8 %] -\rCopying data : [ 1.2 %] /\rCopying data : [ 1.7 %] |\rCopying data : [ 2.2 %] \\rCopying data : [ 2.6 %] -[ 30.166587] qla2xxx [0000:03:00.1]-8038:1: Cable is unplugged...
\rCopying data : [ 3.1 %] /\rCopying data : [ 3.6 %] |\rCopying data : [ 4.1 %] \\rCopying data : [ 4.5 %] -\rCopying data : [ 5.0 %] /\rCopying data : [ 5.5 %] |\rCopying data : [ 6.0 %] \\rCopying data : [ 6.4 %] -\rCopying data : [ 6.9 %] /\rCopying data : [ 7.4 %] |\rCopying data : [ 7.9 %] \\rCopying data : [ 8.4 %] -\rCopying data : [ 8.8 %] /\rCopying data : [ 9.3 %] |\rCopying data : [ 9.8 %] \\rCopying data : [ 10.4 %] -\rCopying data : [ 11.0 %] /\rCopying data : [ 12.1 %] |\rCopying data : [ 13.1 %] \\rCopying data : [ 13.9 %] -\rCopying data : [ 14.7 %] /\rCopying data : [ 15.5 %] |\rCopying data : [ 16.3 %] \\rCopying data : [ 17.1 %] -\rCopying data : [ 17.9 %] /\rCopying data : [ 18.7 %] |\rCopying data : [ 19.5 %] \\rCopying data : [ 20.3 %] -\rCopying data : [ 21.1 %] /\rCopying data : [ 21.9 %] |\rCopying data : [ 22.7 %] \\rCopying data : [ 23.5 %] -\rCopying data : [ 24.3 %] /\rCopying data : [ 25.1 %] |\rCopying data : [ 26.0 %] \\rCopying data : [ 26.8 %] -\rCopying data : [ 27.6 %] /\rCopying data : [ 28.4 %] |\rCopying data : [ 29.2 %] \\rCopying data : [ 30.0 %] -\rCopying data : [ 30.7 %] /\rCopying data : [ 31.0 %] |\rCopying data : [ 31.4 %] \\rCopying data : [ 32.0 %] -\rCopying data : [ 32.7 %] /\rCopying data : [ 33.7 %] |\rCopying data : [ 34.7 %] \\rCopying data : [ 35.5 %] -\rCopying data : [ 36.3 %] /\rCopying data : [ 37.1 %] |\rCopying data : [ 37.9 %] \\rCopying data : [ 38.7 %] -\rCopying data : [ 39.5 %] /\rCopying data : [ 40.3 %] |\rCopying data : [ 41.1 %] \\rCopying data : [ 41.9 %] -\rCopying data : [ 42.7 %] /\rCopying data : [ 43.5 %] |\rCopying data : [ 44.3 %] \\rCopying data : [ 45.1 %] -\rCopying data : [ 45.9 %] /\rCopying data : [ 46.7 %] |\rCopying data : [ 47.5 %] \\rCopying data : [ 48.3 %] -\rCopying data : [ 49.1 %] /\rCopying data : [ 49.9 %] |\rCopying data : [ 50.7 %] \\rCopying data : [ 51.6 %] -\rCopying data : [ 52.3 %] /\rCopying data : [ 52.6 %] |\rCopying data : [ 53.0 %] \\rCopying data : [ 53.5 %] -\rCopying data : [ 53.9 %] /\rCopying data : [ 55.2 %] |\rCopying data : [ 55.7 %] \\rCopying data : [ 56.3 %] -\rCopying data : [ 57.4 %] /\rCopying data : [ 58.4 %] |\rCopying data : [ 59.2 %] \\rCopying data : [ 59.9 %] -\rCopying data : [ 60.7 %] /\rCopying data : [ 61.5 %] |\rCopying data : [ 62.3 %] \\rCopying data : [ 63.1 %] -\rCopying data : [ 63.9 %] /\rCopying data : [ 64.7 %] |\rCopying data : [ 65.4 %] \\rCopying data : [ 66.2 %] -\rCopying data : [ 67.0 %] /\rCopying data : [ 67.8 %] |\rCopying data : [ 68.6 %] \\rCopying data : [ 69.4 %] -\rCopying data : [ 70.2 %] /\rCopying data : [ 71.0 %] |\rCopying data : [ 71.7 %] \\rCopying data : [ 72.5 %] -\rCopying data : [ 73.3 %] /\rCopying data : [ 74.1 %] |\rCopying data : [ 74.9 %] \\rCopying data : [ 75.6 %] -\rCopying data : [ 76.1 %] /\rCopying data : [ 77.6 %] |\rCopying data : [ 79.7 %] \\rCopying data : [ 80.3 %] -\rCopying data : [ 81.3 %] /\rCopying data : [ 82.3 %] |\rCopying data : [ 83.1 %] \\rCopying data : [ 83.9 %] -\rCopying data : [ 84.7 %] /\rCopying data : [ 85.4 %] |\rCopying data : [ 86.2 %] \\rCopying data : [ 87.0 %] -\rCopying data : [ 87.8 %] /\rCopying data : [ 88.6 %] |\rCopying data : [ 89.4 %] \\rCopying data : [ 90.2 %] -\rCopying data : [ 91.0 %] /\rCopying data : [ 91.7 %] |\rCopying data : [ 92.5 %] \\rCopying data : [ 93.3 %] -\rCopying data : [ 94.1 %] /\rCopying data : [ 94.9 %] |\rCopying data : [ 95.7 %] \\rCopying data : [ 96.5 %] -\rCopying data : [ 97.2 %] /\rCopying data : [ 98.0 %] |\rCopying data : [ 98.8 %] \\rCopying data : [ 99.6 %] -\rCopying data : [100.0 %] /
kdump: saving vmcore complete
Rebooting.
[ 158.228249] sd 0:0:1:54: [sdj] Synchronizing SCSI cache
[ 158.235146] sd 0:0:1:53: [sdi] Synchronizing SCSI cache
[ 158.241074] sd 0:0:1:52: [sdh] Synchronizing SCSI cache
[ 158.246992] sd 0:0:1:51: [sdg] Synchronizing SCSI cache
[ 158.252910] sd 0:0:1:50: [sdf] Synchronizing SCSI cache
[ 158.258828] sd 0:0:0:54: [sde] Synchronizing SCSI cache
[ 158.264761] sd 0:0:0:53: [sdd] Synchronizing SCSI cache
[ 158.270678] sd 0:0:0:52: [sdc] Synchronizing SCSI cache
[ 158.276596] sd 0:0:0:51: [sdb] Synchronizing SCSI cache
[ 158.282512] sd 0:0:0:50: [sda] Synchronizing SCSI cache
[ 158.304155] reboot: Restarting system
[ 158.308266] reboot: machine restart
[-- Attachment #4: lspci --]
[-- Type: text/plain, Size: 43434 bytes --]
00:00.0 Host bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DMI2 (rev 07)
00:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
00:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
00:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
00:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
00:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
00:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
00:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
00:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
00:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
00:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
00:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
00:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 06)
00:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 8 (rev b6)
00:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 06)
00:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 06)
01:00.0 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
01:00.1 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
03:00.0 Fibre Channel: QLogic Corp. ISP8324-based 16Gb Fibre Channel to PCI Express Adapter (rev 02)
03:00.1 Fibre Channel: QLogic Corp. ISP8324-based 16Gb Fibre Channel to PCI Express Adapter (rev 02)
06:00.0 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Slave Instrumentation & System Support (rev 06)
06:00.1 VGA compatible controller: Matrox Electronics Systems Ltd. MGA G200EH (rev 01)
06:00.2 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Management Processor Support and Messaging (rev 06)
06:00.4 USB controller: Hewlett-Packard Company Integrated Lights-Out Standard Virtual USB Controller (rev 03)
0f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
0f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
0f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
0f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
0f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
0f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
0f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
0f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
0f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
0f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
0f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
0f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
0f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
0f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
0f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
0f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
0f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
0f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
0f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
0f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
0f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
0f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
0f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
0f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
0f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
0f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
0f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
0f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
0f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
0f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
0f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
0f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
0f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
0f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
0f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
0f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
0f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
0f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
0f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
0f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
0f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
0f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
0f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
0f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
0f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
10:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
10:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
10:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
10:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
10:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
10:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
10:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
10:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
10:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
10:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
10:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
1f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
1f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
1f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
1f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
1f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
1f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
1f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
1f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
1f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
1f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
1f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
1f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
1f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
1f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
1f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
1f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
1f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
1f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
1f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
1f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
1f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
1f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
1f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
1f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
1f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
1f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
1f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
1f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
1f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
1f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
1f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
1f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
1f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
1f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
1f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
1f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
1f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
1f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
1f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
1f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
1f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
1f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
1f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
1f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
1f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
20:00.0 Host bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DMI2 (rev 07)
20:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
20:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
20:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
20:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
20:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
20:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
20:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
20:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
20:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
20:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
20:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
20:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 06)
20:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 8 (rev b6)
20:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 06)
20:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 06)
21:00.0 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
21:00.1 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
26:00.0 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Slave Instrumentation & System Support (rev 06)
26:00.2 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Management Processor Support and Messaging (rev 06)
2f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
2f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
2f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
2f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
2f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
2f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
2f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
2f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
2f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
2f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
2f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
2f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
2f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
2f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
2f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
2f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
2f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
2f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
2f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
2f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
2f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
2f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
2f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
2f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
2f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
2f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
2f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
2f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
2f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
2f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
2f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
2f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
2f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
2f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
2f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
2f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
2f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
2f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
2f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
2f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
2f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
2f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
2f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
2f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
2f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
30:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
30:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
30:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
30:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
30:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
30:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
30:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
30:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
30:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
30:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
30:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
3f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
3f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
3f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
3f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
3f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
3f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
3f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
3f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
3f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
3f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
3f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
3f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
3f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
3f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
3f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
3f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
3f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
3f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
3f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
3f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
3f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
3f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
3f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
3f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
3f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
3f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
3f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
3f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
3f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
3f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
3f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
3f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
3f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
3f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
3f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
3f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
3f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
3f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
3f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
3f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
3f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
3f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
3f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
3f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
3f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
next prev parent reply other threads:[~2015-04-23 8:35 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-10 8:42 [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel Li, Zhen-Hua
2015-04-10 8:42 ` [PATCH v10 01/10] iommu/vt-d: New function to attach domain with id Li, Zhen-Hua
2015-04-10 8:42 ` [PATCH v10 02/10] iommu/vt-d: Items required for kdump Li, Zhen-Hua
2015-04-10 8:42 ` [PATCH v10 03/10] iommu/vt-d: Function to get old context entry Li, Zhen-Hua
2015-04-10 8:42 ` [PATCH v10 04/10] iommu/vt-d: functions to copy data from old mem Li, Zhen-Hua
2015-05-07 7:49 ` Baoquan He
2015-05-07 8:33 ` Li, ZhenHua
2015-04-10 8:42 ` [PATCH v10 05/10] iommu/vt-d: Add functions to load and save old re Li, Zhen-Hua
2015-04-10 8:42 ` [PATCH v10 06/10] iommu/vt-d: datatypes and functions used for kdump Li, Zhen-Hua
2015-04-10 8:42 ` [PATCH v10 07/10] iommu/vt-d: enable kdump support in iommu module Li, Zhen-Hua
2015-04-10 8:42 ` [PATCH v10 08/10] iommu/vt-d: assign new page table for dma_map Li, Zhen-Hua
2015-04-10 8:42 ` [PATCH v10 09/10] iommu/vt-d: Copy functions for irte Li, Zhen-Hua
2015-04-10 8:42 ` [PATCH v10 10/10] iommu/vt-d: Use old irte in kdump kernel Li, Zhen-Hua
2015-04-15 0:57 ` [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults " Dave Young
2015-04-15 5:47 ` Li, ZhenHua
2015-04-15 6:48 ` Dave Young
2015-04-21 1:39 ` Li, ZhenHua
2015-04-21 2:53 ` Dave Young
2015-04-24 8:01 ` Baoquan He
2015-04-24 8:25 ` Dave Young
2015-04-24 8:35 ` Baoquan He
2015-04-24 8:49 ` Dave Young
2015-04-28 8:54 ` Baoquan He
2015-04-28 9:00 ` Li, ZhenHua
2015-05-04 16:23 ` Joerg Roedel
2015-05-05 6:14 ` Dave Young
2015-05-05 15:31 ` Joerg Roedel
2015-05-06 1:51 ` Dave Young
2015-05-06 2:37 ` Li, ZhenHua
2015-05-06 8:25 ` Joerg Roedel
2015-04-23 8:35 ` Li, ZhenHua [this message]
2015-04-23 8:38 ` Li, ZhenHua
2015-04-29 11:20 ` Baoquan He
2015-05-03 8:55 ` Baoquan He
2015-05-04 3:06 ` Li, ZhenHua
2015-05-04 3:17 ` Baoquan He
2015-05-07 17:32 ` Joerg Roedel
2015-05-08 1:00 ` Li, ZhenHua
2015-06-11 15:40 ` David Woodhouse
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5538AEC4.8030307@hp.com \
--to=zhen-hual@hp.com \
--cc=alex.williamson@redhat.com \
--cc=bhe@redhat.com \
--cc=bhelgaas@google.com \
--cc=billsumnerlinux@gmail.com \
--cc=ddutile@redhat.com \
--cc=doug.hatch@hp.com \
--cc=dwmw2@infradead.org \
--cc=dyoung@redhat.com \
--cc=indou.takao@jp.fujitsu.com \
--cc=iommu@lists.linux-foundation.org \
--cc=ishii.hironobu@jp.fujitsu.com \
--cc=jerry.hoemann@hp.com \
--cc=joro@8bytes.org \
--cc=kexec@lists.infradead.org \
--cc=li.zhang6@hp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=lisa.mitchell@hp.com \
--cc=rwright@hp.com \
--cc=tom.vaden@hp.com \
--cc=vgoyal@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).