Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel

From: Li, ZhenHua
Date: Thu Apr 23 2015 - 04:39:18 EST


Tested on HP DL980.
Result: Passed.

PCI list and log are attached.

dl980_boot.log: Log for first kernel.
dl980_dump.log: Log for kdump kernel.
lspci: log for command lspci

Thanks
Zhenhua

On 04/23/2015 04:35 PM, Li, ZhenHua wrote:
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@xxxxxxxxxx]
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@xxxxxxxxxx> helps testing this patchset.
Takao Indoh <indou.takao@xxxxxxxxxxxxxx> 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(-)



[ 0.000000] CPU0 microcode updated early to revision 0x37, date = 2013-06-18
[ 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@xxxxxxxxxxxxxxxxxxxxx) (gcc version 4.8.3 20140911 (Red Hat 4.8.3-9) (GCC) ) #1 SMP Tue Apr 21 06:46:43 EDT 2015
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.0.0-rc7.v10u2 root=UUID=ff4dfdb7-e24d-4be8-ace6-cbe023625110 ro crashkernel=256M LANG=en_US.UTF-8 console=ttyS1,115200 intel_iommu=on
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x00000000000953ff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000000095400-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007f5a1fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007f5a2000-0x000000007f61bfff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000007f61c000-0x000000007f61cfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007f61d000-0x000000008fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fee0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000047fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000002000000000-0x00000023ffffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000008000000000-0x00000083ffffffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000a000000000-0x000000a3ffffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] e820: last_pfn = 0xa400000 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] e820: last_pfn = 0x7f61darch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [mem 0x000f4f80-0x000f4f8f] mapped at [ffff8800000f4f80]
[ 0.000000] Using GB pages for direct mapping
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] init_memory_mapping: [mem 0xa3ffe00000-0xa3ffffffff]
[ 0.000000] init_memory_mapping: [mem 0xa3e0000000-0xa3ffdfffff]
[ 0.000000] init_memory_mapping: [mem 0xa000000000-0xa3dfffffff]
[ 0.000000] init_memory_mapping: [mem 0x8000000000-0x83ffffffff]
[ 0.000000] init_memory_mapping: [mem 0x2000000000-0x23ffffffff]
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x7f5a1fff]
[ 0.000000] init_memory_mapping: [mem 0x7f61c000-0x7f61cfff]
[ 0.000000] init_memory_mapping: [mem 0x100000000-0x47fffffff]
[ 0.000000] RAMDISK: [mem 0x3577c000-0x36bb5fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000F4F00 000024 (v02 HP )
[ 0.000000] ACPI: XSDT 0x000000007F5A8970 0000C4 (v01 HP ProLiant 00000002 Ò? 0000162E)
[ 0.000000] ACPI: FACP 0x000000007F5A8AB0 0000F4 (v03 HP ProLiant 00000002 Ò? 0000162E)
[ 0.000000] ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 32, using default 16 (20150204/tbfadt-699)
[ 0.000000] ACPI: DSDT 0x000000007F5A8BB0 0025E0 (v01 HP DSDT 00000001 INTL 20030228)
[ 0.000000] ACPI: FACS 0x000000007F5A2140 000040
[ 0.000000] ACPI: SPCR 0x000000007F5A2180 000050 (v01 HP SPCRRBSU 00000001 Ò? 000016
[ 0.000000] ACPI: MCFG 0x000000007F5A2200 00003C (v01 HP ProLiant 00000001 00000000)
[ 0.000000] ACPI: HPET 0x000000007F5A2240 000038 (v01 HP ProLiant 00000002 Ò? 0000162E)
[ 0.000000] ACPI: FFFF 0x000000007F5A2280 000064 (v02 HP ProLiant 00000002 Ò? 0000162E)
[ 0.000000] ACPI: SPMI 0x000000007F5A2300 000040 (v05 HP ProLiant 00000001 Ò? 0000162E)
[ 0.000000] ACPI: ERST 0x000000007F5A2340 0001D0 (v01 HP ProLiant 00000001 Ò? 0000162E)
[ 0.000000] ACPI: APIC 0x000000007F5A2AC0 000A76 (v03 HP ProLiant 00000002 00000000)
[ 0.000000] ACPI: SRAT 0x000000007F5A4800 0032B0 (v03 HP Proliant 00000001 Ò? 0000162E)
[ 0.000000] ACPI: FFFF 0x000000007F5A7AC0 000176 (v01 HP ProLiant 00000001 Ò? 0000162E)
[ 0.000000] ACPI: BERT 0x000000007F5A7C40 000030 (v01 HP ProLiant 00000001 Ò? 0000162E)
[ 0.000000] ACPI: HEST 0x000000007F5A7C80 0000BC (v01 HP ProLiant 00000001 Ò? 0000162E)
[ 0.000000] ACPI: DMAR 0x000000007F5A7D40 00015E (v01 HP ProLiant 00000001 Ò? 0000162E)
[ 0.00 ACPI: SLIT 0x000000007F5A8880 00006C (v01 HP ProLiant 00000001 00000000)
[ 0.000000] ACPI: RASF 0x000000007F5A8940 000030 (v01 HP ProLiant 00000001 00000000)
[ 0.000000] ACPI: SSDT 0x000000007F5AB1C0 000125 (v03 HP CRSPCI0 00000002 HP 00000001)
[ 0.000000] ACPI: SSDT 0x000000007F5AB300 002195 (v01 HP CPU_D 00000001 INTL 20090625)
[ 0.000000] ACPI: SSDT 0x000000007F5AD4C0 0010BB (v01 HP pcc 00000001 INTL 20090625)
[ 0.000000] ACPI: SSDT 0x000000007F5AE580 000377 (v01 HP pmab 00000001 INTL 20090625)
[ 0.000000] ACPI: SSDT 0x000000007F5AE900 015A24 (v01 INTEL PPM RCM 00000001 INTL 20061109)
[ 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 0x0010 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0011 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0012 -> Node 0
[ 0.000000] SRAT 0 -> APIC 0x0013 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0020 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0021 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0022 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0023 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0030 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0031 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0032 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0033 -> Node 0
[ 0.000000] SRAT: PXM 1 -> APIC 0x0042 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0043 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0044 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0045 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0050 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0051 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0052 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0053 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0060 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0061 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0062 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0063 -> Node 1
0.000000] SRAT: PXM 1 -> APIC 0x0064 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0065 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0070 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x0071 -> Node 1
[ 0.000000] SRAT: PXM 2 -> APIC 0x0080 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0081 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0082 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0083 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0084 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0085 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0092 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x0093 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x00a0 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x00a1 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x00a4 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x00a5 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x00b0 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x00b1 -> Node 2
[ 0.0] SRAT: PXM 2 -> APIC 0x00b2 -> Node 2
[ 0.000000] SRAT: PXM 2 -> APIC 0x00b3 -> Node 2
[ 0.000000] SRAT: PXM 3 -> APIC 0x00c2 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00c3 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00c4 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00c5 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00d0 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00d1 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00d2 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00d3 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00e0 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00e1 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00e2 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00e3 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00e4 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00e5 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00f0 -> Node 3
[ 0.000000] SRAT: PXM 3 -> APIC 0x00f1 -> Node 3
[ 0.000000] SRAT: PXM 4 -> APIC 0x0100 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0101 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0104 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0105 -> Node 4
[ 0.000000] PXM 4 -> APIC 0x0110 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0111 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0112 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0113 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0120 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0121 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0122 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0123 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0124 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0125 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0132 -> Node 4
[ 0.000000] SRAT: PXM 4 -> APIC 0x0133 -> Node 4
[ 0.000000] SRAT: PXM 5 -> APIC 0x0140 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0141 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0142 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0143 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0144 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0145 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0152 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0153 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0160 -> Node 5
[ 0.000000] SRAT: PXM 5PIC 0x0161 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0164 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0165 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0170 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0171 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0172 -> Node 5
[ 0.000000] SRAT: PXM 5 -> APIC 0x0173 -> Node 5
[ 0.000000] SRAT: PXM 6 -> APIC 0x0180 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x0181 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x0182 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x0183 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x0190 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x0191 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x0192 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x0193 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x01a0 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x01a1 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x01a2 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x01a3 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x01b0 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x01b1 -> Node 6
[ 0.000000] SRAT: PXM 6 -> APIC 0x01b2 -> Node 6
[ 0.000000] SRAT: PXM 6 -> API1b3 -> Node 6
[ 0.000000] SRAT: PXM 7 -> APIC 0x01c0 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01c1 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01c2 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01c3 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01c4 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01c5 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01d0 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01d1 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01e2 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01e3 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01e4 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01e5 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01f0 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01f1 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01f2 -> Node 7
[ 0.000000] SRAT: PXM 7 -> APIC 0x01f3 -> Node 7
[ 0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[ 0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x47fffffff]
[ 0.000000] SRAT: Node 1 PXM 1 [mem 0x2000000000-0x23ffffffff]
[ 0.000000] SRAT: Node 4 PXM 4 [mem 0x8000000000-0x83ffffffff]
[ 0.000000] SRAT: Node 5 PXM 5 [mem 0xa000000000-0xa3ffffffff]
[ 0.0] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x47fffffff] -> [mem 0x00000000-0x47fffffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x47ffda000-0x47fffffff]
[ 0.000000] NODE_DATA(1) allocated [mem 0x23fffda000-0x23ffffffff]
[ 0.000000] NODE_DATA(4) allocated [mem 0x83fffda000-0x83ffffffff]
[ 0.000000] NODE_DATA(5) allocated [mem 0xa3fffd7000-0xa3ffffcfff]
[ 0.000000] Reserving 256MB of memory at 592MB for crashkernel (System RAM: 65525MB)
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.000000] Normal [mem 0x0000000100000000-0x000000a3ffffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x0000000000094fff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x000000007f5a1fff]
[ 0.000000] node 0: [mem 0x000000007f61c000-0x000000007f61cfff]
[ 0.000000] node 0: [mem 0x0000000100000000-0x000000047fffffff]
[ 0.000000] node 1: [mem 0x0000002000000000-0x00000023ffffffff]
[ 0.000000] node 4: [mem 0x0000008000000000-0x00000083ffffffff]
[ 0.000000] node 5: [mem 0x000000a000000000-0x000000a3ffffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000047fffffff]
[ 0.000000] Initmem setup node 1 [mem 0x0000002000000000-0x00000023ffffffff]
[ 0.000000] Initmem setup node 4 [mem 0x0000008000000000-0x00000083ffffffff]
[ 0.000000] Initmem setup node 5 [mem 0x000000a000000000-0x000000a3ffffffff]
[ 0.000000] ACPI: PM-Timer IO Port: 0x908
[ 0.000000] ACPI: X2APIC (apic_id[0x00]0x00] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x02] uid[0x02] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x04] uid[0x04] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x10] uid[0x06] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x12] uid[0x08] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x20] uid[0x0a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x22] uid[0x0c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x24] uid[0x0e] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x30] uid[0x10] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x32] uid[0x12] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x40] uid[0x14] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x42] uid[0x16] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x44] uid[0x18] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x50] uid[0x1a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x52] uid[0x1c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x60] uid[0x1e] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x62] uid[0enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x64] uid[0x22] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x70] uid[0x24] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x72] uid[0x26] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x80] uid[0x28] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x82] uid[0x2a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x84] uid[0x2c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x90] uid[0x2e] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x92] uid[0x30] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xa0] uid[0x32] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xa2] uid[0x34] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xa4] uid[0x36] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xb0] uid[0x38] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xb2] uid[0x3a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xc0] uid[0x3c] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xc2] uid[0x3e] enabled)
[.000000] ACPI: X2APIC (apic_id[0xc4] uid[0x40] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xd0] uid[0x42] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xd2] uid[0x44] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xe0] uid[0x46] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xe2] uid[0x48] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xe4] uid[0x4a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xf0] uid[0x4c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xf2] uid[0x4e] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x100] uid[0x50] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x102] uid[0x52] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x104] uid[0x54] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x110] uid[0x56] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x112] uid[0x58] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x120] uid[0x5a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x122] x5c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x124] uid[0x5e] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x130] uid[0x60] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x132] uid[0x62] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x140] uid[0x64] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x142] uid[0x66] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x144] uid[0x68] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x150] uid[0x6a] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x152] uid[0x6c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x160] uid[0x6e] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x162] uid[0x70] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x164] uid[0x72] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x170] uid[0x74] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x172] uid[0x76] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x180] uid[0x78] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x182] uid[0x7a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x184] uid[0x7c] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x190] uid[0x7e] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x192] uid[0x80] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1a0] uid[0x82] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1a2] uid[0x84] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1a4] uid[0x86] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1b0] uid[0x88] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1b2] uid[0x8a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1c0] uid[0x8c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1c2]0x8e] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1c4] uid[0x90] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1d0] uid[0x92] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1d2] uid[0x94] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1e0] uid[0x96] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1e2] uid[0x98] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1e4] uid[0x9a] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1f0] uid[0x9c] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1f2] uid[0x9e] 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] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x11] uid[0x07] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x13] uid[0x09] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x21] uid[0x0b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x23] uid[0x0d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x25] uid[0x0f] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x31] uid[0x11] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x33] uid[0x13] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x41] uid[0x15] disabled)
[ 0.000000] ACPI: X (apic_id[0x43] uid[0x17] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x45] uid[0x19] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x51] uid[0x1b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x53] uid[0x1d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x61] uid[0x1f] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x63] uid[0x21] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x65] uid[0x23] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x71] uid[0x25] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x73] uid[0x27] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x81] uid[0x29] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x83] uid[0x2b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x85] uid[0x2d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x91] uid[0x2f] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x93] uid[0x31] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xa1] uid[0x33] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xa3] uid[0x35] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xa5] uid[0x37] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xb1] uid[0x39] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xb3] uid[0x3b] enable[ 0.000000] ACPI: X2APIC (apic_id[0xc1] uid[0x3d] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xc3] uid[0x3f] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xc5] uid[0x41] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xd1] uid[0x43] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xd3] uid[0x45] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xe1] uid[0x47] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xe3] uid[0x49] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xe5] uid[0x4b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xf1] uid[0x4d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xf3] uid[0x4f] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x101] uid[0x51] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x103] uid[0x53] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x105] uid[0x55] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x111] uid[0x57] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x113] uid[0x59] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x121] uid[0x5b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x123] uid[0x5d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x125] uid[0x5f] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x131] uid[0x61]bled)
[ 0.000000] ACPI: X2APIC (apic_id[0x133] uid[0x63] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x141] uid[0x65] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x143] uid[0x67] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x145] uid[0x69] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x151] uid[0x6b] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x153] uid[0x6d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x161] uid[0x6f] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x163] uid[0x71] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x165] uid[0x73] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x171] uid[0x75] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x173] uid[0x77] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x181] uid[0x79] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x183] uid[0x7b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x185] uid[0x7d] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x191] uid[0x7f] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x193] uid[0x81] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1a1] uid[0x83] ed)
[ 0.000000] ACPI: X2APIC (apic_id[0x1a3] uid[0x85] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1a5] uid[0x87] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1b1] uid[0x89] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1b3] uid[0x8b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1c1] uid[0x8d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1c3] uid[0x8f] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1c5] uid[0x91] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1d1] uid[0x93] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1d3] uid[0x95] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1e1] uid[0x97] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1e3] uid[0x99] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1e5] uid[0x9b] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1f1] uid[0x9d] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1f3] uid[0x9f] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl 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[0x00] address[0xfec08000] gsi_base[24])
[ 0.000000] IOAPIC[1]: apic_id 0, version 32, address 0xfec08000, GSI 24-47
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[ 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: 0x8086a201 base: 0xfed00000
[ 0.000000] smpboot: Allowing 160 CPUs, 32 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x00095000-0x00095fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x00096000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x7f5a2000-0x7f61bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0x7f61d000-0x8fffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x90000000-0xfebfffff]
[ 0.0] PM: Registered nosave memory: [mem 0xfec00000-0xfee0ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee10000-0xff7fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xff800000-0xffffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x480000000-0x1fffffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x2400000000-0x7fffffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x8400000000-0x9fffffffff]
[ 0.000000] e820: [mem 0x90000000-0xfebfffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:160 nr_cpu_ids:160 nr_node_ids:8
[ 0.000000] PERCPU: Embedded 32 pages/cpu @ffff88046f600000 s91544 r8192 d31336 u131072
[ 0.000000] Built 4 zonelists in Node order, mobility grouping on. Total pages: 16512331
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4rc7.v10u2 root=UUID=ff4dfdb7-e24d-4be8-ace6-cbe023625110 ro crashkernel=256M LANG=en_US.UTF-8 console=ttyS1,115200 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: 651264 bytes
[ 0.000000] log_buf_len min size: 524288 bytes
[ 0.000000] log_buf_len: 2097152 bytes
[ 0.000000] early log buf free: 492560(93%)
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] AGP: Checking aperture...
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] Memory: 65660492K/67097820K available (6896K kernel code, 1431K rwdata, 3228K rodata, 1704K init, 2688K bss, 1437328K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=160, Nodes=8
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=160.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=160
[ 0.000000] NR_IRQS:524544 nr_irqs:2112
[ 0.000000] Offload RCU callbacks from all CPUs
[ 0.000000] Offload RCU callbacks from CPUs: 0-159.
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [ttyS1] enabled
[ 0.000000] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[ 0.000000] tsc: Fast TSC calibration failed
[ 0.000000] tsc: PIT calibration matches HPET. 1 loops
[ 0.000000] tsc: Detected 2127.996 MHz processor
[ 0.000109] Calibrating delay loop (skipped), value calculated using timer frequency.. 4255.99 BogoMIPS (lpj=2127996)
[ 0.005110] pid_max: default: 163840 minimum: 1280
[ 0.007297] ACPI: Core revision 20150204
[ 0.023920] ACPI: All ACPI Tables successfully acquired
[ 0.027206] Security Framework initialized
[ 0.029137] SELinux: Initializing.
[ 0.036989] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes)
[ 0.068939] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[ 0.085234] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.088808] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.093587] Initializing cgroup subsys blkio
[ 0.095768] Initializing cgroup subsys memory
[ 0.097847] Initializing cgroup subsys devices
[ 0.099882] Initializing cgroup subsys freezer
[ 0.101908] Initializing cgroup subsys net_cls
[ 0.104155] Initializing cgroup subsys perf_event
[ 0.106322] Initializing cgroup subsys hugetlb
[ 0.108509] CPU: Physical Processor ID: 0
[ 0.110319] CPU: Processor Core ID: 0
[ 0.112079] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.114887] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.118035] mce: CPU supports 24 MCE banks
[ 0.119939] CPU0: Thermal monitoring enabled (TM1)
[ 0.122291] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
[ 0.124847] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[ 0.127849] Freeing SMP alternatives memory: 28K (ffffffff81cf7000 - ffffffff81cfe000)
[ 0.133814] e: allocating 25687 entries in 101 pages
[ 0.255204] dmar: Host address width 40
[ 0.257092] dmar: DRHD base: 0x000000a8000000 flags: 0x1
[ 0.259542] dmar: IOMMU 0: reg_base_addr a8000000 ver 1:0 cap c90780106f0462 ecap f0207e
[ 0.263286] dmar: RMRR base: 0x0000007f7ee000 end: 0x0000007f7effff
[ 0.266261] dmar: RMRR base: 0x0000007f7e7000 end: 0x0000007f7ecfff
[ 0.269130] dmar: RMRR base: 0x0000007f61e000 end: 0x0000007f61ffff
[ 0.271976] dmar: ATSR flags: 0x0
[ 0.273644] IOAPIC id 8 under DRHD base 0xa8000000 IOMMU 0
[ 0.276155] IOAPIC id 0 under DRHD base 0xa8000000 IOMMU 0
[ 0.279157] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.282948] Enabled IRQ remapping in x2apic mode
[ 0.285871] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.400212] smpboot: CPU0: Intel(R) Xeon(R) CPU E7- 2830 @ 2.13GHz (fam: 06, model: 2f, stepping: 02)
[ 0.404867] Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Broken BIOS detected, complain to your hardware vendor.
[ 0.410553] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 38d is 330)
[ 0.414169] Intel PMU driver.
[ 0.415583] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
[ 0.418678] ... version: 3
[ 0.420529] ... bit width: 48
[ 0.422530] ... generic registers: 4
[ 0.424384] ... value mask: 0000ffffffffffff
[ 0.426838] ... max period: 000000007fffffff
[ 0.429240] ... fixed-purpose events: 3
[ 0.431088] ... event mask: 000000070000000f
[ 0.437925] x86: Booting SMP configuration:
[ 0.439902] .... node #0, CPUs: #1
[ 0.455424] CPU1 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.467804] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.471835] #2
[ 0.521467] CPU2 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.527382] #3
[ 0.541604] CPU3 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.547620] #4
[ 0.561866] CPU4 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.567975] #5
[ 0.582373] CPU5 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.588483] #6
[ 0.602716] CPU6 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.608523] #7
[ 0.622821] CPU7 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.628775]
[ 0.629559] .... node #1, CPUs: #8
[ 0.648700] CPU8 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.732355] #9
[ 0.786140] CPU9 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.792029] #10
[ 0.809715] CPU10 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.815751] #11
[ 0.833218] CPU11 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.839102] #12
[ 0.856562] CPU12 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.862484] #13
[ 0.880022] CPU13 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.886110] #14
[ 0.903613] CPU14 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.909540] #15
[ 0.927013] CPU15 microcode updated early to revision 0x37, date = 2013-06-18
[ 0.933003]
[ 0.933770] .... node #0, CPUs: #16
[ 0.988371] CPU16 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.072107] #17
[ 1.089622] CPU17 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.095665] #18
[ 1.113233] CPU18 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.119223] #19
[ 1.136821] CPU19 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.142958] #20
[ 1.160770] CPU20 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.166959] #21
[ 1.184439] CPU21 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.190276] #22
[ 1.207830] CPU22 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.213948] #23
[ 1.231437] CPU23 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.237485] #24
[ 1.256176] CPU24 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.340029] #25
[ 1.357489] CPU25 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.363428] #26
[ 1.381271] CPU26 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.387190] #27
[ 1.404719] CPU27 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.410672] #28
[ 1.428196] CPU28 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.434109] #29
[ 1.451822] CPU29 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.457775] #30
[ 1.475270] CPU30 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.481474] #31
[ 1.499217] CPU31 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.505344]
[ 1.506134] .... node #4, CPUs: #32
[ 1.525421] CPU32 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.608947] #33
[ 1.626428] CPU33 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.632498] #34
[ 1.650050] CPU34 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.656048] #35
[ 1.673666] CPU35 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.679780] #36
[ 1.697293] CPU36 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.703242] #37
[ 1.720805] CPU37 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.727093] #38
[ 1.744681] CPU38 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.750616] #39
[ 1.803831] CPU39 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.809839]
[ 1.810573] .... node #5, CPUs: #40
[ 1.829962] CPU40 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.913888] #41
[ 1.931644] CPU41 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.937848] #42
[ 1.955359] CPU42 microcode updated early to revision 0x37, date = 2013-06-18
[ 1.961294] #43
[ 2.014631] CPU43 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.020932] #44
[ 2.038667] CPU44 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.044800] #45
[ 2.062256] CPU45 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.068453] #46
[ 2.086061] CPU46 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.092090] #47
[ 2.109600] CPU47 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.115806]
[ 2.116542] .... node #4, CPUs: #48
[ 2.135732] CPU48 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.219600] #49
[ 2.237267] CPU49 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.243544] #50
[ 2.261179] CPU50 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.267762] #51
[ 2.285384] CPU51 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.291483] #52
[ 2.308991] CPU52 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.315133] #53
[ 2.332891] CPU53 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.338869] #54
[ 2.356485] CPU54 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.362446] #55
[ 2.380057] CPU55 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.386336] #56
[ 2.404729] CPU56 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.488513] #57
[ 2.505981] CPU57 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.512165] #58
[ 2.530301] CPU58 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.536456] #59
[ 2.554034] CPU59 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.560230] #60
[ 2.577793] CPU60 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.583867] #61
[ 2.601482] CPU61 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.607658] #62
[ 2.625268] CPU62 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.631401] #63
[ 2.648917] CPU63 microcode updated early to revision 0x37, date = 2013-06-18
[ 2.655763]
[ 2.656611] .... node #0, CPUs: #64 #65 #66 #67 #68 #69 #70 #71
[ 2.819451] .... node #1, CPUs: #72 #73 #74 #75 #76 #77 #78 #79
[ 2.967923] .... node #0, CPUs: #80 #81 #82 #83 #84 #85 #86 #87 #88 #89 #90 #91 #92 #93 #94 #95
[ 3.266769] .... node #4, CPUs: #96 #97 #98 #99 #100 #101 #102 #103
[ 3.452421] .... node #5, CPUs: #104 #105 #106 #107 #108 #109 #110 #111
[ 3.627120] .... node #4, CPUs: #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[ 3.926033] x86: Booted up 4 nodes, 128 CPUs
[ 3.928195] smpboot: Total of 128 processors activated (544754.94 BogoMIPS)
[ 6.029356] INFO: NMI handler (perf_event_nmi_handler) took too long to run: 3.334 msecs
[ 6.033319] perf interrupt took too long (17712 > 5000), lowering kernel.perf_event_max_sample_rate to 25000
[ 6.048516] devtmpfs: initialized
[ 6.053235] evm: security.selinux
[ 6.055442] evm: security.ima
[ 6.056817] evm: security.capability
[ 6.060765] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[ 6.065767] NET: Registered protocol family 16
[ 6.070542] cpuidle: using governor menu
[ 6.072549] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 6.075953] ACPI: bus type PCI registered
[ 6.077855] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 6.081250] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
[ 6.085929] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
[ 6.089661] PCI: Using configuration type 1 for base access
[ 6.102722] ACPI: Added _OSI(Module Device)
[ 6.104706] ACPI: Added _OSI(Processor Device)
[ 6.106742] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 6.108888] ACPI: Added _OSI(Processor Aggregator Device)
[ 6.161602] ACPI: Interpreter enabled
[ 6.163454] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
[ 6.167762] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
[ 6.172199] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20150204/hwxface-580)
[ 6.176472] ACPI: (supports S0 S4 S5)
[ 6.178300] ACPI: Using IOAPIC for interrupt routing
[ 6.180745] HEST: Table parsing has been initialized.
[ 6.183071] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 6.238240] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-17])
[ 6.241475] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 6.245310] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME AER PCIeCapability]
[ 6.249308] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
[ 6.253552] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[ 6.257240] acpi PNP0A08:00: _OSC: platform willing to grant []
[ 6.259954] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
[ 6.263113] PCI host bridge to bus 0000:00
[ 6.265072] pci_bus 0000:00: root bus resource [bus 00-17]
[ 6.267567] pci_bus 0000:00: root bus resource [mem 0x90000000-0xa8ffffff window]
[ 6.271043] pci_bus 0000:00: root bus resource [io 0x1000-0x4fff window]
[ 6.274258] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
[ 6.277328] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
[ 6.280506] pci_bus 0000:00: root bus resource [io 0x0d00-0x0fff window]
[ 6.283576] pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfed03fff window]
[ 6.286921] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[ 6.290549] pci_bus 0000:00: root bus resource [io 0x03b0-0x03bb window]
[ 6.293614] pci_bus 0000:00: root bus resource [io 0x03c0-0x03df window]
[ 6.296676] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 6.307314] pci 0000:00:01.0: PCI bridge to [bus 0e-10]
[ 6.309897] pci 0000:00:02.0: PCI bridge to [bus 14]
[ 6.316323] pci 0000:00:03.0: PCI bridge to [bus 04]
[ 6.318760] pci 0000:00:04.0: PCI bridge to [bus 15]
[ 6.321633] pci 0000:00:05.0: PCI bridge to [bus 11-13]
[ 6.324197] pci 0000:00:06.0: PCI bridge to [bus 16]
[ 6.326760] pci 0000:00:07.0: PCI bridge to [bus 0b-0d]
[ 6.329350] pci 0000:00:08.0: PCI bridge to [bus 17]
[ 6.332027] pci 0000:00:09.0: PCI bridge to [bus 08-0a]
[ 6.334850] pci 0000:00:0a.0: PCI bridge to [bus 05-07]
[ 6.337563] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 6.343301] pci 0000:00:1c.4: PCI bridge to [bus 02]
[ 6.346037] pci 0000:00:1e.0: PCI bridge to [bus 01] (subtractive decode)
[ 6.350020] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 7 *10 11)[ 6.410607] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *7 10 11)
[ 6.455899] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 7 10 11) *0, disabled.
[ 6.459629] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 10 11) *0, disabled.
[ 6.463590] ACPI: PCI Interrupt Link [LNKE] (IRQs *5 7 10 11)
[ 6.466795] ACPI: PCI Interrupt Link [LNKF] (IRQs 5 7 10 11) *0, disabled.
[ 6.470564] ACPI: PCI Interrupt Link [LNKG] (IRQs 5 7 *10 11)
[ 6.473550] ACPI: PCI Interrupt Link [LNKH] (IRQs 5 *7 10 11)
[ 6.511320] vgaarb: setting as boot device: PCI:0000:01:03.0
[ 6.514118] vgaarb: device added: PCI:0000:01:03.0,decodes=io+mem,owns=io+mem,locks=none
[ 6.517945] vgaarb: loaded
[ 6.519210] vgaarb: bridge control possible 0000:01:03.0
[ 6.522221] SCSI subsystem initialized
[ 6.524164] ACPI: bus type USB registered
[ 6.526072] usbcore: registered new interface driver usbfs
[ 6.528555] usbcore: registered new interface driver hub
[ 6.532073] usbcore: registered new device driver usb
[ 6.535798] PCI: Using ACPI for IRQ routing
[ 6.542267] PCI: Discovered peer bus 7c
[ 6.544176] PCI host bridge to bus 0000:7c
[ 6.546066] pci_bus 0000:7c: root bus resoe [io 0x0000-0xffff]
[ 6.649027] pci_bus 0000:7c: root bus resource [mem 0x00000000-0xfffffffffff]
[ 6.652447] pci_bus 0000:7c: No busn resource found for root bus, will use [bus 7c-ff]
[ 6.656322] PCI: Discovered peer bus 82
[ 6.658218] PCI host bridge to bus 0000:82
[ 6.660346] pci_bus 0000:82: root bus resource [io 0x0000-0xffff]
[ 6.663157] pci_bus 0000:82: root bus resource [mem 0x00000000-0xfffffffffff]
[ 6.666393] pci_bus 0000:82: No busn resource found for root bus, will use [bus 82-ff]
[ 6.674241] NetLabel: Initializing
[ 6.676134] NetLabel: domain hash size = 128
[ 6.678138] NetLabel: protocols = UNLABELED CIPSOv4
[ 6.680562] NetLabel: unlabeled traffic allowed by default
[ 6.683227] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[ 6.685753] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[ 6.691377] Switched to clocksource hpet
[ 6.715776] pnp: PnP ACPI init
[ 6.717873] system 00:00: [io 0x0408-0x040f] has been reserved
[ 6.720818] system 00:00: [io 0x04d0-0x04d1] has been reserved
[ 6.723644] system 00:00: [io 0x0700-0x071f] has been reserved
[ 6.726405] system 00:00: [io 0x0880-0x08ff] has been reserved
[ 6.729314] system 00:00: [io 0x0900-0x097f] has been reserved
[ 6.732134] system 00:00: [io 0x0cd0-0x0cd3] has been reserved
[ 6.734891] system 00:00: [io 0x0cd4-0x0cd7] has been reserved
[ 6.737554] system 00:00: [io 0x0f50-0x0f58] has been reserved
[ 6.740520] system 00:00: [io 0x0ca0-0x0ca1] has been reserved
[ 6.743428] system 00:00: [io 0x0ca4-0x0ca5] has been reserved
[ 6.746126] system 00:00: [io 0x02f8-0x02ff] has been reserved
[ 6.748775] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[ 6.751898] system 00:00: [mem 0xfe000000-0xfebfffff] has been reserved
[ 6.755056] system 00:00: [mem 0xa8000000-0xa8001fff] could not be reserved
[ 6.784221] pnp: PnP ACPI: found 6 devices
[ 6.793677] pci 0000:00:1f.2: BAR 4: assigned [io 0x1080-0x108f]
[ 6.796462] pci 0000:00:1f.2: BAR 5: assigned [io 0x1090-0x109f]
[ 6.799179] pci 0000:00:1f.2: BAR 0: assigned [io 0x10a0-0x10a7]
[ 6.802389] pci 0000:1f.2: BAR 2: assigned [io 0x10a8-0x10af]
[ 6.905344] pci 0000:00:1f.2: BAR 1: assigned [io 0x10b0-0x10b3]
[ 6.908057] pci 0000:00:1f.2: BAR 3: assigned [io 0x10b4-0x10b7]
[ 6.910978] pci 0000:0e:00.0: BAR 6: assigned [mem 0x90040000-0x9007ffff pref]
[ 6.914226] pci 0000:00:01.0: PCI bridge to [bus 0e-10]
[ 6.916776] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 6.919560] pci 0000:00:01.0: bridge window [mem 0x90000000-0x900fffff]
[ 6.922683] pci 0000:00:02.0: PCI bridge to [bus 14]
[ 6.924969] pci 0000:00:03.0: PCI bridge to [bus 04]
[ 6.927220] pci 0000:00:03.0: bridge window [mem 0x90200000-0x99ffffff]
[ 6.930397] pci 0000:00:04.0: PCI bridge to [bus 15]
[ 6.932820] pci 0000:00:05.0: PCI bridge to [bus 11-13]
[ 6.935178] pci 0000:00:06.0: PCI bridge to [bus 16]
[ 6.937429] pci 0000:00:07.0: PCI bridge to [bus 0b-0d]
[ 6.939928] pci 0000:00:08.0: PCI bridge to [bus 17]
[ 6.942186] pci 0000:00:09.0: PCI bridge to [bus 08-0a]
[ 6.944540] pci 0000:00:0a.0: PCI bridge to [bus 05-07]
[ 6.946928] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 6.949302] pci 0000:02:00.2: BAR 6: assigned [mem 0x9a020000-0x9a02ffff pref]
[ 6.952622] pci 0000:00:1c.4: PCI bridge to [bus 02]
[ 6.954883] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
[ 6.957538] pci 0000:00:1c.4: bridge window [mem 0x9a000000-0x9a1fffff]
[ 6.960647] pci 0000:01:03.0: BAR 6: assigned [mem 0x9a220000-0x9a23ffff pref]
[ 6.964052] pci 0000:00:1e.0: PCI bridge to [bus 01]
[ 6.966318] pci 0000:00:1e.0: bridge window [io 0x2000-0x2fff]
[ 6.969105] pci 0000:00:1e.0: bridge window [mem 0x9a200000-0x9a2fffff]
[ 6.972271] pci 0000:00:1e.0: bridge window [mem 0xa0000000-0xa7ffffff 64bit pref]
[ 6.976053] NET: Registered protocol family 2
[ 6.980759] TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
[ 6.986262] TCP bind hash table entries: 36 (order: 8, 1048576 bytes)
[ 7.089965] TCP: Hash tables configured (established 524288 bind 65536)
[ 7.093238] TCP: reno registered
[ 7.094953] UDP hash table entries: 32768 (order: 8, 1048576 bytes)
[ 7.098400] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes)
[ 7.103139] NET: Registered protocol family 1
[ 7.117467] Unpacking initramfs...
[ 7.304436] perf interrupt took too long (17603 > 9615), lowering kernel.perf_event_max_sample_rate to 13000
[ 7.550037] Freeing initrd memory: 20712K (ffff88003577c000 - ffff880036bb6000)
[ 7.554653] IOMMU: dmar0 using Queued invalidation
[ 7.556882] IOMMU: Setting RMRR:
[ 7.558392] IOMMU: Setting identity map for device 0000:0e:00.0 [0x7f61e000 - 0x7f61ffff]
[ 7.562300] IOMMU: Setting identity map for device 0000:02:00.0 [0x7f61e000 - 0x7f61ffff]
[ 7.566100] IOMMU: Setting identity map for device 0000:02:00.2 [0x7f61e000 - 0x7f61ffff]
[ 7.570027] IOMMU: Setting identity map for device 0000:00:1d.0 [0x7f7e7000 - 0x7f7ecfff]
[ 7.573794] IOMMU: Setting identity map for device 0000:00:1d.1 [0x7f7e7000 - 0x7f7ecfff]
[ 7.577524] IOMMU: Setting identity map for device 0000:00:1d.2 [0x7f7e7000 - 0x7f7ecfff]
[ 7.581335] IOMMU: Setting identity map for device 0000:00:1d.3 [0x7f7e7000 - 0x7f7ecfff]
[ 7.585084] IOMMU: Setting identity map for device 0000:02:00.0 [0x7f7e7000 - 0x7f7ecfff]
[ 7.589048] IOMMU: Setting identity map for device 0000:02:00.2 [0x7f7e7000 - 0x7f7ecfff]
[ 7.592889] IOMMU: Setting identity map for device 0000:02:00.4 [0x7f7e7000 - 0x7f7ecfff]
[ 7.596644] IOMMU: Setting identity map for device 0000:00:1d.7 [0x7f7ee000 - 0x7f7effff]
[ 7.600453] IOMMU: Prepare 0-16MiB unity mapping for LPC
[ 7.602861] IOMMU: Setting identity map for device 0000:00:1f.0 [0x0 - 0xffffff]
[ 7.606536] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[ 7.624867] microcode: CPU0 sig=0x206f2, pf=0x4, revision=0x37
[ 7.627594] microcode: CPU1 sig=0x206f2, pf=0x4, revision=0x37
[ 7.630357] microcode: CPU2 sig=0x206f2, pf=0x4, revision=0x37
[ 7.633026] microcode: CPU3 sig=0x206f2, pf=0x4, revision=0x37
[ 7.635697] microcode: CPU4 sig=0x206f2, pf=0x4, revision=0x37
[ 7.638303] microcode: CPU5 sig=0x206f2, pf=0x4, revision=0x37
[ 7.641065] microcode: CPU6 sig=0x206f2, pf=0x4, revision=0x37
[ 7.643728] microcode: CPU7 sig=0x206f2, pf=0x4, revision=0x37
[ 7.646340] microcode: CPU8 sig=0x206f2, pf=0x4, revision=0x37
[ 7.648983] microcode: CPU9 sig=0x206f2, pf=0x4, revision=0x37
[ 7.651744] microcode: CPU10 sig=0x206f2, pf=0x4, revision=0x37
[ 7.654385] microcode: CPU11 sig=0x206f2, pf=0x4, revision=0x37
[ 7.657066] microcode: CPU12 sig=0x206f2, pf=0x4, revision=0x37
[ 7.659856] microcode: CPU13 sig=0x206f2, pf=0x4, revision=0x37
[ 7.662549] microcode: CPU14 sig=0x206f2, pf=0x4, revision=0x37
[ 7.665193] microcode: CPU15 sig=0x206f2, pf=0x4, revision=0x37
[ 7.667911] microcode: CPU16 sig=0x206f2, pf=0x4evision=0x37
[ 7.770731] microcode: CPU17 sig=0x206f2, pf=0x4, revision=0x37
[ 7.773429] microcode: CPU18 sig=0x206f2, pf=0x4, revision=0x37
[ 7.776096] microcode: CPU19 sig=0x206f2, pf=0x4, revision=0x37
[ 7.778860] microcode: CPU20 sig=0x206f2, pf=0x4, revision=0x37
[ 7.781681] microcode: CPU21 sig=0x206f2, pf=0x4, revision=0x37
[ 7.784340] microcode: CPU22 sig=0x206f2, pf=0x4, revision=0x37
[ 7.787012] microcode: CPU23 sig=0x206f2, pf=0x4, revision=0x37
[ 7.789820] microcode: CPU24 sig=0x206f2, pf=0x4, revision=0x37
[ 7.792515] microcode: CPU25 sig=0x206f2, pf=0x4, revision=0x37
[ 7.795169] microcode: CPU26 sig=0x206f2, pf=0x4, revision=0x37
[ 7.798125] microcode: CPU27 sig=0x206f2, pf=0x4, revision=0x37
[ 7.800957] microcode: CPU28 sig=0x206f2, pf=0x4, revision=0x37
[ 7.803668] microcode: CPU29 sig=0x206f2, pf=0x4, revision=0x37
[ 7.806839] microcode: CPU30 sig=0x206f2, pf=0x4, revision=0x37
[ 7.809722] microcode: CPU31 sig=0x206f2, pf=0x4, revision=0x37
[ 7.812646] microcode: CPU32 sig=0x206f2, pf=0x4, revision=0x37
[ 7.815423] microcode: CPU33 sig=0x206f2, pf=0x4, revision=0x37
[ 7.818096] microcode: CPU34 sig=0x206f2, pf=0x4, revision=0x37
[ 7.820904] microcode: CPU35 sig=0x206f2, pf=0x4, revision=0x37
[ 7.823606] microcode: CPU36 sig=0x206f2, pf=0x4, revision=0x37
[ 7.826250] microcode: CPU37 sig=0x206f2, pf=0x4, revision=0x37
[ 7.828932] microcode: CPU38 sig=0x206f2, pf=0x4, revision=0x37
[ 7.831744] microcode: CPU39 sig=0x206f2, pf=0x4, revision=0x37
[ 7.834430] microcode: CPU40 sig=0x206f2, pf=0x4, revision=0x37
[ 7.837094] microcode: CPU41 sig=0x206f2, pf=0x4, revision=0x37
[ 7.839889] microcode: CPU42 sig=0x206f2, pf=0x4, revision=0x37
[ 7.842805] microcode: CPU43 sig=0x206f2, pf=0x4, revision=0x37
[ 7.845502] microcode: CP sig=0x206f2, pf=0x4, revision=0x37
[ 7.948169] microcode: CPU45 sig=0x206f2, pf=0x4, revision=0x37
[ 7.951020] microcode: CPU46 sig=0x206f2, pf=0x4, revision=0x37
[ 7.953788] microcode: CPU47 sig=0x206f2, pf=0x4, revision=0x37
[ 7.956490] microcode: CPU48 sig=0x206f2, pf=0x4, revision=0x37
[ 7.959202] microcode: CPU49 sig=0x206f2, pf=0x4, revision=0x37
[ 7.961946] microcode: CPU50 sig=0x206f2, pf=0x4, revision=0x37
[ 7.964624] microcode: CPU51 sig=0x206f2, pf=0x4, revision=0x37
[ 7.967260] microcode: CPU52 sig=0x206f2, pf=0x4, revision=0x37
[ 7.969998] microcode: CPU53 sig=0x206f2, pf=0x4, revision=0x37
[ 7.972693] microcode: CPU54 sig=0x206f2, pf=0x4, revision=0x37
[ 7.975372] microcode: CPU55 sig=0x206f2, pf=0x4, revision=0x37
[ 7.978033] microcode: CPU56 sig=0x206f2, pf=0x4, revision=0x37
[ 7.980837] microcode: CPU57 sig=0x206f2, pf=0x4, revision=0x37
[ 7.983546] microcode: CPU58 sig=0x206f2, pf=0x4, revision=0x37
[ 7.986197] microcode: CPU59 sig=0x206f2, pf=0x4, revision=0x37
[ 7.988878] microcode: CPU60 sig=0x206f2, pf=0x4, revision=0x37
[ 7.991667] microcode: CPU61 sig=0x206f2, pf=0x4, revision=0x37
[ 7.994343] microcode: CPU62 sig=0x206f2, pf=0x4, revision=0x37
[ 7.997007] microcode: CPU63 sig=0x206f2, pf=0x4, revision=0x37
[ 7.999802] microcode: CPU64 sig=0x206f2, pf=0x4, revision=0x37
[ 8.002498] microcode: CPU65 sig=0x206f2, pf=0x4, revision=0x37
[ 8.005124] microcode: CPU66 sig=0x206f2, pf=0x4, revision=0x37
[ 8.007840] microcode: CPU67 sig=0x206f2, pf=0x4, revision=0x37
[ 8.062] microcode: CPU68 sig=0x206f2, pf=0x4, revision=0x37
[ 8.113421] microcode: CPU69 sig=0x206f2, pf=0x4, revision=0x37
[ 8.116104] microcode: CPU70 sig=0x206f2, pf=0x4, revision=0x37
[ 8.118799] microcode: CPU71 sig=0x206f2, pf=0x4, revision=0x37
[ 8.121613] microcode: CPU72 sig=0x206f2, pf=0x4, revision=0x37
[ 8.124301] microcode: CPU73 sig=0x206f2, pf=0x4, revision=0x37
[ 8.126950] microcode: CPU74 sig=0x206f2, pf=0x4, revision=0x37
[ 8.129758] microcode: CPU75 sig=0x206f2, pf=0x4, revision=0x37
[ 8.132447] microcode: CPU76 sig=0x206f2, pf=0x4, revision=0x37
[ 8.135111] microcode: CPU77 sig=0x206f2, pf=0x4, revision=0x37
[ 8.137792] microcode: CPU78 sig=0x206f2, pf=0x4, revision=0x37
[ 8.140605] microcode: CPU79 sig=0x206f2, pf=0x4, revision=0x37
[ 8.143291] microcode: CPU80 sig=0x206f2, pf=0x4, revision=0x37
[ 8.145939] microcode: CPU81 sig=0x206f2, pf=0x4, revision=0x37
[ 8.148625] microcode: CPU82 sig=0x206f2, pf=0x4, revision=0x37
[ 8.151440] microcode: CPU83 sig=0x206f2, pf=0x4, revision=0x37
[ 8.15409microcode: CPU84 sig=0x206f2, pf=0x4, revision=0x37
[ 8.256824] microcode: CPU85 sig=0x206f2, pf=0x4, revision=0x37
[ 8.259668] microcode: CPU86 sig=0x206f2, pf=0x4, revision=0x37
[ 8.262384] microcode: CPU87 sig=0x206f2, pf=0x4, revision=0x37
[ 8.265037] microcode: CPU88 sig=0x206f2, pf=0x4, revision=0x37
[ 8.267753] microcode: CPU89 sig=0x206f2, pf=0x4, revision=0x37
[ 8.270551] microcode: CPU90 sig=0x206f2, pf=0x4, revision=0x37
[ 8.273234] microcode: CPU91 sig=0x206f2, pf=0x4, revision=0x37
[ 8.275892] microcode: CPU92 sig=0x206f2, pf=0x4, revision=0x37
[ 8.278591] microcode: CPU93 sig=0x206f2, pf=0x4, revision=0x37
[ 8.281389] microcode: CPU94 sig=0x206f2, pf=0x4, revision=0x37
[ 8.284051] microcode: CPU95 sig=0x206f2, pf=0x4, revision=0x37
[ 8.286738] microcode: CPU96 sig=0x206f2, pf=0x4, revision=0x37
[ 8.289532] microcode: CPU97 sig=0x206f2, pf=0x4, revision=0x37
[ 8.292183] microcode: CPU98 sig=0x206f2, pf=0x4, revision=0x37
[ 8.294793] microcode: CPU99 sig=0x206f2, pf=0x4, revision=0x37
[ 8.297472] microcode: CPU100 sig=0x206f2, pf=0x4, revision=0x37
[ 8.300310] microcode: CPU101 sig=0x206f2, pf=0x4, revision=0x37
[ 8.302996] microcode: CPU102 sig=0x206f2, pf=0x4, revision=0x37[ 8.364340] microcode: CPU103 sig=0x206f2, pf=0x4, revision=0x37
[ 8.409077] microcode: CPU104 sig=0x206f2, pf=0x4, revision=0x37
[ 8.411902] microcode: CPU105 sig=0x206f2, pf=0x4, revision=0x37
[ 8.414655] microcode: CPU106 sig=0x206f2, pf=0x4, revision=0x37
[ 8.417381] microcode: CPU107 sig=0x206f2, pf=0x4, revision=0x37
[ 8.420229] microcode: CPU108 sig=0x206f2, pf=0x4, revision=0x37
[ 8.422932] microcode: CPU109 sig=0x206f2, pf=0x4, revision=0x37
[ 8.425663] microcode: CPU110 sig=0x206f2, pf=0x4, revision=0x37
[ 8.428381] microcode: CPU111 sig=0x206f2, pf=0x4, revision=0x37
[ 8.431204] microcode: CPU112 sig=0x206f2, pf=0x4, revision=0x37
[ 8.433960] microcode: CPU113 sig=0x206f2, pf=0x4, revision=0x37
[ 8.436678] microcode: CPU114 sig=0x206f2, pf=0x4, revision=0x37
[ 8.439518] microcode: CPU115 sig=0x206f2, pf=0x4, revision=0x37
[ 8.442251] microcode: CPU116 sig=0x206f2, pf=0x4, revision=0x37
[ 8.444938] microcode: CPU117 sig=0x206f2, pf=0x4, revision=0x37
[ 8.447648] microcode: CPU118 sig=0x206f2, pf=0x4, revision=0x37
[ 8.450481] microcode: CPU119 sig=0x206f2, pf=0x4, revision=0x
[ 8.553170] microcode: CPU120 sig=0x206f2, pf=0x4, revision=0x37
[ 8.556407] microcode: CPU121 sig=0x206f2, pf=0x4, revision=0x37
[ 8.559287] microcode: CPU122 sig=0x206f2, pf=0x4, revision=0x37
[ 8.562299] microcode: CPU123 sig=0x206f2, pf=0x4, revision=0x37
[ 8.565001] microcode: CPU124 sig=0x206f2, pf=0x4, revision=0x37
[ 8.567753] microcode: CPU125 sig=0x206f2, pf=0x4, revision=0x37
[ 8.570601] microcode: CPU126 sig=0x206f2, pf=0x4, revision=0x37
[ 8.573353] microcode: CPU127 sig=0x206f2, pf=0x4, revision=0x37
[ 8.576187] microcode: Microcode Update Driver: v2.00 <tigran@xxxxxxxxxxxxxxxxxxxx>, Peter Oruba
[ 8.593163] futex hash table entries: 65536 (order: 10, 4194304 bytes)
[ 8.598105] Initialise system trusted keyring
[ 8.600785] audit: initializing netlink subsys (disabled)
[ 8.603354] audit: type=2000 audit(1429614913.850:1): initialized
[ 8.607894] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 8.613214] zpool: loaded
[ 8.614546] zbud: loaded
[ 8.615297] tsc: Refined TSC clocksource caration: 2127.999 MHz
[ 8.719248] VFS: Disk quotas dquot_6.5.2
[ 8.721328] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 8.725513] Key type big_key registered
[ 8.736884] alg: No test for stdrng (krng)
[ 8.739011] NET: Registered protocol family 38
[ 8.741109] Key type asymmetric registered
[ 8.743191] Asymmetric key parser 'x509' registered
[ 8.745463] bounce: pool size: 64 pages
[ 8.747287] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[ 8.751294] io scheduler noop registered
[ 8.753185] io scheduler deadline registered (default)
[ 8.755651] io scheduler cfq registered
[ 8.759563] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 8.762270] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 8.778373] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 8.781993] ACPI: Power Button [PWRF]
[ 8.787943] thermal LNXTHERM:00: registered as thermal_zone0
[ 8.790808] ACPI: Thermal Zone [THM0] C)
[ 8.892821] ERST: Failed to get Error Log Address Range.
[ 8.895569] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[ 8.898559] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 8.922409] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 8.946495] serial8250: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[ 8.950814] Non-volatile memory driver v1.3
[ 8.952846] Linux agpgart interface v0.103
[ 8.955496] rdac: device handler registered
[ 8.957709] hp_sw: device handler registered
[ 8.959798] emc: device handler registered
[ 8.961687] alua: device handler registered
[ 8.963657] libphy: Fixed MDIO Bus: probed
[ 8.965633] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 8.968607] ehci-pci: EHCI PCI platform driver
[ 8.971020] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 8.973572] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[ 8.976970] ehci-pci 0000:00:1d.7: debug port 1
[ 8.983145] ehci-pci 0000:00:1d.7: irq 20, io mem 0x9a300000
[ 8.991232] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 8.994125] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 8.997209] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 9.000579] usb usb1: Product: EHCI Host Controller
[ 9.002793] usb usb1: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[ 9.005581] usb usb1: SerialNumber: 0000:00:1d.7
[ 9.007955] hub 1-0:1.0: USB hub found
[ 9.009976] hub 1-0:1.0: 8 ports detected
[ 9.012111] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 9.015025] ohci-pci: OHCI PCI platform driver
[ 9.017077] uhci_hcd: USB Universal Host Controller Interface driver
[ 9.020427] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 9.022978] uhci_hcd 0000:00:0: new USB bus registered, assigned bus number 2
[ 9.126420] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 9.128713] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00001000
[ 9.131506] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 9.134658] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 9.137945] usb usb2: Product: UHCI Host Controller
[ 9.140262] usb usb2: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[ 9.143004] usb usb2: SerialNumber: 0000:00:1d.0
[ 9.145501] hub 2-0:1.0: USB hub found
[ 9.147471] hub 2-0:1.0: 2 ports detected
[ 9.149937] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 9.152613] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 9.156055] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 9.158292] uhci_hcd 0000:00:1d.1: irq 23, io base 0x00001020
[ 9.161145] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 9.164237] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 9.167514] usb usb3: Product: UHCI Host Controller
[ 9.169879] usb usb3: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[ 9.172646] usb usb3: SerialNumber: 0000:00:1d.1
[ 9.175175] hub 3-0:1.0: USB hub found
[ 9.177144] hub 3-0:1.0: 2 ports detected
[ 9.179777] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 9.182596] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 9.186122] uhci_hcd 0000:00:1d.2: detect2 ports
[ 9.288412] uhci_hcd 0000:00:1d.2: irq 22, io base 0x00001040
[ 9.291346] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 9.294568] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 9.297841] usb usb4: Product: UHCI Host Controller
[ 9.300198] usb usb4: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[ 9.303013] usb usb4: SerialNumber: 0000:00:1d.2
[ 9.306180] hub 4-0:1.0: USB hub found
[ 9.308083] hub 4-0:1.0: 2 ports detected
[ 9.310575] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[ 9.313376] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[ 9.316876] uhci_hcd 0000:00:1d.3: detected 2 ports
[ 9.319230] uhci_hcd 0000:00:1d.3: irq 23, io base 0x00001060
[ 9.321911] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[ 9.325255] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 9.328555] usb usb5: Product: UHCI Host Controller
[ 9.330871] usb usb5: Manufacturer: Linux 4.0.07.v10u2 uhci_hcd
[ 9.433652] usb usb5: SerialNumber: 0000:00:1d.3
[ 9.436215] hub 5-0:1.0: USB hub found
[ 9.438212] hub 5-0:1.0: 2 ports detected
[ 9.440687] uhci_hcd 0000:02:00.4: UHCI Host Controller
[ 9.443461] uhci_hcd 0000:02:00.4: new USB bus registered, assigned bus number 6
[ 9.446956] uhci_hcd 0000:02:00.4: detected 8 ports
[ 9.449282] uhci_hcd 0000:02:00.4: port count misdetected? forcing to 2 ports
[ 9.452526] uhci_hcd 0000:02:00.4: irq 17, io base 0x00003c00
[ 9.455295] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[ 9.458899] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 9.462491] usb usb6: Product: UHCI Host Controller
[ 9.464946] usb usb6: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[ 9.468011] usb usb6: SerialNumber: 0000:02:00.4
[ 9.470795] hub 6-0:1.0: USB hub found
[ 9.472767] hub 6-0:1.0: 2 ports detected
[ 9.475174] usbcore: registered new interface driver usbserial
[ 9.478251] usbcore: registered new interface driver usbserial_generic
[ 9.481646] usbserial: USB Serial support registered for generic
[ 9.484734] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12
[ 90741] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 9.593354] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 9.596454] mousedev: PS/2 mouse device common for all mice
[ 9.600478] rtc_cmos 00:05: RTC can wake from S4
[ 9.603452] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[ 9.606651] rtc_cmos 00:05: alarms up to one year, y3k, 114 bytes nvram, hpet irqs
[ 9.616652] Switched to clocksource tsc
[ 9.621482] hidraw: raw HID events driver (C) Jiri Kosina
[ 9.625081] usbcore: registered new interface driver usbhid
[ 9.627989] usbhid: USB HID core driver
[ 9.630174] drop_monitor: Initializing network drop monitor service
[ 9.634495] TCP: cubic registered
[ 9.636469] Initializing XFRM netlink socket
[ 9.639367] NET: Registered protocol family 10
[ 9.644102] NET: Registered protocol family 17
[ 9.656604] Loading compiled-in X.509 certificates
[ 9.661781] Loaded X.509 cert 'Magrathea: Glacier signing key: 4b59f1b27134175306af599322e4df28ae58e86e'
[ 9.667290] registered taskstats version 1
[ 9.678502] Key type trusted registered
[ 9.644] Key type encrypted registered
[ 9.794893] usb 6-1: new full-speed USB device number 2 using uhci_hcd
[ 9.800258] ima: No TPM chip found, activating TPM-bypass!
[ 9.803721] evm: HMAC attrs: 0x1
[ 9.816291] rtc_cmos 00:05: setting system clock to 2015-04-21 11:15:21 UTC (1429614921)
[ 9.856309] Freeing unused kernel memory: 1704K (ffffffff81b4d000 - ffffffff81cf7000)
[ 9.915326] systemd[1]: systemd 208 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[ 9.927351] systemd[1]: Running in initial RAM disk.

Welcome to Red Hat Enterprise Linux Server 7.1 (Maipo) dracut-033-240.el7 (Initramfs)!

[ 9.931925] usb 6-1: New USB device found, idVendor=03f0, idProduct=7029
[ 9.969893] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 10.009894] usb 6-1: Product: Virtual Keyboard
[ 10.034617] usb 6-1: Manufacturer: HP
[ 10.034939] systemd[1]: Set hostname to <localhost.localdomain>.
[ 10.040540] random: systemd urandom read with 5 bits of entropy available
[ 10.046615] input: HP Virtual Keyboard as /devices/pci0000:00/0000:00:1c.4/0000:02:00.4/usb6/6-1/6-1:1.0/0003:03F0:7029.0001/input/input4
[ 10.105448] hid-generic 0003:03F0:7029.0001: input,hidraw0: USB HID v1.01 Keyboard [HP Virtual Keyboard ] on usb-0000:02:00.4-1/input0
[ 10.116616] input: HP Virtual Keyboard as /devices/pci0000:00/0000:00:1c.4/0000:02:00.4/usb6/6-1/6-1:1.1/0003:03F0:7029.0002/input/input5
[ 10.123980] hid-generic 0003:03F0:7029.0002: input,hidraw1: USB HID v1.01 Mouse [HP Virtual Keyboard ] on usb-0000:02:00.4-1/input1
[ 10.145393] systemd[1]: Expecting device dev-disk-by\x2duuid-ff4dfdb7\x2de24d\x2d4be8\x2dace6\x2dcbe023625110.device...
Expecting device dev-disk-by\x2duuid-ff4dfdb7\x2de24...25110.device...
[ 10.153784] systemd[1]: Starting -.slice.
[ OK ] Created slice -.slice.
[ 10.158755] systemd[1]: Created slice -.slice.
[ 10.161164] systemd[1]: Starting System Slice.
[ OK ] Created slice System Slice.
[ 10.165748] systemd[1]: Created slice System Slice.
[ 10.168370] systemd[1]: Starting Slices.
[ OK ] Reached target Slices.
[ 10.172801] systemd[1]: Reached target Slices.
[ 10.175169] systemd[1]: Starting Timers.
[ OK ] Reached target Timers.
[ 10.179792] systemd[1]: Reached target Timers.
[ 10.182204] systemd[1]: Starting Journal Socket.
[ OK ] Listening on Journal Socket.
[ 10.186737] systemd[1]: Listening on Journal Socket.
[ 10.190005] systemd[1]: Started dracut ask for additional cmdline parameters.
[ 10.193899] systemd[1]: Starting dracut cmdline hook...
Starting dracut cmdline hook...
[ 10.199838] systemd[1]: Started Load Kernel Modules.
[ 10.202444] systemd[1]: Starting Setup Virtual Console...
Starting Setup Virtual Console...
[ 10.208566] systemd[1]: Starting Journal Service...
Starting Journal Service...
[ OK ] Started Journal Service.
[ 10.217553] systemd[1]: Started Journal Service.
[ OK ] Listening on udev Kernel Socket.
[ OK ] Listening on udev Control Socket.
[ OK ] Reached target Sockets.
Starting Create list of required static device nodes...rrent kernel...
Starting Apply Kernel Variables...
[ OK ] Reached target Swap.
[ OK ] Reached target Local File Systems.
[ OK ] Started dracut cmdline hook.
[ OK ] Started Setup Virtual Console.
[ OK ] Started Apply Kernel Variables.
Starting dracut pre-udev hook...
[ OK ] Started Create list of required static device nodes ...current kernel.
Starting Create static device nodes in /dev...
[ OK ] Started Create static device nodes in /dev.
[ OK ] Started dracut pre-udev hook.
Starting udev Kernel Device Manager...
[ 10.498102] systemd-udevd[1189]: starting version 208
[ OK ] Started udev Kernel Device Manager.
Starting udev Coldplug all Devices...
Mounting Configuration File System...
[ OK ] Mounted Configuration File System.
[ OK ] Started udev Coldplug all Devices.
Starting dracut initqueue hook...
[ OK ] Reached target System Initialization.
Starting Show Plymouth Boot Screen...
[ OK ] Started Show Plymouth Boot Screen.

[ OK ] Reached target Paths.

[ OK ] Reached target Basic System.

%G[ 10.814795] QLogic/NetXen Network Driver v4.0.82
[ 10.839198] netxen_nic 0000:04:00.0: 2MB memory map
[ 11.066064] qla2xxx [0000:00:00.0]-0005: : QLogic Fibre Channel HBA Driver: 8.07.00.16-k.
[ 11.066300] [drm] Initialized drm 1.1.0 20060810
[ 11.070341] netxen_nic 0000:04:00.0: Gen2 strapping detected
[ 11.070381] netxen_nic 0000:04:00.0: using 64-bit dma mask
[ 11.162351] netxen_nic: NX3031 Gigabit Ethernet Board S/N ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¨´â Chip rev 0x42
[ 11.162358] netxen_nic 0000:04:00.0: Driver v4.0.82, firmware v4.0.590 [legacy]
[ 11.162717] netxen_nic 0000:04:00.0: using msi-x interrupts
[ 11.163331] netxen_nic 0000:04:00.0: eth0: GbE port initialized
[ 11.163499] netxen_nic 0000:04:00.1: 2MB memory map
[ 11.163658] netxen_nic 0000:04:00.1: using 64-bit dma mask
[ 11.197351] netxen_nic 0000:04:00.1: Driver v4.0.82, firmware v4.0.590 [legacy]
[ 11.197578] netxen_nic 0000:04:00.1: using msi-x interrupts
[ 11.198042] netxen_nic 0000:04:00.1: eth1: GbE port initialized
[ 11.198307] netxen_nic 0000:04:00.2: 2MB memory map
[ 11.198466] netxen_nic 0000:04:00.2: using 64-bit dma mask
[ 11.232340] netxen_nic 0000:04:00.2: Driver v4.0.82, firmware v4.0.590 [legacy]
[ 11.232555] netxen_nic 0000:04:00.2: using msi-x interrupts
[ 11.233030] netxen_nic 0000:04:00.2: eth2: GbE port initialized
[ 11.233265] netxen_nic 0000:04:00.3: 2MB memory map
[ 11.233424] netxen_nic 0000:04:00.3: using 64-bit dma mask
[ 11.267295] netxen_nic 0000:04:00.3: Driver v4.0.82, firmware v4.0.590 [legacy]
[ 11.267517] netxen_nic 0000:04:00.3: using msi-x interrupts
[ 11.267987] netxen_nic 0000:04:00.3: eth3: GbE port initialized
[ 11.303028] ata_piix 0000:00:1f.2: enabling device (0040 -> 0041)
[ 11.303226] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[ 11.399148] netxen_nic 0000:04:00.2 eno2: renamed from eth2
[ 11.455347] scsi host0: ata_piix
[ 11.456117] scsi host1: ata_piix
[ 11.456190] ata1: SATA max UDMA/133 cmd 0x10a0 ctl 0x10b0 bmdma 0x1080 irq 17
[ 11.456197] ata2: SATA max UDMA/133 cmd 0x10a8 ctl 0x10b4 bmdma 0x1088 irq 17
[ 12.065453] qla2xxx [0000:0e:00.0]-001d: : Found an ISP2432 irq 43 iobase 0xffffc90016dd0000.
[ 12.066972] ata2.00: SATA link down (SStatus 4 SControl 300)
[ 12.066998] ata2.01: SATA link down (SStatus 4 SControl 300)
[ 12.176399] qla2xxx [0000:0e:00.0]-0034:2: MSI-X: Unsupported ISP 2432 SSVID/SSDID (0x103C,0x7040).
[ 12.239621] systemd-udevd[1194]: renamed network interface eth2 to eno2
[ 12.239704] netxen_nic 0000:04:00.0 enp4s0f0: renamed from eth0
[ 12.390664] systemd-udevd[1193]: renamed network interface eth0 to enp4s0f0
[ 12.390735] netxen_nic 0000:04:00.3 eno3: renamed from eth3
[ 12.553382] scsi host2: qla2xxx
[ 12.571782] qla2xxx [0000:0e:00.0]-00fb:2: QLogic HPAE311A - PCI-Express 4Gb Fibre Channel HBA.
[ 12.619925] qla2xxx [0000:0e:00.0]-00fc:2: ISP2432: PCIe (2.5GT/s x4) @ 0000:0e:00.0 hdma+ host#=2 fw=7.03.00 (9496).
[ 12.697592] [drm] radeon kernel modesetting enabled.
[ 12.726709] [drm] initializing kernel modesetting (RV100 0x1002:0x515E 0x103C:0x31FB).
[ 12.729374] systemd-udevd[1195]: renamed network interface eth3 to eno3
[ 12.729464] netxen_nic 0000:04:00.1 eno1: renamed from eth1
[ 12.844629] [drm] register mmio base: 0x9A200000
[ 12.870582] [drm] register mmio size: 65536
[ 12.894338] radeon 0000:01:03.0: VRAM: 128M 0x00000000A0000000 - 0x00000000A7FFFFFF (64M used)
[ 12.943108] radeon 0000:01:03.0: GTT: 512M 0x0000000080000000 - 0x000000009FFFFFFF
[ 12.985715] [drm] Detected VRAM RAM=128M, BAR=128M
[ 13.014418] [drm] RAM width 16bits DDR
[ 13.036816] [TTM] Zone kernel: Available graphics memory: 32874444 kiB
[ 13.075253] [TTM] Zone dma32: Available graphics memory: 2097152 kiB
[ 13.111406] [TTM] Initializing pool allocator
[ 13.135517] [TTM] Initializing DMA pool allocator
[ 13.137267] systemd-udevd[1196]: renamed network interface eth1 to eno1
[ 13.198601] [drm] radeon: 64M of VRAM memory ready
[ 13.225974] [drm] radeon: 512M of GTT memory ready.
[ 13.254095] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 13.300083] dmar: DRHD: handling fault status reg 2
[ 13.310004] [drm] PCI GART of 512M enabled (table at 0x00000000FFF00000).
[ 13.310041] radeon 0000:01:03.0: WB disabled
[ 13.310047] radeon 0000:01:03.0: fence driver on ring 0 use gpu addr 0x0000000080000000 and cpu addr 0xffff88007f300000
[ 13.310050] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 13.310051] [drm] Driver supports precise vblank timestamp query.
[ 13.310076] [drm] radeon: irq initialized.
[ 13.310093] [drm] Loading R100 Microcode
[ 13.310825] [drm] radeon: ring at 0x0000000080001000
[ 13.310861] [drm] ring test succeeded in 1 usecs
[ 13.311360] [drm] ib test succeeded in 0 usecs
[ 13.312109] [drm] No TV DAC info found in BIOS
[ 13.312157] [drm] Radeon Display Connectors
[ 13.312158] [drm] Connector 0:
[ 13.312158] [drm] VGA-1
[ 13.312160] [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
[ 13.312161] [drm] Encoders:
[ 13.312162] [drm] CRT1: INTERNAL_DAC1
[ 13.312162] [drm] Connector 1:
[ 13.312163] [drm] VGA-2
[ 13.312164] [drm] DDC: 0x6c 0x6c 0x6c 0x6c 0x6c 0x6c 0x6c 0x6c
[ 13.312164] [drm] Encoders:
[ 13.312165] [drm] CRT2: INTERNAL_DAC2
[ 13.348322] [drm] fb mappable at 0xA0040000
[ 13.348323] [drm] vram apper at 0xA0000000
[ 13.348324] [drm] size 786432
[ 13.348324] [drm] fb depth is 8
[ 13.348325] [drm] pitch is 1024
[ 13.998006] dmar: DMAR:[DMA Read] Request device [00:1e.0] fault addr 2000
[ 13.998006] DMAR:[fault reason 06] PTE Read access is not set
[ 13.998035] qla2xxx [0000:0e:00.0]-500a:2: LOOP UP detected (4 Gbps).
[ 13.998091] fbcon: radeondrmfb (fb0) is primary device
[ 14.154743] Console: switching to colour frame buffer device 128x48
[ 14.338522] radeon 0000:01:03.0: fb0: radeondrmfb frame buffer device
[ 14.374329] radeon 0000:01:03.0: registered panic notifier
[ 14.411187] [drm] Initialized radeon 2.41.0 20080528 for 0000:01:03.0 on minor 0
[ 14.585304] scsi 2:0:0:0: RAID HP HSV300 1000 PQ: 0 ANSI: 5
[ 14.638144] scsi 2:0:1:0: RAID HP HSV300 1100 PQ: 0 ANSI: 5
[ 14.685769] scsi 2:0:2:0: RAID HP HSV300 1100 PQ: 0 ANSI: 5
[ 14.733650] scsi 2:0:3:0: RAID HP HSV300 1100 PQ: 0 ANSI: 5
[ 14.781699] scsi 2:0:4:0: RAID HP HSV300 1100 PQ: 0 ANSI: 5
[ 14.832957] scsi 2:0:5:0: Direct-Access HP P2000 G3 FC T240 PQ: 0 ANSI: 5
[ 14.879519] scsi 2:0:5:0: alua: supports implicit TPGS
[ 14.908750] scsi 2:0:5:0: alua: port group 00 rel port 01
[ 14.938356] scsi 2:0:5:0: alua: port group 00 state N non-preferred supports tOlusNA
[ 14.981671] scsi 2:0:5:0: alua: Attached
[ 15.009602] scsi 2:0:6:0: Enclosure HP P2000 G3 FC T240 PQ: 0 ANSI: 5
[ 15.056488] scsi 2:0:6:0: alua: supports implicit TPGS
[ 15.085953] scsi 2:0:6:0: alua: port group 01 rel port 05
[ 15.116251] scsi 2:0:6:0: alua: port group 01 state N non-preferred supports tOlusNA
[ 15.160583] scsi 2:0:6:0: alua: Attached
[ 15.557774] scsi 2:0:7:0: RAID HP HSV300 1100 PQ: 0 ANSI: 5
[ 15.607501] scsi 2:0:8:0: Enclosure HP P2000 G3 FC T240 PQ: 0 ANSI: 5
[ 15.655270] scsi 2:0:8:0: alua: supports implicit TPGS
[ 15.684756] scsi 2:0:8:0: alua: port group 01 rel port 06
[ 15.716668] scsi 2:0:8:0: alua: port group 01 state N non-preferred supports tOlusNA
[ 15.761047] scsi 2:0:8:0: alua: Attached
[ 15.789067] scsi 2:0:9:0: Enclosure HP P2000 G3 FC T240 PQ: 0 ANSI: 5
[ 15.836035] scsi 2:0:9:0: alua: supports implicit TPGS
[ 15.866328] scsi 2:0:9:0: alua: port group 00 rel port 02
[ 15.896314] scsi 2:0:9:0: alua: port group 00 state N non-preferred supports tOlusNA
[ 15.938158] scsi 2:0:9:0: alua: Attached
[ 17.231745] ata1.00: link is slow to respond, please be patient (ready=-19)
[ 21.500944] ata1.00: SRST failed (errno=-16)
[ 27.332475] ata1.00: link is slow to respond, please be patient (ready=-19)
[ 31.563683] ata1.00: SRST failed (errno=-16)
[ 37.393218] ata1.00: link is slow to respond, please be patient (ready=-19)
[ 42.510729] sd 2:0:5:0: [sda] 74218624 512-byte logical blocks: (37.9 GB/35.3 GiB)
[ 42.554797] sd 2:0:5:0: [sda] Write Protect is off
[ 42.582508] sd 2:0:5:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 42.644454] sda: sda1 sda2
[ 42.664477] sd 2:0:5:0: [sda] Attached SCSI disk
[ 66.588892] ata1.00: SRST failed (errno=-16)
[ 66.611772] ata1.00: limiting SATA link speed to 1.5 Gbps
[ 66.639876] ata1.01: limiting SATA link speed to 1.5 Gbps
[ 71.713727] ata1.00: SRST failed (errno=-16)
[ 71.736320] ata1.00: reset failed, giving up
[ OK ] Found device P2000_G3_FC.

Starting File System Check on /dev/disk/by-uuid/ff4d...cbe023625110...

[ OK ] Started dracut initqueue hook.

[ OK ] Reached target Remote File Systems (Pre).

[ OK ] Reached target Remote File Systems.

systemd-fsck[1307]: /sbin/fsck.xfs: XFS file system.

[ OK ] Started File System Check on /dev/disk/by-uuid/ff4df...6-cbe023625110.

Mounting /sysroot...

[ 72.110499] SGI XFS with ACLs, security attributes, no debug enabled
[ 72.194866] XFS (sda1): Mounting V4 Filesystem
[ 72.245540] XFS (sda1): Ending clean mount
[ OK ] Mounted /sysroot.

[ OK ] Reached target Initrd Root File System.

Starting Reload Configuration from the Real Root...

[ OK ] Started Reload Configuration from the Real Root.

[ OK ] Reached target Initrd File Systems.

[ OK ] Reached target Initrd Default Target.

[ 72.695801] systemd-journald[995]: Received SIGTERM
[ 72.778717] audit: type=1404 audit(1429614984.497:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[ 72.987668] SELinux: Permission audit_read in class capability2 not defined in policy.
[ 73.029524] SELinux: Class binder not defined in policy.
[ 73.060131] SELinux: the above unknown classes and permissions will be allowed
[ 73.120080] audit: type=1403 audit(1429614984.838:3): policy loaded auid=4294967295 ses=4294967295
[ 73.182229] systemd[1]: Successfully loaded SELinux policy in 407.413ms.
[ 73.388310] systemd[1]: Relabelled /dev and /run in 120.663ms.
[ 73.435398] random: nonblocking pool is initialized


Welcome to Red Hat Enterprise Linux Server 7.1 (Maipo)!



[ OK ] Stopped Switch Root.

[ OK ] Stopped target Switch Root.

[ OK ] Stopped target Initrd File Systems.

Stopping File System Check on /dev/disk/by-uuid/ff4d...cbe023625110...

[ OK ] Stopped File System Check on /dev/disk/by-uuid/ff4df...6-cbe023625110.

[ OK ] Stopped target Initrd Root File System.

Starting Collect Read-Ahead Data...

Starting Replay Read-Ahead Data...

[ OK ] Created slice User and Session Slice.

[ OK ] Created slice system-serial\x2dgetty.slice.

Expecting device dev-ttyS1.device...

[ OK ] Created slice system-getty.slice.

[ OK ] Reached target Slices.

[ OK ] Listening on Delayed Shutdown Socket.

[ OK ] Listening on /dev/initctl Compatibility Named Pipe.

Mounting Debug File System...

[ 73.750554] systemd-readahead[1411]: Bumped block_nr parameter of 8:0 to 20480. This is a temporary hack and should be removed one day.
[ OK ] Set up automount Arbitrary Executable File Formats F...utomount Point.

Starting Create list of required static device nodes...rrent kernel...

Mounting POSIX Message Queue File System...

Mounting Huge Pages File System...

[ OK ] Listening on LVM2 metadata daemon socket.

[ OK ] Listening on Device-mapper event daemon FIFOs.

Starting Monitoring of LVM2 mirrors, snapshots etc. ...ress polling...

[ OK ] Listening on udev Kernel Socket.

[ OK ] Listening on udev Control Socket.

Starting udev Coldplug all Devices...

Expecting device dev-disk-by\x2duuid-d1b01ec1\x2d03e...c8a99.device...

[ OK ] Mounted Debug File System.

[ OK ] Mounted POSIX Message Queue File System.

[ OK ] Mounted Huge Pages File System.

[ OK ] Stopped Trigger Flushing of Journal to Persistent Storage.

Stopping Journal Service...

[ OK ] Stopped Journal Service.

Starting Journal Service...

[ OK ] Started Journal Service.

[ OK ] Started Collect Read-Ahead Data.

[ OK ] Started Replay Read-Ahead Data.

Starting Load legacy module configuration...

Starting Apply Kernel Variables...

Starting Remount Root and Kernel File Systems...

[ OK ] Started Create list of required static device nodes ...current kernel.

Starting Create static device nodes in /dev...

Starting LVM2 metadata daemon...

[ OK ] Started LVM2 metadata daemon.

[ OK ] Started Apply Kernel Variables.

[ OK ] Started Remount Root and Kernel File Systems.

Starting Configure read-only root support...

Starting Load/Save Random Seed...

[ OK ] Started Load/Save Random Seed.

[ OK ] Started Create static device nodes in /dev.

Starting udev Kernel Device Manager...

[ OK ] Reached target Local File Systems (Pre).

[ OK ] Started Configure read-only root support.

[ OK ] Started Load legacy module configuration.

[ 73.995796] systemd-udevd[1445]: starting version 208
[ OK ] Started udev Kernel Device Manager.

[ OK ] Started udev Coldplug all Devices.

Starting udev Wait for Complete Device Initialization...

[ OK ] Started Monitoring of LVM2 mirrors, snapshots etc. u...ogress polling.

[ 74.195028] cpufreq: __cpufreq_add_dev: ->get() failed
[ 74.272413] power_meter ACPI000D:00: Found ACPI power meter.
[ 74.321163] power_meter ACPI000D:00: Ignoring unsafe software power cap!
[ 74.405016] ipmi message handler version 39.2
[ 74.477320] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ OK ] Found device /dev/ttyS1.

[ 74.540144] hrtimer: interrupt took 3102124 ns
[ 74.603083] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 74.664386] wmi: Mapper loaded
[ 75.036551] EDAC MC: Ver: 3.0.0
[ 75.049608] Floppy drive(s): fd0 is 1.44M
[ 75.395077] IPMI System Interface driver.
[ 75.413645] SSE version of gcm_enc/dec engaged.
[ 75.466912] ipmi_si: probing via ACPI
[ 75.487021] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[ 75.550227] ipmi_si 00:01: [io 0x0ca2-0x0ca3] regsize 1 spacing 1 irq 0
[ 75.608577] ipmi_si: Adding ACPI-specified kcs state machine[ 75.626928] WARNING! power/level is deprecated; use power/control instead

[ 75.705724]
[ 75.722148] ipmi_si: probing via SMBIOS
[ 75.751231] ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[ 75.799470] ipmi_si: Adding SMBIOS-specified kcs state machine duplicate interface
[ 75.857171] ipmi_si: probing via SPMI
[ 75.867151] hpwdt 0000:02:00.0: HP Watchdog Timer Driver: NMI decoding initialized, allow kernel dump: ON (default = 1/ON)
[ 75.873878] hpwdt 0000:02:00.0: HP Watchdog Timer Driver: 1.3.3, timer margin: 30 seconds (nowayout=0).
[ 76.038073] ipmi_si: SPMI: io 0xca2 regsize 1 spacing 1 irq 0
[ 76.039011] ipmi_si: Adding SPMI-specified kcs state machine duplicate interface
[ 76.039015] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0
[ OK ] Found device P2000_G3_FC.

%G Activating swap /dev/disk/by-uuid/d1b01ec1-03e9-4d8b...68d75d9c8a99...

[ 76.276614] Adding 2504700k swap on /dev/sda2. Priority:-1 extents:1 across:2504700k FS
[ 76.278508] ses 2:0:6:0: Attached Enclosure device
[ 76.278545] ses 2:0:8:0: Attached Enclosure device
[ 76.278558] ses 2:0:9:0: Attached Enclosure device
[ OK ] Activated swap /dev/disk/by-uuid/d1b01ec1-03e9-4d8b-b63d-68d75d9c8a99.

[ OK ] Reached target Swap.

[ 76.485532] ipmi_si 00:01: Found new BMC (man_id: 0x00000b, prod_id: 0x2000, dev_id: 0x13)
[ 76.537175] ipmi_si 00:01: IPMI kcs interface initialized
[ 76.686357] alg: No test for crc32 (crc32-pclmul)
[ 76.871161] ACPI Warning: SystemIO range 0x0000000000000928-0x000000000000092f conflicts with OpRegion 0x0000000000000920-0x000000000000092f (\SGPE) (20150204/utaddress-258)
[ 76.969489] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 77.030128] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 77.416869] iTCO_vendor_support: vendor-support=0
[ 77.701900] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 77.732315] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[ OK ] Started udev Wait for Complete Device Initialization.

Starting Activation of DM RAID sets...

[ 77.862668] device-mapper: uevent: version 1.0.3
[ 77.891725] device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised: dm-devel@xxxxxxxxxx
[ 78.066602] floppy0: no floppy controllers found
[ OK ] Started Activation of DM RAID sets.

[ OK ] Reached target Local File Systems.

Starting Import network configuration from initramfs...

Starting Tell Plymouth To Write Out Runtime Data...

[ OK ] Reached target Encrypted Volumes.

[ OK ] Started Tell Plymouth To Write Out Runtime Data.

[ OK ] Started Import network configuration from initramfs.

Starting Create Volatile Files and Directories...

[ OK ] Started Create Volatile Files and Directories.

Starting Security Auditing Service...

[ 78.339372] audit: type=1305 audit(1429614990.059:4): audit_pid=1882 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1
[ OK ] Started Security Auditing Service.

Starting Update UTMP about System Reboot/Shutdown...

[ OK ] Started Update UTMP about System Reboot/Shutdown.

[ OK ] Reached target System Initialization.

[ OK ] Reached target Timers.

Starting Manage Sound Card State (restore and store)...

[ OK ] Started Manage Sound Card State (restore and store).

[ OK ] Listening on Open-iSCSI iscsiuio Socket.

[ OK ] Listening on Open-iSCSI iscsid Socket.

[ OK ] Listening on RPCbind Server Activation Socket.

[ OK ] Listening on CUPS Printing Service Sockets.

[ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.

[ OK ] Reached target Paths.

[ OK ] Listening on D-Bus System Message Bus Socket.

[ OK ] Reached target Sockets.

[ OK ] Reached target Basic System.

Starting firewalld - dynamic firewall daemon...

Starting Load CPU microcode update...

Starting Dump dmesg to /var/log/dmesg...

Starting ABRT Automated Bug Reporting Tool...

[ OK ] Started ABRT Automated Bug Reporting Tool.

Starting ABRT kernel log watcher...

[ OK ] Started ABRT kernel log watcher.

Starting Install ABRT coredump hook...

Starting ABRT Xorg log watcher...

[ OK ] Started ABRT Xorg log watcher.

Starting libstoragemgmt plug-in server daemon...

[ OK ] Started libstoragemgmt plug-in server daemon.

Starting Kernel Samepage Merging...

Starting NTP client/server...

Starting System Logging Service...

Starting Modem Manager...

Starting Resets System Activity Logs...

Starting Avahi mDNS/DNS-SD Stack...

Starting irqbalance daemon...

[ OK ] Started irqbalance daemon.

Starting Self Monitoring and Reporting Technology (SMART) Daemon...

[ OK ] Started Self Monitoring and Reporting Technology (SMART) Daemon.

Starting Hardware RNG Entropy Gatherer Daemon...

[ OK ] Started Hardware RNG Entropy Gatherer Daemon.

Starting Dynamic System Tuning Daemon...

Starting Login Service...

Starting Accounts Service...

Starting RealtimeKit Scheduling Policy Service...

Starting D-Bus System Message Bus...

[ OK ] Started D-Bus System Message Bus.

[ OK ] Started Load CPU microcode update.

[ OK ] Started Dump dmesg to /var/log/dmesg.

[ OK ] Started Install ABRT coredump hook.

[ OK ] Started Kernel Samepage Merging.

[ OK ] Started Resets System Activity Logs.

Starting Kernel Samepage Merging (KSM) Tuning Daemon...

[ OK ] Started System Logging Service.

[ OK ] Started NTP client/server.

Starting Authorization Manager...

[ OK ] Started Avahi mDNS/DNS-SD Stack.

[ OK ] Started Modem Manager.

[ OK ] Started RealtimeKit Scheduling Policy Service.

[ OK ] Started Login Service.

[ OK ] Started Kernel Samepage Merging (KSM) Tuning Daemon.

[ OK ] Started Authorization Manager.

[ OK ] Started Accounts Service.

[ 78.884276] ip_tables: (C) 2000-2006 Netfilter Core Team
[ OK ] Started Dynamic System Tuning Daemon.

[ 79.308715] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 79.793796] Ebtables v2.0 registered
[ 80.130806] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[ OK ] Started firewalld - dynamic firewall daemon.

Starting Network Manager...

[ OK ] Started Network Manager.

Starting LSB: Bring up/down networking...

[ 80.671130] IPv6: ADDRCONF(NETDEV_UP): enp4s0f0: link is not ready
[ 81.351910] IPv6: ADDRCONF(NETDEV_UP): enp4s0f0: link is not ready
[ 81.407632] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[ 82.111538] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[ 82.157782] IPv6: ADDRCONF(NETDEV_UP): eno2: link is not ready
[ 82.324432] IPv6: ADDRCONF(NETDEV_UP): eno2: link is not ready
[ 82.370709] IPv6: ADDRCONF(NETDEV_UP): eno3: link is not ready
[ 82.460717] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
[ 82.499345] IPv6: ADDRCONF(NETDEV_UP): eno3: link is not ready
[ 82.539954] IPv6: ADDRCONF(NETDEV_UP): enp4s0f0: link is not ready
[ 82.574467] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[ 82.608289] IPv6: ADDRCONF(NETDEV_UP): eno2: link is not ready
[ 82.641783] IPv6: ADDRCONF(NETDEV_UP): eno3: link is not ready
[ 83.224256] netxen_nic: enp4s0f0 NIC Link is up
[ 83.249403] netxen_nic: eno2 NIC Link is up
[ 83.272699] IPv6: ADDRCONF(NETDEV_CHANGE): enp4s0f0: link becomes ready
[ 83.310295] IPv6: ADDRCONF(NETDEV_CHANGE): eno2: link becomes ready
[ 83.344786] netxen_nic: eno1 NIC Link is up
[ 83.344792] netxen_nic: eno3 NIC Link is up
[ 83.391304] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[ 83.426806] IPv6: ADDRCONF(NETDEV_CHANGE): eno3: link becomes ready
Starting Network Manager Script Dispatcher Service...

[ OK ] Started Network Manager Script Dispatcher Service.

[ OK ] Started LSB: Bring up/down networking.

[ OK ] Reached target Network.

Starting Logout off all iSCSI sessions on shutdown...

Starting Virtualization daemon...

Starting Enable periodic update of entitlement certificates....

Starting Postfix Mail Transport Agent...

Starting OpenSSH server daemon...

[ OK ] Started OpenSSH server daemon.

[ OK ] Started Logout off all iSCSI sessions on shutdown.

[ OK ] Started Enable periodic update of entitlement certificates..

[ OK ] Reached target Remote File Systems (Pre).

[ OK ] Reached target Remote File Systems.

Starting Trigger Flushing of Journal to Persistent Storage...

Starting Crash recovery kernel arming...

Starting LSB: Starts the Spacewalk Daemon...

[ 84.792745] systemd-journald[1425]: Received request to flush runtime journal from PID 1
[ OK ] Started Trigger Flushing of Journal to Persistent Storage.

[FAILED] Failed to start LSB: Starts the Spacewalk Daemon.

See 'systemctl status rhnsd.service' for details.

Starting Permit User Sessions...

[ OK ] Started Virtualization daemon.

[ OK ] Started Permit User Sessions.

Starting Command Scheduler...

[ OK ] Started Command Scheduler.

Starting Job spooling tools...

[ OK ] Started Job spooling tools.

Starting Wait for Plymouth Boot Screen to Quit...

Starting GNOME Display Manager...

[ OK ] Started GNOME Display Manager.

[ OK ] Started Postfix Mail Transport Agent.


Red Hat Enterprise Linux Server 7.1 (Maipo)
Kernel 4.0.0-rc7.v10u2 on an x86_64

localhost login: [ 99.081047] raid6: sse2x1 5746 MB/s
[ 99.119024] raid6: sse2x2 6707 MB/s
[ 99.157012] raid6: sse2x4 7437 MB/s
[ 99.178207] raid6: using algorithm sse2x4 (7437 MB/s)
[ 99.206315] raid6: using ssse3x2 recovery algorithm
[ 99.292583] xor: measuring software checksum speed
[ 99.326934] prefetch64-sse: 9872.000 MB/sec
[ 99.362919] generic_sse: 8688.000 MB/sec
[ 99.387370] xor: using function: prefetch64-sse (9872.000 MB/sec)
[ 99.559503] Btrfs loaded
[ 99.704698] fuse init (API version 7.23)
[ 100.823405] nr_pdflush_threads exported in /proc is scheduled for removal


Red Hat Enterprise Linux Server 7.1 (Maipo)
Kernel 4.0.0-rc7.v10u2 on an x86_64

localhost login: root

Password:
Last login: Tue Apr 21 07:07:55 on ttyS1
[root@localhost ~]# service kdump restart
Redirecting to /bin/systemctl restart kdump.service
[root@localhost ~]#
[root@localhost ~]#
[root@localhost ~]# echo c > /proc/sysrq-trigger
[ 402.751048] sysrq: SysRq : Trigger a crash
[ 402.774267] BUG: unable to handle kernel NULL pointer dereference at (null)
[ 402.819025] IP: [<ffffffff8141a796>] sysrq_handle_crash+0x16/0x20
[ 402.853472] PGD 23e6f1a067 PUD 23e6f1b067 PMD 0
[ 402.880039] Oops: 0002 [#1] SMP
[ 402.898259] Modules linked in: fuse btrfs xor raid6_pq vfat msdos fat ext4 jbd2 binfmt_misc 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 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 ip_tables dm_mirror dm_region_hash dm_log dm_mod iTCO_wdt coretemp iTCO_vendor_support kvm_intel lpc_ich kvm crct10dif_pclmul crc32_pclmul crc32c_intel ses enclosure ghash_clmulni_intel i7core_edac aesni_intel hpilo hpwdt lrw ipmi_si gf128mul mfd_core glue_helper serio_raw ablk_helper cryptd wmi pcspkr edac_core shpchp ipmi_msghandler acpi_power_meter pcc_cpufreq acpi_cpufreq uinput xfs libcrc32c sd_mod radeon i2c_algo_bit ata_generic drm_kms_helper pata_acpi ttm ata_piix drm qla2xxx libata netxen_nic i2c_core scsi_transport_fc
[ 403.383203] CPU: 40 PID: 5516 Comm: bash Not tainted 4.0.0-rc7.v10u2 #1
[ 403.421928] Hardware name: HP ProLiant DL980 G7, BIOS P66 12/28/2012
[ 403.458327] task: ffff8883e18128e0 ti: ffff8883ed554000 task.ti: ffff8883ed554000
[ 403.503812] RIP: 0010:[<ffffffff8141a796>] [<ffffffff8141a796>] sysrq_handle_crash+0x16/0x20
[ 403.554830] RSP: 0018:ffff8883ed557e58 EFLAGS: 00010246
[ 403.584380] RAX: 000000000000000f RBX: ffffffff81ad0fa0 RCX: 0000000000000000
[ 403.625150] RDX: 0000000000000000 RSI: ffff88a3ef20e6d8 RDI: 0000000000000063
[ 403.664897] RBP: ffff8883ed557e58 R08: 00000000000000c2 R09: ffff88a3ffdb9640
[ 403.702672] R10: 0000000000000635 R11: 0000000000000634 R12: 0000000000000063
[ 403.741654] R13: 0000000000000000 R14: 0000000000000007 R15: 0000000000000000
[ 403.780108] FS: 00007fc564e3d740(0000) GS:ffff88a3ef200000(0000) knlGS:0000000000000000
[ 403.826017] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 403.858102] CR2: 0000000000000000 CR3: 00000023ea530000 CR4: 00000000000007e0
[ 403.898087] Stack:
[ 403.909014] ffff8883ed557e88 ffffffff8141b017 0000000000000002 00007fc564e51000
[ 403.950192] 0000000000000002 ffff8883ed557f48 ffff8883ed557ea8 ffffffff8141b4c3
[ 403.992080] 0000000000000001 ffff88046a3806c0 ffff8883ed557ed8 ffffffff8125d7fd
[ 404.034662] Call Trace:
[ 404.048655] [<ffffffff8141b017>] __handle_sysrq+0x107/0x170
[ 404.081080] [<ffffffff8141b4c3>] write_sysrq_trigger+0x33/0x40
[ 404.114722] [<ffffffff8125d7fd>] proc_reg_write+0x3d/0x80
[ 404.145776] [<ffffffff811f2887>] vfs_write+0xb7/0x1f0
[ 404.174444] [<ffffffff810232fc>] ? do_audit_syscall_entry+0x6c/0x70
[ 404.210335] [<ffffffff811f3505>] SyS_write+0x55/0xd0
[ 404.238368] [<ffffffff816b6e89>] system_call_fastpath+0x12/0x17
[ 404.271467] Code: 34 75 e5 4c 89 ef e8 ca f7 ff ff eb db 0f 1f 84 00 00 00 00 00 66 66 66 66 90 55 c7 05 f8 9a 60 00 01 00 00 00 48 89 e5 0f ae f8 <c6> 04 25 00 00 00 00 01 5d c3 66 66 66 66 90 55 31 c0 48 89 e5
[ 404.377118] RIP [<ffffffff8141a796>] sysrq_handle_crash+0x16/0x20
[ 404.412957] RSP <ffff8883ed557e58>
[ 404.434357] 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@xxxxxxxxxxxxxxxxxxxxx) (gcc version 4.8.3 20140911 (Red Hat 4.8.3-9) (GCC) ) #1 SMP Tue Apr 21 06:46:43 EDT 2015
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.0.0-rc7.v10u2 root=UUID=ff4dfdb7-e24d-4be8-ace6-cbe023625110 ro LANG=en_US.UTF-8 console=ttyS1,115200 intel_iommu=on irqpoll nr_cpus=1 reset_devices cgroup_disable=memory mce=off numa=off udev.children-max=2 panic=10 rootflags=nofail acpi_no_memhotplug disable_cpu_apicid=0 elfcorehdr=867740K
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000001000-0x00000000000953ff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000000095400-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000025000000-0x0000000034f66fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000034fff400-0x0000000034ffffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007f5a2000-0x000000007f61bfff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000007f61d000-0x000000008fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fee0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] e820: last_pfn = 0x35000 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] found SMP MP-table at [mem 0x000f4f80-0x000f4f8f] mapped at [ffff8800000f4f80]
[ 0.000000] Using GB pages for direct mapping
[ 0.000000] init_memory_mapping: [mem 0x000000000fffff]
[ 0.000000] init_memory_mapping: [mem 0x34c00000-0x34dfffff]
[ 0.000000] init_memory_mapping: [mem 0x25000000-0x34bfffff]
[ 0.000000] init_memory_mapping: [mem 0x34e00000-0x34f66fff]
[ 0.000000] RAMDISK: [mem 0x31b67000-0x32ffffff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000F4F00 000024 (v02 HP )
[ 0.000000] ACPI: XSDT 0x000000007F5A8970 0000C4 (v01 HP ProLiant 00000002 Ò? 0000162E)
[ 0.000000] ACPI: FACP 0x000000007F5A8AB0 0000F4 (v03 HP ProLiant 00000002 Ò? 0000162E)
[ 0.000000] ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 32, using default 16 (20150204/tbfadt-699)
[ 0.000000] ACPI: DSDT 0x000000007F5A8BB0 0025E0 (v01 HP DSDT 00000001 INTL 20030228)
[ 0.000000] ACPI: FACS 0x000000007F5A2140 000040
[ 0.000000] ACPI: SPCR 0x000000007F5A2180 000050 (v01 HP SPCRRBSU 00000001 Ò? 0000162E)
[ 0.000000] ACPI: MCFG 0x000000007F5A2200 00003C (v01 HP ProLiant 00000001 00000000)
[ 0.000000] ACPI: HPET 0x000000007F5A2240 000038 (v01 HP ProLiant 00000002 Ò? 0000162E)
[ 0.000000] ACPI: FFFF 0x000000007F5A2280 000064 (v02 HP ProLiant 00000002 Ò? 0000162E)
[ 0.000000] ACPI: SPMI 0x000000007F5A2300 000040 (v05 HP ProLiant 00000001 Ò? 0000162E)
[ 0.000000] ACPI: ERST 0x000000007F5A2340 0001D0 (v01 HP ProLiant 00000001 Ò? 0000162E)
[ 0.000000] ACPI: APIC 0x000000007F5A2AC0 000A76 (v03 HP ProLiant 00000002 00000000)
[ 0.000000] ACPI: SRAT 0x000000007F5A4800 0032B0 (v03 HP Proliant 00000001 Ò? 0000162E)
[ 0.000000] ACPI: FFFF 0x000000007F5A7AC0 000176 (v01 HP ProLiant 00000001 Ò? 0000162E)
[ 0.000000] ACPI: BERT 0x000000007F5A7C40 000030 (v01 HP ProLia000001 Ò? 0000162E)
[ 0.000000] ACPI: HEST 0x000000007F5A7C80 0000BC (v01 HP ProLiant 00000001 Ò? 0000162E)
[ 0.000000] ACPI: DMAR 0x000000007F5A7D40 00015E (v01 HP ProLiant 00000001 Ò? 0000162E)
[ 0.000000] ACPI: SLIT 0x000000007F5A8880 00006C (v01 HP ProLiant 00000001 00000000)
[ 0.000000] ACPI: RASF 0x000000007F5A8940 000030 (v01 HP ProLiant 00000001 00000000)
[ 0.000000] ACPI: SSDT 0x000000007F5AB1C0 000125 (v03 HP CRSPCI0 00000002 HP 00000001)
[ 0.000000] ACPI: SSDT 0x000000007F5AB300 002195 (v01 HP CPU_D 00000001 INTL 20090625)
[ 0.000000] ACPI: SSDT 0x000000007F5AD4C0 0010BB (v01 HP pcc 00000001 INTL 20090625)
[ 0.000000] ACPI: SSDT 0x000000007F5AE580 000377 (v01 HP pmab 00000001 INTL 20090625)
[ 0.000000] ACPI: SSDT 0x000000007F5AE900 015A24 (v01 INTEL PPM RCM 00000001 INTL 20061109)
[ 0.000000] Setting APIC routing to physical x2apic.
[ 0.000000] NUMA turned off
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x0000000034ffffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x34f41000-0x34f66fff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x0000000034ffffff]
[ 0.000000] Normal empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x0000000000094fff]
[ 0.000000] node 0: [mem 0x0000000025000000-0x0000000034f66fff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000034f]
[ 0.000000] ACPI: PM-Timer IO Port: 0x908
[ 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: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 1/0x2 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x04] uid[0x04] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x10] uid[0x06] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 3/0x10 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x12] uid[0x08] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 4/0x12 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x20] uid[0x0a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpuit of 1 almost reached. Keeping one slot for boot cpu. Processor 5/0x20 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x22] uid[0x0c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 6/0x22 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x24] uid[0x0e] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x30] uid[0x10] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 8/0x30 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x32] uid[0x12] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 9/0x32 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x40] uid[0x14] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x42] uid[0x16] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 11/0x42 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x44] uid[0x18] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 12/0x44 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x50] uid[0x1a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus of 1 almost reached. Keeping one slot for boot cpu. Processor 13/0x50 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x52] uid[0x1c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 14/0x52 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x60] uid[0x1e] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 15/0x60 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x62] uid[0x20] enabled) 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 16/0x62 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x64] uid[0x22] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 17/0x64 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x70] uid[0x24] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 18/0x70 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x72] uid[0x26] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x80] uid[0x28] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 20/0x80 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x82] uid[0x2a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus lif 1 almost reached. Keeping one slot for boot cpu. Processor 21/0x82 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x84] uid[0x2c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 22/0x84 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x90] uid[0x2e] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x92] uid[0x30] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 24/0x92 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xa0] uid[0x32] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 25/0xa0 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xa2] uid[0x34] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xa4] uid[0x36] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 27/0xa4 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xb0] uid[0x38] enabled 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 28/0xb0 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xb2] uid[0x3a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 29/0xb2 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xc0] uid[0x3c] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xc2] uid[0x3e] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 31/0xc2 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xc4] uid[0x40] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 32/0xc4 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xd0] uid[0x42] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 33/0xd0 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xd2] u44] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 34/0xd2 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xe0] uid[0x46] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 35/0xe0 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xe2] uid[0x48] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 36/0xe2 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xe4] uid[0x4a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 37/0xe4 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xf0] uid[0x4c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 38/0xf0 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xf2] uid[0x4e] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x100] uid[0x50] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keepne slot for boot cpu. Processor 40/0x100 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x102] uid[0x52] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x104] uid[0x54] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 42/0x104 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x110] uid[0x56] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 43/0x110 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x112] uid[0x58] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 44/0x112 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x120] uid[0x5a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 45/0x120 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x122] uid[0x5c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 46/0x122 ignored 0.000000] ACPI: X2APIC (apic_id[0x124] uid[0x5e] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 47/0x124 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x130] uid[0x60] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x132] uid[0x62] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 almost reached. Keeping one slot for boot cpu. Processor 49/0x132 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x140] uid[0x64] enabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x142] uid[0x66] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 51/0x142 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x144] uid[0x68] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 52/0x144 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x150] uid[0x6a] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x152] uid[0x6c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 54/0x152 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x160] uid[0x6e] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit ofached. Processor 55/0x160 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x162] uid[0x70] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x164] uid[0x72] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 57/0x164 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x170] uid[0x74] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 58/0x170 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x172] uid[0x76] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 59/0x172 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x180] uid[0x78] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 60/0x180 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x182] uid[0x7a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 61/0x182 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x184] uid[0x7c] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x190] uid[0x7e] enabled)
[ 0.000000] ACPI: NS/possible_cpus limit of 1 reached. Processor 63/0x190 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x192] uid[0x80] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 64/0x192 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1a0] uid[0x82] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 65/0x1a0 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1a2] uid[0x84] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 66/0x1a2 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1a4] uid[0x86] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1b0] uid[0x88] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 68/0x1b0 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1b2] uid[0x8a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 69/0x1b2 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1c0] uid[0x8c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 70/0x1c0 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1c2] uid[0x8e] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 71/0x1c2 ignored.
[ 0.000000] ACPIPIC (apic_id[0x1c4] uid[0x90] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 72/0x1c4 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1d0] uid[0x92] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 73/0x1d0 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1d2] uid[0x94] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1e0] uid[0x96] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1e2] uid[0x98] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 76/0x1e2 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1e4] uid[0x9a] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 77/0x1e4 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1f0] uid[0x9c] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 78/0x1f0 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1f2] uid[0x9e] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 79/0x1f2 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x01] uid[0x01] enabled)
[ 0.0] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 80/0x1 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x03] uid[0x03] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 81/0x3 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x05] uid[0x05] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x11] uid[0x07] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 83/0x11 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x13] uid[0x09] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 84/0x13 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x21] uid[0x0b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 85/0x21 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x23] uid[0x0d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 86/0x23 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x25] uid[0x0f] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x31] uid[0x11] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus lif 1 reached. Processor 88/0x31 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x33] uid[0x13] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 89/0x33 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x41] uid[0x15] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x43] uid[0x17] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 91/0x43 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x45] uid[0x19] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 92/0x45 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x51] uid[0x1b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 93/0x51 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x53] uid[0x1d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 94/0x53 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x61] uid[0x1f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 95/0x61 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x63] uid[0x21] enabled)
[ 0.000000] ACPICPUS/possible_cpus limit of 1 reached. Processor 96/0x63 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x65] uid[0x23] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 97/0x65 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x71] uid[0x25] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 98/0x71 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x73] uid[0x27] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x81] uid[0x29] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 100/0x81 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x83] uid[0x2b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 101/0x83 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x85] uid[0x2d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 102/0x85 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x91] uid[0x2f] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x93] uid[0x31] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of ched. Processor 104/0x93 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xa1] uid[0x33] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 105/0xa1 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xa3] uid[0x35] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xa5] uid[0x37] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 107/0xa5 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xb1] uid[0x39] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 108/0xb1 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xb3] uid[0x3b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 109/0xb3 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xc1] uid[0x3d] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0xc3] uid[0x3f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 111/0xc3 ignored.
[ 0.000000]: X2APIC (apic_id[0xc5] uid[0x41] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 112/0xc5 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xd1] uid[0x43] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 113/0xd1 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xd3] uid[0x45] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 114/0xd3 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xe1] uid[0x47] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 115/0xe1 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xe3] uid[0x49] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 116/0xe3 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xe5] uid[0x4b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 117/0xe5 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xf1] uid[0x4d] enabled)
[ 0.000000] ACPI: NR_CPUS/posscpus limit of 1 reached. Processor 118/0xf1 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0xf3] uid[0x4f] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x101] uid[0x51] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 120/0x101 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x103] uid[0x53] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x105] uid[0x55] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 122/0x105 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x111] uid[0x57] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 123/0x111 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x113] uid[0x59] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 124/0x113 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x121] uid[0x5b] enable[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 125/0x121 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x123] uid[0x5d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 126/0x123 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x125] uid[0x5f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 127/0x125 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x131] uid[0x61] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x133] uid[0x63] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 129/0x133 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x141] uid[0x65] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 130/0x141 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x143] uid[0x67] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 131/0x143 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x145] uid[0x69] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 132/0x145 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x151] uid[0x6b] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x153] uid[0x6d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 134/0x153 ignored.
[.000000] ACPI: X2APIC (apic_id[0x161] uid[0x6f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 135/0x161 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x163] uid[0x71] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x165] uid[0x73] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 137/0x165 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x171] uid[0x75] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 138/0x171 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x173] uid[0x77] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 139/0x173 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x181] uid[0x79] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 140/0x181 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x183] uid[0x7b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 141/0x183 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x185] uid[0x7d] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x191] x7f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 143/0x191 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x193] uid[0x81] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 144/0x193 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1a1] uid[0x83] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 145/0x1a1 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1a3] uid[0x85] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 146/0x1a3 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1a5] uid[0x87] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1b1] uid[0x89] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reachedocessor 148/0x1b1 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1b3] uid[0x8b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 149/0x1b3 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1c1] uid[0x8d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 150/0x1c1 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1c3] uid[0x8f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 151/0x1c3 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1c5] uid[0x91] en)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 152/0x1c5 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1d1] uid[0x93] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 153/0x1d1 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1d3] uid[0x95] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1e1] uid[0x97] disabled)
[ 0.000000] ACPI: X2APIC (apic_id[0x1e3] uid[0x99] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 156/0x1e3 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1e5] uid[0x9b] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 157/0x1e5 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1f1] uid[0x9d] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 158/0x1f1 ignored.
[ 0.000000] ACPI: X2APIC (apic_id[0x1f3] uid[0x9f] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 159/0x1f3 ignored.
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[ 0.0] 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[0x00] address[0xfec08000] gsi_base[24])
[ 0.000000] IOAPIC[1]: apic_id 0, version 32, address 0xfec08000, GSI 24-47
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[ 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: 0x8086a201 base: 0xfed00000
[ 0.000000] smpboot: 160 Processors exceeds NR_CPUS limit of 1
[ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x00095000-0x00095fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x00096000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x00100000-0x24ffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x34f67000-fffff]
[ 0.000000] e820: [mem 0x90000000-0xfebfffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 32 pages/cpu @ffff880034c00000 s91544 r8192 d31336 u2097152
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 64485
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.0.0-rc7.v10u2 root=UUID=ff4dfdb7-e24d-4be8-ace6-cbe023625110 ro LANG=en_US.UTF-8 console=ttyS1,115200 intel_iommu=on irqpoll nr_cpus=1 reset_devices cgroup_disable=memory mce=off numa=off udev.children-max=2 panic=10 rootflags=nofail acpi_no_memhotplug disable_cpu_apicid=0 elfcorehdr=867740K
[ 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 memortrol group subsystem
[ 0.000000] PID hash table entries: 1024 (order: 1, 8192 bytes)
[ 0.000000] AGP: Checking aperture...
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] Memory: 216208K/262124K available (6896K kernel code, 1431K rwdata, 3228K rodata, 1704K init, 2688K bss, 45916K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[ 0.000000] NR_IRQS:524544 nr_irqs:256 16
[ 0.000000] Offload RCU callbacks from all CPUs
[ 0.000000] Offload RCU callbacks from CPUs: 0.
[ 0.000000] Spurious LAPIC timer interrupt on cpu 0
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [ttyS1] enabled
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2127.976 MHz processor
[ 0.000047] Calibrating delay loop (skipped), value calculated using timer frequency.. 4255.95 BogoMIPS (lpj=2127976)
0.023316] pid_max: default: 32768 minimum: 301
[ 0.107747] ACPI: Core revision 20150204
[ 0.124207] ACPI: All ACPI Tables successfully acquired
[ 0.127101] Security Framework initialized
[ 0.129328] SELinux: Initializing.
[ 0.131206] Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.134817] Inode-cache hash table entries: 16384 (order: 5, 131072 bytes)
[ 0.138263] Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
[ 0.141663] Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes)
[ 0.145487] Initializing cgroup subsys blkio
[ 0.147716] Initializing cgroup subsys memory
[ 0.150026] Initializing cgroup subsys devices
[ 0.152274] Initializing cgroup subsys freezer
[ 0.154542] Initializing cgroup subsys net_cls
[ 0.156765] Initializing cgroup subsys perf_event
[ 0.159202] Initializing cgroup subsys hugetlb
[ 0.161570] CPU: Physical Processor ID: 5
[ 0.163633] CPU: Processor Core ID: 0
[ 0.166049] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.169168] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.172626] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
[ 0.175214] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[ 0.187331] Freeing SMP alternatives memory: 28K (ffffffff81cf7000 - ffffffff81cfe000)
[ 0.194266] ftrace: allocating 25687 entries in 101 pages
[ 0.219822] dmar: Host address width 40
[ 0.221833] dmar: DRHD base: 0x000000a8000000 flags: 0x1
[ 0.224546] dmar: IOMMU 0: reg_base_addr a8000000 ver 1:0 cap c90780106f0462 ecap f0207e
[ 0.228605] dmar: RMRR base: 0x0000007f7ee000 end: 0x0000007f7effff
[ 0.231867] dmar: RMRR base: 0x0000007f7e7000 end: 0x0000007f7ecfff
[ 0.234987] dmar: RMRR base: 0x0000007f61e000 end: 0x0000007f61ffff
[ 0.238082] dmar: ATSR flags: 0x0
[ 0.239978] IOAPIC id 8 under DRHD base 0xa8000000 IOMMU 0
[ 0.242785] IOAPIC id 0 under DRHD base 0xa8000000 IOMMU 0
[ 0.246481] dmar: DRHD: hling fault status reg 100
[ 0.349441] IR is enabled prior to OS.
[ 0.351373] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.358478] Enabled IRQ remapping in x2apic mode
[ 0.361567] dmar: DRHD: handling fault status reg 100
[ 0.364376] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.478934] smpboot: CPU0: Intel(R) Xeon(R) CPU E7- 2830 @ 2.13GHz (fam: 06, model: 2f, stepping: 02)
[ 0.483937] Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Broken BIOS detected, complain to your hardware vendor.
[ 0.489990] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 38d is 3b0)
[ 0.493809] Intel PMU driver.
[ 0.495258] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
[ 0.498774] ... version: 3
[ 0.500853] ... bit width: 48
[ 0.502933] ... generic registers: 4
[ 0.504964] ... value mask: 0000ffffffffffff
[ 0.507509] ... max period: 000000007fffffff
[ 0.510279] ... fixed-purpose events: 3
[ 0.512325] ... event mask: 000000070000000f
[ 0.516114] x86: Booted up 1 node, 1 CPUs
[ 0.519529] smpboot: Total of 1 processors activated (4255.95 BogoMIPS)
[ 0.522995] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.534122] devtmpfs: initialized
[ 0.540936] evm: security.selinux
[ 0.542772] evm: security.ima
[ 0.544269] evm: security.capability
[ 0.546595] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[ 0.550550] NET: Registered protocol family 16
[ 0.553364] cpuidle: using governor menu
[ 0.555605] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.559406] ACPI: bus type PCI registered
[ 0.561519] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.564911] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
[ 0.569745] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
[ 0.573997] PCI: Using configuration type 1 for base access
[ 0.5786 ACPI: Added _OSI(Module Device)
[ 0.680850] ACPI: Added _OSI(Processor Device)
[ 0.683086] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.685417] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.706354] ACPI: Interpreter enabled
[ 0.708421] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
[ 0.713365] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
[ 0.718130] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20150204/hwxface-580)
[ 0.723058] ACPI: (supports S0 S4 S5)
[ 0.724925] ACPI: Using IOAPIC for interrupt routing
[ 0.727374] HEST: Table parsing has been initialized.
[ 0.730091] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.767868] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-17])
[ 0.771156] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.775307] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME AER PCIeCapability]
[ 0.779941] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
[ 0.784455] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[ 0.788329] i PNP0A08:00: _OSC: platform willing to grant []
[ 0.891424] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
[ 0.894761] PCI host bridge to bus 0000:00
[ 0.897068] pci_bus 0000:00: root bus resource [bus 00-17]
[ 0.899989] pci_bus 0000:00: root bus resource [mem 0x90000000-0xa8ffffff window]
[ 0.903653] pci_bus 0000:00: root bus resource [io 0x1000-0x4fff window]
[ 0.907150] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
[ 0.910915] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
[ 0.914323] pci_bus 0000:00: root bus resource [io 0x0d00-0x0fff window]
[ 0.917675] pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfed03fff window]
[ 0.921593] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[ 0.925298] pci_bus 0000:00: root bus resource [io 0x03b0-0x03bb window]
[ 0.929189] pci_bus 0000:00: root bus resource [io 0x03c0-0x03df window]
[ 0.932588] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.941729] pci 0000:01.0: PCI bridge to [bus 0e-10]
[ 1.045151] pci 0000:00:02.0: PCI bridge to [bus 14]
[ 1.049674] pci 0000:00:03.0: PCI bridge to [bus 04]
[ 1.052466] pci 0000:00:04.0: PCI bridge to [bus 15]
[ 1.055151] pci 0000:00:05.0: PCI bridge to [bus 11-13]
[ 1.057854] pci 0000:00:06.0: PCI bridge to [bus 16]
[ 1.060670] pci 0000:00:07.0: PCI bridge to [bus 0b-0d]
[ 1.063558] pci 0000:00:08.0: PCI bridge to [bus 17]
[ 1.066269] pci 0000:00:09.0: PCI bridge to [bus 08-0a]
[ 1.069207] pci 0000:00:0a.0: PCI bridge to [bus 05-07]
[ 1.071976] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 1.076664] pci 0000:00:1c.4: PCI bridge to [bus 02]
[ 1.079601] pci 0000:00:1e.0: PCI bridge to [bus 01] (subtractive decode)
[ 1.084220] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 7 *10 11), disabled.
[ 1.088180] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *7 10 11), disabled.
[ 1.091931] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 7 10 11) *0, disabled.
[ 1.095623] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 10 11) *0, disabled.
[ 1.099511] ACPI: PCI Interrupt Link [LNKE] (IRQs *5 7 10 11), disabled.
[ 1.103136] ACPI: PCI Interrupt Link [LNKF] (IRQs 5 7 10 11) *0, disabled.
[ 1.106969] ACPI: PCI Interrupt Link [LNKG] (IRQs 5 7 *10 11), disabled.
[ 1.110765] ACPI: PCI Interrupt Link [LNKH] (IRQs 5 *7 10 11), disabled.
[ 1.114646] APIC: Disabling requested cpu. Processor 160/0x0 ignored.
[ 1.117850] ACPI: Unable to map lapic to logical cpu number
[ 1.120994] ACPI: NR_CPUossible_cpus limit of 1 reached. Processor 161/0x1 ignored.
[ 1.225227] ACPI: Unable to map lapic to logical cpu number
[ 1.228133] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 162/0x2 ignored.
[ 1.232134] ACPI: Unable to map lapic to logical cpu number
[ 1.235029] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 163/0x3 ignored.
[ 1.239188] ACPI: Unable to map lapic to logical cpu number
[ 1.242277] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 164/0x10 ignored.
[ 1.246373] ACPI: Unable to map lapic to logical cpu number
[ 1.249521] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 165/0x11 ignored.
[ 1.253540] ACPI: Unable to map lapic to logical cpu number
[ 1.256555] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 166/0x12 ignored.
[ 260720] ACPI: Unable to map lapic to logical cpu number
[ 1.363783] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 167/0x13 ignored.
[ 1.367966] ACPI: Unable to map lapic to logical cpu number
[ 1.370987] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 168/0x20 ignored.
[ 1.374986] ACPI: Unable to map lapic to logical cpu number
[ 1.377991] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 169/0x21 ignored.
[ 1.381976] ACPI: Unable to map lapic to logical cpu number
[ 1.384979] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 170/0x22 ignored.
[ 1.389360] ACPI: Unable to map lapic to logical cpu number
[ 1.392221] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 171/0x23 ignored.
[ 1.396196] ACPI: Unable to map lapic to logical cpu number
[ 1.399371] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 172/0x30 ignored.
[ 1.403447] ACPI: Unabto map lapic to logical cpu number
[ 1.506481] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 173/0x31 ignored.
[ 1.510666] ACPI: Unable to map lapic to logical cpu number
[ 1.513672] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 174/0x32 ignored.
[ 1.517645] ACPI: Unable to map lapic to logical cpu number
[ 1.520763] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 175/0x33 ignored.
[ 1.524898] ACPI: Unable to map lapic to logical cpu number
[ 1.527997] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 176/0x42 ignored.
[ 1.532432] ACPI: Unable to map lapic to logical cpu number
[ 1.535286] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 177/0x43 ignored.
[ 1.539452] ACPI: Unable to map lapic to logical cpu number
[ 1.542294] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 178/0x44 ignored.
[ 1.546293] ACPI: Unable to map lapic to logical cpu number
[ 1.549247] ACPI: NR_CPUS/pible_cpus limit of 1 reached. Processor 179/0x45 ignored.
[ 1.653180] ACPI: Unable to map lapic to logical cpu number
[ 1.656127] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 180/0x50 ignored.
[ 1.660406] ACPI: Unable to map lapic to logical cpu number
[ 1.663267] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 181/0x51 ignored.
[ 1.668060] ACPI: Unable to map lapic to logical cpu number
[ 1.671039] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 182/0x52 ignored.
[ 1.675082] ACPI: Unable to map lapic to logical cpu number
[ 1.678113] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 183/0x53 ignored.
[ 1.682187] ACPI: Unable to mlapic to logical cpu number
[ 1.785217] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 184/0x60 ignored.
[ 1.789445] ACPI: Unable to map lapic to logical cpu number
[ 1.792388] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 185/0x61 ignored.
[ 1.796638] ACPI: Unable to map lapic to logical cpu number
[ 1.799777] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 186/0x62 ignored.
[ 1.803853] ACPI: Unable to map lapic togical cpu number
[ 1.906889] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 187/0x63 ignored.
[ 1.911095] ACPI: Unable to map lapic to logical cpu number
[ 1.914089] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 188/0x64 ignored.
[ 1.918362] ACPI: Unable to map lapic to logical cpu number
[ 1.921412] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 189/0x65 ignored.
[ 1.925418] ACPI: Unable to map lapic to logical cpu number
[ 1.928413] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 190/0x70 ignored.
[ 1.932616] ACPI: Unable to map lapic to logical cpu number
[ 1.935546] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 191/0x71 ignored.
[ 1.939770] ACPI: Unable to map lapic to logical cpu number
[ 1.942915] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 192/0x80 ignored.
[ 1.947098] ACPI: Unable to map lapic to logical cpu number
[ 1.950231] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 193/0x81 ignored.
[ 1.954308] ACPI: Unable to map lapic to logical cpu number
[ 1.957318] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 194/0x82 ignored.
[ 1.961549] ACPI: Unable to map lapic to logical cpu number
[ 1.964475] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 195/0x83 ignored.
[ 1.968832] ACPI: Unable to map lapic togical cpu number
[ 2.071943] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 196/0x84 ignored.
[ 2.076038] ACPI: Unable to map lapic to logical cpu number
[ 2.079131] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 197/0x85 ignored.
[ 2.083208] ACPI: Unable to map lapic to logical cpu number
[ 2.086362] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 198/0x92 ignored.
[ 2.090767] ACPI: Unable to map lapic to logical cpu number
[ 2.093778] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 199/0x93 ignored.
[ 2.097900] ACPI: Unable to map lapic to logical cpu number
[ 2.100966] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 200/0xa0 ignored.
[ 2.105048] ACPI: Unable to map lapic to logical cpu number
[ 2.108067] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 201/0xa1 ignored.
[ 2.112093] ACPI: Unable to map lapic to logical cpu number
[ 2.115229] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 202/0xa4 ignored.
[ 2.119442] ACPI: Unable to map lapic to logical cpu number
[ 2.122481] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 203/0xa5 ignored.
[ 2.126488] ACPI: Unable to map lapic to logical cpu number
[ 2.129657] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 204/0xb0 ignored.
[ 2.133688] ACPI: Unable to map lapic to logical cpu number
[ 2.136609] ACPI: NR_CPUS/possible_cpus limit of 1 reed. Processor 205/0xb1 ignored.
[ 2.240861] ACPI: Unable to map lapic to logical cpu number
[ 2.243783] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 206/0xb2 ignored.
[ 2.248006] ACPI: Unable to map lapic to logical cpu number
[ 2.250927] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 207/0xb3 ignored.
[ 2.254959] ACPI: Unable to map lapic to logical cpu number
[ 2.258148] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 208/0xc2 ignored.
[ 2.262358] ACPI: Unable to map lapic to logical cpu number
[ 2.265388] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 209/0xc3 ignored.
[ 2.269611] ACPI: Unable to map lapic to logical cpu number
[ 2.272598] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 210/0xc4 ignored.
[ 2.276633] ACPI: Unable to map lapic to logical cpu number
[ 2.279736] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 211/0xc5 ignored.
[ 2.283782] ACPI: Unable to map lapic to logical cpu number
[ 2.286676] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 212/0xd0 ignored.
[ 2.290942] ACPI: Unable to map lapic to logical cpu number
[ 2.293893] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 213/0xd1nored.
[ 2.398262] ACPI: Unable to map lapic to logical cpu number
[ 2.401282] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 214/0xd2 ignored.
[ 2.405308] ACPI: Unable to map lapic to logical cpu number
[ 2.408412] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 215/0xd3 ignored.
[ 2.412568] ACPI: Unable to map lapic to logical cpu number
[ 2.415443] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 216/0xe0 ignored.
[ 2.419587] ACPI: Unable to map lapic to logical cpu number
[ 2.422555] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 217/0xe1 ignored.
[ 2.426680] ACPI: Unable to map lapic to logical cpu number
[ 2.429778] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 218/0xe2 ignored.
[ 2.433665] ACPI: Unable to map lapic to logical cpu number
[ 2.436611] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 219/0xe3 ignored.
[ 2.440724] ACPI: Unable to map lapic to logical cpu nur
[ 2.543718] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 220/0xe4 ignored.
[ 2.548011] ACPI: Unable to map lapic to logical cpu number
[ 2.550883] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 221/0xe5 ignored.
[ 2.554764] ACPI: Unable to map lapic to logical cpu number
[ 2.557674] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 222/0xf0 ignored.
[ 2.561804] ACPI: Unable to map lapic to logical cpu number
[ 2.564723] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 223/0xf1 ignored.
[ 2.568944] ACPI: Unable to map lapic to logical cpu number
[ 2.571964] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 224/0x100 ignored.
[ 2.576009] ACPI: Unable to map lapic to logical cpu number
[ 2.579193] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 225/0x101 ignored.
[ 2.584101] ACPI: Unable to map lapic to logical cpu number
[ 2.587249] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 226/0x104 ignored.
[ 2.591417] ACPI: Unable to map lapic to logical cpu number
[ 2.594420] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 227/0x105 ignored.
[ 2.598566] ACPI: Unable to map lapic to logical cpu number
[ 2.601594] A: NR_CPUS/possible_cpus limit of 1 reached. Processor 228/0x110 ignored.
[ 2.705820] ACPI: Unable to map lapic to logical cpu number
[ 2.708932] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 229/0x111 ignored.
[ 2.713065] ACPI: Unable to map lapic to logical cpu number
[ 2.716040] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 230/0x112 ignored.
[ 2.720188] ACPI: Unable to map lapic to logical cpu num
[ 2.823123] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 231/0x113 ignored.
[ 2.827404] ACPI: Unable to map lapic to logical cpu number
[ 2.830490] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 232/0x120 ignored.
[ 2.834610] ACPI: Unable to map lapic to logical cpu number
[ 2.837646] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 233/0x121 ignored.
[ 2.841947] ACPI: Unable to map lapic to logical cpu number
[ 2.844953] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 234/0x122 ignored.
[ 2.849244] ACPI: Unable to map lapic to logical cpu number
[ 2.852155] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 235/0x123 ignored.
[ 2.856275] ACPI: Unable to map lapic to logical cpu number
[ 2.859437] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 236/0x124 ignored.
[ 2.863589] ACPI: Unable to map lapic to logical cpu number
[ 2.866608] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 237/0x125 ignored.
[ 2.870824] ACPI: Unable to map lapic to logical cpu number
[ 2.873939] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 238/0x132 ignored.
[ 2.878453] ACPI: Unable to map lapic to logical cpu number
[ 2.881494] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 239/0x133 ignored.
[ 2.885559] ACPI: Unable to map lapic to logical cpu number
[ 2.888748] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 240/0x141 ignored.
[ 2.892861] ACPI: Unable to map lapic to logical cpu number
[ 2.895813] A: NR_CPUS/possible_cpus limit of 1 reached. Processor 241/0x142 ignored.
[ 3.000049] ACPI: Unable to map lapic to logical cpu number
[ 3.003101] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 242/0x143 ignored.
[ 3.007198] ACPI: Unable to map lapic to logical cpu number
[ 3.010322] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 243/0x144 ignored.
[ 3.014479] ACPI: Unable to map lapic to logical cpu number
[ 3.017541] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 244/0x145 ignored.
[ 3.021587] ACPI: Unable to map lapic to logical cpu number
[ 3.024637] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 24x152 ignored.
[ 3.128944] ACPI: Unable to map lapic to logical cpu number
[ 3.131997] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 246/0x153 ignored.
[ 3.136063] ACPI: Unable to map lapic to logical cpu number
[ 3.139225] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 247/0x160 ignored.
[ 3.143410] ACPI: Unable to map lapic to logical cpu number
[ 3.146433] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 248/0x161 ignored.
[ 3.150618] ACPI: Unable to map lapic to logical cpu number
[ 3.153772] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 249/0x164 ignored.
[ 3.157946] ACPI: Unable to map lapic to logical cpu number
[ 3.160942] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 250/0x165 ignored.
[ 3.165053] ACPI: Unable to map lapic to logical cpu number
[ 3.168156] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 251/0x170 ignored.
[ 3.172395] ACPI: Unable to map lapic to logical cpu number
[ 3.175319] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 252/0x171 ignored.
[ 3.179573] ACPI: Unable to map lapic to logical cpu number
[ 3.182523] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 253/0x172 ignored.
[ 3.186806] ACPI: Unable to map lapic to logical cpu number
[ 3.189904] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 254/0x173 ignored.
[ 3.194013] ACPI: Unable to map lapic to logical cpu number
[ 3.197019] AC NR_CPUS/possible_cpus limit of 1 reached. Processor 255/0x180 ignored.
[ 3.301546] ACPI: Unable to map lapic to logical cpu number
[ 3.304416] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 256/0x181 ignored.
[ 3.308843] ACPI: Unable to map lapic to logical cpu number
[ 3.311814] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 257/0x182 ignored.
[ 3.315899] ACPI: Unable to map lapic to logical cpu number
[ 3.319015] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 258/0x183 ignored.
[ 3.323265] ACPI: Unable to map lapic to logical cpu number
[ 3.326303] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 259/0x190 ignored.
[ 3.330773] ACPI: Unable to map lapic to logical cpu number
[ 3.333744] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 260/0x191 ignored.
[ 3.337943] ACPI: Unable to map lapic to logical cpu number
[ 3.340935] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 261/0x192 ignored.
[ 3.345077] ACPI: Unable to map lapic to logical cpu number
[ 3.348217] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 262/0x193 ignored.
[ 3.352535] ACPI: Unable to map lapic to logical cpu number
[ 55428] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 263/0x1a0 ignored.
[ 3.459690] ACPI: Unable to map lapic to logical cpu number
[ 3.462651] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 264/0x1a1 ignored.
[ 3.466927] ACPI: Unable to map lapic to logical cpu number
[ 3.469920] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 265/0x1a2 ignored.
[ 3.474014] ACPI: Unable to map lapic to logical cpu number
[ 3.476972] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 266/0x1a3 ignored.
[ 3.481142] ACPI: Unable to map lapic to logical cpu number
[ 3.484292] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 267/0x1b0 ignored.
[ 3.488659] ACPI: Unable to map lapic to logical cpu number
[ 3.491549] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 268/0x1b1 ignored.
[ 3.495583] ACPI: Unable to map lapic to logical cpu number
[ 3.498530] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 269/0x1b2 ignored.
[ 3.502502] ACPI: Unable to map lapic to logical cpu number
[ 3.505348] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processo70/0x1b3 ignored.
[ 3.609720] ACPI: Unable to map lapic to logical cpu number
[ 3.612705] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 271/0x1c0 ignored.
[ 3.616848] ACPI: Unable to map lapic to logical cpu number
[ 3.619978] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 272/0x1c1 ignored.
[ 3.624019] ACPI: Unable to map lapic to logical cpu number
[ 3.627032] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 273/0x1c2 ignored.
[ 3.631295] ACPI: Unable to map lapic to logical cpu number
[ 3.634297] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 274/0x1c3 ignored.
[ 3.638550] ACPI: Unable to map lapic to logical cpu number
[ 3.641428] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 275/0x1c4 ignored.
[ 3.645643] ACPI: Unable to map lapic to logical cpu number
[ 3.648722] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 276/0x1c5 ignored.
[ 3.652954] ACPI: Unable to map lapic to logical cpu number
[ 35944] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 277/0x1d0 ignored.
[ 3.760189] ACPI: Unable to map lapic to logical cpu number
[ 3.763230] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 278/0x1d1 ignored.
[ 3.767748] ACPI: Unable to map lapic to logical cpu number
[ 3.771001] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 279/0x1e2 ignored.
[ 3.775096] ACPI: Unable to map lapic to logical cpu number
[ 3.778247] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 280/0x1e3 ignored.
[ 3.782342] ACPI: Unable to map lapic to logical cpu number
[ 3.785302] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 281/0x1e4 ignored.
[ 3.789802] ACPI: Unable to map lapic to logical cpu number
[ 3.792721] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 282/0x1e5 ignored.
[ 3.796839] ACPI: Unable to map lapic to logical cpu number
[ 3.799943] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 283/0x1f0 ignored.
[ 3.804066] ACPI: Unable to map lapic to logical cpu number
[ 3.807069] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor4/0x1f1 ignored.
[ 3.911786] ACPI: Unable to map lapic to logical cpu number
[ 3.914762] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 285/0x1f2 ignored.
[ 3.918950] ACPI: Unable to map lapic to logical cpu number
[ 3.921976] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 286/0x1f3 ignored.
[ 3.926056] ACPI: Unable to map lapic to logical cpu number
[ 3.929271] vgaarb: setting as boot device: PCI:0000:01:03.0
[ 3.932161] vgaarb: device added: PCI:0000:01:03.0,decodes=io+mem,owns=io+mem,locks=none
[ 3.936158] vgaarb: loaded
[ 3.937766] vgaarb: bridge control possible 0000:01:03.0
[ 3.940455] SCSI subsystem initialized
[ 3.942413] ACPI: bus type USB registered
[ 3.944469] usbcore: registered new interface driver usbfs
[ 3.947390] usbcore: registered new interface driver hub
[ 3.950057] usbcore: registered new device driver usb
[ 3.952756] PCI: Using ACPI for IRQ routing
[ 3.958378] PCI: Discovered peer bus 7c
[ 3.960513] PCI host bre to bus 0000:7c
[ 4.062620] pci_bus 0000:7c: root bus resource [io 0x0000-0xffff]
[ 4.065931] pci_bus 0000:7c: root bus resource [mem 0x00000000-0xfffffffffff]
[ 4.069605] pci_bus 0000:7c: No busn resource found for root bus, will use [bus 7c-ff]
[ 4.073762] PCI: Discovered peer bus 82
[ 4.075745] PCI host bridge to bus 0000:82
[ 4.077909] pci_bus 0000:82: root bus resource [io 0x0000-0xffff]
[ 4.080938] pci_bus 0000:82: root bus resource [mem 0x00000000-0xfffffffffff]
[ 4.084399] pci_bus 0000:82: No busn resource found for root bus, will use [bus 82-ff]
[ 4.092214] NetLabel: Initializing
[ 4.093979] NetLabel: domain hash size = 128
[ 4.096195] NetLabel: protocols = UNLABELED CIPSOv4
[ 4.098749] NetLabel: unlabeled traffic allowed by default
[ 4.101673] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[ 4.104547] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[ 4.109610] Switched to clocksource hpet
[ 4.123361] pnp: PnP ACPI init
[ 4.125310] system 00:00: [io 0x0408-0x040f] has been reserved
[ 4.128462] system 00:00: [io 0x04d0-0x04d1] has been reserved
[ 4.131470] system:00: [io 0x0700-0x071f] has been reserved
[ 4.234648] system 00:00: [io 0x0880-0x08ff] has been reserved
[ 4.237734] system 00:00: [io 0x0900-0x097f] has been reserved
[ 4.240715] system 00:00: [io 0x0cd0-0x0cd3] has been reserved
[ 4.243734] system 00:00: [io 0x0cd4-0x0cd7] has been reserved
[ 4.246692] system 00:00: [io 0x0f50-0x0f58] has been reserved
[ 4.249755] system 00:00: [io 0x0ca0-0x0ca1] has been reserved
[ 4.252748] system 00:00: [io 0x0ca4-0x0ca5] has been reserved
[ 4.255696] system 00:00: [io 0x02f8-0x02ff] has been reserved
[ 4.258796] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[ 4.262158] system 00:00: [mem 0xfe000000-0xfebfffff]s been reserved
[ 4.365698] system 00:00: [mem 0xa8000000-0xa8001fff] could not be reserved
[ 4.381088] pnp: PnP ACPI: found 6 devices
[ 4.390157] pci 0000:0e:00.0: BAR 6: assigned [mem 0x90040000-0x9007ffff pref]
[ 4.393807] pci 0000:00:01.0: PCI bridge to [bus 0e-10]
[ 4.396523] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 4.399661] pci 0000:00:01.0: bridge window [mem 0x90000000-0x900fffff]
[ 4.403138] pci 0000:00:02.0: PCI bridge to [bus 14]
[ 4.405621] pci 0000:00:03.0: PCI bridge to [bus 04]
[ 4.408265] pci 0000:00:03.0: bridge window [mem 0x90200000-0x99ffffff]
[ 4.411617] pci 0000:00:04.0: PCI bridge to [bus 15]
[ 4.414151] pci 0000:00:05.0: PCI bridge to [bus 11-13]
[ 4.416] pci 0000:00:06.0: PCI bridge to [bus 16]
[ 4.519375] pci 0000:00:07.0: PCI bridge to [bus 0b-0d]
[ 4.521898] pci 0000:00:08.0: PCI bridge to [bus 17]
[ 4.524468] pci 0000:00:09.0: PCI bridge to [bus 08-0a]
[ 4.527213] pci 0000:00:0a.0: PCI bridge to [bus 05-07]
[ 4.529742] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 4.532298] pci 0000:02:00.2: BAR 6: assigned [mem 0x9a020000-0x9a02ffff pref]
[ 4.535744] pci 0000:00:1c.4: PCI bridge to [bus 02]
[ 4.538465] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
[ 4.541459] pci 0000:00:1c.4: bridge window [mem 0x9a000000-0x9a1fffff]
[ 4.544828] pci 0000:01:03.0: BAR 6: assigned [mem 0x9a220000-0x9a23ffff pref]
[ 4.548574] pci 0000:00:1e.0: PCI bridge to [bus 01]
[ 4.550979] pci 0000:00:1e.0: bridge window [io 0x2000-0x2fff]
[ 4.553900] pci 0000:00:1e.0: bridge window [mem 0x9a200000-0x9a2fffff]
[ 4.557448] pci 0000:00:1e.0: bridge window [mem 0xa0000000-0xa7ffffff 64bit pref]
[ 4.561387] NET: Registered protocol family 2
[ 4.563861] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[ 4.567595] TCP bind hash table entries: 2048 (order: 3, 32768 bytes)
[ 4.670810] TCP: Hash tables configured (established 2048 bind 2048)
[ 4.674044] TCP: reno registered
[ 4.675732] UDP hash table entries: 256 (order: 1, 8192 bytes)
[ 4.678819] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[ 4.681999] NET: Registered protocol family 1
[ 4.704826] Unpacking initramfs...
[ 5.141840] Freeing initrd memory: 21092K (ffff880031b67000 - ffff880033000000)
[ 5.146200] Translation is enabled prior to OS.
[ 5.148424] IOMMU Copying translate tables from panicked kernel
[ 5.151346] IOMMU: root_cache:0xffff88002d28d000 phys:0x0083eadeb000
[ 5.154255] IOMMU: dmar0 using Queued invalidation
[ 5.156496] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[ 5.160723] microcode: CPU0 sig=0x206f2, pf=0x4, revision=0x37
[ 5.163751] microcode: Microcode Update Driver: v2.00 <tigran@xxxxxxxxxxxxxxxxxxxx>, Peter Oruba
[ 5.168674] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 5.171593] Initialise system trusted keyring
[ 5.173632] audit: initializing netlink subsys (disabled)
[ 5.176234] audit: type=2000 audit(1429615318.566:1): initialized
[ 5.179974] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 5.184866] zpool: loaded
[ 5.186598] zbud: loaded
[ 5.188090] VFS: Disk quotas dquot_6.5.2
[ 5.189975] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 5.193565] Key type big_key registered
[ 5.196202] alg: No test for stdrng (krng)
[ 5.198369] NET: Registered protocol family 38
[ 5.200487] Key type asymmetric registered
[ 5.202377] Asymmetric key parser 'x509' registered
[ 5.204633] bounce: pool size: 64 pages
[ 5.206502] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[ 5.210005] io scheduler noop registered
[ 5.211784] io scheduler deadline registered (default)
[ 5.214161] io scheduler cfq registered
[ 5.216998] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 5.219582] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 5.223001] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 5.226367] ACPI: Power Button [PWRF]
[ 5.228674] thermal LNXTHERM:00: registered as thermal_zone0
[ 5.231294] ACPI: Thermal Zone [THM0] (8 C)
[ 5.233301] ERST: Failed to get Error Log Address Range.
[ 5.235852] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[ 5.239005] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 5.262546] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 5.286658] serial8250: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[ 5.290712] Non-volatile memory driver v1.3
[ 5.292780] Linux agpgart interface v0.103
[ 5.295203] rdac: device handler registered
[ 5.297301] hp_sw: device handler registered
[ 5.299263] emc: device handler registered
[ 5.301156] alua: device handler registered
[ 5.303127] libphy: Fixed MDIO Bus: probed
[ 5.305308] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 5.308399] ehci-pci: EHCI PCI platform driver
[ 5.310585] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 5.313301] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[ 5.316689] ehci-pci 0000:00:1d.7: debug port 1
[ 5.322931] ehci-pci 0000:00:1d.7: irq 20, io mem 0x9a300000
[ 5.331115] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 5.333860] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 5.337050] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.340314] usb usb1: Product: EHCI Host Controller
[ 5.342543] usb usb1: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[ 5.345352] usb usb1: SerialNumber: 0000:00:1d.7
[ 5.347706] hub 1-00: USB hub found
[ 5.449401] hub 1-0:1.0: 8 ports detected
[ 5.451530] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 5.454534] ohci-pci: OHCI PCI platform driver
[ 5.456636] uhci_hcd: USB Universal Host Controller Interface driver
[ 5.459613] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 5.462081] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 5.465393] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 5.467791] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00001000
[ 5.470498] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 5.473666] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.477039] usb usb2: Product: UHCI Host Controller
[ 5.479257] usb usb2: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[ 5.482062] usb usb2: SerialNumber: 0000:00:1d.0
[ 5.484253] hub 2-0:1.0: USB hub found
[ 5.486013] hub 2-0:1.0: 2 ports detected
[ 5.488181] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 5.490652] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 5.494036] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 5.496280] uhci_hcd 0000:00:1d.1: irq 23, io base 0x00001020
[ 5.499126] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 5.502221] usb usb3: New USB device ings: Mfr=3, Product=2, SerialNumber=1
[ 5.605558] usb usb3: Product: UHCI Host Controller
[ 5.607960] usb usb3: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[ 5.610957] usb usb3: SerialNumber: 0000:00:1d.1
[ 5.613322] hub 3-0:1.0: USB hub found
[ 5.615084] hub 3-0:1.0: 2 ports detected
[ 5.617235] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 5.619686] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 5.622999] uhci_hcd 0000:00:1d.2: detected 2 ports
[ 5.625235] uhci_hcd 0000:00:1d.2: irq 22, io base 0x00001040
[ 5.628126] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 5.631199] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.634438] usb usb4: Product: UHCI Host Controller
[ 5.636796] usb usb4: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[ 5.639585] usb usb4: SerialNumber: 0000:00:1d.2
[ 5.641784] hub 4-0:1.0: USB hub found
[ 5.643510] hub 4-0:1.0: 2 ports detected
[ 5.645522] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[ 5.648077] uhci_hcd 0000:00:1d.3: neSB bus registered, assigned bus number 5
[ 5.751587] uhci_hcd 0000:00:1d.3: detected 2 ports
[ 5.753822] uhci_hcd 0000:00:1d.3: irq 23, io base 0x00001060
[ 5.756591] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[ 5.759728] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 5.762974] usb usb5: Product: UHCI Host Controller
[ 5.765191] usb usb5: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[ 5.768113] usb usb5: SerialNumber: 0000:00:1d.3
[ 5.770313] hub 5-0:1.0: USB hub found
[ 5.772053] hub 5-0:1.0: 2 ports detected
[ 5.774049] uhci_hcd 0000:02:00.4: UHCI Host Controller
[ 5.776706] uhci_hcd 0000:02:00.4: new USB bus registered, assigned bus number 6
[ 5.780052] uhci_hcd 0000:02:00.4: detected 8 ports
[ 5.782261] uhci_hcd 0000:02:00.4: port count misdetected? forcing to 2 ports
[ 5.785494] uhci_hcd 0000:02:00.4: irq 17, io base 0x00003c00
[ 5.788384] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[ 5.791920] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=
[ 5.879881] usb usb6: Product: UHCI Host Controller
[ 5.897999] usb usb6: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[ 5.901082] usb usb6: SerialNumber: 0000:02:00.4
[ 5.903512] hub 6-0:1.0: USB hub found
[ 5.905393] hub 6-0:1.0: 2 ports detected
[ 5.907782] usbcore: registered new interface driver usbserial
[ 5.910970] usbcore: registered new interface driver usbserial_generic
[ 5.914211] usbserial: USB Serial support registered for generic
[ 5.917341] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12
[ 5.923224] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 5.925937] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 5.928678] mousedev: PS/2 mouse device common for all mice
[ 5.931527] rtc_cmos 00:05: RTC can wake from S4
[ 5.934036] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[ 5.937257] rtc_cmos 00:05: alarms up to one year, y3k, 114 bytes nm, hpet irqs
[ 6.048339] hidraw: raw HID events driver (C) Jiri Kosina
[ 6.051294] usbcore: registered new interface driver usbhid
[ 6.054207] usbhid: USB HID core driver
[ 6.056509] drop_monitor: Initializing network drop monitor service
[ 6.060047] TCP: cubic registered
[ 6.061789] Initializing XFRM netlink socket
[ 6.064078] NET: Registered protocol family 10
[ 6.066669] NET: Registered protocol family 17
[ 6.069158] mce: Unable to init device /dev/mcelog (rc: -5)
[ 6.072290] Loading compiled-in X.509 certificates
[ 6.076001] Loaded X.509 cert 'Magrathea: Glacier signing key: 4b59f1b27134175306af599322e4df28ae58e86e'
[ 6.080953] registered taskstats version 1
[ 6.085646] Key type trusted registered
[ 6.092098] Key type encrypted registered
[ 6.094286] ima: No TPM chip found, activating TPM-bypass!
[ 6.097282] evm: HMAC attrs: 0x1
[ 6.099861] rtc_cmos 00:05: setting system clock to 2015-04-21 11:22:07 UTC (1429615327)
[ 6.105817] Freeing unused kernel memory: 1704K (ffffffff81b4d000 - ffffffff81cf7000)
[ 6.153384] systemd[1]: systemd 208 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[ 6.159884] systemd[1]: Running in initial RAM disk.
[ 6.162360] tsc: Refined TSC clocksource calibration: 2127.999 MHz

Welcome to Red Hat Enterprise Linux Server 7.1 (Maipo) dracut-033-240.el7 (Initramfs)!

[ 6.167872] systemd[1]: Set hostname to <localhost.localdomain>.
[ 6.171929] random: systemd urandom read with 3 bits of entropy available
[ 6.202528] systemd[1]: Expecting device dev-disk-by\x2duuid-d1b01ec1\x2d03e9\x2d4d8b\x2db63d\x2d68d75d9c8a99.device...
Expecting device dev-disk-by\x2duuid-d1b01ec1\x2d03e...c8a99.device...
[ 6.210798] systemd[1]: Expecting device dev-disk-by\x2duuid-ff4dfdb7\x2de24d\x2d4be8\x2dace6\x2dcbe023625110.device...
Expecting device dev-disk-by\x2duuid-ff4dfdb7\x2de24...25110.device...
[ 6.218792] systemd[1]: Starting -.slice.
[ OK ] Created slice -.slice.
[ 6.222778] systemd[1]: Created slice -.slice.
[ 6.225214] systemd[1]: Starting System Se.
[ 6.327652] usb 6-1: new full-speed USB device number 2 using uhci_hcd
[ OK ] Created slice System Slice.
[ 6.332735] systemd[1]: Created slice System Slice.
[ 6.335483] systemd[1]: Starting Slices.
[ OK ] Reached target Slices.
[ 6.339730] systemd[1]: Reached target Slices.
[ 6.342241] systemd[1]: Starting Timers.
[ OK ] Reached target Timers.
[ 6.345724] systemd[1]: Reached target Timers.
[ 6.348265] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[ 6.352290] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[ 6.356271] systemd[1]: Starting Paths.
[ OK ] Reached target Paths.
[ 6.359718] systemd[1]: Reached target Paths.
[ 6.362113] systemd[1]: Starting Journal Socket.
[ OK ] Listening on Journal Socket.
[ 6.366719] systemd[1]: Listening on Journal Socket.
[ 6.369547] systemd[1]: Started dracut ask for additional cmdline parameters.
[ 6.373314] systemd[1]: Starting dracut cmdline hook...
Starting dracut cmdline hook...
[ 6.378175] systemd[1]: Started Load Kernel Modules.
[ 6.384006] systemd[1]: Starting Journal Service...
Starting Journal Servic[ 6.468085] usb 6-1: New USB device found, idVendor=03f0, idProduct=7029
e...
[ 6.527581] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 6.567152] usb 6-1: Product: Virtual Keyboard
[ 6.591990] usb 6-1: Manufacturer: HP
[ OK ] Started Journal Service.
[ 6.618618] systemd[1]: Started Journal Service.
[ OK ] Listening on udev Kernel Socket.
[ OK ] Listening on udev Control Socket.
[ OK ] Reached target Sockets.
Starting Create list of required static device nodes...rrent kernel...
[ OK ] Reached target Swap.
[ OK ] Reached target Local File Systems.
[ OK ] Started dracut cmdline hook.
Starting dracut pre-udev hook...
[ OK ] Started Create list of required static device nodes ...current kernel.
Starting Create static device nodes in /dev...
[ OK ] Started Create static device nodes in /dev.
[ OK ] Started dracut pre-udev hook.
Starting udev Kernel Device Manager...
[ 6.715818] input: HP Virtual Keyboard as /devices/pci0000:00/0000:00:1c.4/0000:02:00.4/usb6/6-1/6-1:1.0/0003:03F0:7029.0001/input/input4
[ 6.723298] systemd-udevd[187]: starting version 208
[ OK ] Started udev Kernel Device Manager.
Starting udev Coldplug all Devices...
[ OK ] Started udev Coldplug all Devices.
Starting dracut initqueue hook...
[ OK ] Reached target System Initialization.
[ OK ] Reached target Basic System.
Mounting Configuration File System...
[ OK ] Mounted Configuration File System.
[ 6.792573] hid-generic 0003:03F0:7029.0001: input,hidraw0: USB HID v1.01 Keyboard [HP Virtual Keyboard ] on usb-0000:02:00.4-1/input0
[ 6.811629] input: HP Virtual Keyboard as /devices/pci0000:00/0000:00:1c.4/0000:02:00.4/usb6/6-1/6-1:1.1/0003:03F0:7029.0002/input/input5
[ 6.824588] hid-generic 0003:03F0:7029.0002: input,hidraw1: USB HID v1.01 Mouse [HP Virtual Keyboard ] on usb-0000:02:00.4-1/input1
[ 6.886561] QLogic/NetXen Network Driver v4.0.82
[ 6.906596] netxen_nic 0000:04:00.0: 2MB memory map
[ 6.932702] qla2xxx [0000:00:00.0]-0005: : QLogic Fibre Channel HBA Driver: 8.07.00.16-k.
[ 6.946526] qla2xxx [0000:0e:00.0]-001d: : Found an ISP2432 irq 27 iobase 0xffffc900000f2000.
[ 6.965457] qla2xxx [0000:0e:00.0]-0034:0: MSI-X: Unsupported ISP 2432 SSVID/SSDID (0x103C,0x7040).
[ 7.168348] Switched to clocksource tsc
[ 7.382362] scsi host0: qla2xxx
[ 7.387419] qla2xxx [0000:0e:00.0]-00fb:0: QLogic HPAE311A - PCI-Express 4Gb Fibre Channel HBA.
[ 7.392146] qla2xxx [0000:0e:00.0]-00fc:0: ISP2432: PCIe (2.5GT/s x4) @ 0000:0e:00.0 hdma- host#=0 fw=7.03.00 (9496).
[ 8.245133] qla2xxx [0000:0e:00.0]-500a:0: LOOP UP detected (4 Gbps).
[ 9.414771] scsi 0:0:0:0: RAID HP HSV300 1000 PQ: 0 ANSI: 5
[ 9.424001] scsi 0:0:1:0: RAID HP HSV300 1100 PQ: 0 ANSI: 5
[ 9.432998] scsi 0:0:2:0: RAID HP HSV300 1100 PQ: 0 ANSI: 5
[ 9.441994] scsi 0:0:3:0: RAID HP HSV300 1100 PQ: 0 ANSI: 5
[ 9.450982] scsi 0:0:4:0: RAID HP HSV300 1100 PQ: 0 ANSI: 5
[ 9.465840] scsi 0:0:5:0: Direct-Access HP P2000 G3 FC T240 PQ: 0 ANSI: 5
[ 9.474304] scsi 0:0:5:0: alua: supports implicit TPGS
[ 9.478355] scsi 0:0:5:0: alua: port group 00 rel port 01
[ 9.484485] scsi 0:0:5:0: alua: port group 00 state N non-preferred supports tOlusNA
[ 9.488608] scsi 0:0:5:0: alua: Attached
[ 9.582305] netxen_nic 0000:04:00.0: loading firmware from phanfw.bin
[ 9.935234] netxen_nic 0000:04:00.0: Gen2 strapping detected
[ 10.391273] scsi 0:0:6:0: Enclosure HP P2000 G3 FC T240 PQ: 0 ANSI: 5
[ 10.400649] scsi 0:0:6:0: alua: supports implicit TPGS
[ 10.404207] scsi 0:0:6:0: alua: port group 01 rel port 05
[ 10.411971] scsi 0:0:6:0: alua: port group 01 state N non-preferred supports tOlusNA
[ 10.416031] scsi 0:0:6:0: alua: Attached
[ 10.427917] scsi 0:0:7:0: Enclosure HP P2000 G3 FC T240 PQ: 0 ANSI: 5
[ 10.436877] scsi 0:0:7:0: alua: supports implicit TPGS
[ 10.441836] scsi 0:0:7:0: alua: port group 01 rel port 06
[ 10.444875] scsi 0:0:7:0: alua: port group 01 state N non-preferred supports tOlusNA
[ 10.448776] scsi 0:0:7:0: alua: Attached
[ 10.456855] scsi 0:0:8:0: RAID HP HSV300 1100 PQ: 0 ANSI: 5
[ 10.471144] scsi 0:0:9:0: Enclosure HP P2000 G3 FC T240 PQ: 0 ANSI: 5
[ 10.478102] scsi 0:0:9:0: alua: supports implicit TPGS
[ 10.482761] scsi 0:0:9:0: alua: port group 00 rel port 02
[ 10.485810] scsi 0:0:9:0: alua: port group 00 state N non-preferred supports tOlusNA
[ 10.489689] scsi 0:0:9:0: alua: Attached
[ 11.440524] netxen_nic 0000:04:00.0: using 64-bit dma mask
[ 11.483553] netxen_nic: NX3031 Gigabit Ethernet Board S/N ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ  D Chip rev 0x42
[ 11.488650] netxen_nic 0000:04:00.0: Driver v4.0.82, firmware v4.0.590 [legacy]
[ 11.492585] netxen_nic 0000:04:00.0: using msi-x interrupts
[ 11.499216] netxen_nic 0000:04:00.0: eth0: GbE port initialized
[ 11.504093] netxen_nic 0000:04:00.1: 2MB memory map
[ 11.506722] netxen_nic 0000:04:00.1: using 64-bit dma mask
[ 11.553538] netxen_nic 0000:04:00.1: Driver v4.0.82, firmware v4.0.590 [legacy]
[ 11.557612] netxen_nic 0000:04:00.1: using msi-x interrupts
[ 11.564129] netxen_nic 0000:04:00.1: eth1: GbE port initialized
[ 11.568999] netxen_nic 0000:04:00.2: 2MB memory map
[ 11.571718] netxen_nic 0000:04:00.2: using 64-bit dma mask
[ 11.624496] netxen_nic 0000:04:00.2: Driver v4.0.82, firmware v4.0.590 [legacy]
[ 11.628297] netxen_nic 0000:04:00.2: using msi-x interrupts
[ 11.634693] netxen_nic 0000:04:00.2: eth2: GbE port initialized
[ 11.639682] netxen_nic 0000:04:00.3: 2MB memory map
[ 11.642448] netxen_nic 0000:04:00.3: using 64-bit dma mask
[ 11.695465] netxen_nic 0000:04:00.3: Driver v4.0.82, firmware v4.0.590 [legacy]
[ 11.699338] netxen_nic 0000:04:00.3: using msi-x interrupts
[ 11.705745] netxen_nic 0000:04:00.3: eth3: GbE port initialized
[ 11.752835] hpwdt 0000:02:00.0: HP Watchdog Timer Driver: NMI decoding initialized, allow kernel dump: ON (default = 1/ON)
[ 11.766773] hpwdt 0000:02:00.0: HP Watchdog Timer Driver: 1.3.3, timer margin: 30 seconds (nowayout=0).
[ 11.826933] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[ 11.832398] [drm] Initialized drm 1.1.0 20060810
[ 11.889283] [drm] radeon kernel modesetting enabled.
[ 11.895068] [drm] initializing kernel modesetting (RV100 0x1002:0x515E 0x103C:0x31FB).
[ 11.900515] [drm] register mmio base: 0x9A200000
[ 11.902988] [drm] register mmio size: 65536
[ 11.905521] radeon 0000:01:03.0: VRAM: 128M 0x00000000A0000000 - 0x00000000A7FFFFFF (64M used)
[ 11.909828] radeon 0000:01:03.0: GTT: 512M 0x0000000080000000 - 0x000000009FFFFFFF
[ 11.913899] [drm] Detected VRAM RAM=128M, BAR=128M
[ 11.916582] [drm] RAM width 16bits DDR
[ 11.918862] [TTM] Zone kernel: Available graphics memory: 119516 kiB
[ 11.922057] [TTM] Initializing pool allocator
[ 11.924477] [TTM] Initializing DMA pool allocator
[ 11.926837] [drm] radeon: 64M of VRAM memory ready
[ 11.929243] [drm] radeon: 512M of GTT memory ready.
[ 11.931809] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 11.955844] [drm] PCI GART of 512M enabled (table at 0x00000000FFF00000).
[ 11.959504] radeon 0000:01:03.0: WB disabled
[ 11.961680] radeon 0000:01:03.0: fence driver on ring 0 use gpu addr 0x0000000080000000 and cpu addr 0xffff880032231000
[ 11.967407] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 11.970909] [drm] Driver supports precise vblank timestamp query.
[ 11.974217] [drm] radeon: irq initialized.
[ 11.976333] [drm] Loading R100 Microcode
[ 11.979008] [drm] radeon: ring at 0x0000000080001000
[ 11.981668] [drm] ring test succeeded in 1 usecs
[ 11.994294] scsi host1: ata_piix
[ 12.002713] scsi host2: ata_piix
[ 12.004739] ata1: SATA max UDMA/133 cmd 0x10a0 ctl 0x10b0 bmdma 0x1080 irq 17
[ 12.008293] ata2: SATA max UDMA/133 cmd 0x10a8 ctl 0x10b4 bmdma 0x1088 irq 17
[ 12.485087] [drm] ib test succeeded in 0 usecs
[ 12.493315] [drm] No TV DAC info found in BIOS
[ 12.495850] [drm] Radeon Display Connectors
[ 12.497964] [drm] Connector 0:
[ 12.499473] [drm] VGA-1
[ 12.500937] [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
[ 12.504047] [drm] Encoders:
[ 12.505527] [drm] CRT1: INTERNAL_DAC1
[ 12.507566] [drm] Connector 1:
[ 12.509223] [drm] VGA-2
[ 12.510541] [drm] DDC: 0x6c 0x6c 0x6c 0x6c 0x6c 0x6c 0x6c 0x6c
[ 12.513585] [drm] Encoders:
[ 12.515230] [drm] CRT2: INTERNAL_DAC2
[ 12.559137] [drm] fb mappable at 0xA0040000
[ 12.561325] [drm] vram apper at 0xA0000000
[ 12.563407] [drm] size 786432
[ 12.565149] [drm] fb depth is 8
[ 12.566762] [drm] pitch is 1024
[ 12.570172] fbcon: radeondrmfb (fb0) is primary device
[ 12.720419] ata2.00: SATA link down (SStatus 4 SControl 300)
[ 12.720436] ata2.01: SATA link down (SStatus 4 SControl 300)
[ 12.728289] Console: switching to colour frame buffer device 128x48
[ 12.747581] radeon 0000:01:03.0: fb0: radeondrmfb frame buffer device
[ 12.750796] radeon 0000:01:03.0: registered panic notifier
[ 12.753860] [drm] Initialized radeon 2.41.0 20080528 for 0000:01:03.0 on minor 0
[ 13.093496] sd 0:0:5:0: [sda] 74218624 512-byte logical blocks: (37.9 GB/35.3 GiB)
[ 13.097951] sd 0:0:5:0: [sda] Write Protect is off
[ 13.100596] sd 0:0:5:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 13.107429] sda: sda1 sda2
[ 13.110205] sd 0:0:5:0: [sda] Attached SCSI disk
[ 17.918786] ata1.00: link is slow to respond, please be patient (ready=-19)
[ 22.051040] ata1.00: SRST failed (errno=-16)
[ 27.860585] ata1.00: link is slow to respond, please be patient (ready=-19)
[ 32.094796] ata1.00: SRST failed (errno=-16)
[ 37.904341] ata1.00: link is slow to respond, please be patient (ready=-19)
[ 67.117995] ata1.00: SRST failed (errno=-16)
[ 72.162865] ata1.00: SRST failed (errno=-16)
[ 72.165071] ata1.00: reset failed, giving up
[ 75.180740] netxen_nic 0000:04:00.1 eno1: renamed from eth1
[ 75.184074] netxen_nic 0000:04:00.0 enp4s0f0: renamed from eth0
[ 75.187382] systemd-udevd[224]: renamed network interface eth1 to eno1
[ 75.191095] systemd-udevd[225]: renamed network interface eth0 to enp4s0f0
[ 75.197623] netxen_nic 0000:04:00.2 eno2: renamed from eth2
[ 75.202358] netxen_nic 0000:04:00.3 eno3: renamed from eth3
[ 75.205304] systemd-udevd[224]: renamed network interface eth2 to eno2
[ 75.208864] systemd-udevd[225]: renamed network interface eth3 to eno3
[ OK ] Found device P2000_G3_FC.
[ OK ] Found device P2000_G3_FC.
Starting File System Check on /dev/disk/by-uuid/ff4d...cbe023625110...
[ OK ] Started dracut initqueue hook.
[ OK ] Reached target Initrd Root File System.
Starting Reload Configuration from the Real Root...
[ OK ] Reached target Remote File Systems (Pre).
[ OK ] Reached target Remote File Systems.
systemd-fsck[234]: /sbin/fsck.xfs: XFS file system.
[ OK ] Started File System Check on /dev/disk/by-uuid/ff4df...6-cbe023625110.
Mounting /sysroot...
[ OK ] Started Reload Configuration from the Real Root.
[ OK ] Reached target Initrd File Systems.
[ OK ] Reached target Initrd Default Target.
[ 75.405512] SGI XFS with ACLs, security attributes, no debug enabled
[ 75.411315] XFS (sda1): Mounting V4 Filesystem
[ 75.465758] XFS (sda1): Starting recovery (logdev: internal)
[ 75.491423] XFS (sda1): Ending recovery (logdev: internal)
kdump: dump target is /dev/sda1
kdump: saving to /sysroot//var/crash/127.0.0.1-2015.04.21-07:23:17/
kdump: saving vmcore-dmesg.txt
kdump: saving vmcore-dmesg.txt complete
kdump: saving vmcore

Excluding unnecessary pages : [ 0.0 %] /
Excluding unnecessary pages : [100.0 %] |
Excluding unnecessary pages : [100.0 %] \
Excluding unnecessary pages : [100.0 %] -
Excluding unnecessary pages : [100.0 %] /
Excluding unnecessary pages : [100.0 %] |
Excluding unnecessary pages : [ 0.0 %] \
Excluding unnecessary pages : [100.0 %] -
Excluding unnecessary pages : [100.0 %] /[ 77.225989] random: nonblocking pool is initialized

Copying data : [ 9.7 %] |
Copying data : [ 29.1 %] \
Excluding unnecessary pages : [100.0 %] -
Copying data : [ 40.2 %] /
Excluding unnecessary pages : [100.0 %] |
Copying data : [ 50.4 %] \
Excluding unnecessary pages : [100.0 %] -
Excluding unnecessary pages : [ 79.4 %] /
Excluding unnecessary pages : [100.0 %] |
Copying data : [ 70.8 %] \
Excluding unnecessary pages : [100.0 %] -
Copying data : [ 79.8 %] /
Copying data : [100.0 %] |
Copying data : [100.0 %] \
kdump: saving vmcore complete
Stopping Kdump Vmcore Save Service...
[ OK ] Stopped Kdump Vmcore Save Service.
Stopping dracut pre-pivot and cleanup hook...
[ OK ] Stopped dracut pre-pivot and cleanup hook.
[ OK ] Stopped target Remote File Systems.
[ OK ] Stopped target Remote File Systems (Pre).
Unmounting /sysroot...
[ OK ] Stopped target Initrd Default Target.
[ OK ] Stopped target Basic System.
[ OK ] Stopped target Slices.
[ OK ] Removed slice -.slice.
[ OK ] Stopped target Paths.
[ OK ] Reached target Shutdown.
[ 84.495034] hpwdt: Unexpected close, not stopping watchdog!
Sending SIGTERM to remaining processes...
[ 84.503892] systemd-journald[148]: Received SIGTERM
Sending SIGKILL to remaining processes...
Hardware watchdog 'HP iLO2+ HW Watchdog Timer', version 0
Unmounting file systems.
Unmounting /sys/kernel/config.
All filesystems unmounted.
[ 84.536471] sd 0:0:5:0: [sda] Synchronizing SCSI cache

Deactivating swaps.
All swaps deactivated.
Detaching loop devices.
All loop devices detached.
Detaching DM devices.
All DM devices detached.
Storage is finalized.
[ 84.571509] reboot: Restarting system
[ 84.591115] reboot: machine restart
00:00.0 Host bridge: Intel Corporation 5520/5500/X58 I/O Hub to ESI Port (rev 22)
00:01.0 PCI bridge: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 1 (rev 22)
00:02.0 PCI bridge: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 2 (rev 22)
00:03.0 PCI bridge: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 3 (rev 22)
00:04.0 PCI bridge: Intel Corporation 5520/X58 I/O Hub PCI Express Root Port 4 (rev 22)
00:05.0 PCI bridge: Intel Corporation 5520/X58 I/O Hub PCI Express Root Port 5 (rev 22)
00:06.0 PCI bridge: Intel Corporation 5520/X58 I/O Hub PCI Express Root Port 6 (rev 22)
00:07.0 PCI bridge: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 7 (rev 22)
00:08.0 PCI bridge: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 8 (rev 22)
00:09.0 PCI bridge: Intel Corporation 7500/5520/5500/X58 I/O Hub PCI Express Root Port 9 (rev 22)
00:0a.0 PCI bridge: Intel Corporation 7500/5520/5500/X58 I/O Hub PCI Express Root Port 10 (rev 22)
00:14.0 PIC: Intel Corporation 7500/5520/5500/X58 I/O Hub System Management Registers (rev 22)
00:1c.0 PCI bridge: Intel Corporation 82801JI (ICH10 Family) PCI Express Root Port 1
00:1c.4 PCI bridge: Intel Corporation 82801JI (ICH10 Family) PCI Express Root Port 5
00:1d.0 USB controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #1
00:1d.1 USB controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #2
00:1d.2 USB controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #3
00:1d.3 USB controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #6
00:1d.7 USB controller: Intel Corporation 82801JI (ICH10 Family) USB2 EHCI Controller #1
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 90)
00:1f.0 ISA bridge: Intel Corporation 82801JIB (ICH10) LPC Interface Controller
00:1f.2 IDE interface: Intel Corporation 82801JI (ICH10 Family) 4 port SATA IDE Controller #1
01:03.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] ES1000 (rev 02)
02:00.0 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Slave Instrumentation & System Support (rev 04)
02:00.2 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Management Processor Support and Messaging (rev 04)
02:00.4 USB controller: Hewlett-Packard Company Integrated Lights-Out Standard Virtual USB Controller (rev 01)
04:00.0 Ethernet controller: NetXen Incorporated NX3031 Multifunction 1/10-Gigabit Server Adapter (rev 42)
04:00.1 Ethernet controller: NetXen Incorporated NX3031 Multifunction 1/10-Gigabit Server Adapter (rev 42)
04:00.2 Ethernet controller: NetXen Incorporated NX3031 Multifunction 1/10-Gigabit Server Adapter (rev 42)
04:00.3 Ethernet controller: NetXen Incorporated NX3031 Multifunction 1/10-Gigabit Server Adapter (rev 42)
0e:00.0 Fibre Channel: QLogic Corp. ISP2432-based 4Gb Fibre Channel to PCI Express HBA (rev 03)
7c:00.0 Unassigned class [ff00]: Hewlett-Packard Company Device 403c (rev 20)
7c:08.0 Unassigned class [ff00]: Hewlett-Packard Company Device 403c (rev 20)
82:00.0 Unassigned class [ff00]: Hewlett-Packard Company Device 403c (rev 20)
82:08.0 Unassigned class [ff00]: Hewlett-Packard Company Device 403c (rev 20)