All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-10  8:42 ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: iommu, linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, zhen-hual, rwright

This patchset is an update of Bill Sumner's patchset, implements a fix for:
If a kernel boots with intel_iommu=on on a system that supports intel vt-d, 
when a panic happens, the kdump kernel will boot with these faults:

    dmar: DRHD: handling fault status reg 102
    dmar: DMAR:[DMA Read] Request device [01:00.0] fault addr fff80000
    DMAR:[fault reason 01] Present bit in root entry is clear

    dmar: DRHD: handling fault status reg 2
    dmar: INTR-REMAP: Request device [[61:00.0] fault index 42
    INTR-REMAP:[fault reason 34] Present field in the IRTE entry is clear

On some system, the interrupt remapping fault will also happen even if the 
intel_iommu is not set to on, because the interrupt remapping will be enabled 
when x2apic is needed by the system.

The cause of the DMA fault is described in Bill's original version, and the 
INTR-Remap fault is caused by a similar reason. In short, the initialization 
of vt-d drivers causes the in-flight DMA and interrupt requests get wrong 
response.

To fix this problem, we modifies the behaviors of the intel vt-d in the 
crashdump kernel:

For DMA Remapping:
1. To accept the vt-d hardware in an active state,
2. Do not disable and re-enable the translation, keep it enabled.
3. Use the old root entry table, do not rewrite the RTA register.
4. Malloc and use new context entry table, copy data from the old ones that
   used by the old kernel.
5. Keep using the old page tables before driver is loaded.
6. After device driver is loaded, when it issues the first dma_map command, 
   free the dmar_domain structure for this device, and generate a new one, so 
   that the device can be assigned a new and empty page table. 
7. When a new context entry table is generated, we also save its address to 
   the old root entry table.

For Interrupt Remapping:
1. To accept the vt-d hardware in an active state,
2. Do not disable and re-enable the interrupt remapping, keep it enabled.
3. Use the old interrupt remapping table, do not rewrite the IRTA register.
4. When ioapic entry is setup, the interrupt remapping table is changed, and 
   the updated data will be stored to the old interrupt remapping table.

Advantages of this approach:
1. All manipulation of the IO-device is done by the Linux device-driver
   for that device.
2. This approach behaves in a manner very similar to operation without an
   active iommu.
3. Any activity between the IO-device and its RMRR areas is handled by the
   device-driver in the same manner as during a non-kdump boot.
4. If an IO-device has no driver in the kdump kernel, it is simply left alone.
   This supports the practice of creating a special kdump kernel without
   drivers for any devices that are not required for taking a crashdump. 
5. Minimal code-changes among the existing mainline intel vt-d code.

Summary of changes in this patch set:
1. Added some useful function for root entry table in code intel-iommu.c
2. Added new members to struct root_entry and struct irte;
3. Functions to load old root entry table to iommu->root_entry from the memory 
   of old kernel.
4. Functions to malloc new context entry table and copy the data from the old
   ones to the malloced new ones.
5. Functions to enable support for DMA remapping in kdump kernel.
6. Functions to load old irte data from the old kernel to the kdump kernel.
7. Some code changes that support other behaviours that have been listed.
8. In the new functions, use physical address as "unsigned long" type, not 
   pointers.

Original version by Bill Sumner:
    https://lkml.org/lkml/2014/1/10/518
    https://lkml.org/lkml/2014/4/15/716
    https://lkml.org/lkml/2014/4/24/836

Zhenhua's updates:
    https://lkml.org/lkml/2014/10/21/134
    https://lkml.org/lkml/2014/12/15/121
    https://lkml.org/lkml/2014/12/22/53
    https://lkml.org/lkml/2015/1/6/1166
    https://lkml.org/lkml/2015/1/12/35
    https://lkml.org/lkml/2015/3/19/33

Changelog[v10]:
    1. Do not use CONFIG_CRASH_DUMP and is_kdump_kernel().
       Use one flag which stores the te and ir status in last kernel:
           iommu->pre_enabled_trans
           iommu->pre_enabled_ir

Changelog[v9]:
    1. Add new function iommu_attach_domain_with_id.
    2. Do not copy old page tables, keep using the old ones.
    3. Remove functions:
           intel_iommu_did_to_domain_values_entry
           intel_iommu_get_dids_from_old_kernel
           device_to_domain_id
           copy_page_addr
           copy_page_table
           copy_context_entry
           copy_context_entry_table
    4. Add new function device_to_existing_context_entry.

Changelog[v8]:
    1. Add a missing __iommu_flush_cache in function copy_page_table.

Changelog[v7]:
    1. Use __iommu_flush_cache to flush the data to hardware.

Changelog[v6]:
    1. Use "unsigned long" as type of physical address.
    2. Use new function unmap_device_dma to unmap the old dma.
    3. Some small incorrect bits order for aw shift.

Changelog[v5]:
    1. Do not disable and re-enable traslation and interrupt remapping. 
    2. Use old root entry table.
    3. Use old interrupt remapping table.
    4. New functions to copy data from old kernel, and save to old kernel mem.
    5. New functions to save updated root entry table and irte table.
    6. Use intel_unmap to unmap the old dma;
    7. Allocate new pages while driver is being loaded.

Changelog[v4]:
    1. Cut off the patches that move some defines and functions to new files.
    2. Reduce the numbers of patches to five, make it more easier to read.
    3. Changed the name of functions, make them consistent with current context
       get/set functions.
    4. Add change to function __iommu_attach_domain.

Changelog[v3]:
    1. Commented-out "#define DEBUG 1" to eliminate debug messages.
    2. Updated the comments about changes in each version.
    3. Fixed: one-line added to Copy-Translations patch to initialize the iovad
          struct as recommended by Baoquan He [bhe@redhat.com]
          init_iova_domain(&domain->iovad, DMA_32BIT_PFN);

Changelog[v2]:
    The following series implements a fix for:
    A kdump problem about DMA that has been discussed for a long time. That is,
    when a kernel panics and boots into the kdump kernel, DMA started by the
    panicked kernel is not stopped before the kdump kernel is booted and the
    kdump kernel disables the IOMMU while this DMA continues.  This causes the
    IOMMU to stop translating the DMA addresses as IOVAs and begin to treat
    them as physical memory addresses -- which causes the DMA to either:
        (1) generate DMAR errors or 
        (2) generate PCI SERR errors or 
        (3) transfer data to or from incorrect areas of memory. Often this 
            causes the dump to fail.

Changelog[v1]:
    The original version.

Changed in this version:
1. Do not disable and re-enable traslation and interrupt remapping. 
2. Use old root entry table.
3. Use old interrupt remapping table.
4. Use "unsigned long" as physical address.
5. Use intel_unmap to unmap the old dma;

Baoquan He <bhe@redhat.com> helps testing this patchset.
Takao Indoh <indou.takao@jp.fujitsu.com> gives valuable suggestions.

Li, Zhen-Hua (10):
  iommu/vt-d: New function to attach domain with id
  iommu/vt-d: Items required for kdump
  iommu/vt-d: Function to get old context entry
  iommu/vt-d: functions to copy data from old mem
  iommu/vt-d: Add functions to load and save old re
  iommu/vt-d: datatypes and functions used for kdump
  iommu/vt-d: enable kdump support in iommu module
  iommu/vt-d: assign new page table for dma_map
  iommu/vt-d: Copy functions for irte
  iommu/vt-d: Use old irte in kdump kernel

 drivers/iommu/intel-iommu.c         | 518 ++++++++++++++++++++++++++++++++++--
 drivers/iommu/intel_irq_remapping.c |  96 ++++++-
 include/linux/intel-iommu.h         |  16 ++
 3 files changed, 605 insertions(+), 25 deletions(-)

-- 
2.0.0-rc0


^ permalink raw reply	[flat|nested] 99+ messages in thread

* [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-10  8:42 ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: iommu, linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, zhen-hual, rwright

This patchset is an update of Bill Sumner's patchset, implements a fix for:
If a kernel boots with intel_iommu=on on a system that supports intel vt-d, 
when a panic happens, the kdump kernel will boot with these faults:

    dmar: DRHD: handling fault status reg 102
    dmar: DMAR:[DMA Read] Request device [01:00.0] fault addr fff80000
    DMAR:[fault reason 01] Present bit in root entry is clear

    dmar: DRHD: handling fault status reg 2
    dmar: INTR-REMAP: Request device [[61:00.0] fault index 42
    INTR-REMAP:[fault reason 34] Present field in the IRTE entry is clear

On some system, the interrupt remapping fault will also happen even if the 
intel_iommu is not set to on, because the interrupt remapping will be enabled 
when x2apic is needed by the system.

The cause of the DMA fault is described in Bill's original version, and the 
INTR-Remap fault is caused by a similar reason. In short, the initialization 
of vt-d drivers causes the in-flight DMA and interrupt requests get wrong 
response.

To fix this problem, we modifies the behaviors of the intel vt-d in the 
crashdump kernel:

For DMA Remapping:
1. To accept the vt-d hardware in an active state,
2. Do not disable and re-enable the translation, keep it enabled.
3. Use the old root entry table, do not rewrite the RTA register.
4. Malloc and use new context entry table, copy data from the old ones that
   used by the old kernel.
5. Keep using the old page tables before driver is loaded.
6. After device driver is loaded, when it issues the first dma_map command, 
   free the dmar_domain structure for this device, and generate a new one, so 
   that the device can be assigned a new and empty page table. 
7. When a new context entry table is generated, we also save its address to 
   the old root entry table.

For Interrupt Remapping:
1. To accept the vt-d hardware in an active state,
2. Do not disable and re-enable the interrupt remapping, keep it enabled.
3. Use the old interrupt remapping table, do not rewrite the IRTA register.
4. When ioapic entry is setup, the interrupt remapping table is changed, and 
   the updated data will be stored to the old interrupt remapping table.

Advantages of this approach:
1. All manipulation of the IO-device is done by the Linux device-driver
   for that device.
2. This approach behaves in a manner very similar to operation without an
   active iommu.
3. Any activity between the IO-device and its RMRR areas is handled by the
   device-driver in the same manner as during a non-kdump boot.
4. If an IO-device has no driver in the kdump kernel, it is simply left alone.
   This supports the practice of creating a special kdump kernel without
   drivers for any devices that are not required for taking a crashdump. 
5. Minimal code-changes among the existing mainline intel vt-d code.

Summary of changes in this patch set:
1. Added some useful function for root entry table in code intel-iommu.c
2. Added new members to struct root_entry and struct irte;
3. Functions to load old root entry table to iommu->root_entry from the memory 
   of old kernel.
4. Functions to malloc new context entry table and copy the data from the old
   ones to the malloced new ones.
5. Functions to enable support for DMA remapping in kdump kernel.
6. Functions to load old irte data from the old kernel to the kdump kernel.
7. Some code changes that support other behaviours that have been listed.
8. In the new functions, use physical address as "unsigned long" type, not 
   pointers.

Original version by Bill Sumner:
    https://lkml.org/lkml/2014/1/10/518
    https://lkml.org/lkml/2014/4/15/716
    https://lkml.org/lkml/2014/4/24/836

Zhenhua's updates:
    https://lkml.org/lkml/2014/10/21/134
    https://lkml.org/lkml/2014/12/15/121
    https://lkml.org/lkml/2014/12/22/53
    https://lkml.org/lkml/2015/1/6/1166
    https://lkml.org/lkml/2015/1/12/35
    https://lkml.org/lkml/2015/3/19/33

Changelog[v10]:
    1. Do not use CONFIG_CRASH_DUMP and is_kdump_kernel().
       Use one flag which stores the te and ir status in last kernel:
           iommu->pre_enabled_trans
           iommu->pre_enabled_ir

Changelog[v9]:
    1. Add new function iommu_attach_domain_with_id.
    2. Do not copy old page tables, keep using the old ones.
    3. Remove functions:
           intel_iommu_did_to_domain_values_entry
           intel_iommu_get_dids_from_old_kernel
           device_to_domain_id
           copy_page_addr
           copy_page_table
           copy_context_entry
           copy_context_entry_table
    4. Add new function device_to_existing_context_entry.

Changelog[v8]:
    1. Add a missing __iommu_flush_cache in function copy_page_table.

Changelog[v7]:
    1. Use __iommu_flush_cache to flush the data to hardware.

Changelog[v6]:
    1. Use "unsigned long" as type of physical address.
    2. Use new function unmap_device_dma to unmap the old dma.
    3. Some small incorrect bits order for aw shift.

Changelog[v5]:
    1. Do not disable and re-enable traslation and interrupt remapping. 
    2. Use old root entry table.
    3. Use old interrupt remapping table.
    4. New functions to copy data from old kernel, and save to old kernel mem.
    5. New functions to save updated root entry table and irte table.
    6. Use intel_unmap to unmap the old dma;
    7. Allocate new pages while driver is being loaded.

Changelog[v4]:
    1. Cut off the patches that move some defines and functions to new files.
    2. Reduce the numbers of patches to five, make it more easier to read.
    3. Changed the name of functions, make them consistent with current context
       get/set functions.
    4. Add change to function __iommu_attach_domain.

Changelog[v3]:
    1. Commented-out "#define DEBUG 1" to eliminate debug messages.
    2. Updated the comments about changes in each version.
    3. Fixed: one-line added to Copy-Translations patch to initialize the iovad
          struct as recommended by Baoquan He [bhe@redhat.com]
          init_iova_domain(&domain->iovad, DMA_32BIT_PFN);

Changelog[v2]:
    The following series implements a fix for:
    A kdump problem about DMA that has been discussed for a long time. That is,
    when a kernel panics and boots into the kdump kernel, DMA started by the
    panicked kernel is not stopped before the kdump kernel is booted and the
    kdump kernel disables the IOMMU while this DMA continues.  This causes the
    IOMMU to stop translating the DMA addresses as IOVAs and begin to treat
    them as physical memory addresses -- which causes the DMA to either:
        (1) generate DMAR errors or 
        (2) generate PCI SERR errors or 
        (3) transfer data to or from incorrect areas of memory. Often this 
            causes the dump to fail.

Changelog[v1]:
    The original version.

Changed in this version:
1. Do not disable and re-enable traslation and interrupt remapping. 
2. Use old root entry table.
3. Use old interrupt remapping table.
4. Use "unsigned long" as physical address.
5. Use intel_unmap to unmap the old dma;

Baoquan He <bhe@redhat.com> helps testing this patchset.
Takao Indoh <indou.takao@jp.fujitsu.com> gives valuable suggestions.

Li, Zhen-Hua (10):
  iommu/vt-d: New function to attach domain with id
  iommu/vt-d: Items required for kdump
  iommu/vt-d: Function to get old context entry
  iommu/vt-d: functions to copy data from old mem
  iommu/vt-d: Add functions to load and save old re
  iommu/vt-d: datatypes and functions used for kdump
  iommu/vt-d: enable kdump support in iommu module
  iommu/vt-d: assign new page table for dma_map
  iommu/vt-d: Copy functions for irte
  iommu/vt-d: Use old irte in kdump kernel

 drivers/iommu/intel-iommu.c         | 518 ++++++++++++++++++++++++++++++++++--
 drivers/iommu/intel_irq_remapping.c |  96 ++++++-
 include/linux/intel-iommu.h         |  16 ++
 3 files changed, 605 insertions(+), 25 deletions(-)

-- 
2.0.0-rc0

^ permalink raw reply	[flat|nested] 99+ messages in thread

* [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-10  8:42 ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: jerry.hoemann, tom.vaden, rwright, linux-pci, kexec, iommu,
	lisa.mitchell, linux-kernel, alex.williamson, zhen-hual, ddutile,
	doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6

This patchset is an update of Bill Sumner's patchset, implements a fix for:
If a kernel boots with intel_iommu=on on a system that supports intel vt-d, 
when a panic happens, the kdump kernel will boot with these faults:

    dmar: DRHD: handling fault status reg 102
    dmar: DMAR:[DMA Read] Request device [01:00.0] fault addr fff80000
    DMAR:[fault reason 01] Present bit in root entry is clear

    dmar: DRHD: handling fault status reg 2
    dmar: INTR-REMAP: Request device [[61:00.0] fault index 42
    INTR-REMAP:[fault reason 34] Present field in the IRTE entry is clear

On some system, the interrupt remapping fault will also happen even if the 
intel_iommu is not set to on, because the interrupt remapping will be enabled 
when x2apic is needed by the system.

The cause of the DMA fault is described in Bill's original version, and the 
INTR-Remap fault is caused by a similar reason. In short, the initialization 
of vt-d drivers causes the in-flight DMA and interrupt requests get wrong 
response.

To fix this problem, we modifies the behaviors of the intel vt-d in the 
crashdump kernel:

For DMA Remapping:
1. To accept the vt-d hardware in an active state,
2. Do not disable and re-enable the translation, keep it enabled.
3. Use the old root entry table, do not rewrite the RTA register.
4. Malloc and use new context entry table, copy data from the old ones that
   used by the old kernel.
5. Keep using the old page tables before driver is loaded.
6. After device driver is loaded, when it issues the first dma_map command, 
   free the dmar_domain structure for this device, and generate a new one, so 
   that the device can be assigned a new and empty page table. 
7. When a new context entry table is generated, we also save its address to 
   the old root entry table.

For Interrupt Remapping:
1. To accept the vt-d hardware in an active state,
2. Do not disable and re-enable the interrupt remapping, keep it enabled.
3. Use the old interrupt remapping table, do not rewrite the IRTA register.
4. When ioapic entry is setup, the interrupt remapping table is changed, and 
   the updated data will be stored to the old interrupt remapping table.

Advantages of this approach:
1. All manipulation of the IO-device is done by the Linux device-driver
   for that device.
2. This approach behaves in a manner very similar to operation without an
   active iommu.
3. Any activity between the IO-device and its RMRR areas is handled by the
   device-driver in the same manner as during a non-kdump boot.
4. If an IO-device has no driver in the kdump kernel, it is simply left alone.
   This supports the practice of creating a special kdump kernel without
   drivers for any devices that are not required for taking a crashdump. 
5. Minimal code-changes among the existing mainline intel vt-d code.

Summary of changes in this patch set:
1. Added some useful function for root entry table in code intel-iommu.c
2. Added new members to struct root_entry and struct irte;
3. Functions to load old root entry table to iommu->root_entry from the memory 
   of old kernel.
4. Functions to malloc new context entry table and copy the data from the old
   ones to the malloced new ones.
5. Functions to enable support for DMA remapping in kdump kernel.
6. Functions to load old irte data from the old kernel to the kdump kernel.
7. Some code changes that support other behaviours that have been listed.
8. In the new functions, use physical address as "unsigned long" type, not 
   pointers.

Original version by Bill Sumner:
    https://lkml.org/lkml/2014/1/10/518
    https://lkml.org/lkml/2014/4/15/716
    https://lkml.org/lkml/2014/4/24/836

Zhenhua's updates:
    https://lkml.org/lkml/2014/10/21/134
    https://lkml.org/lkml/2014/12/15/121
    https://lkml.org/lkml/2014/12/22/53
    https://lkml.org/lkml/2015/1/6/1166
    https://lkml.org/lkml/2015/1/12/35
    https://lkml.org/lkml/2015/3/19/33

Changelog[v10]:
    1. Do not use CONFIG_CRASH_DUMP and is_kdump_kernel().
       Use one flag which stores the te and ir status in last kernel:
           iommu->pre_enabled_trans
           iommu->pre_enabled_ir

Changelog[v9]:
    1. Add new function iommu_attach_domain_with_id.
    2. Do not copy old page tables, keep using the old ones.
    3. Remove functions:
           intel_iommu_did_to_domain_values_entry
           intel_iommu_get_dids_from_old_kernel
           device_to_domain_id
           copy_page_addr
           copy_page_table
           copy_context_entry
           copy_context_entry_table
    4. Add new function device_to_existing_context_entry.

Changelog[v8]:
    1. Add a missing __iommu_flush_cache in function copy_page_table.

Changelog[v7]:
    1. Use __iommu_flush_cache to flush the data to hardware.

Changelog[v6]:
    1. Use "unsigned long" as type of physical address.
    2. Use new function unmap_device_dma to unmap the old dma.
    3. Some small incorrect bits order for aw shift.

Changelog[v5]:
    1. Do not disable and re-enable traslation and interrupt remapping. 
    2. Use old root entry table.
    3. Use old interrupt remapping table.
    4. New functions to copy data from old kernel, and save to old kernel mem.
    5. New functions to save updated root entry table and irte table.
    6. Use intel_unmap to unmap the old dma;
    7. Allocate new pages while driver is being loaded.

Changelog[v4]:
    1. Cut off the patches that move some defines and functions to new files.
    2. Reduce the numbers of patches to five, make it more easier to read.
    3. Changed the name of functions, make them consistent with current context
       get/set functions.
    4. Add change to function __iommu_attach_domain.

Changelog[v3]:
    1. Commented-out "#define DEBUG 1" to eliminate debug messages.
    2. Updated the comments about changes in each version.
    3. Fixed: one-line added to Copy-Translations patch to initialize the iovad
          struct as recommended by Baoquan He [bhe@redhat.com]
          init_iova_domain(&domain->iovad, DMA_32BIT_PFN);

Changelog[v2]:
    The following series implements a fix for:
    A kdump problem about DMA that has been discussed for a long time. That is,
    when a kernel panics and boots into the kdump kernel, DMA started by the
    panicked kernel is not stopped before the kdump kernel is booted and the
    kdump kernel disables the IOMMU while this DMA continues.  This causes the
    IOMMU to stop translating the DMA addresses as IOVAs and begin to treat
    them as physical memory addresses -- which causes the DMA to either:
        (1) generate DMAR errors or 
        (2) generate PCI SERR errors or 
        (3) transfer data to or from incorrect areas of memory. Often this 
            causes the dump to fail.

Changelog[v1]:
    The original version.

Changed in this version:
1. Do not disable and re-enable traslation and interrupt remapping. 
2. Use old root entry table.
3. Use old interrupt remapping table.
4. Use "unsigned long" as physical address.
5. Use intel_unmap to unmap the old dma;

Baoquan He <bhe@redhat.com> helps testing this patchset.
Takao Indoh <indou.takao@jp.fujitsu.com> gives valuable suggestions.

Li, Zhen-Hua (10):
  iommu/vt-d: New function to attach domain with id
  iommu/vt-d: Items required for kdump
  iommu/vt-d: Function to get old context entry
  iommu/vt-d: functions to copy data from old mem
  iommu/vt-d: Add functions to load and save old re
  iommu/vt-d: datatypes and functions used for kdump
  iommu/vt-d: enable kdump support in iommu module
  iommu/vt-d: assign new page table for dma_map
  iommu/vt-d: Copy functions for irte
  iommu/vt-d: Use old irte in kdump kernel

 drivers/iommu/intel-iommu.c         | 518 ++++++++++++++++++++++++++++++++++--
 drivers/iommu/intel_irq_remapping.c |  96 ++++++-
 include/linux/intel-iommu.h         |  16 ++
 3 files changed, 605 insertions(+), 25 deletions(-)

-- 
2.0.0-rc0


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* [PATCH v10 01/10] iommu/vt-d: New function to attach domain with id
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: iommu, linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, zhen-hual, rwright

Allow specification of the domain-id for the new domain.
This patch only adds a new function iommu_attach_domain_with_id, it is like
the function iommu_attach_domain(), only adding a parameter "did".

Bill Sumner:
    (In older versions) Add new 'did' parameter to iommu_attach_domain();
    The caller of this function.

Li, Zhenhua:
    New function iommu_attach_domain_with_id(), instead of updating function
    iommu_attach_domain();

Signed-off-by: Bill Sumner <billsumnerlinux@gmail.com>
Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel-iommu.c | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 2d1e05b..3a93ce0 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -1558,6 +1558,16 @@ static int iommu_attach_domain(struct dmar_domain *domain,
 	return num;
 }
 
+static int iommu_attach_domain_with_id(struct dmar_domain *domain,
+			       struct intel_iommu *iommu,
+			       int domain_number)
+{
+	if (domain_number >= 0)
+		return domain_number;
+
+	return iommu_attach_domain(domain, iommu);
+}
+
 static int iommu_attach_vm_domain(struct dmar_domain *domain,
 				  struct intel_iommu *iommu)
 {
@@ -2224,6 +2234,7 @@ static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
 	u16 dma_alias;
 	unsigned long flags;
 	u8 bus, devfn;
+	int did = -1;   /* Default to "no domain_id supplied" */
 
 	domain = find_domain(dev);
 	if (domain)
@@ -2257,7 +2268,7 @@ static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
 	domain = alloc_domain(0);
 	if (!domain)
 		return NULL;
-	domain->id = iommu_attach_domain(domain, iommu);
+	domain->id = iommu_attach_domain_with_id(domain, iommu, did);
 	if (domain->id < 0) {
 		free_domain_mem(domain);
 		return NULL;
-- 
2.0.0-rc0


^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 01/10] iommu/vt-d: New function to attach domain with id
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, indou.takao-+CUm20s59erQFUHtdCDX3A,
	bhe-H+wXaHxf7aLQT0dZR+AlfA, joro-zLv9SwRftAIdnm+yROfE0A,
	vgoyal-H+wXaHxf7aLQT0dZR+AlfA, dyoung-H+wXaHxf7aLQT0dZR+AlfA
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	lisa.mitchell-VXdhtT5mjnY, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	zhen-hual-VXdhtT5mjnY, doug.hatch-VXdhtT5mjnY,
	ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY

Allow specification of the domain-id for the new domain.
This patch only adds a new function iommu_attach_domain_with_id, it is like
the function iommu_attach_domain(), only adding a parameter "did".

Bill Sumner:
    (In older versions) Add new 'did' parameter to iommu_attach_domain();
    The caller of this function.

Li, Zhenhua:
    New function iommu_attach_domain_with_id(), instead of updating function
    iommu_attach_domain();

Signed-off-by: Bill Sumner <billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Signed-off-by: Li, Zhen-Hua <zhen-hual-VXdhtT5mjnY@public.gmane.org>
---
 drivers/iommu/intel-iommu.c | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 2d1e05b..3a93ce0 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -1558,6 +1558,16 @@ static int iommu_attach_domain(struct dmar_domain *domain,
 	return num;
 }
 
+static int iommu_attach_domain_with_id(struct dmar_domain *domain,
+			       struct intel_iommu *iommu,
+			       int domain_number)
+{
+	if (domain_number >= 0)
+		return domain_number;
+
+	return iommu_attach_domain(domain, iommu);
+}
+
 static int iommu_attach_vm_domain(struct dmar_domain *domain,
 				  struct intel_iommu *iommu)
 {
@@ -2224,6 +2234,7 @@ static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
 	u16 dma_alias;
 	unsigned long flags;
 	u8 bus, devfn;
+	int did = -1;   /* Default to "no domain_id supplied" */
 
 	domain = find_domain(dev);
 	if (domain)
@@ -2257,7 +2268,7 @@ static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
 	domain = alloc_domain(0);
 	if (!domain)
 		return NULL;
-	domain->id = iommu_attach_domain(domain, iommu);
+	domain->id = iommu_attach_domain_with_id(domain, iommu, did);
 	if (domain->id < 0) {
 		free_domain_mem(domain);
 		return NULL;
-- 
2.0.0-rc0

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 01/10] iommu/vt-d: New function to attach domain with id
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: jerry.hoemann, tom.vaden, rwright, linux-pci, kexec, iommu,
	lisa.mitchell, linux-kernel, alex.williamson, zhen-hual, ddutile,
	doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6

Allow specification of the domain-id for the new domain.
This patch only adds a new function iommu_attach_domain_with_id, it is like
the function iommu_attach_domain(), only adding a parameter "did".

Bill Sumner:
    (In older versions) Add new 'did' parameter to iommu_attach_domain();
    The caller of this function.

Li, Zhenhua:
    New function iommu_attach_domain_with_id(), instead of updating function
    iommu_attach_domain();

Signed-off-by: Bill Sumner <billsumnerlinux@gmail.com>
Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel-iommu.c | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 2d1e05b..3a93ce0 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -1558,6 +1558,16 @@ static int iommu_attach_domain(struct dmar_domain *domain,
 	return num;
 }
 
+static int iommu_attach_domain_with_id(struct dmar_domain *domain,
+			       struct intel_iommu *iommu,
+			       int domain_number)
+{
+	if (domain_number >= 0)
+		return domain_number;
+
+	return iommu_attach_domain(domain, iommu);
+}
+
 static int iommu_attach_vm_domain(struct dmar_domain *domain,
 				  struct intel_iommu *iommu)
 {
@@ -2224,6 +2234,7 @@ static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
 	u16 dma_alias;
 	unsigned long flags;
 	u8 bus, devfn;
+	int did = -1;   /* Default to "no domain_id supplied" */
 
 	domain = find_domain(dev);
 	if (domain)
@@ -2257,7 +2268,7 @@ static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
 	domain = alloc_domain(0);
 	if (!domain)
 		return NULL;
-	domain->id = iommu_attach_domain(domain, iommu);
+	domain->id = iommu_attach_domain_with_id(domain, iommu, did);
 	if (domain->id < 0) {
 		free_domain_mem(domain);
 		return NULL;
-- 
2.0.0-rc0


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 02/10] iommu/vt-d: Items required for kdump
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: iommu, linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, zhen-hual, rwright

Add context entry functions needed for kdump.

Bill Sumner:
    Original version;

Li, Zhenhua:
    Changed the name of new functions, make them consistent with current
    context get/set functions.
    Remove the structure dve which is not used in new version.

Signed-off-by: Bill Sumner <billsumnerlinux@gmail.com>
Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel-iommu.c | 54 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 3a93ce0..735e28f 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -211,6 +211,12 @@ get_context_addr_from_root(struct root_entry *root)
 		NULL);
 }
 
+static inline unsigned long
+get_context_phys_from_root(struct root_entry *root)
+{
+	return  root_present(root) ? (root->val & VTD_PAGE_MASK) : 0;
+}
+
 /*
  * low 64 bits:
  * 0: present
@@ -231,6 +237,32 @@ static inline bool context_present(struct context_entry *context)
 {
 	return (context->lo & 1);
 }
+
+static inline int context_fault_enable(struct context_entry *c)
+{
+	return((c->lo >> 1) & 0x1);
+}
+
+static inline int context_translation_type(struct context_entry *c)
+{
+	return((c->lo >> 2) & 0x3);
+}
+
+static inline u64 context_address_root(struct context_entry *c)
+{
+	return((c->lo >> VTD_PAGE_SHIFT));
+}
+
+static inline int context_address_width(struct context_entry *c)
+{
+	return((c->hi >> 0) & 0x7);
+}
+
+static inline int context_domain_id(struct context_entry *c)
+{
+	return((c->hi >> 8) & 0xffff);
+}
+
 static inline void context_set_present(struct context_entry *context)
 {
 	context->lo |= 1;
@@ -316,6 +348,28 @@ static inline int first_pte_in_page(struct dma_pte *pte)
 	return !((unsigned long)pte & ~VTD_PAGE_MASK);
 }
 
+
+/*
+ * Fix Crashdump failure caused by leftover DMA through a hardware IOMMU
+ *
+ * Fixes the crashdump kernel to deal with an active iommu and legacy
+ * DMA from the (old) panicked kernel in a manner similar to how legacy
+ * DMA is handled when no hardware iommu was in use by the old kernel --
+ * allow the legacy DMA to continue into its current buffers.
+ *
+ * In the crashdump kernel, this code:
+ * 1. skips disabling the IOMMU's translating.
+ * 2. Do not re-enable IOMMU's translating.
+ * 3. In kdump kernel, use the old root entry table.
+ * 4. Allocate pages for new context entry, copy data from old context entries
+ *    in the old kernel to the new ones.
+ *
+ * In other kinds of kernel, for example, a kernel started by kexec,
+ * do the same thing as crashdump kernel.
+ */
+
+
+
 /*
  * This domain is a statically identity mapping domain.
  *	1. This domain creats a static 1:1 mapping to all usable memory.
-- 
2.0.0-rc0


^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 02/10] iommu/vt-d: Items required for kdump
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, indou.takao-+CUm20s59erQFUHtdCDX3A,
	bhe-H+wXaHxf7aLQT0dZR+AlfA, joro-zLv9SwRftAIdnm+yROfE0A,
	vgoyal-H+wXaHxf7aLQT0dZR+AlfA, dyoung-H+wXaHxf7aLQT0dZR+AlfA
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	lisa.mitchell-VXdhtT5mjnY, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	zhen-hual-VXdhtT5mjnY, doug.hatch-VXdhtT5mjnY,
	ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY

Add context entry functions needed for kdump.

Bill Sumner:
    Original version;

Li, Zhenhua:
    Changed the name of new functions, make them consistent with current
    context get/set functions.
    Remove the structure dve which is not used in new version.

Signed-off-by: Bill Sumner <billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Signed-off-by: Li, Zhen-Hua <zhen-hual-VXdhtT5mjnY@public.gmane.org>
---
 drivers/iommu/intel-iommu.c | 54 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 3a93ce0..735e28f 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -211,6 +211,12 @@ get_context_addr_from_root(struct root_entry *root)
 		NULL);
 }
 
+static inline unsigned long
+get_context_phys_from_root(struct root_entry *root)
+{
+	return  root_present(root) ? (root->val & VTD_PAGE_MASK) : 0;
+}
+
 /*
  * low 64 bits:
  * 0: present
@@ -231,6 +237,32 @@ static inline bool context_present(struct context_entry *context)
 {
 	return (context->lo & 1);
 }
+
+static inline int context_fault_enable(struct context_entry *c)
+{
+	return((c->lo >> 1) & 0x1);
+}
+
+static inline int context_translation_type(struct context_entry *c)
+{
+	return((c->lo >> 2) & 0x3);
+}
+
+static inline u64 context_address_root(struct context_entry *c)
+{
+	return((c->lo >> VTD_PAGE_SHIFT));
+}
+
+static inline int context_address_width(struct context_entry *c)
+{
+	return((c->hi >> 0) & 0x7);
+}
+
+static inline int context_domain_id(struct context_entry *c)
+{
+	return((c->hi >> 8) & 0xffff);
+}
+
 static inline void context_set_present(struct context_entry *context)
 {
 	context->lo |= 1;
@@ -316,6 +348,28 @@ static inline int first_pte_in_page(struct dma_pte *pte)
 	return !((unsigned long)pte & ~VTD_PAGE_MASK);
 }
 
+
+/*
+ * Fix Crashdump failure caused by leftover DMA through a hardware IOMMU
+ *
+ * Fixes the crashdump kernel to deal with an active iommu and legacy
+ * DMA from the (old) panicked kernel in a manner similar to how legacy
+ * DMA is handled when no hardware iommu was in use by the old kernel --
+ * allow the legacy DMA to continue into its current buffers.
+ *
+ * In the crashdump kernel, this code:
+ * 1. skips disabling the IOMMU's translating.
+ * 2. Do not re-enable IOMMU's translating.
+ * 3. In kdump kernel, use the old root entry table.
+ * 4. Allocate pages for new context entry, copy data from old context entries
+ *    in the old kernel to the new ones.
+ *
+ * In other kinds of kernel, for example, a kernel started by kexec,
+ * do the same thing as crashdump kernel.
+ */
+
+
+
 /*
  * This domain is a statically identity mapping domain.
  *	1. This domain creats a static 1:1 mapping to all usable memory.
-- 
2.0.0-rc0

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 02/10] iommu/vt-d: Items required for kdump
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: jerry.hoemann, tom.vaden, rwright, linux-pci, kexec, iommu,
	lisa.mitchell, linux-kernel, alex.williamson, zhen-hual, ddutile,
	doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6

Add context entry functions needed for kdump.

Bill Sumner:
    Original version;

Li, Zhenhua:
    Changed the name of new functions, make them consistent with current
    context get/set functions.
    Remove the structure dve which is not used in new version.

Signed-off-by: Bill Sumner <billsumnerlinux@gmail.com>
Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel-iommu.c | 54 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 3a93ce0..735e28f 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -211,6 +211,12 @@ get_context_addr_from_root(struct root_entry *root)
 		NULL);
 }
 
+static inline unsigned long
+get_context_phys_from_root(struct root_entry *root)
+{
+	return  root_present(root) ? (root->val & VTD_PAGE_MASK) : 0;
+}
+
 /*
  * low 64 bits:
  * 0: present
@@ -231,6 +237,32 @@ static inline bool context_present(struct context_entry *context)
 {
 	return (context->lo & 1);
 }
+
+static inline int context_fault_enable(struct context_entry *c)
+{
+	return((c->lo >> 1) & 0x1);
+}
+
+static inline int context_translation_type(struct context_entry *c)
+{
+	return((c->lo >> 2) & 0x3);
+}
+
+static inline u64 context_address_root(struct context_entry *c)
+{
+	return((c->lo >> VTD_PAGE_SHIFT));
+}
+
+static inline int context_address_width(struct context_entry *c)
+{
+	return((c->hi >> 0) & 0x7);
+}
+
+static inline int context_domain_id(struct context_entry *c)
+{
+	return((c->hi >> 8) & 0xffff);
+}
+
 static inline void context_set_present(struct context_entry *context)
 {
 	context->lo |= 1;
@@ -316,6 +348,28 @@ static inline int first_pte_in_page(struct dma_pte *pte)
 	return !((unsigned long)pte & ~VTD_PAGE_MASK);
 }
 
+
+/*
+ * Fix Crashdump failure caused by leftover DMA through a hardware IOMMU
+ *
+ * Fixes the crashdump kernel to deal with an active iommu and legacy
+ * DMA from the (old) panicked kernel in a manner similar to how legacy
+ * DMA is handled when no hardware iommu was in use by the old kernel --
+ * allow the legacy DMA to continue into its current buffers.
+ *
+ * In the crashdump kernel, this code:
+ * 1. skips disabling the IOMMU's translating.
+ * 2. Do not re-enable IOMMU's translating.
+ * 3. In kdump kernel, use the old root entry table.
+ * 4. Allocate pages for new context entry, copy data from old context entries
+ *    in the old kernel to the new ones.
+ *
+ * In other kinds of kernel, for example, a kernel started by kexec,
+ * do the same thing as crashdump kernel.
+ */
+
+
+
 /*
  * This domain is a statically identity mapping domain.
  *	1. This domain creats a static 1:1 mapping to all usable memory.
-- 
2.0.0-rc0


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 03/10] iommu/vt-d: Function to get old context entry
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: iommu, linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, zhen-hual, rwright

Interface for when a new domain in the crashdump kernel needs some
values from the panicked kernel's context entries.

Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel-iommu.c | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 735e28f..ff5ac04 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -369,6 +369,10 @@ static inline int first_pte_in_page(struct dma_pte *pte)
  */
 
 
+static struct context_entry *device_to_existing_context_entry(
+				struct intel_iommu *iommu,
+				u8 bus, u8 devfn);
+
 
 /*
  * This domain is a statically identity mapping domain.
@@ -4793,3 +4797,23 @@ static void __init check_tylersburg_isoch(void)
 	printk(KERN_WARNING "DMAR: Recommended TLB entries for ISOCH unit is 16; your BIOS set %d\n",
 	       vtisochctrl);
 }
+
+static struct context_entry *device_to_existing_context_entry(
+				struct intel_iommu *iommu,
+				u8 bus, u8 devfn)
+{
+	struct root_entry *root;
+	struct context_entry *context;
+	struct context_entry *ret;
+	unsigned long flags;
+
+	ret = NULL;
+	spin_lock_irqsave(&iommu->lock, flags);
+	root = &iommu->root_entry[bus];
+	context = get_context_addr_from_root(root);
+	if (context && context_present(context+devfn))
+		ret = &context[devfn];
+	spin_unlock_irqrestore(&iommu->lock, flags);
+	return ret;
+}
+
-- 
2.0.0-rc0


^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 03/10] iommu/vt-d: Function to get old context entry
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, indou.takao-+CUm20s59erQFUHtdCDX3A,
	bhe-H+wXaHxf7aLQT0dZR+AlfA, joro-zLv9SwRftAIdnm+yROfE0A,
	vgoyal-H+wXaHxf7aLQT0dZR+AlfA, dyoung-H+wXaHxf7aLQT0dZR+AlfA
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	lisa.mitchell-VXdhtT5mjnY, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	zhen-hual-VXdhtT5mjnY, doug.hatch-VXdhtT5mjnY,
	ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY

Interface for when a new domain in the crashdump kernel needs some
values from the panicked kernel's context entries.

Signed-off-by: Li, Zhen-Hua <zhen-hual-VXdhtT5mjnY@public.gmane.org>
---
 drivers/iommu/intel-iommu.c | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 735e28f..ff5ac04 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -369,6 +369,10 @@ static inline int first_pte_in_page(struct dma_pte *pte)
  */
 
 
+static struct context_entry *device_to_existing_context_entry(
+				struct intel_iommu *iommu,
+				u8 bus, u8 devfn);
+
 
 /*
  * This domain is a statically identity mapping domain.
@@ -4793,3 +4797,23 @@ static void __init check_tylersburg_isoch(void)
 	printk(KERN_WARNING "DMAR: Recommended TLB entries for ISOCH unit is 16; your BIOS set %d\n",
 	       vtisochctrl);
 }
+
+static struct context_entry *device_to_existing_context_entry(
+				struct intel_iommu *iommu,
+				u8 bus, u8 devfn)
+{
+	struct root_entry *root;
+	struct context_entry *context;
+	struct context_entry *ret;
+	unsigned long flags;
+
+	ret = NULL;
+	spin_lock_irqsave(&iommu->lock, flags);
+	root = &iommu->root_entry[bus];
+	context = get_context_addr_from_root(root);
+	if (context && context_present(context+devfn))
+		ret = &context[devfn];
+	spin_unlock_irqrestore(&iommu->lock, flags);
+	return ret;
+}
+
-- 
2.0.0-rc0

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 03/10] iommu/vt-d: Function to get old context entry
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: jerry.hoemann, tom.vaden, rwright, linux-pci, kexec, iommu,
	lisa.mitchell, linux-kernel, alex.williamson, zhen-hual, ddutile,
	doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6

Interface for when a new domain in the crashdump kernel needs some
values from the panicked kernel's context entries.

Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel-iommu.c | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 735e28f..ff5ac04 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -369,6 +369,10 @@ static inline int first_pte_in_page(struct dma_pte *pte)
  */
 
 
+static struct context_entry *device_to_existing_context_entry(
+				struct intel_iommu *iommu,
+				u8 bus, u8 devfn);
+
 
 /*
  * This domain is a statically identity mapping domain.
@@ -4793,3 +4797,23 @@ static void __init check_tylersburg_isoch(void)
 	printk(KERN_WARNING "DMAR: Recommended TLB entries for ISOCH unit is 16; your BIOS set %d\n",
 	       vtisochctrl);
 }
+
+static struct context_entry *device_to_existing_context_entry(
+				struct intel_iommu *iommu,
+				u8 bus, u8 devfn)
+{
+	struct root_entry *root;
+	struct context_entry *context;
+	struct context_entry *ret;
+	unsigned long flags;
+
+	ret = NULL;
+	spin_lock_irqsave(&iommu->lock, flags);
+	root = &iommu->root_entry[bus];
+	context = get_context_addr_from_root(root);
+	if (context && context_present(context+devfn))
+		ret = &context[devfn];
+	spin_unlock_irqrestore(&iommu->lock, flags);
+	return ret;
+}
+
-- 
2.0.0-rc0


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 04/10] iommu/vt-d: functions to copy data from old mem
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: iommu, linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, zhen-hual, rwright

Add some functions to copy the data from old kernel.
These functions are used to copy context tables and page tables.

To avoid calling iounmap between spin_lock_irqsave and spin_unlock_irqrestore,
use a link here, store the pointers , and then use iounmap to free them in
another place.

Li, Zhen-hua:
    The functions and logics.

Takao Indoh:
    Check if pfn is ram:
        if (page_is_ram(pfn))

Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
Signed-off-by: Takao Indoh <indou.takao@jp.fujitsu.com>
---
 drivers/iommu/intel-iommu.c | 102 ++++++++++++++++++++++++++++++++++++++++++++
 include/linux/intel-iommu.h |   6 +++
 2 files changed, 108 insertions(+)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index ff5ac04..5ba403a 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -373,6 +373,17 @@ static struct context_entry *device_to_existing_context_entry(
 				struct intel_iommu *iommu,
 				u8 bus, u8 devfn);
 
+/*
+ * A structure used to store the address allocated by ioremap();
+ * The we need to call iounmap() to free them out of spin_lock_irqsave/unlock;
+ */
+struct iommu_remapped_entry {
+	struct list_head list;
+	void __iomem *mem;
+};
+static LIST_HEAD(__iommu_remapped_mem);
+static DEFINE_MUTEX(__iommu_mem_list_lock);
+
 
 /*
  * This domain is a statically identity mapping domain.
@@ -4817,3 +4828,94 @@ static struct context_entry *device_to_existing_context_entry(
 	return ret;
 }
 
+/*
+ * Copy memory from a physically-addressed area into a virtually-addressed area
+ */
+int __iommu_load_from_oldmem(void *to, unsigned long from, unsigned long size)
+{
+	unsigned long pfn;		/* Page Frame Number */
+	size_t csize = (size_t)size;	/* Num(bytes to copy) */
+	unsigned long offset;		/* Lower 12 bits of to */
+	void __iomem *virt_mem;
+	struct iommu_remapped_entry *mapped;
+
+	pfn = from >> VTD_PAGE_SHIFT;
+	offset = from & (~VTD_PAGE_MASK);
+
+	if (page_is_ram(pfn)) {
+		memcpy(to, pfn_to_kaddr(pfn) + offset, csize);
+	} else{
+
+		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
+				GFP_KERNEL);
+		if (!mapped)
+			return -ENOMEM;
+
+		virt_mem = ioremap_cache((unsigned long)from, size);
+		if (!virt_mem) {
+			kfree(mapped);
+			return -ENOMEM;
+		}
+		memcpy(to, virt_mem, size);
+
+		mutex_lock(&__iommu_mem_list_lock);
+		mapped->mem = virt_mem;
+		list_add_tail(&mapped->list, &__iommu_remapped_mem);
+		mutex_unlock(&__iommu_mem_list_lock);
+	}
+	return size;
+}
+
+/*
+ * Copy memory from a virtually-addressed area into a physically-addressed area
+ */
+int __iommu_save_to_oldmem(unsigned long to, void *from, unsigned long size)
+{
+	unsigned long pfn;		/* Page Frame Number */
+	size_t csize = (size_t)size;	/* Num(bytes to copy) */
+	unsigned long offset;		/* Lower 12 bits of to */
+	void __iomem *virt_mem;
+	struct iommu_remapped_entry *mapped;
+
+	pfn = to >> VTD_PAGE_SHIFT;
+	offset = to & (~VTD_PAGE_MASK);
+
+	if (page_is_ram(pfn)) {
+		memcpy(pfn_to_kaddr(pfn) + offset, from, csize);
+	} else{
+		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
+				GFP_KERNEL);
+		if (!mapped)
+			return -ENOMEM;
+
+		virt_mem = ioremap_cache((unsigned long)to, size);
+		if (!virt_mem) {
+			kfree(mapped);
+			return -ENOMEM;
+		}
+		memcpy(virt_mem, from, size);
+		mutex_lock(&__iommu_mem_list_lock);
+		mapped->mem = virt_mem;
+		list_add_tail(&mapped->list, &__iommu_remapped_mem);
+		mutex_unlock(&__iommu_mem_list_lock);
+	}
+	return size;
+}
+
+/*
+ * Free the mapped memory for ioremap;
+ */
+int __iommu_free_mapped_mem(void)
+{
+	struct iommu_remapped_entry *mem_entry, *tmp;
+
+	mutex_lock(&__iommu_mem_list_lock);
+	list_for_each_entry_safe(mem_entry, tmp, &__iommu_remapped_mem, list) {
+		iounmap(mem_entry->mem);
+		list_del(&mem_entry->list);
+		kfree(mem_entry);
+	}
+	mutex_unlock(&__iommu_mem_list_lock);
+	return 0;
+}
+
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
index a65208a..4bca7b5 100644
--- a/include/linux/intel-iommu.h
+++ b/include/linux/intel-iommu.h
@@ -368,4 +368,10 @@ extern int dmar_ir_support(void);
 
 extern const struct attribute_group *intel_iommu_groups[];
 
+extern int __iommu_load_from_oldmem(void *to, unsigned long from,
+					unsigned long size);
+extern int __iommu_save_to_oldmem(unsigned long to, void *from,
+					unsigned long size);
+extern int __iommu_free_mapped_mem(void);
+
 #endif
-- 
2.0.0-rc0


^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 04/10] iommu/vt-d: functions to copy data from old mem
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, indou.takao-+CUm20s59erQFUHtdCDX3A,
	bhe-H+wXaHxf7aLQT0dZR+AlfA, joro-zLv9SwRftAIdnm+yROfE0A,
	vgoyal-H+wXaHxf7aLQT0dZR+AlfA, dyoung-H+wXaHxf7aLQT0dZR+AlfA
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	lisa.mitchell-VXdhtT5mjnY, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	zhen-hual-VXdhtT5mjnY, doug.hatch-VXdhtT5mjnY,
	ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY

Add some functions to copy the data from old kernel.
These functions are used to copy context tables and page tables.

To avoid calling iounmap between spin_lock_irqsave and spin_unlock_irqrestore,
use a link here, store the pointers , and then use iounmap to free them in
another place.

Li, Zhen-hua:
    The functions and logics.

Takao Indoh:
    Check if pfn is ram:
        if (page_is_ram(pfn))

Signed-off-by: Li, Zhen-Hua <zhen-hual-VXdhtT5mjnY@public.gmane.org>
Signed-off-by: Takao Indoh <indou.takao-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
---
 drivers/iommu/intel-iommu.c | 102 ++++++++++++++++++++++++++++++++++++++++++++
 include/linux/intel-iommu.h |   6 +++
 2 files changed, 108 insertions(+)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index ff5ac04..5ba403a 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -373,6 +373,17 @@ static struct context_entry *device_to_existing_context_entry(
 				struct intel_iommu *iommu,
 				u8 bus, u8 devfn);
 
+/*
+ * A structure used to store the address allocated by ioremap();
+ * The we need to call iounmap() to free them out of spin_lock_irqsave/unlock;
+ */
+struct iommu_remapped_entry {
+	struct list_head list;
+	void __iomem *mem;
+};
+static LIST_HEAD(__iommu_remapped_mem);
+static DEFINE_MUTEX(__iommu_mem_list_lock);
+
 
 /*
  * This domain is a statically identity mapping domain.
@@ -4817,3 +4828,94 @@ static struct context_entry *device_to_existing_context_entry(
 	return ret;
 }
 
+/*
+ * Copy memory from a physically-addressed area into a virtually-addressed area
+ */
+int __iommu_load_from_oldmem(void *to, unsigned long from, unsigned long size)
+{
+	unsigned long pfn;		/* Page Frame Number */
+	size_t csize = (size_t)size;	/* Num(bytes to copy) */
+	unsigned long offset;		/* Lower 12 bits of to */
+	void __iomem *virt_mem;
+	struct iommu_remapped_entry *mapped;
+
+	pfn = from >> VTD_PAGE_SHIFT;
+	offset = from & (~VTD_PAGE_MASK);
+
+	if (page_is_ram(pfn)) {
+		memcpy(to, pfn_to_kaddr(pfn) + offset, csize);
+	} else{
+
+		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
+				GFP_KERNEL);
+		if (!mapped)
+			return -ENOMEM;
+
+		virt_mem = ioremap_cache((unsigned long)from, size);
+		if (!virt_mem) {
+			kfree(mapped);
+			return -ENOMEM;
+		}
+		memcpy(to, virt_mem, size);
+
+		mutex_lock(&__iommu_mem_list_lock);
+		mapped->mem = virt_mem;
+		list_add_tail(&mapped->list, &__iommu_remapped_mem);
+		mutex_unlock(&__iommu_mem_list_lock);
+	}
+	return size;
+}
+
+/*
+ * Copy memory from a virtually-addressed area into a physically-addressed area
+ */
+int __iommu_save_to_oldmem(unsigned long to, void *from, unsigned long size)
+{
+	unsigned long pfn;		/* Page Frame Number */
+	size_t csize = (size_t)size;	/* Num(bytes to copy) */
+	unsigned long offset;		/* Lower 12 bits of to */
+	void __iomem *virt_mem;
+	struct iommu_remapped_entry *mapped;
+
+	pfn = to >> VTD_PAGE_SHIFT;
+	offset = to & (~VTD_PAGE_MASK);
+
+	if (page_is_ram(pfn)) {
+		memcpy(pfn_to_kaddr(pfn) + offset, from, csize);
+	} else{
+		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
+				GFP_KERNEL);
+		if (!mapped)
+			return -ENOMEM;
+
+		virt_mem = ioremap_cache((unsigned long)to, size);
+		if (!virt_mem) {
+			kfree(mapped);
+			return -ENOMEM;
+		}
+		memcpy(virt_mem, from, size);
+		mutex_lock(&__iommu_mem_list_lock);
+		mapped->mem = virt_mem;
+		list_add_tail(&mapped->list, &__iommu_remapped_mem);
+		mutex_unlock(&__iommu_mem_list_lock);
+	}
+	return size;
+}
+
+/*
+ * Free the mapped memory for ioremap;
+ */
+int __iommu_free_mapped_mem(void)
+{
+	struct iommu_remapped_entry *mem_entry, *tmp;
+
+	mutex_lock(&__iommu_mem_list_lock);
+	list_for_each_entry_safe(mem_entry, tmp, &__iommu_remapped_mem, list) {
+		iounmap(mem_entry->mem);
+		list_del(&mem_entry->list);
+		kfree(mem_entry);
+	}
+	mutex_unlock(&__iommu_mem_list_lock);
+	return 0;
+}
+
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
index a65208a..4bca7b5 100644
--- a/include/linux/intel-iommu.h
+++ b/include/linux/intel-iommu.h
@@ -368,4 +368,10 @@ extern int dmar_ir_support(void);
 
 extern const struct attribute_group *intel_iommu_groups[];
 
+extern int __iommu_load_from_oldmem(void *to, unsigned long from,
+					unsigned long size);
+extern int __iommu_save_to_oldmem(unsigned long to, void *from,
+					unsigned long size);
+extern int __iommu_free_mapped_mem(void);
+
 #endif
-- 
2.0.0-rc0

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 04/10] iommu/vt-d: functions to copy data from old mem
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: jerry.hoemann, tom.vaden, rwright, linux-pci, kexec, iommu,
	lisa.mitchell, linux-kernel, alex.williamson, zhen-hual, ddutile,
	doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6

Add some functions to copy the data from old kernel.
These functions are used to copy context tables and page tables.

To avoid calling iounmap between spin_lock_irqsave and spin_unlock_irqrestore,
use a link here, store the pointers , and then use iounmap to free them in
another place.

Li, Zhen-hua:
    The functions and logics.

Takao Indoh:
    Check if pfn is ram:
        if (page_is_ram(pfn))

Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
Signed-off-by: Takao Indoh <indou.takao@jp.fujitsu.com>
---
 drivers/iommu/intel-iommu.c | 102 ++++++++++++++++++++++++++++++++++++++++++++
 include/linux/intel-iommu.h |   6 +++
 2 files changed, 108 insertions(+)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index ff5ac04..5ba403a 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -373,6 +373,17 @@ static struct context_entry *device_to_existing_context_entry(
 				struct intel_iommu *iommu,
 				u8 bus, u8 devfn);
 
+/*
+ * A structure used to store the address allocated by ioremap();
+ * The we need to call iounmap() to free them out of spin_lock_irqsave/unlock;
+ */
+struct iommu_remapped_entry {
+	struct list_head list;
+	void __iomem *mem;
+};
+static LIST_HEAD(__iommu_remapped_mem);
+static DEFINE_MUTEX(__iommu_mem_list_lock);
+
 
 /*
  * This domain is a statically identity mapping domain.
@@ -4817,3 +4828,94 @@ static struct context_entry *device_to_existing_context_entry(
 	return ret;
 }
 
+/*
+ * Copy memory from a physically-addressed area into a virtually-addressed area
+ */
+int __iommu_load_from_oldmem(void *to, unsigned long from, unsigned long size)
+{
+	unsigned long pfn;		/* Page Frame Number */
+	size_t csize = (size_t)size;	/* Num(bytes to copy) */
+	unsigned long offset;		/* Lower 12 bits of to */
+	void __iomem *virt_mem;
+	struct iommu_remapped_entry *mapped;
+
+	pfn = from >> VTD_PAGE_SHIFT;
+	offset = from & (~VTD_PAGE_MASK);
+
+	if (page_is_ram(pfn)) {
+		memcpy(to, pfn_to_kaddr(pfn) + offset, csize);
+	} else{
+
+		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
+				GFP_KERNEL);
+		if (!mapped)
+			return -ENOMEM;
+
+		virt_mem = ioremap_cache((unsigned long)from, size);
+		if (!virt_mem) {
+			kfree(mapped);
+			return -ENOMEM;
+		}
+		memcpy(to, virt_mem, size);
+
+		mutex_lock(&__iommu_mem_list_lock);
+		mapped->mem = virt_mem;
+		list_add_tail(&mapped->list, &__iommu_remapped_mem);
+		mutex_unlock(&__iommu_mem_list_lock);
+	}
+	return size;
+}
+
+/*
+ * Copy memory from a virtually-addressed area into a physically-addressed area
+ */
+int __iommu_save_to_oldmem(unsigned long to, void *from, unsigned long size)
+{
+	unsigned long pfn;		/* Page Frame Number */
+	size_t csize = (size_t)size;	/* Num(bytes to copy) */
+	unsigned long offset;		/* Lower 12 bits of to */
+	void __iomem *virt_mem;
+	struct iommu_remapped_entry *mapped;
+
+	pfn = to >> VTD_PAGE_SHIFT;
+	offset = to & (~VTD_PAGE_MASK);
+
+	if (page_is_ram(pfn)) {
+		memcpy(pfn_to_kaddr(pfn) + offset, from, csize);
+	} else{
+		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
+				GFP_KERNEL);
+		if (!mapped)
+			return -ENOMEM;
+
+		virt_mem = ioremap_cache((unsigned long)to, size);
+		if (!virt_mem) {
+			kfree(mapped);
+			return -ENOMEM;
+		}
+		memcpy(virt_mem, from, size);
+		mutex_lock(&__iommu_mem_list_lock);
+		mapped->mem = virt_mem;
+		list_add_tail(&mapped->list, &__iommu_remapped_mem);
+		mutex_unlock(&__iommu_mem_list_lock);
+	}
+	return size;
+}
+
+/*
+ * Free the mapped memory for ioremap;
+ */
+int __iommu_free_mapped_mem(void)
+{
+	struct iommu_remapped_entry *mem_entry, *tmp;
+
+	mutex_lock(&__iommu_mem_list_lock);
+	list_for_each_entry_safe(mem_entry, tmp, &__iommu_remapped_mem, list) {
+		iounmap(mem_entry->mem);
+		list_del(&mem_entry->list);
+		kfree(mem_entry);
+	}
+	mutex_unlock(&__iommu_mem_list_lock);
+	return 0;
+}
+
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
index a65208a..4bca7b5 100644
--- a/include/linux/intel-iommu.h
+++ b/include/linux/intel-iommu.h
@@ -368,4 +368,10 @@ extern int dmar_ir_support(void);
 
 extern const struct attribute_group *intel_iommu_groups[];
 
+extern int __iommu_load_from_oldmem(void *to, unsigned long from,
+					unsigned long size);
+extern int __iommu_save_to_oldmem(unsigned long to, void *from,
+					unsigned long size);
+extern int __iommu_free_mapped_mem(void);
+
 #endif
-- 
2.0.0-rc0


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 05/10] iommu/vt-d: Add functions to load and save old re
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: iommu, linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, zhen-hual, rwright

Add functions to load root entry table from old kernel, and to save updated
root entry table.
Add two member in struct intel_iommu, to store the RTA in old kernel, and
the mapped virt address of it.

We use the old RTA in dump kernel, and when the iommu->root_entry is used as
a cache in kdump kernel, its phys address will not be save to RTA register,
but when its data is changed, we will save the new data to old root entry table.

Li, Zhen-hua:
    The functions and logics.

Takao Indoh:
    Add __iommu_flush_cache.

Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
Signed-off-by: Takao Indoh <indou.takao@jp.fujitsu.com>
---
 drivers/iommu/intel-iommu.c | 54 ++++++++++++++++++++++++++++++++++++++++++++-
 include/linux/intel-iommu.h |  3 +++
 2 files changed, 56 insertions(+), 1 deletion(-)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 5ba403a..ef8a99c 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -373,6 +373,10 @@ static struct context_entry *device_to_existing_context_entry(
 				struct intel_iommu *iommu,
 				u8 bus, u8 devfn);
 
+static void __iommu_load_old_root_entry(struct intel_iommu *iommu);
+
+static void __iommu_update_old_root_entry(struct intel_iommu *iommu, int index);
+
 /*
  * A structure used to store the address allocated by ioremap();
  * The we need to call iounmap() to free them out of spin_lock_irqsave/unlock;
@@ -384,7 +388,6 @@ struct iommu_remapped_entry {
 static LIST_HEAD(__iommu_remapped_mem);
 static DEFINE_MUTEX(__iommu_mem_list_lock);
 
-
 /*
  * This domain is a statically identity mapping domain.
  *	1. This domain creats a static 1:1 mapping to all usable memory.
@@ -4919,3 +4922,52 @@ int __iommu_free_mapped_mem(void)
 	return 0;
 }
 
+/*
+ * Load the old root entry table to new root entry table.
+ */
+static void __iommu_load_old_root_entry(struct intel_iommu *iommu)
+{
+	if ((!iommu)
+		|| (!iommu->root_entry)
+		|| (!iommu->root_entry_old_virt)
+		|| (!iommu->root_entry_old_phys))
+		return;
+	memcpy(iommu->root_entry, iommu->root_entry_old_virt, PAGE_SIZE);
+
+	__iommu_flush_cache(iommu, iommu->root_entry, PAGE_SIZE);
+}
+
+/*
+ * When the data in new root entry table is changed, this function
+ * must be called to save the updated data to old root entry table.
+ */
+static void __iommu_update_old_root_entry(struct intel_iommu *iommu, int index)
+{
+	u8 start;
+	unsigned long size;
+	void __iomem *to;
+	void *from;
+
+	if ((!iommu)
+		|| (!iommu->root_entry)
+		|| (!iommu->root_entry_old_virt)
+		|| (!iommu->root_entry_old_phys))
+		return;
+
+	if (index < -1 || index >= ROOT_ENTRY_NR)
+		return;
+
+	if (index == -1) {
+		start = 0;
+		size = ROOT_ENTRY_NR * sizeof(struct root_entry);
+	} else {
+		start = index * sizeof(struct root_entry);
+		size = sizeof(struct root_entry);
+	}
+	to = iommu->root_entry_old_virt;
+	from = iommu->root_entry;
+	memcpy(to + start, from + start, size);
+
+	__iommu_flush_cache(iommu, to + start, size);
+}
+
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
index 4bca7b5..6fa0804 100644
--- a/include/linux/intel-iommu.h
+++ b/include/linux/intel-iommu.h
@@ -328,6 +328,9 @@ struct intel_iommu {
 	spinlock_t	lock; /* protect context, domain ids */
 	struct root_entry *root_entry; /* virtual address */
 
+	void __iomem	*root_entry_old_virt; /* mapped from old root entry */
+	unsigned long	root_entry_old_phys; /* root entry in old kernel */
+
 	struct iommu_flush flush;
 #endif
 	struct q_inval  *qi;            /* Queued invalidation info */
-- 
2.0.0-rc0


^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 05/10] iommu/vt-d: Add functions to load and save old re
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, indou.takao-+CUm20s59erQFUHtdCDX3A,
	bhe-H+wXaHxf7aLQT0dZR+AlfA, joro-zLv9SwRftAIdnm+yROfE0A,
	vgoyal-H+wXaHxf7aLQT0dZR+AlfA, dyoung-H+wXaHxf7aLQT0dZR+AlfA
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	lisa.mitchell-VXdhtT5mjnY, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	zhen-hual-VXdhtT5mjnY, doug.hatch-VXdhtT5mjnY,
	ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY

Add functions to load root entry table from old kernel, and to save updated
root entry table.
Add two member in struct intel_iommu, to store the RTA in old kernel, and
the mapped virt address of it.

We use the old RTA in dump kernel, and when the iommu->root_entry is used as
a cache in kdump kernel, its phys address will not be save to RTA register,
but when its data is changed, we will save the new data to old root entry table.

Li, Zhen-hua:
    The functions and logics.

Takao Indoh:
    Add __iommu_flush_cache.

Signed-off-by: Li, Zhen-Hua <zhen-hual-VXdhtT5mjnY@public.gmane.org>
Signed-off-by: Takao Indoh <indou.takao-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
---
 drivers/iommu/intel-iommu.c | 54 ++++++++++++++++++++++++++++++++++++++++++++-
 include/linux/intel-iommu.h |  3 +++
 2 files changed, 56 insertions(+), 1 deletion(-)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 5ba403a..ef8a99c 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -373,6 +373,10 @@ static struct context_entry *device_to_existing_context_entry(
 				struct intel_iommu *iommu,
 				u8 bus, u8 devfn);
 
+static void __iommu_load_old_root_entry(struct intel_iommu *iommu);
+
+static void __iommu_update_old_root_entry(struct intel_iommu *iommu, int index);
+
 /*
  * A structure used to store the address allocated by ioremap();
  * The we need to call iounmap() to free them out of spin_lock_irqsave/unlock;
@@ -384,7 +388,6 @@ struct iommu_remapped_entry {
 static LIST_HEAD(__iommu_remapped_mem);
 static DEFINE_MUTEX(__iommu_mem_list_lock);
 
-
 /*
  * This domain is a statically identity mapping domain.
  *	1. This domain creats a static 1:1 mapping to all usable memory.
@@ -4919,3 +4922,52 @@ int __iommu_free_mapped_mem(void)
 	return 0;
 }
 
+/*
+ * Load the old root entry table to new root entry table.
+ */
+static void __iommu_load_old_root_entry(struct intel_iommu *iommu)
+{
+	if ((!iommu)
+		|| (!iommu->root_entry)
+		|| (!iommu->root_entry_old_virt)
+		|| (!iommu->root_entry_old_phys))
+		return;
+	memcpy(iommu->root_entry, iommu->root_entry_old_virt, PAGE_SIZE);
+
+	__iommu_flush_cache(iommu, iommu->root_entry, PAGE_SIZE);
+}
+
+/*
+ * When the data in new root entry table is changed, this function
+ * must be called to save the updated data to old root entry table.
+ */
+static void __iommu_update_old_root_entry(struct intel_iommu *iommu, int index)
+{
+	u8 start;
+	unsigned long size;
+	void __iomem *to;
+	void *from;
+
+	if ((!iommu)
+		|| (!iommu->root_entry)
+		|| (!iommu->root_entry_old_virt)
+		|| (!iommu->root_entry_old_phys))
+		return;
+
+	if (index < -1 || index >= ROOT_ENTRY_NR)
+		return;
+
+	if (index == -1) {
+		start = 0;
+		size = ROOT_ENTRY_NR * sizeof(struct root_entry);
+	} else {
+		start = index * sizeof(struct root_entry);
+		size = sizeof(struct root_entry);
+	}
+	to = iommu->root_entry_old_virt;
+	from = iommu->root_entry;
+	memcpy(to + start, from + start, size);
+
+	__iommu_flush_cache(iommu, to + start, size);
+}
+
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
index 4bca7b5..6fa0804 100644
--- a/include/linux/intel-iommu.h
+++ b/include/linux/intel-iommu.h
@@ -328,6 +328,9 @@ struct intel_iommu {
 	spinlock_t	lock; /* protect context, domain ids */
 	struct root_entry *root_entry; /* virtual address */
 
+	void __iomem	*root_entry_old_virt; /* mapped from old root entry */
+	unsigned long	root_entry_old_phys; /* root entry in old kernel */
+
 	struct iommu_flush flush;
 #endif
 	struct q_inval  *qi;            /* Queued invalidation info */
-- 
2.0.0-rc0

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 05/10] iommu/vt-d: Add functions to load and save old re
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: jerry.hoemann, tom.vaden, rwright, linux-pci, kexec, iommu,
	lisa.mitchell, linux-kernel, alex.williamson, zhen-hual, ddutile,
	doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6

Add functions to load root entry table from old kernel, and to save updated
root entry table.
Add two member in struct intel_iommu, to store the RTA in old kernel, and
the mapped virt address of it.

We use the old RTA in dump kernel, and when the iommu->root_entry is used as
a cache in kdump kernel, its phys address will not be save to RTA register,
but when its data is changed, we will save the new data to old root entry table.

Li, Zhen-hua:
    The functions and logics.

Takao Indoh:
    Add __iommu_flush_cache.

Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
Signed-off-by: Takao Indoh <indou.takao@jp.fujitsu.com>
---
 drivers/iommu/intel-iommu.c | 54 ++++++++++++++++++++++++++++++++++++++++++++-
 include/linux/intel-iommu.h |  3 +++
 2 files changed, 56 insertions(+), 1 deletion(-)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 5ba403a..ef8a99c 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -373,6 +373,10 @@ static struct context_entry *device_to_existing_context_entry(
 				struct intel_iommu *iommu,
 				u8 bus, u8 devfn);
 
+static void __iommu_load_old_root_entry(struct intel_iommu *iommu);
+
+static void __iommu_update_old_root_entry(struct intel_iommu *iommu, int index);
+
 /*
  * A structure used to store the address allocated by ioremap();
  * The we need to call iounmap() to free them out of spin_lock_irqsave/unlock;
@@ -384,7 +388,6 @@ struct iommu_remapped_entry {
 static LIST_HEAD(__iommu_remapped_mem);
 static DEFINE_MUTEX(__iommu_mem_list_lock);
 
-
 /*
  * This domain is a statically identity mapping domain.
  *	1. This domain creats a static 1:1 mapping to all usable memory.
@@ -4919,3 +4922,52 @@ int __iommu_free_mapped_mem(void)
 	return 0;
 }
 
+/*
+ * Load the old root entry table to new root entry table.
+ */
+static void __iommu_load_old_root_entry(struct intel_iommu *iommu)
+{
+	if ((!iommu)
+		|| (!iommu->root_entry)
+		|| (!iommu->root_entry_old_virt)
+		|| (!iommu->root_entry_old_phys))
+		return;
+	memcpy(iommu->root_entry, iommu->root_entry_old_virt, PAGE_SIZE);
+
+	__iommu_flush_cache(iommu, iommu->root_entry, PAGE_SIZE);
+}
+
+/*
+ * When the data in new root entry table is changed, this function
+ * must be called to save the updated data to old root entry table.
+ */
+static void __iommu_update_old_root_entry(struct intel_iommu *iommu, int index)
+{
+	u8 start;
+	unsigned long size;
+	void __iomem *to;
+	void *from;
+
+	if ((!iommu)
+		|| (!iommu->root_entry)
+		|| (!iommu->root_entry_old_virt)
+		|| (!iommu->root_entry_old_phys))
+		return;
+
+	if (index < -1 || index >= ROOT_ENTRY_NR)
+		return;
+
+	if (index == -1) {
+		start = 0;
+		size = ROOT_ENTRY_NR * sizeof(struct root_entry);
+	} else {
+		start = index * sizeof(struct root_entry);
+		size = sizeof(struct root_entry);
+	}
+	to = iommu->root_entry_old_virt;
+	from = iommu->root_entry;
+	memcpy(to + start, from + start, size);
+
+	__iommu_flush_cache(iommu, to + start, size);
+}
+
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
index 4bca7b5..6fa0804 100644
--- a/include/linux/intel-iommu.h
+++ b/include/linux/intel-iommu.h
@@ -328,6 +328,9 @@ struct intel_iommu {
 	spinlock_t	lock; /* protect context, domain ids */
 	struct root_entry *root_entry; /* virtual address */
 
+	void __iomem	*root_entry_old_virt; /* mapped from old root entry */
+	unsigned long	root_entry_old_phys; /* root entry in old kernel */
+
 	struct iommu_flush flush;
 #endif
 	struct q_inval  *qi;            /* Queued invalidation info */
-- 
2.0.0-rc0


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 06/10] iommu/vt-d: datatypes and functions used for kdump
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: iommu, linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, zhen-hual, rwright

Populate it with support functions to copy iommu translation tables from
from the panicked kernel into the kdump kernel in the event of a crash.

Functions:
    Use old root entry table, and load the old data to root_entry as cache.
    Malloc new context table and copy old context table to the new one.

Bill Sumner:
    Original version, the creation of the data types and functions.

Li, Zhenhua:
    Create new function iommu_check_pre_te_status() to check status.
    Update the caller of context_get_* and context_put*, use context_*
        and context_set_* for replacement.
    Update the name of the function that loads root entry table.
    Use new function to copy old context entry tables and page tables.
    Use "unsigned long" for physical address.
    Remove the functions to copy page table in Bill's version.
    Remove usage of dve and ppap in Bill's version.

Signed-off-by: Bill Sumner <billsumnerlinux@gmail.com>
Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel-iommu.c | 121 ++++++++++++++++++++++++++++++++++++++++++++
 include/linux/intel-iommu.h |   3 ++
 2 files changed, 124 insertions(+)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index ef8a99c..78c1d65 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -388,6 +388,18 @@ struct iommu_remapped_entry {
 static LIST_HEAD(__iommu_remapped_mem);
 static DEFINE_MUTEX(__iommu_mem_list_lock);
 
+/* ========================================================================
+ * Copy iommu translation tables from old kernel into new  kernel.
+ * Entry to this set of functions is: intel_iommu_load_translation_tables()
+ * ------------------------------------------------------------------------
+ */
+
+static int copy_root_entry_table(struct intel_iommu *iommu);
+
+static int intel_iommu_load_translation_tables(struct intel_iommu *iommu);
+
+static void iommu_check_pre_te_status(struct intel_iommu *iommu);
+
 /*
  * This domain is a statically identity mapping domain.
  *	1. This domain creats a static 1:1 mapping to all usable memory.
@@ -4971,3 +4983,112 @@ static void __iommu_update_old_root_entry(struct intel_iommu *iommu, int index)
 	__iommu_flush_cache(iommu, to + start, size);
 }
 
+/*
+ * Load root entry tables from old kernel.
+ */
+static int copy_root_entry_table(struct intel_iommu *iommu)
+{
+	u32 bus;				/* Index: root-entry-table */
+	struct root_entry  *re;			/* Virt(iterator: new table) */
+	unsigned long context_old_phys;		/* Phys(context table entry) */
+	struct context_entry *context_new_virt;	/* Virt(new context_entry) */
+
+	/*
+	 * A new root entry table has been allocated ,
+	 * we need copy re from old kernel to the new allocated one.
+	 */
+
+	if (!iommu->root_entry_old_phys)
+		return -ENOMEM;
+
+	for (bus = 0, re = iommu->root_entry; bus < 256; bus += 1, re += 1) {
+		if (!root_present(re))
+			continue;
+
+		context_old_phys = get_context_phys_from_root(re);
+
+		if (!context_old_phys)
+			continue;
+
+		context_new_virt =
+			(struct context_entry *)alloc_pgtable_page(iommu->node);
+
+		if (!context_new_virt)
+			return -ENOMEM;
+
+		__iommu_load_from_oldmem(context_new_virt,
+					context_old_phys,
+					VTD_PAGE_SIZE);
+
+		__iommu_flush_cache(iommu, context_new_virt, VTD_PAGE_SIZE);
+
+		set_root_value(re, virt_to_phys(context_new_virt));
+	}
+
+	return 0;
+}
+
+/*
+ * Interface to the "load translation tables" set of functions
+ * from mainline code.
+ */
+static int intel_iommu_load_translation_tables(struct intel_iommu *iommu)
+{
+	unsigned long long q;		/* quadword scratch */
+	int ret = 0;			/* Integer return code */
+	unsigned long flags;
+
+	q = dmar_readq(iommu->reg + DMAR_RTADDR_REG);
+	if (!q)
+		return -1;
+
+	spin_lock_irqsave(&iommu->lock, flags);
+
+	/* Load the root-entry table from the old kernel
+	 * foreach context_entry_table in root_entry
+	 *   Copy each entry table from old kernel
+	 */
+	if (!iommu->root_entry) {
+		iommu->root_entry =
+			(struct root_entry *)alloc_pgtable_page(iommu->node);
+		if (!iommu->root_entry) {
+			spin_unlock_irqrestore(&iommu->lock, flags);
+			return -ENOMEM;
+		}
+	}
+
+	iommu->root_entry_old_phys = q & VTD_PAGE_MASK;
+	if (!iommu->root_entry_old_phys) {
+		pr_err("Could not read old root entry address.");
+		return -1;
+	}
+
+	iommu->root_entry_old_virt = ioremap_cache(iommu->root_entry_old_phys,
+						VTD_PAGE_SIZE);
+	if (!iommu->root_entry_old_virt) {
+		pr_err("Could not map the old root entry.");
+		return -ENOMEM;
+	}
+
+	__iommu_load_old_root_entry(iommu);
+	ret = copy_root_entry_table(iommu);
+	__iommu_flush_cache(iommu, iommu->root_entry, PAGE_SIZE);
+	__iommu_update_old_root_entry(iommu, -1);
+
+	spin_unlock_irqrestore(&iommu->lock, flags);
+
+	__iommu_free_mapped_mem();
+
+	return ret;
+}
+
+static void iommu_check_pre_te_status(struct intel_iommu *iommu)
+{
+	u32 sts;
+
+	sts = readl(iommu->reg + DMAR_GSTS_REG);
+	if (sts & DMA_GSTS_TES) {
+		pr_info("Translation is enabled prior to OS.\n");
+		iommu->pre_enabled_trans = 1;
+	}
+}
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
index 6fa0804..9ca025a 100644
--- a/include/linux/intel-iommu.h
+++ b/include/linux/intel-iommu.h
@@ -328,6 +328,9 @@ struct intel_iommu {
 	spinlock_t	lock; /* protect context, domain ids */
 	struct root_entry *root_entry; /* virtual address */
 
+	/* whether translation is enabled prior to OS*/
+	u8		pre_enabled_trans;
+
 	void __iomem	*root_entry_old_virt; /* mapped from old root entry */
 	unsigned long	root_entry_old_phys; /* root entry in old kernel */
 
-- 
2.0.0-rc0


^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 06/10] iommu/vt-d: datatypes and functions used for kdump
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, indou.takao-+CUm20s59erQFUHtdCDX3A,
	bhe-H+wXaHxf7aLQT0dZR+AlfA, joro-zLv9SwRftAIdnm+yROfE0A,
	vgoyal-H+wXaHxf7aLQT0dZR+AlfA, dyoung-H+wXaHxf7aLQT0dZR+AlfA
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	lisa.mitchell-VXdhtT5mjnY, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	zhen-hual-VXdhtT5mjnY, doug.hatch-VXdhtT5mjnY,
	ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY

Populate it with support functions to copy iommu translation tables from
from the panicked kernel into the kdump kernel in the event of a crash.

Functions:
    Use old root entry table, and load the old data to root_entry as cache.
    Malloc new context table and copy old context table to the new one.

Bill Sumner:
    Original version, the creation of the data types and functions.

Li, Zhenhua:
    Create new function iommu_check_pre_te_status() to check status.
    Update the caller of context_get_* and context_put*, use context_*
        and context_set_* for replacement.
    Update the name of the function that loads root entry table.
    Use new function to copy old context entry tables and page tables.
    Use "unsigned long" for physical address.
    Remove the functions to copy page table in Bill's version.
    Remove usage of dve and ppap in Bill's version.

Signed-off-by: Bill Sumner <billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Signed-off-by: Li, Zhen-Hua <zhen-hual-VXdhtT5mjnY@public.gmane.org>
---
 drivers/iommu/intel-iommu.c | 121 ++++++++++++++++++++++++++++++++++++++++++++
 include/linux/intel-iommu.h |   3 ++
 2 files changed, 124 insertions(+)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index ef8a99c..78c1d65 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -388,6 +388,18 @@ struct iommu_remapped_entry {
 static LIST_HEAD(__iommu_remapped_mem);
 static DEFINE_MUTEX(__iommu_mem_list_lock);
 
+/* ========================================================================
+ * Copy iommu translation tables from old kernel into new  kernel.
+ * Entry to this set of functions is: intel_iommu_load_translation_tables()
+ * ------------------------------------------------------------------------
+ */
+
+static int copy_root_entry_table(struct intel_iommu *iommu);
+
+static int intel_iommu_load_translation_tables(struct intel_iommu *iommu);
+
+static void iommu_check_pre_te_status(struct intel_iommu *iommu);
+
 /*
  * This domain is a statically identity mapping domain.
  *	1. This domain creats a static 1:1 mapping to all usable memory.
@@ -4971,3 +4983,112 @@ static void __iommu_update_old_root_entry(struct intel_iommu *iommu, int index)
 	__iommu_flush_cache(iommu, to + start, size);
 }
 
+/*
+ * Load root entry tables from old kernel.
+ */
+static int copy_root_entry_table(struct intel_iommu *iommu)
+{
+	u32 bus;				/* Index: root-entry-table */
+	struct root_entry  *re;			/* Virt(iterator: new table) */
+	unsigned long context_old_phys;		/* Phys(context table entry) */
+	struct context_entry *context_new_virt;	/* Virt(new context_entry) */
+
+	/*
+	 * A new root entry table has been allocated ,
+	 * we need copy re from old kernel to the new allocated one.
+	 */
+
+	if (!iommu->root_entry_old_phys)
+		return -ENOMEM;
+
+	for (bus = 0, re = iommu->root_entry; bus < 256; bus += 1, re += 1) {
+		if (!root_present(re))
+			continue;
+
+		context_old_phys = get_context_phys_from_root(re);
+
+		if (!context_old_phys)
+			continue;
+
+		context_new_virt =
+			(struct context_entry *)alloc_pgtable_page(iommu->node);
+
+		if (!context_new_virt)
+			return -ENOMEM;
+
+		__iommu_load_from_oldmem(context_new_virt,
+					context_old_phys,
+					VTD_PAGE_SIZE);
+
+		__iommu_flush_cache(iommu, context_new_virt, VTD_PAGE_SIZE);
+
+		set_root_value(re, virt_to_phys(context_new_virt));
+	}
+
+	return 0;
+}
+
+/*
+ * Interface to the "load translation tables" set of functions
+ * from mainline code.
+ */
+static int intel_iommu_load_translation_tables(struct intel_iommu *iommu)
+{
+	unsigned long long q;		/* quadword scratch */
+	int ret = 0;			/* Integer return code */
+	unsigned long flags;
+
+	q = dmar_readq(iommu->reg + DMAR_RTADDR_REG);
+	if (!q)
+		return -1;
+
+	spin_lock_irqsave(&iommu->lock, flags);
+
+	/* Load the root-entry table from the old kernel
+	 * foreach context_entry_table in root_entry
+	 *   Copy each entry table from old kernel
+	 */
+	if (!iommu->root_entry) {
+		iommu->root_entry =
+			(struct root_entry *)alloc_pgtable_page(iommu->node);
+		if (!iommu->root_entry) {
+			spin_unlock_irqrestore(&iommu->lock, flags);
+			return -ENOMEM;
+		}
+	}
+
+	iommu->root_entry_old_phys = q & VTD_PAGE_MASK;
+	if (!iommu->root_entry_old_phys) {
+		pr_err("Could not read old root entry address.");
+		return -1;
+	}
+
+	iommu->root_entry_old_virt = ioremap_cache(iommu->root_entry_old_phys,
+						VTD_PAGE_SIZE);
+	if (!iommu->root_entry_old_virt) {
+		pr_err("Could not map the old root entry.");
+		return -ENOMEM;
+	}
+
+	__iommu_load_old_root_entry(iommu);
+	ret = copy_root_entry_table(iommu);
+	__iommu_flush_cache(iommu, iommu->root_entry, PAGE_SIZE);
+	__iommu_update_old_root_entry(iommu, -1);
+
+	spin_unlock_irqrestore(&iommu->lock, flags);
+
+	__iommu_free_mapped_mem();
+
+	return ret;
+}
+
+static void iommu_check_pre_te_status(struct intel_iommu *iommu)
+{
+	u32 sts;
+
+	sts = readl(iommu->reg + DMAR_GSTS_REG);
+	if (sts & DMA_GSTS_TES) {
+		pr_info("Translation is enabled prior to OS.\n");
+		iommu->pre_enabled_trans = 1;
+	}
+}
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
index 6fa0804..9ca025a 100644
--- a/include/linux/intel-iommu.h
+++ b/include/linux/intel-iommu.h
@@ -328,6 +328,9 @@ struct intel_iommu {
 	spinlock_t	lock; /* protect context, domain ids */
 	struct root_entry *root_entry; /* virtual address */
 
+	/* whether translation is enabled prior to OS*/
+	u8		pre_enabled_trans;
+
 	void __iomem	*root_entry_old_virt; /* mapped from old root entry */
 	unsigned long	root_entry_old_phys; /* root entry in old kernel */
 
-- 
2.0.0-rc0

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 06/10] iommu/vt-d: datatypes and functions used for kdump
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: jerry.hoemann, tom.vaden, rwright, linux-pci, kexec, iommu,
	lisa.mitchell, linux-kernel, alex.williamson, zhen-hual, ddutile,
	doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6

Populate it with support functions to copy iommu translation tables from
from the panicked kernel into the kdump kernel in the event of a crash.

Functions:
    Use old root entry table, and load the old data to root_entry as cache.
    Malloc new context table and copy old context table to the new one.

Bill Sumner:
    Original version, the creation of the data types and functions.

Li, Zhenhua:
    Create new function iommu_check_pre_te_status() to check status.
    Update the caller of context_get_* and context_put*, use context_*
        and context_set_* for replacement.
    Update the name of the function that loads root entry table.
    Use new function to copy old context entry tables and page tables.
    Use "unsigned long" for physical address.
    Remove the functions to copy page table in Bill's version.
    Remove usage of dve and ppap in Bill's version.

Signed-off-by: Bill Sumner <billsumnerlinux@gmail.com>
Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel-iommu.c | 121 ++++++++++++++++++++++++++++++++++++++++++++
 include/linux/intel-iommu.h |   3 ++
 2 files changed, 124 insertions(+)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index ef8a99c..78c1d65 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -388,6 +388,18 @@ struct iommu_remapped_entry {
 static LIST_HEAD(__iommu_remapped_mem);
 static DEFINE_MUTEX(__iommu_mem_list_lock);
 
+/* ========================================================================
+ * Copy iommu translation tables from old kernel into new  kernel.
+ * Entry to this set of functions is: intel_iommu_load_translation_tables()
+ * ------------------------------------------------------------------------
+ */
+
+static int copy_root_entry_table(struct intel_iommu *iommu);
+
+static int intel_iommu_load_translation_tables(struct intel_iommu *iommu);
+
+static void iommu_check_pre_te_status(struct intel_iommu *iommu);
+
 /*
  * This domain is a statically identity mapping domain.
  *	1. This domain creats a static 1:1 mapping to all usable memory.
@@ -4971,3 +4983,112 @@ static void __iommu_update_old_root_entry(struct intel_iommu *iommu, int index)
 	__iommu_flush_cache(iommu, to + start, size);
 }
 
+/*
+ * Load root entry tables from old kernel.
+ */
+static int copy_root_entry_table(struct intel_iommu *iommu)
+{
+	u32 bus;				/* Index: root-entry-table */
+	struct root_entry  *re;			/* Virt(iterator: new table) */
+	unsigned long context_old_phys;		/* Phys(context table entry) */
+	struct context_entry *context_new_virt;	/* Virt(new context_entry) */
+
+	/*
+	 * A new root entry table has been allocated ,
+	 * we need copy re from old kernel to the new allocated one.
+	 */
+
+	if (!iommu->root_entry_old_phys)
+		return -ENOMEM;
+
+	for (bus = 0, re = iommu->root_entry; bus < 256; bus += 1, re += 1) {
+		if (!root_present(re))
+			continue;
+
+		context_old_phys = get_context_phys_from_root(re);
+
+		if (!context_old_phys)
+			continue;
+
+		context_new_virt =
+			(struct context_entry *)alloc_pgtable_page(iommu->node);
+
+		if (!context_new_virt)
+			return -ENOMEM;
+
+		__iommu_load_from_oldmem(context_new_virt,
+					context_old_phys,
+					VTD_PAGE_SIZE);
+
+		__iommu_flush_cache(iommu, context_new_virt, VTD_PAGE_SIZE);
+
+		set_root_value(re, virt_to_phys(context_new_virt));
+	}
+
+	return 0;
+}
+
+/*
+ * Interface to the "load translation tables" set of functions
+ * from mainline code.
+ */
+static int intel_iommu_load_translation_tables(struct intel_iommu *iommu)
+{
+	unsigned long long q;		/* quadword scratch */
+	int ret = 0;			/* Integer return code */
+	unsigned long flags;
+
+	q = dmar_readq(iommu->reg + DMAR_RTADDR_REG);
+	if (!q)
+		return -1;
+
+	spin_lock_irqsave(&iommu->lock, flags);
+
+	/* Load the root-entry table from the old kernel
+	 * foreach context_entry_table in root_entry
+	 *   Copy each entry table from old kernel
+	 */
+	if (!iommu->root_entry) {
+		iommu->root_entry =
+			(struct root_entry *)alloc_pgtable_page(iommu->node);
+		if (!iommu->root_entry) {
+			spin_unlock_irqrestore(&iommu->lock, flags);
+			return -ENOMEM;
+		}
+	}
+
+	iommu->root_entry_old_phys = q & VTD_PAGE_MASK;
+	if (!iommu->root_entry_old_phys) {
+		pr_err("Could not read old root entry address.");
+		return -1;
+	}
+
+	iommu->root_entry_old_virt = ioremap_cache(iommu->root_entry_old_phys,
+						VTD_PAGE_SIZE);
+	if (!iommu->root_entry_old_virt) {
+		pr_err("Could not map the old root entry.");
+		return -ENOMEM;
+	}
+
+	__iommu_load_old_root_entry(iommu);
+	ret = copy_root_entry_table(iommu);
+	__iommu_flush_cache(iommu, iommu->root_entry, PAGE_SIZE);
+	__iommu_update_old_root_entry(iommu, -1);
+
+	spin_unlock_irqrestore(&iommu->lock, flags);
+
+	__iommu_free_mapped_mem();
+
+	return ret;
+}
+
+static void iommu_check_pre_te_status(struct intel_iommu *iommu)
+{
+	u32 sts;
+
+	sts = readl(iommu->reg + DMAR_GSTS_REG);
+	if (sts & DMA_GSTS_TES) {
+		pr_info("Translation is enabled prior to OS.\n");
+		iommu->pre_enabled_trans = 1;
+	}
+}
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
index 6fa0804..9ca025a 100644
--- a/include/linux/intel-iommu.h
+++ b/include/linux/intel-iommu.h
@@ -328,6 +328,9 @@ struct intel_iommu {
 	spinlock_t	lock; /* protect context, domain ids */
 	struct root_entry *root_entry; /* virtual address */
 
+	/* whether translation is enabled prior to OS*/
+	u8		pre_enabled_trans;
+
 	void __iomem	*root_entry_old_virt; /* mapped from old root entry */
 	unsigned long	root_entry_old_phys; /* root entry in old kernel */
 
-- 
2.0.0-rc0


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 07/10] iommu/vt-d: enable kdump support in iommu module
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: iommu, linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, zhen-hual, rwright

Modify the operation of the following functions when called during crash dump:
    device_to_context_entry
    free_context_table
    get_domain_for_dev
    init_dmars
    intel_iommu_init

Bill Sumner:
    Original version.

Zhenhua:
    The name of new calling functions.
    Do not disable and re-enable TE in kdump kernel.
    Use the did and gaw from old context entry;

Signed-off-by: Bill Sumner <billsumnerlinux@gmail.com>
Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel-iommu.c | 94 +++++++++++++++++++++++++++++++++++++++------
 1 file changed, 82 insertions(+), 12 deletions(-)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 78c1d65..3d4ea43 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -399,6 +399,7 @@ static int copy_root_entry_table(struct intel_iommu *iommu);
 static int intel_iommu_load_translation_tables(struct intel_iommu *iommu);
 
 static void iommu_check_pre_te_status(struct intel_iommu *iommu);
+static u8 g_translation_pre_enabled;
 
 /*
  * This domain is a statically identity mapping domain.
@@ -839,6 +840,9 @@ static struct context_entry * device_to_context_entry(struct intel_iommu *iommu,
 		set_root_value(root, phy_addr);
 		set_root_present(root);
 		__iommu_flush_cache(iommu, root, sizeof(*root));
+
+		if (iommu->pre_enabled_trans)
+			__iommu_update_old_root_entry(iommu, bus);
 	}
 	spin_unlock_irqrestore(&iommu->lock, flags);
 	return &context[devfn];
@@ -890,7 +894,8 @@ static void free_context_table(struct intel_iommu *iommu)
 
 	spin_lock_irqsave(&iommu->lock, flags);
 	if (!iommu->root_entry) {
-		goto out;
+		spin_unlock_irqrestore(&iommu->lock, flags);
+		return;
 	}
 	for (i = 0; i < ROOT_ENTRY_NR; i++) {
 		root = &iommu->root_entry[i];
@@ -898,10 +903,23 @@ static void free_context_table(struct intel_iommu *iommu)
 		if (context)
 			free_pgtable_page(context);
 	}
+
+	if (iommu->pre_enabled_trans) {
+		iommu->root_entry_old_phys = 0;
+		root = iommu->root_entry_old_virt;
+		iommu->root_entry_old_virt = NULL;
+	}
+
 	free_pgtable_page(iommu->root_entry);
 	iommu->root_entry = NULL;
-out:
+
 	spin_unlock_irqrestore(&iommu->lock, flags);
+
+	/* We put this out of spin_unlock is because iounmap() may
+	 * cause error if surrounded by spin_lock and unlock;
+	 */
+	if (iommu->pre_enabled_trans)
+		iounmap(root);
 }
 
 static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain,
@@ -2319,6 +2337,7 @@ static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
 	unsigned long flags;
 	u8 bus, devfn;
 	int did = -1;   /* Default to "no domain_id supplied" */
+	struct context_entry *ce = NULL;
 
 	domain = find_domain(dev);
 	if (domain)
@@ -2352,6 +2371,20 @@ static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
 	domain = alloc_domain(0);
 	if (!domain)
 		return NULL;
+
+	if (iommu->pre_enabled_trans) {
+		/*
+		 * if this device had a did in the old kernel
+		 * use its values instead of generating new ones
+		 */
+		ce = device_to_existing_context_entry(iommu, bus, devfn);
+
+		if (ce) {
+			did = context_domain_id(ce);
+			gaw = agaw_to_width(context_address_width(ce));
+		}
+	}
+
 	domain->id = iommu_attach_domain_with_id(domain, iommu, did);
 	if (domain->id < 0) {
 		free_domain_mem(domain);
@@ -2879,6 +2912,7 @@ static int __init init_dmars(void)
 		goto free_g_iommus;
 	}
 
+	g_translation_pre_enabled = 0; /* To know whether to skip RMRR */
 	for_each_active_iommu(iommu, drhd) {
 		g_iommus[iommu->seq_id] = iommu;
 
@@ -2886,14 +2920,30 @@ static int __init init_dmars(void)
 		if (ret)
 			goto free_iommu;
 
-		/*
-		 * TBD:
-		 * we could share the same root & context tables
-		 * among all IOMMU's. Need to Split it later.
-		 */
-		ret = iommu_alloc_root_entry(iommu);
-		if (ret)
-			goto free_iommu;
+		iommu_check_pre_te_status(iommu);
+		if (iommu->pre_enabled_trans) {
+			pr_info("IOMMU Copying translate tables from panicked kernel\n");
+			ret = intel_iommu_load_translation_tables(iommu);
+			if (ret) {
+				pr_err("IOMMU: Copy translate tables failed\n");
+
+				/* Best to stop trying */
+				goto free_iommu;
+			}
+			pr_info("IOMMU: root_cache:0x%12.12llx phys:0x%12.12llx\n",
+				(u64)iommu->root_entry,
+				(u64)iommu->root_entry_old_phys);
+		} else {
+			/*
+			 * TBD:
+			 * we could share the same root & context tables
+			 * among all IOMMU's. Need to Split it later.
+			 */
+			ret = iommu_alloc_root_entry(iommu);
+			if (ret)
+				goto free_iommu;
+		}
+
 		if (!ecap_pass_through(iommu->ecap))
 			hw_pass_through = 0;
 	}
@@ -2911,6 +2961,14 @@ static int __init init_dmars(void)
 	check_tylersburg_isoch();
 
 	/*
+	 * In the second kernel: Skip setting-up new domains for
+	 * si, rmrr, and the isa bus on the expectation that these
+	 * translations were copied from the old kernel.
+	 */
+	if (g_translation_pre_enabled)
+		goto skip_new_domains_for_si_rmrr_isa;
+
+	/*
 	 * If pass through is not set or not enabled, setup context entries for
 	 * identity mappings for rmrr, gfx, and isa and may fall back to static
 	 * identity mapping if iommu_identity_mapping is set.
@@ -2950,6 +3008,8 @@ static int __init init_dmars(void)
 
 	iommu_prepare_isa();
 
+skip_new_domains_for_si_rmrr_isa:;
+
 	/*
 	 * for each drhd
 	 *   enable fault log
@@ -2978,7 +3038,13 @@ static int __init init_dmars(void)
 
 		iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
 		iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
-		iommu_enable_translation(iommu);
+
+		if (iommu->pre_enabled_trans) {
+			if (!(iommu->gcmd & DMA_GCMD_TE))
+				iommu_enable_translation(iommu);
+		} else
+			iommu_enable_translation(iommu);
+
 		iommu_disable_protect_mem_regions(iommu);
 	}
 
@@ -4264,11 +4330,14 @@ int __init intel_iommu_init(void)
 	}
 
 	/*
-	 * Disable translation if already enabled prior to OS handover.
+	 * We do not need to disable translation if already enabled prior
+	 * to OS handover. Because we will try to copy old tables;
 	 */
+	/*
 	for_each_active_iommu(iommu, drhd)
 		if (iommu->gcmd & DMA_GCMD_TE)
 			iommu_disable_translation(iommu);
+	*/
 
 	if (dmar_dev_scope_init() < 0) {
 		if (force_on)
@@ -5090,5 +5159,6 @@ static void iommu_check_pre_te_status(struct intel_iommu *iommu)
 	if (sts & DMA_GSTS_TES) {
 		pr_info("Translation is enabled prior to OS.\n");
 		iommu->pre_enabled_trans = 1;
+		g_translation_pre_enabled = 1;
 	}
 }
-- 
2.0.0-rc0


^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 07/10] iommu/vt-d: enable kdump support in iommu module
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, indou.takao-+CUm20s59erQFUHtdCDX3A,
	bhe-H+wXaHxf7aLQT0dZR+AlfA, joro-zLv9SwRftAIdnm+yROfE0A,
	vgoyal-H+wXaHxf7aLQT0dZR+AlfA, dyoung-H+wXaHxf7aLQT0dZR+AlfA
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	lisa.mitchell-VXdhtT5mjnY, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	zhen-hual-VXdhtT5mjnY, doug.hatch-VXdhtT5mjnY,
	ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY

Modify the operation of the following functions when called during crash dump:
    device_to_context_entry
    free_context_table
    get_domain_for_dev
    init_dmars
    intel_iommu_init

Bill Sumner:
    Original version.

Zhenhua:
    The name of new calling functions.
    Do not disable and re-enable TE in kdump kernel.
    Use the did and gaw from old context entry;

Signed-off-by: Bill Sumner <billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Signed-off-by: Li, Zhen-Hua <zhen-hual-VXdhtT5mjnY@public.gmane.org>
---
 drivers/iommu/intel-iommu.c | 94 +++++++++++++++++++++++++++++++++++++++------
 1 file changed, 82 insertions(+), 12 deletions(-)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 78c1d65..3d4ea43 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -399,6 +399,7 @@ static int copy_root_entry_table(struct intel_iommu *iommu);
 static int intel_iommu_load_translation_tables(struct intel_iommu *iommu);
 
 static void iommu_check_pre_te_status(struct intel_iommu *iommu);
+static u8 g_translation_pre_enabled;
 
 /*
  * This domain is a statically identity mapping domain.
@@ -839,6 +840,9 @@ static struct context_entry * device_to_context_entry(struct intel_iommu *iommu,
 		set_root_value(root, phy_addr);
 		set_root_present(root);
 		__iommu_flush_cache(iommu, root, sizeof(*root));
+
+		if (iommu->pre_enabled_trans)
+			__iommu_update_old_root_entry(iommu, bus);
 	}
 	spin_unlock_irqrestore(&iommu->lock, flags);
 	return &context[devfn];
@@ -890,7 +894,8 @@ static void free_context_table(struct intel_iommu *iommu)
 
 	spin_lock_irqsave(&iommu->lock, flags);
 	if (!iommu->root_entry) {
-		goto out;
+		spin_unlock_irqrestore(&iommu->lock, flags);
+		return;
 	}
 	for (i = 0; i < ROOT_ENTRY_NR; i++) {
 		root = &iommu->root_entry[i];
@@ -898,10 +903,23 @@ static void free_context_table(struct intel_iommu *iommu)
 		if (context)
 			free_pgtable_page(context);
 	}
+
+	if (iommu->pre_enabled_trans) {
+		iommu->root_entry_old_phys = 0;
+		root = iommu->root_entry_old_virt;
+		iommu->root_entry_old_virt = NULL;
+	}
+
 	free_pgtable_page(iommu->root_entry);
 	iommu->root_entry = NULL;
-out:
+
 	spin_unlock_irqrestore(&iommu->lock, flags);
+
+	/* We put this out of spin_unlock is because iounmap() may
+	 * cause error if surrounded by spin_lock and unlock;
+	 */
+	if (iommu->pre_enabled_trans)
+		iounmap(root);
 }
 
 static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain,
@@ -2319,6 +2337,7 @@ static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
 	unsigned long flags;
 	u8 bus, devfn;
 	int did = -1;   /* Default to "no domain_id supplied" */
+	struct context_entry *ce = NULL;
 
 	domain = find_domain(dev);
 	if (domain)
@@ -2352,6 +2371,20 @@ static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
 	domain = alloc_domain(0);
 	if (!domain)
 		return NULL;
+
+	if (iommu->pre_enabled_trans) {
+		/*
+		 * if this device had a did in the old kernel
+		 * use its values instead of generating new ones
+		 */
+		ce = device_to_existing_context_entry(iommu, bus, devfn);
+
+		if (ce) {
+			did = context_domain_id(ce);
+			gaw = agaw_to_width(context_address_width(ce));
+		}
+	}
+
 	domain->id = iommu_attach_domain_with_id(domain, iommu, did);
 	if (domain->id < 0) {
 		free_domain_mem(domain);
@@ -2879,6 +2912,7 @@ static int __init init_dmars(void)
 		goto free_g_iommus;
 	}
 
+	g_translation_pre_enabled = 0; /* To know whether to skip RMRR */
 	for_each_active_iommu(iommu, drhd) {
 		g_iommus[iommu->seq_id] = iommu;
 
@@ -2886,14 +2920,30 @@ static int __init init_dmars(void)
 		if (ret)
 			goto free_iommu;
 
-		/*
-		 * TBD:
-		 * we could share the same root & context tables
-		 * among all IOMMU's. Need to Split it later.
-		 */
-		ret = iommu_alloc_root_entry(iommu);
-		if (ret)
-			goto free_iommu;
+		iommu_check_pre_te_status(iommu);
+		if (iommu->pre_enabled_trans) {
+			pr_info("IOMMU Copying translate tables from panicked kernel\n");
+			ret = intel_iommu_load_translation_tables(iommu);
+			if (ret) {
+				pr_err("IOMMU: Copy translate tables failed\n");
+
+				/* Best to stop trying */
+				goto free_iommu;
+			}
+			pr_info("IOMMU: root_cache:0x%12.12llx phys:0x%12.12llx\n",
+				(u64)iommu->root_entry,
+				(u64)iommu->root_entry_old_phys);
+		} else {
+			/*
+			 * TBD:
+			 * we could share the same root & context tables
+			 * among all IOMMU's. Need to Split it later.
+			 */
+			ret = iommu_alloc_root_entry(iommu);
+			if (ret)
+				goto free_iommu;
+		}
+
 		if (!ecap_pass_through(iommu->ecap))
 			hw_pass_through = 0;
 	}
@@ -2911,6 +2961,14 @@ static int __init init_dmars(void)
 	check_tylersburg_isoch();
 
 	/*
+	 * In the second kernel: Skip setting-up new domains for
+	 * si, rmrr, and the isa bus on the expectation that these
+	 * translations were copied from the old kernel.
+	 */
+	if (g_translation_pre_enabled)
+		goto skip_new_domains_for_si_rmrr_isa;
+
+	/*
 	 * If pass through is not set or not enabled, setup context entries for
 	 * identity mappings for rmrr, gfx, and isa and may fall back to static
 	 * identity mapping if iommu_identity_mapping is set.
@@ -2950,6 +3008,8 @@ static int __init init_dmars(void)
 
 	iommu_prepare_isa();
 
+skip_new_domains_for_si_rmrr_isa:;
+
 	/*
 	 * for each drhd
 	 *   enable fault log
@@ -2978,7 +3038,13 @@ static int __init init_dmars(void)
 
 		iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
 		iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
-		iommu_enable_translation(iommu);
+
+		if (iommu->pre_enabled_trans) {
+			if (!(iommu->gcmd & DMA_GCMD_TE))
+				iommu_enable_translation(iommu);
+		} else
+			iommu_enable_translation(iommu);
+
 		iommu_disable_protect_mem_regions(iommu);
 	}
 
@@ -4264,11 +4330,14 @@ int __init intel_iommu_init(void)
 	}
 
 	/*
-	 * Disable translation if already enabled prior to OS handover.
+	 * We do not need to disable translation if already enabled prior
+	 * to OS handover. Because we will try to copy old tables;
 	 */
+	/*
 	for_each_active_iommu(iommu, drhd)
 		if (iommu->gcmd & DMA_GCMD_TE)
 			iommu_disable_translation(iommu);
+	*/
 
 	if (dmar_dev_scope_init() < 0) {
 		if (force_on)
@@ -5090,5 +5159,6 @@ static void iommu_check_pre_te_status(struct intel_iommu *iommu)
 	if (sts & DMA_GSTS_TES) {
 		pr_info("Translation is enabled prior to OS.\n");
 		iommu->pre_enabled_trans = 1;
+		g_translation_pre_enabled = 1;
 	}
 }
-- 
2.0.0-rc0

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 07/10] iommu/vt-d: enable kdump support in iommu module
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: jerry.hoemann, tom.vaden, rwright, linux-pci, kexec, iommu,
	lisa.mitchell, linux-kernel, alex.williamson, zhen-hual, ddutile,
	doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6

Modify the operation of the following functions when called during crash dump:
    device_to_context_entry
    free_context_table
    get_domain_for_dev
    init_dmars
    intel_iommu_init

Bill Sumner:
    Original version.

Zhenhua:
    The name of new calling functions.
    Do not disable and re-enable TE in kdump kernel.
    Use the did and gaw from old context entry;

Signed-off-by: Bill Sumner <billsumnerlinux@gmail.com>
Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel-iommu.c | 94 +++++++++++++++++++++++++++++++++++++++------
 1 file changed, 82 insertions(+), 12 deletions(-)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 78c1d65..3d4ea43 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -399,6 +399,7 @@ static int copy_root_entry_table(struct intel_iommu *iommu);
 static int intel_iommu_load_translation_tables(struct intel_iommu *iommu);
 
 static void iommu_check_pre_te_status(struct intel_iommu *iommu);
+static u8 g_translation_pre_enabled;
 
 /*
  * This domain is a statically identity mapping domain.
@@ -839,6 +840,9 @@ static struct context_entry * device_to_context_entry(struct intel_iommu *iommu,
 		set_root_value(root, phy_addr);
 		set_root_present(root);
 		__iommu_flush_cache(iommu, root, sizeof(*root));
+
+		if (iommu->pre_enabled_trans)
+			__iommu_update_old_root_entry(iommu, bus);
 	}
 	spin_unlock_irqrestore(&iommu->lock, flags);
 	return &context[devfn];
@@ -890,7 +894,8 @@ static void free_context_table(struct intel_iommu *iommu)
 
 	spin_lock_irqsave(&iommu->lock, flags);
 	if (!iommu->root_entry) {
-		goto out;
+		spin_unlock_irqrestore(&iommu->lock, flags);
+		return;
 	}
 	for (i = 0; i < ROOT_ENTRY_NR; i++) {
 		root = &iommu->root_entry[i];
@@ -898,10 +903,23 @@ static void free_context_table(struct intel_iommu *iommu)
 		if (context)
 			free_pgtable_page(context);
 	}
+
+	if (iommu->pre_enabled_trans) {
+		iommu->root_entry_old_phys = 0;
+		root = iommu->root_entry_old_virt;
+		iommu->root_entry_old_virt = NULL;
+	}
+
 	free_pgtable_page(iommu->root_entry);
 	iommu->root_entry = NULL;
-out:
+
 	spin_unlock_irqrestore(&iommu->lock, flags);
+
+	/* We put this out of spin_unlock is because iounmap() may
+	 * cause error if surrounded by spin_lock and unlock;
+	 */
+	if (iommu->pre_enabled_trans)
+		iounmap(root);
 }
 
 static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain,
@@ -2319,6 +2337,7 @@ static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
 	unsigned long flags;
 	u8 bus, devfn;
 	int did = -1;   /* Default to "no domain_id supplied" */
+	struct context_entry *ce = NULL;
 
 	domain = find_domain(dev);
 	if (domain)
@@ -2352,6 +2371,20 @@ static struct dmar_domain *get_domain_for_dev(struct device *dev, int gaw)
 	domain = alloc_domain(0);
 	if (!domain)
 		return NULL;
+
+	if (iommu->pre_enabled_trans) {
+		/*
+		 * if this device had a did in the old kernel
+		 * use its values instead of generating new ones
+		 */
+		ce = device_to_existing_context_entry(iommu, bus, devfn);
+
+		if (ce) {
+			did = context_domain_id(ce);
+			gaw = agaw_to_width(context_address_width(ce));
+		}
+	}
+
 	domain->id = iommu_attach_domain_with_id(domain, iommu, did);
 	if (domain->id < 0) {
 		free_domain_mem(domain);
@@ -2879,6 +2912,7 @@ static int __init init_dmars(void)
 		goto free_g_iommus;
 	}
 
+	g_translation_pre_enabled = 0; /* To know whether to skip RMRR */
 	for_each_active_iommu(iommu, drhd) {
 		g_iommus[iommu->seq_id] = iommu;
 
@@ -2886,14 +2920,30 @@ static int __init init_dmars(void)
 		if (ret)
 			goto free_iommu;
 
-		/*
-		 * TBD:
-		 * we could share the same root & context tables
-		 * among all IOMMU's. Need to Split it later.
-		 */
-		ret = iommu_alloc_root_entry(iommu);
-		if (ret)
-			goto free_iommu;
+		iommu_check_pre_te_status(iommu);
+		if (iommu->pre_enabled_trans) {
+			pr_info("IOMMU Copying translate tables from panicked kernel\n");
+			ret = intel_iommu_load_translation_tables(iommu);
+			if (ret) {
+				pr_err("IOMMU: Copy translate tables failed\n");
+
+				/* Best to stop trying */
+				goto free_iommu;
+			}
+			pr_info("IOMMU: root_cache:0x%12.12llx phys:0x%12.12llx\n",
+				(u64)iommu->root_entry,
+				(u64)iommu->root_entry_old_phys);
+		} else {
+			/*
+			 * TBD:
+			 * we could share the same root & context tables
+			 * among all IOMMU's. Need to Split it later.
+			 */
+			ret = iommu_alloc_root_entry(iommu);
+			if (ret)
+				goto free_iommu;
+		}
+
 		if (!ecap_pass_through(iommu->ecap))
 			hw_pass_through = 0;
 	}
@@ -2911,6 +2961,14 @@ static int __init init_dmars(void)
 	check_tylersburg_isoch();
 
 	/*
+	 * In the second kernel: Skip setting-up new domains for
+	 * si, rmrr, and the isa bus on the expectation that these
+	 * translations were copied from the old kernel.
+	 */
+	if (g_translation_pre_enabled)
+		goto skip_new_domains_for_si_rmrr_isa;
+
+	/*
 	 * If pass through is not set or not enabled, setup context entries for
 	 * identity mappings for rmrr, gfx, and isa and may fall back to static
 	 * identity mapping if iommu_identity_mapping is set.
@@ -2950,6 +3008,8 @@ static int __init init_dmars(void)
 
 	iommu_prepare_isa();
 
+skip_new_domains_for_si_rmrr_isa:;
+
 	/*
 	 * for each drhd
 	 *   enable fault log
@@ -2978,7 +3038,13 @@ static int __init init_dmars(void)
 
 		iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
 		iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
-		iommu_enable_translation(iommu);
+
+		if (iommu->pre_enabled_trans) {
+			if (!(iommu->gcmd & DMA_GCMD_TE))
+				iommu_enable_translation(iommu);
+		} else
+			iommu_enable_translation(iommu);
+
 		iommu_disable_protect_mem_regions(iommu);
 	}
 
@@ -4264,11 +4330,14 @@ int __init intel_iommu_init(void)
 	}
 
 	/*
-	 * Disable translation if already enabled prior to OS handover.
+	 * We do not need to disable translation if already enabled prior
+	 * to OS handover. Because we will try to copy old tables;
 	 */
+	/*
 	for_each_active_iommu(iommu, drhd)
 		if (iommu->gcmd & DMA_GCMD_TE)
 			iommu_disable_translation(iommu);
+	*/
 
 	if (dmar_dev_scope_init() < 0) {
 		if (force_on)
@@ -5090,5 +5159,6 @@ static void iommu_check_pre_te_status(struct intel_iommu *iommu)
 	if (sts & DMA_GSTS_TES) {
 		pr_info("Translation is enabled prior to OS.\n");
 		iommu->pre_enabled_trans = 1;
+		g_translation_pre_enabled = 1;
 	}
 }
-- 
2.0.0-rc0


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 08/10] iommu/vt-d: assign new page table for dma_map
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: iommu, linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, zhen-hual, rwright

When a device driver issues the first dma_map command for a device, we
assign a new and empty page-table, thus removing all mappings from the
old kernel for the device.

Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel-iommu.c | 58 ++++++++++++++++++++++++++++++++++++++-------
 1 file changed, 50 insertions(+), 8 deletions(-)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 3d4ea43..a874426 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -398,6 +398,9 @@ static int copy_root_entry_table(struct intel_iommu *iommu);
 
 static int intel_iommu_load_translation_tables(struct intel_iommu *iommu);
 
+static void unmap_device_dma(struct dmar_domain *domain,
+				struct device *dev,
+				struct intel_iommu *iommu);
 static void iommu_check_pre_te_status(struct intel_iommu *iommu);
 static u8 g_translation_pre_enabled;
 
@@ -3096,6 +3099,7 @@ static struct iova *intel_alloc_iova(struct device *dev,
 static struct dmar_domain *__get_valid_domain_for_dev(struct device *dev)
 {
 	struct dmar_domain *domain;
+	struct intel_iommu *iommu;
 	int ret;
 
 	domain = get_domain_for_dev(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
@@ -3105,14 +3109,30 @@ static struct dmar_domain *__get_valid_domain_for_dev(struct device *dev)
 		return NULL;
 	}
 
-	/* make sure context mapping is ok */
-	if (unlikely(!domain_context_mapped(dev))) {
-		ret = domain_context_mapping(domain, dev, CONTEXT_TT_MULTI_LEVEL);
-		if (ret) {
-			printk(KERN_ERR "Domain context map for %s failed",
-			       dev_name(dev));
-			return NULL;
-		}
+	/* if in kdump kernel, we need to unmap the mapped dma pages,
+	 * detach this device first.
+	 */
+	if (likely(domain_context_mapped(dev))) {
+		iommu = domain_get_iommu(domain);
+		if (iommu->pre_enabled_trans) {
+			unmap_device_dma(domain, dev, iommu);
+
+			domain = get_domain_for_dev(dev,
+				DEFAULT_DOMAIN_ADDRESS_WIDTH);
+			if (!domain) {
+				pr_err("Allocating domain for %s failed",
+				       dev_name(dev));
+				return NULL;
+			}
+		} else
+			return domain;
+	}
+
+	ret = domain_context_mapping(domain, dev, CONTEXT_TT_MULTI_LEVEL);
+	if (ret) {
+		pr_err("Domain context map for %s failed",
+		       dev_name(dev));
+		return NULL;
 	}
 
 	return domain;
@@ -5151,6 +5171,28 @@ static int intel_iommu_load_translation_tables(struct intel_iommu *iommu)
 	return ret;
 }
 
+static void unmap_device_dma(struct dmar_domain *domain,
+				struct device *dev,
+				struct intel_iommu *iommu)
+{
+	struct context_entry *ce;
+	struct iova *iova;
+	phys_addr_t phys_addr;
+	dma_addr_t dev_addr;
+	struct pci_dev *pdev;
+
+	pdev = to_pci_dev(dev);
+	ce = device_to_context_entry(iommu, pdev->bus->number, pdev->devfn);
+	phys_addr = context_address_root(ce) << VTD_PAGE_SHIFT;
+	dev_addr = phys_to_dma(dev, phys_addr);
+
+	iova = find_iova(&domain->iovad, IOVA_PFN(dev_addr));
+	if (iova)
+		intel_unmap(dev, dev_addr);
+
+	domain_remove_one_dev_info(domain, dev);
+}
+
 static void iommu_check_pre_te_status(struct intel_iommu *iommu)
 {
 	u32 sts;
-- 
2.0.0-rc0


^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 08/10] iommu/vt-d: assign new page table for dma_map
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, indou.takao-+CUm20s59erQFUHtdCDX3A,
	bhe-H+wXaHxf7aLQT0dZR+AlfA, joro-zLv9SwRftAIdnm+yROfE0A,
	vgoyal-H+wXaHxf7aLQT0dZR+AlfA, dyoung-H+wXaHxf7aLQT0dZR+AlfA
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	lisa.mitchell-VXdhtT5mjnY, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	zhen-hual-VXdhtT5mjnY, doug.hatch-VXdhtT5mjnY,
	ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY

When a device driver issues the first dma_map command for a device, we
assign a new and empty page-table, thus removing all mappings from the
old kernel for the device.

Signed-off-by: Li, Zhen-Hua <zhen-hual-VXdhtT5mjnY@public.gmane.org>
---
 drivers/iommu/intel-iommu.c | 58 ++++++++++++++++++++++++++++++++++++++-------
 1 file changed, 50 insertions(+), 8 deletions(-)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 3d4ea43..a874426 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -398,6 +398,9 @@ static int copy_root_entry_table(struct intel_iommu *iommu);
 
 static int intel_iommu_load_translation_tables(struct intel_iommu *iommu);
 
+static void unmap_device_dma(struct dmar_domain *domain,
+				struct device *dev,
+				struct intel_iommu *iommu);
 static void iommu_check_pre_te_status(struct intel_iommu *iommu);
 static u8 g_translation_pre_enabled;
 
@@ -3096,6 +3099,7 @@ static struct iova *intel_alloc_iova(struct device *dev,
 static struct dmar_domain *__get_valid_domain_for_dev(struct device *dev)
 {
 	struct dmar_domain *domain;
+	struct intel_iommu *iommu;
 	int ret;
 
 	domain = get_domain_for_dev(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
@@ -3105,14 +3109,30 @@ static struct dmar_domain *__get_valid_domain_for_dev(struct device *dev)
 		return NULL;
 	}
 
-	/* make sure context mapping is ok */
-	if (unlikely(!domain_context_mapped(dev))) {
-		ret = domain_context_mapping(domain, dev, CONTEXT_TT_MULTI_LEVEL);
-		if (ret) {
-			printk(KERN_ERR "Domain context map for %s failed",
-			       dev_name(dev));
-			return NULL;
-		}
+	/* if in kdump kernel, we need to unmap the mapped dma pages,
+	 * detach this device first.
+	 */
+	if (likely(domain_context_mapped(dev))) {
+		iommu = domain_get_iommu(domain);
+		if (iommu->pre_enabled_trans) {
+			unmap_device_dma(domain, dev, iommu);
+
+			domain = get_domain_for_dev(dev,
+				DEFAULT_DOMAIN_ADDRESS_WIDTH);
+			if (!domain) {
+				pr_err("Allocating domain for %s failed",
+				       dev_name(dev));
+				return NULL;
+			}
+		} else
+			return domain;
+	}
+
+	ret = domain_context_mapping(domain, dev, CONTEXT_TT_MULTI_LEVEL);
+	if (ret) {
+		pr_err("Domain context map for %s failed",
+		       dev_name(dev));
+		return NULL;
 	}
 
 	return domain;
@@ -5151,6 +5171,28 @@ static int intel_iommu_load_translation_tables(struct intel_iommu *iommu)
 	return ret;
 }
 
+static void unmap_device_dma(struct dmar_domain *domain,
+				struct device *dev,
+				struct intel_iommu *iommu)
+{
+	struct context_entry *ce;
+	struct iova *iova;
+	phys_addr_t phys_addr;
+	dma_addr_t dev_addr;
+	struct pci_dev *pdev;
+
+	pdev = to_pci_dev(dev);
+	ce = device_to_context_entry(iommu, pdev->bus->number, pdev->devfn);
+	phys_addr = context_address_root(ce) << VTD_PAGE_SHIFT;
+	dev_addr = phys_to_dma(dev, phys_addr);
+
+	iova = find_iova(&domain->iovad, IOVA_PFN(dev_addr));
+	if (iova)
+		intel_unmap(dev, dev_addr);
+
+	domain_remove_one_dev_info(domain, dev);
+}
+
 static void iommu_check_pre_te_status(struct intel_iommu *iommu)
 {
 	u32 sts;
-- 
2.0.0-rc0

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 08/10] iommu/vt-d: assign new page table for dma_map
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: jerry.hoemann, tom.vaden, rwright, linux-pci, kexec, iommu,
	lisa.mitchell, linux-kernel, alex.williamson, zhen-hual, ddutile,
	doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6

When a device driver issues the first dma_map command for a device, we
assign a new and empty page-table, thus removing all mappings from the
old kernel for the device.

Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel-iommu.c | 58 ++++++++++++++++++++++++++++++++++++++-------
 1 file changed, 50 insertions(+), 8 deletions(-)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 3d4ea43..a874426 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -398,6 +398,9 @@ static int copy_root_entry_table(struct intel_iommu *iommu);
 
 static int intel_iommu_load_translation_tables(struct intel_iommu *iommu);
 
+static void unmap_device_dma(struct dmar_domain *domain,
+				struct device *dev,
+				struct intel_iommu *iommu);
 static void iommu_check_pre_te_status(struct intel_iommu *iommu);
 static u8 g_translation_pre_enabled;
 
@@ -3096,6 +3099,7 @@ static struct iova *intel_alloc_iova(struct device *dev,
 static struct dmar_domain *__get_valid_domain_for_dev(struct device *dev)
 {
 	struct dmar_domain *domain;
+	struct intel_iommu *iommu;
 	int ret;
 
 	domain = get_domain_for_dev(dev, DEFAULT_DOMAIN_ADDRESS_WIDTH);
@@ -3105,14 +3109,30 @@ static struct dmar_domain *__get_valid_domain_for_dev(struct device *dev)
 		return NULL;
 	}
 
-	/* make sure context mapping is ok */
-	if (unlikely(!domain_context_mapped(dev))) {
-		ret = domain_context_mapping(domain, dev, CONTEXT_TT_MULTI_LEVEL);
-		if (ret) {
-			printk(KERN_ERR "Domain context map for %s failed",
-			       dev_name(dev));
-			return NULL;
-		}
+	/* if in kdump kernel, we need to unmap the mapped dma pages,
+	 * detach this device first.
+	 */
+	if (likely(domain_context_mapped(dev))) {
+		iommu = domain_get_iommu(domain);
+		if (iommu->pre_enabled_trans) {
+			unmap_device_dma(domain, dev, iommu);
+
+			domain = get_domain_for_dev(dev,
+				DEFAULT_DOMAIN_ADDRESS_WIDTH);
+			if (!domain) {
+				pr_err("Allocating domain for %s failed",
+				       dev_name(dev));
+				return NULL;
+			}
+		} else
+			return domain;
+	}
+
+	ret = domain_context_mapping(domain, dev, CONTEXT_TT_MULTI_LEVEL);
+	if (ret) {
+		pr_err("Domain context map for %s failed",
+		       dev_name(dev));
+		return NULL;
 	}
 
 	return domain;
@@ -5151,6 +5171,28 @@ static int intel_iommu_load_translation_tables(struct intel_iommu *iommu)
 	return ret;
 }
 
+static void unmap_device_dma(struct dmar_domain *domain,
+				struct device *dev,
+				struct intel_iommu *iommu)
+{
+	struct context_entry *ce;
+	struct iova *iova;
+	phys_addr_t phys_addr;
+	dma_addr_t dev_addr;
+	struct pci_dev *pdev;
+
+	pdev = to_pci_dev(dev);
+	ce = device_to_context_entry(iommu, pdev->bus->number, pdev->devfn);
+	phys_addr = context_address_root(ce) << VTD_PAGE_SHIFT;
+	dev_addr = phys_to_dma(dev, phys_addr);
+
+	iova = find_iova(&domain->iovad, IOVA_PFN(dev_addr));
+	if (iova)
+		intel_unmap(dev, dev_addr);
+
+	domain_remove_one_dev_info(domain, dev);
+}
+
 static void iommu_check_pre_te_status(struct intel_iommu *iommu)
 {
 	u32 sts;
-- 
2.0.0-rc0


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 09/10] iommu/vt-d: Copy functions for irte
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: iommu, linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, zhen-hual, rwright

Functions to copy the irte data from the old kernel into the kdump kernel.

Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel_irq_remapping.c | 68 +++++++++++++++++++++++++++++++++++++
 include/linux/intel-iommu.h         |  4 +++
 2 files changed, 72 insertions(+)

diff --git a/drivers/iommu/intel_irq_remapping.c b/drivers/iommu/intel_irq_remapping.c
index 14de1ab..e6426a0 100644
--- a/drivers/iommu/intel_irq_remapping.c
+++ b/drivers/iommu/intel_irq_remapping.c
@@ -17,6 +17,10 @@
 
 #include "irq_remapping.h"
 
+static int __iommu_load_old_irte(struct intel_iommu *iommu);
+static int __iommu_update_old_irte(struct intel_iommu *iommu, int index);
+static void iommu_check_pre_ir_status(struct intel_iommu *iommu);
+
 struct ioapic_scope {
 	struct intel_iommu *iommu;
 	unsigned int id;
@@ -1302,3 +1306,67 @@ int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert)
 
 	return ret;
 }
+
+static int __iommu_load_old_irte(struct intel_iommu *iommu)
+{
+	if ((!iommu)
+		|| (!iommu->ir_table)
+		|| (!iommu->ir_table->base)
+		|| (!iommu->ir_table->base_old_phys)
+		|| (!iommu->ir_table->base_old_virt))
+		return -1;
+
+	memcpy(iommu->ir_table->base,
+		iommu->ir_table->base_old_virt,
+		INTR_REMAP_TABLE_ENTRIES*sizeof(struct irte));
+
+	__iommu_flush_cache(iommu, iommu->ir_table->base,
+		INTR_REMAP_TABLE_ENTRIES*sizeof(struct irte));
+
+	return 0;
+}
+
+static int __iommu_update_old_irte(struct intel_iommu *iommu, int index)
+{
+	int start;
+	unsigned long size;
+	void __iomem *to;
+	void *from;
+
+	if ((!iommu)
+		|| (!iommu->ir_table)
+		|| (!iommu->ir_table->base)
+		|| (!iommu->ir_table->base_old_phys)
+		|| (!iommu->ir_table->base_old_virt))
+		return -1;
+
+	if (index < -1 || index >= INTR_REMAP_TABLE_ENTRIES)
+		return -1;
+
+	if (index == -1) {
+		start = 0;
+		size = INTR_REMAP_TABLE_ENTRIES * sizeof(struct irte);
+	} else {
+		start = index * sizeof(struct irte);
+		size = sizeof(struct irte);
+	}
+
+	to = iommu->ir_table->base_old_virt;
+	from = iommu->ir_table->base;
+	memcpy(to + start, from + start, size);
+
+	__iommu_flush_cache(iommu, to + start, size);
+
+	return 0;
+}
+
+static void iommu_check_pre_ir_status(struct intel_iommu *iommu)
+{
+	u32 sts;
+
+	sts = readl(iommu->reg + DMAR_GSTS_REG);
+	if (sts & DMA_GSTS_IRES) {
+		pr_info("IR is enabled prior to OS.\n");
+		iommu->pre_enabled_ir = 1;
+	}
+}
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
index 9ca025a..d7ee5ba 100644
--- a/include/linux/intel-iommu.h
+++ b/include/linux/intel-iommu.h
@@ -289,6 +289,8 @@ struct q_inval {
 struct ir_table {
 	struct irte *base;
 	unsigned long *bitmap;
+	void __iomem *base_old_virt;
+	unsigned long base_old_phys;
 };
 #endif
 
@@ -330,6 +332,8 @@ struct intel_iommu {
 
 	/* whether translation is enabled prior to OS*/
 	u8		pre_enabled_trans;
+	/* whether interrupt remapping is enabled prior to OS*/
+	u8		pre_enabled_ir;
 
 	void __iomem	*root_entry_old_virt; /* mapped from old root entry */
 	unsigned long	root_entry_old_phys; /* root entry in old kernel */
-- 
2.0.0-rc0


^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 09/10] iommu/vt-d: Copy functions for irte
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, indou.takao-+CUm20s59erQFUHtdCDX3A,
	bhe-H+wXaHxf7aLQT0dZR+AlfA, joro-zLv9SwRftAIdnm+yROfE0A,
	vgoyal-H+wXaHxf7aLQT0dZR+AlfA, dyoung-H+wXaHxf7aLQT0dZR+AlfA
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	lisa.mitchell-VXdhtT5mjnY, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	zhen-hual-VXdhtT5mjnY, doug.hatch-VXdhtT5mjnY,
	ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY

Functions to copy the irte data from the old kernel into the kdump kernel.

Signed-off-by: Li, Zhen-Hua <zhen-hual-VXdhtT5mjnY@public.gmane.org>
---
 drivers/iommu/intel_irq_remapping.c | 68 +++++++++++++++++++++++++++++++++++++
 include/linux/intel-iommu.h         |  4 +++
 2 files changed, 72 insertions(+)

diff --git a/drivers/iommu/intel_irq_remapping.c b/drivers/iommu/intel_irq_remapping.c
index 14de1ab..e6426a0 100644
--- a/drivers/iommu/intel_irq_remapping.c
+++ b/drivers/iommu/intel_irq_remapping.c
@@ -17,6 +17,10 @@
 
 #include "irq_remapping.h"
 
+static int __iommu_load_old_irte(struct intel_iommu *iommu);
+static int __iommu_update_old_irte(struct intel_iommu *iommu, int index);
+static void iommu_check_pre_ir_status(struct intel_iommu *iommu);
+
 struct ioapic_scope {
 	struct intel_iommu *iommu;
 	unsigned int id;
@@ -1302,3 +1306,67 @@ int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert)
 
 	return ret;
 }
+
+static int __iommu_load_old_irte(struct intel_iommu *iommu)
+{
+	if ((!iommu)
+		|| (!iommu->ir_table)
+		|| (!iommu->ir_table->base)
+		|| (!iommu->ir_table->base_old_phys)
+		|| (!iommu->ir_table->base_old_virt))
+		return -1;
+
+	memcpy(iommu->ir_table->base,
+		iommu->ir_table->base_old_virt,
+		INTR_REMAP_TABLE_ENTRIES*sizeof(struct irte));
+
+	__iommu_flush_cache(iommu, iommu->ir_table->base,
+		INTR_REMAP_TABLE_ENTRIES*sizeof(struct irte));
+
+	return 0;
+}
+
+static int __iommu_update_old_irte(struct intel_iommu *iommu, int index)
+{
+	int start;
+	unsigned long size;
+	void __iomem *to;
+	void *from;
+
+	if ((!iommu)
+		|| (!iommu->ir_table)
+		|| (!iommu->ir_table->base)
+		|| (!iommu->ir_table->base_old_phys)
+		|| (!iommu->ir_table->base_old_virt))
+		return -1;
+
+	if (index < -1 || index >= INTR_REMAP_TABLE_ENTRIES)
+		return -1;
+
+	if (index == -1) {
+		start = 0;
+		size = INTR_REMAP_TABLE_ENTRIES * sizeof(struct irte);
+	} else {
+		start = index * sizeof(struct irte);
+		size = sizeof(struct irte);
+	}
+
+	to = iommu->ir_table->base_old_virt;
+	from = iommu->ir_table->base;
+	memcpy(to + start, from + start, size);
+
+	__iommu_flush_cache(iommu, to + start, size);
+
+	return 0;
+}
+
+static void iommu_check_pre_ir_status(struct intel_iommu *iommu)
+{
+	u32 sts;
+
+	sts = readl(iommu->reg + DMAR_GSTS_REG);
+	if (sts & DMA_GSTS_IRES) {
+		pr_info("IR is enabled prior to OS.\n");
+		iommu->pre_enabled_ir = 1;
+	}
+}
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
index 9ca025a..d7ee5ba 100644
--- a/include/linux/intel-iommu.h
+++ b/include/linux/intel-iommu.h
@@ -289,6 +289,8 @@ struct q_inval {
 struct ir_table {
 	struct irte *base;
 	unsigned long *bitmap;
+	void __iomem *base_old_virt;
+	unsigned long base_old_phys;
 };
 #endif
 
@@ -330,6 +332,8 @@ struct intel_iommu {
 
 	/* whether translation is enabled prior to OS*/
 	u8		pre_enabled_trans;
+	/* whether interrupt remapping is enabled prior to OS*/
+	u8		pre_enabled_ir;
 
 	void __iomem	*root_entry_old_virt; /* mapped from old root entry */
 	unsigned long	root_entry_old_phys; /* root entry in old kernel */
-- 
2.0.0-rc0

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 09/10] iommu/vt-d: Copy functions for irte
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: jerry.hoemann, tom.vaden, rwright, linux-pci, kexec, iommu,
	lisa.mitchell, linux-kernel, alex.williamson, zhen-hual, ddutile,
	doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6

Functions to copy the irte data from the old kernel into the kdump kernel.

Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel_irq_remapping.c | 68 +++++++++++++++++++++++++++++++++++++
 include/linux/intel-iommu.h         |  4 +++
 2 files changed, 72 insertions(+)

diff --git a/drivers/iommu/intel_irq_remapping.c b/drivers/iommu/intel_irq_remapping.c
index 14de1ab..e6426a0 100644
--- a/drivers/iommu/intel_irq_remapping.c
+++ b/drivers/iommu/intel_irq_remapping.c
@@ -17,6 +17,10 @@
 
 #include "irq_remapping.h"
 
+static int __iommu_load_old_irte(struct intel_iommu *iommu);
+static int __iommu_update_old_irte(struct intel_iommu *iommu, int index);
+static void iommu_check_pre_ir_status(struct intel_iommu *iommu);
+
 struct ioapic_scope {
 	struct intel_iommu *iommu;
 	unsigned int id;
@@ -1302,3 +1306,67 @@ int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert)
 
 	return ret;
 }
+
+static int __iommu_load_old_irte(struct intel_iommu *iommu)
+{
+	if ((!iommu)
+		|| (!iommu->ir_table)
+		|| (!iommu->ir_table->base)
+		|| (!iommu->ir_table->base_old_phys)
+		|| (!iommu->ir_table->base_old_virt))
+		return -1;
+
+	memcpy(iommu->ir_table->base,
+		iommu->ir_table->base_old_virt,
+		INTR_REMAP_TABLE_ENTRIES*sizeof(struct irte));
+
+	__iommu_flush_cache(iommu, iommu->ir_table->base,
+		INTR_REMAP_TABLE_ENTRIES*sizeof(struct irte));
+
+	return 0;
+}
+
+static int __iommu_update_old_irte(struct intel_iommu *iommu, int index)
+{
+	int start;
+	unsigned long size;
+	void __iomem *to;
+	void *from;
+
+	if ((!iommu)
+		|| (!iommu->ir_table)
+		|| (!iommu->ir_table->base)
+		|| (!iommu->ir_table->base_old_phys)
+		|| (!iommu->ir_table->base_old_virt))
+		return -1;
+
+	if (index < -1 || index >= INTR_REMAP_TABLE_ENTRIES)
+		return -1;
+
+	if (index == -1) {
+		start = 0;
+		size = INTR_REMAP_TABLE_ENTRIES * sizeof(struct irte);
+	} else {
+		start = index * sizeof(struct irte);
+		size = sizeof(struct irte);
+	}
+
+	to = iommu->ir_table->base_old_virt;
+	from = iommu->ir_table->base;
+	memcpy(to + start, from + start, size);
+
+	__iommu_flush_cache(iommu, to + start, size);
+
+	return 0;
+}
+
+static void iommu_check_pre_ir_status(struct intel_iommu *iommu)
+{
+	u32 sts;
+
+	sts = readl(iommu->reg + DMAR_GSTS_REG);
+	if (sts & DMA_GSTS_IRES) {
+		pr_info("IR is enabled prior to OS.\n");
+		iommu->pre_enabled_ir = 1;
+	}
+}
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
index 9ca025a..d7ee5ba 100644
--- a/include/linux/intel-iommu.h
+++ b/include/linux/intel-iommu.h
@@ -289,6 +289,8 @@ struct q_inval {
 struct ir_table {
 	struct irte *base;
 	unsigned long *bitmap;
+	void __iomem *base_old_virt;
+	unsigned long base_old_phys;
 };
 #endif
 
@@ -330,6 +332,8 @@ struct intel_iommu {
 
 	/* whether translation is enabled prior to OS*/
 	u8		pre_enabled_trans;
+	/* whether interrupt remapping is enabled prior to OS*/
+	u8		pre_enabled_ir;
 
 	void __iomem	*root_entry_old_virt; /* mapped from old root entry */
 	unsigned long	root_entry_old_phys; /* root entry in old kernel */
-- 
2.0.0-rc0


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 10/10] iommu/vt-d: Use old irte in kdump kernel
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: iommu, linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, zhen-hual, rwright

Fix the intr-remapping fault.

[1.594890] dmar: DRHD: handling fault status reg 2
[1.594894] dmar: INTR-REMAP: Request device [[41:00.0] fault index 4d
[1.594894] INTR-REMAP:[fault reason 34] Present field in the IRTE entry
is clear

Use old irte in second kernel, do not disable and re-enable interrupt
remapping.

Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel_irq_remapping.c | 28 ++++++++++++++++++++++++----
 1 file changed, 24 insertions(+), 4 deletions(-)

diff --git a/drivers/iommu/intel_irq_remapping.c b/drivers/iommu/intel_irq_remapping.c
index e6426a0..02615a6 100644
--- a/drivers/iommu/intel_irq_remapping.c
+++ b/drivers/iommu/intel_irq_remapping.c
@@ -197,6 +197,10 @@ static int modify_irte(int irq, struct irte *irte_modified)
 
 	set_64bit(&irte->low, irte_modified->low);
 	set_64bit(&irte->high, irte_modified->high);
+
+	if (iommu->pre_enabled_ir)
+		__iommu_update_old_irte(iommu, index);
+
 	__iommu_flush_cache(iommu, irte, sizeof(*irte));
 
 	rc = qi_flush_iec(iommu, index, 0);
@@ -258,6 +262,9 @@ static int clear_entries(struct irq_2_iommu *irq_iommu)
 	bitmap_release_region(iommu->ir_table->bitmap, index,
 			      irq_iommu->irte_mask);
 
+	if (iommu->pre_enabled_ir)
+		__iommu_update_old_irte(iommu, -1);
+
 	return qi_flush_iec(iommu, index, irq_iommu->irte_mask);
 }
 
@@ -660,11 +667,13 @@ static int __init intel_enable_irq_remapping(void)
 		 */
 		dmar_fault(-1, iommu);
 
+		iommu_check_pre_ir_status(iommu);
+
 		/*
-		 * Disable intr remapping and queued invalidation, if already
-		 * enabled prior to OS handover.
+		 * Here we do not disable intr remapping,
+		 * if already enabled prior to OS handover.
 		 */
-		iommu_disable_irq_remapping(iommu);
+		/* iommu_disable_irq_remapping(iommu); */
 
 		dmar_disable_qi(iommu);
 	}
@@ -700,7 +709,18 @@ static int __init intel_enable_irq_remapping(void)
 	 * Setup Interrupt-remapping for all the DRHD's now.
 	 */
 	for_each_iommu(iommu, drhd) {
-		iommu_set_irq_remapping(iommu, eim);
+		if (iommu->pre_enabled_ir) {
+			unsigned long long q;
+
+			q = dmar_readq(iommu->reg + DMAR_IRTA_REG);
+			iommu->ir_table->base_old_phys = q & VTD_PAGE_MASK;
+			iommu->ir_table->base_old_virt = ioremap_cache(
+				iommu->ir_table->base_old_phys,
+				INTR_REMAP_TABLE_ENTRIES*sizeof(struct irte));
+			__iommu_load_old_irte(iommu);
+		} else
+			iommu_set_irq_remapping(iommu, eim);
+
 		setup = 1;
 	}
 
-- 
2.0.0-rc0


^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 10/10] iommu/vt-d: Use old irte in kdump kernel
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, indou.takao-+CUm20s59erQFUHtdCDX3A,
	bhe-H+wXaHxf7aLQT0dZR+AlfA, joro-zLv9SwRftAIdnm+yROfE0A,
	vgoyal-H+wXaHxf7aLQT0dZR+AlfA, dyoung-H+wXaHxf7aLQT0dZR+AlfA
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	lisa.mitchell-VXdhtT5mjnY, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	zhen-hual-VXdhtT5mjnY, doug.hatch-VXdhtT5mjnY,
	ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY

Fix the intr-remapping fault.

[1.594890] dmar: DRHD: handling fault status reg 2
[1.594894] dmar: INTR-REMAP: Request device [[41:00.0] fault index 4d
[1.594894] INTR-REMAP:[fault reason 34] Present field in the IRTE entry
is clear

Use old irte in second kernel, do not disable and re-enable interrupt
remapping.

Signed-off-by: Li, Zhen-Hua <zhen-hual-VXdhtT5mjnY@public.gmane.org>
---
 drivers/iommu/intel_irq_remapping.c | 28 ++++++++++++++++++++++++----
 1 file changed, 24 insertions(+), 4 deletions(-)

diff --git a/drivers/iommu/intel_irq_remapping.c b/drivers/iommu/intel_irq_remapping.c
index e6426a0..02615a6 100644
--- a/drivers/iommu/intel_irq_remapping.c
+++ b/drivers/iommu/intel_irq_remapping.c
@@ -197,6 +197,10 @@ static int modify_irte(int irq, struct irte *irte_modified)
 
 	set_64bit(&irte->low, irte_modified->low);
 	set_64bit(&irte->high, irte_modified->high);
+
+	if (iommu->pre_enabled_ir)
+		__iommu_update_old_irte(iommu, index);
+
 	__iommu_flush_cache(iommu, irte, sizeof(*irte));
 
 	rc = qi_flush_iec(iommu, index, 0);
@@ -258,6 +262,9 @@ static int clear_entries(struct irq_2_iommu *irq_iommu)
 	bitmap_release_region(iommu->ir_table->bitmap, index,
 			      irq_iommu->irte_mask);
 
+	if (iommu->pre_enabled_ir)
+		__iommu_update_old_irte(iommu, -1);
+
 	return qi_flush_iec(iommu, index, irq_iommu->irte_mask);
 }
 
@@ -660,11 +667,13 @@ static int __init intel_enable_irq_remapping(void)
 		 */
 		dmar_fault(-1, iommu);
 
+		iommu_check_pre_ir_status(iommu);
+
 		/*
-		 * Disable intr remapping and queued invalidation, if already
-		 * enabled prior to OS handover.
+		 * Here we do not disable intr remapping,
+		 * if already enabled prior to OS handover.
 		 */
-		iommu_disable_irq_remapping(iommu);
+		/* iommu_disable_irq_remapping(iommu); */
 
 		dmar_disable_qi(iommu);
 	}
@@ -700,7 +709,18 @@ static int __init intel_enable_irq_remapping(void)
 	 * Setup Interrupt-remapping for all the DRHD's now.
 	 */
 	for_each_iommu(iommu, drhd) {
-		iommu_set_irq_remapping(iommu, eim);
+		if (iommu->pre_enabled_ir) {
+			unsigned long long q;
+
+			q = dmar_readq(iommu->reg + DMAR_IRTA_REG);
+			iommu->ir_table->base_old_phys = q & VTD_PAGE_MASK;
+			iommu->ir_table->base_old_virt = ioremap_cache(
+				iommu->ir_table->base_old_phys,
+				INTR_REMAP_TABLE_ENTRIES*sizeof(struct irte));
+			__iommu_load_old_irte(iommu);
+		} else
+			iommu_set_irq_remapping(iommu, eim);
+
 		setup = 1;
 	}
 
-- 
2.0.0-rc0

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* [PATCH v10 10/10] iommu/vt-d: Use old irte in kdump kernel
@ 2015-04-10  8:42   ` Li, Zhen-Hua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, Zhen-Hua @ 2015-04-10  8:42 UTC (permalink / raw)
  To: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung
  Cc: jerry.hoemann, tom.vaden, rwright, linux-pci, kexec, iommu,
	lisa.mitchell, linux-kernel, alex.williamson, zhen-hual, ddutile,
	doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6

Fix the intr-remapping fault.

[1.594890] dmar: DRHD: handling fault status reg 2
[1.594894] dmar: INTR-REMAP: Request device [[41:00.0] fault index 4d
[1.594894] INTR-REMAP:[fault reason 34] Present field in the IRTE entry
is clear

Use old irte in second kernel, do not disable and re-enable interrupt
remapping.

Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
---
 drivers/iommu/intel_irq_remapping.c | 28 ++++++++++++++++++++++++----
 1 file changed, 24 insertions(+), 4 deletions(-)

diff --git a/drivers/iommu/intel_irq_remapping.c b/drivers/iommu/intel_irq_remapping.c
index e6426a0..02615a6 100644
--- a/drivers/iommu/intel_irq_remapping.c
+++ b/drivers/iommu/intel_irq_remapping.c
@@ -197,6 +197,10 @@ static int modify_irte(int irq, struct irte *irte_modified)
 
 	set_64bit(&irte->low, irte_modified->low);
 	set_64bit(&irte->high, irte_modified->high);
+
+	if (iommu->pre_enabled_ir)
+		__iommu_update_old_irte(iommu, index);
+
 	__iommu_flush_cache(iommu, irte, sizeof(*irte));
 
 	rc = qi_flush_iec(iommu, index, 0);
@@ -258,6 +262,9 @@ static int clear_entries(struct irq_2_iommu *irq_iommu)
 	bitmap_release_region(iommu->ir_table->bitmap, index,
 			      irq_iommu->irte_mask);
 
+	if (iommu->pre_enabled_ir)
+		__iommu_update_old_irte(iommu, -1);
+
 	return qi_flush_iec(iommu, index, irq_iommu->irte_mask);
 }
 
@@ -660,11 +667,13 @@ static int __init intel_enable_irq_remapping(void)
 		 */
 		dmar_fault(-1, iommu);
 
+		iommu_check_pre_ir_status(iommu);
+
 		/*
-		 * Disable intr remapping and queued invalidation, if already
-		 * enabled prior to OS handover.
+		 * Here we do not disable intr remapping,
+		 * if already enabled prior to OS handover.
 		 */
-		iommu_disable_irq_remapping(iommu);
+		/* iommu_disable_irq_remapping(iommu); */
 
 		dmar_disable_qi(iommu);
 	}
@@ -700,7 +709,18 @@ static int __init intel_enable_irq_remapping(void)
 	 * Setup Interrupt-remapping for all the DRHD's now.
 	 */
 	for_each_iommu(iommu, drhd) {
-		iommu_set_irq_remapping(iommu, eim);
+		if (iommu->pre_enabled_ir) {
+			unsigned long long q;
+
+			q = dmar_readq(iommu->reg + DMAR_IRTA_REG);
+			iommu->ir_table->base_old_phys = q & VTD_PAGE_MASK;
+			iommu->ir_table->base_old_virt = ioremap_cache(
+				iommu->ir_table->base_old_phys,
+				INTR_REMAP_TABLE_ENTRIES*sizeof(struct irte));
+			__iommu_load_old_irte(iommu);
+		} else
+			iommu_set_irq_remapping(iommu, eim);
+
 		setup = 1;
 	}
 
-- 
2.0.0-rc0


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply related	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
  2015-04-10  8:42 ` Li, Zhen-Hua
                   ` (11 preceding siblings ...)
  (?)
@ 2015-04-15  0:57 ` Dave Young
  2015-04-15  5:47     ` Li, ZhenHua
  -1 siblings, 1 reply; 99+ messages in thread
From: Dave Young @ 2015-04-15  0:57 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: dwmw2, indou.takao, bhe, joro, vgoyal, iommu, linux-kernel,
	linux-pci, kexec, alex.williamson, ddutile, ishii.hironobu,
	bhelgaas, doug.hatch, jerry.hoemann, tom.vaden, li.zhang6,
	lisa.mitchell, billsumnerlinux, rwright

On 04/10/15 at 04:42pm, Li, Zhen-Hua wrote:
> This patchset is an update of Bill Sumner's patchset, implements a fix for:
> If a kernel boots with intel_iommu=on on a system that supports intel vt-d, 
> when a panic happens, the kdump kernel will boot with these faults:
> 
>     dmar: DRHD: handling fault status reg 102
>     dmar: DMAR:[DMA Read] Request device [01:00.0] fault addr fff80000
>     DMAR:[fault reason 01] Present bit in root entry is clear
> 
>     dmar: DRHD: handling fault status reg 2
>     dmar: INTR-REMAP: Request device [[61:00.0] fault index 42
>     INTR-REMAP:[fault reason 34] Present field in the IRTE entry is clear
> 
> On some system, the interrupt remapping fault will also happen even if the 
> intel_iommu is not set to on, because the interrupt remapping will be enabled 
> when x2apic is needed by the system.
> 
> The cause of the DMA fault is described in Bill's original version, and the 
> INTR-Remap fault is caused by a similar reason. In short, the initialization 
> of vt-d drivers causes the in-flight DMA and interrupt requests get wrong 
> response.
> 
> To fix this problem, we modifies the behaviors of the intel vt-d in the 
> crashdump kernel:
> 
> For DMA Remapping:
> 1. To accept the vt-d hardware in an active state,
> 2. Do not disable and re-enable the translation, keep it enabled.
> 3. Use the old root entry table, do not rewrite the RTA register.
> 4. Malloc and use new context entry table, copy data from the old ones that
>    used by the old kernel.
> 5. Keep using the old page tables before driver is loaded.
> 6. After device driver is loaded, when it issues the first dma_map command, 
>    free the dmar_domain structure for this device, and generate a new one, so 
>    that the device can be assigned a new and empty page table. 
> 7. When a new context entry table is generated, we also save its address to 
>    the old root entry table.
> 
> For Interrupt Remapping:
> 1. To accept the vt-d hardware in an active state,
> 2. Do not disable and re-enable the interrupt remapping, keep it enabled.
> 3. Use the old interrupt remapping table, do not rewrite the IRTA register.
> 4. When ioapic entry is setup, the interrupt remapping table is changed, and 
>    the updated data will be stored to the old interrupt remapping table.
> 
> Advantages of this approach:
> 1. All manipulation of the IO-device is done by the Linux device-driver
>    for that device.
> 2. This approach behaves in a manner very similar to operation without an
>    active iommu.
> 3. Any activity between the IO-device and its RMRR areas is handled by the
>    device-driver in the same manner as during a non-kdump boot.
> 4. If an IO-device has no driver in the kdump kernel, it is simply left alone.
>    This supports the practice of creating a special kdump kernel without
>    drivers for any devices that are not required for taking a crashdump. 
> 5. Minimal code-changes among the existing mainline intel vt-d code.
> 
> Summary of changes in this patch set:
> 1. Added some useful function for root entry table in code intel-iommu.c
> 2. Added new members to struct root_entry and struct irte;
> 3. Functions to load old root entry table to iommu->root_entry from the memory 
>    of old kernel.
> 4. Functions to malloc new context entry table and copy the data from the old
>    ones to the malloced new ones.
> 5. Functions to enable support for DMA remapping in kdump kernel.
> 6. Functions to load old irte data from the old kernel to the kdump kernel.
> 7. Some code changes that support other behaviours that have been listed.
> 8. In the new functions, use physical address as "unsigned long" type, not 
>    pointers.
> 
> Original version by Bill Sumner:
>     https://lkml.org/lkml/2014/1/10/518
>     https://lkml.org/lkml/2014/4/15/716
>     https://lkml.org/lkml/2014/4/24/836
> 
> Zhenhua's updates:
>     https://lkml.org/lkml/2014/10/21/134
>     https://lkml.org/lkml/2014/12/15/121
>     https://lkml.org/lkml/2014/12/22/53
>     https://lkml.org/lkml/2015/1/6/1166
>     https://lkml.org/lkml/2015/1/12/35
>     https://lkml.org/lkml/2015/3/19/33
> 
> Changelog[v10]:
>     1. Do not use CONFIG_CRASH_DUMP and is_kdump_kernel().
>        Use one flag which stores the te and ir status in last kernel:
>            iommu->pre_enabled_trans
>            iommu->pre_enabled_ir
> 
> Changelog[v9]:
>     1. Add new function iommu_attach_domain_with_id.
>     2. Do not copy old page tables, keep using the old ones.
>     3. Remove functions:
>            intel_iommu_did_to_domain_values_entry
>            intel_iommu_get_dids_from_old_kernel
>            device_to_domain_id
>            copy_page_addr
>            copy_page_table
>            copy_context_entry
>            copy_context_entry_table
>     4. Add new function device_to_existing_context_entry.
> 
> Changelog[v8]:
>     1. Add a missing __iommu_flush_cache in function copy_page_table.
> 
> Changelog[v7]:
>     1. Use __iommu_flush_cache to flush the data to hardware.
> 
> Changelog[v6]:
>     1. Use "unsigned long" as type of physical address.
>     2. Use new function unmap_device_dma to unmap the old dma.
>     3. Some small incorrect bits order for aw shift.
> 
> Changelog[v5]:
>     1. Do not disable and re-enable traslation and interrupt remapping. 
>     2. Use old root entry table.
>     3. Use old interrupt remapping table.
>     4. New functions to copy data from old kernel, and save to old kernel mem.
>     5. New functions to save updated root entry table and irte table.
>     6. Use intel_unmap to unmap the old dma;
>     7. Allocate new pages while driver is being loaded.
> 
> Changelog[v4]:
>     1. Cut off the patches that move some defines and functions to new files.
>     2. Reduce the numbers of patches to five, make it more easier to read.
>     3. Changed the name of functions, make them consistent with current context
>        get/set functions.
>     4. Add change to function __iommu_attach_domain.
> 
> Changelog[v3]:
>     1. Commented-out "#define DEBUG 1" to eliminate debug messages.
>     2. Updated the comments about changes in each version.
>     3. Fixed: one-line added to Copy-Translations patch to initialize the iovad
>           struct as recommended by Baoquan He [bhe@redhat.com]
>           init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
> 
> Changelog[v2]:
>     The following series implements a fix for:
>     A kdump problem about DMA that has been discussed for a long time. That is,
>     when a kernel panics and boots into the kdump kernel, DMA started by the
>     panicked kernel is not stopped before the kdump kernel is booted and the
>     kdump kernel disables the IOMMU while this DMA continues.  This causes the
>     IOMMU to stop translating the DMA addresses as IOVAs and begin to treat
>     them as physical memory addresses -- which causes the DMA to either:
>         (1) generate DMAR errors or 
>         (2) generate PCI SERR errors or 
>         (3) transfer data to or from incorrect areas of memory. Often this 
>             causes the dump to fail.
> 
> Changelog[v1]:
>     The original version.
> 
> Changed in this version:
> 1. Do not disable and re-enable traslation and interrupt remapping. 
> 2. Use old root entry table.
> 3. Use old interrupt remapping table.
> 4. Use "unsigned long" as physical address.
> 5. Use intel_unmap to unmap the old dma;
> 
> Baoquan He <bhe@redhat.com> helps testing this patchset.
> Takao Indoh <indou.takao@jp.fujitsu.com> gives valuable suggestions.
> 
> Li, Zhen-Hua (10):
>   iommu/vt-d: New function to attach domain with id
>   iommu/vt-d: Items required for kdump
>   iommu/vt-d: Function to get old context entry
>   iommu/vt-d: functions to copy data from old mem
>   iommu/vt-d: Add functions to load and save old re
>   iommu/vt-d: datatypes and functions used for kdump
>   iommu/vt-d: enable kdump support in iommu module
>   iommu/vt-d: assign new page table for dma_map
>   iommu/vt-d: Copy functions for irte
>   iommu/vt-d: Use old irte in kdump kernel
> 
>  drivers/iommu/intel-iommu.c         | 518 ++++++++++++++++++++++++++++++++++--
>  drivers/iommu/intel_irq_remapping.c |  96 ++++++-
>  include/linux/intel-iommu.h         |  16 ++
>  3 files changed, 605 insertions(+), 25 deletions(-)
> 
> -- 
> 2.0.0-rc0


Again, I think it is bad to use old page table, below issues need consider:
1) make sure old page table are reliable across crash
2) do not allow writing oldmem after crash

Please correct me if I'm wrong, or if above is not doable I think I will vote for
resetting pci bus.

Thanks
Dave

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-15  5:47     ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-04-15  5:47 UTC (permalink / raw)
  To: Dave Young
  Cc: dwmw2, indou.takao, bhe, joro, vgoyal, iommu, linux-kernel,
	linux-pci, kexec, alex.williamson, ddutile, ishii.hironobu,
	bhelgaas, doug.hatch, jerry.hoemann, tom.vaden, li.zhang6,
	lisa.mitchell, billsumnerlinux, rwright

On 04/15/2015 08:57 AM, Dave Young wrote:
> Again, I think it is bad to use old page table, below issues need consider:
> 1) make sure old page table are reliable across crash
> 2) do not allow writing oldmem after crash
>
> Please correct me if I'm wrong, or if above is not doable I think I will vote for
> resetting pci bus.
>
> Thanks
> Dave
>
Hi Dave,

When updating the context tables, we have to write their address to root 
tables, this will cause writing to old mem.

Resetting the pci bus has been discussed, please check this:
http://lists.infradead.org/pipermail/kexec/2014-October/012752.html
https://lkml.org/lkml/2014/10/21/890

Thanks
Zhenhua




^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-15  5:47     ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-04-15  5:47 UTC (permalink / raw)
  To: Dave Young
  Cc: bhe-H+wXaHxf7aLQT0dZR+AlfA, tom.vaden-VXdhtT5mjnY,
	rwright-VXdhtT5mjnY, linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

On 04/15/2015 08:57 AM, Dave Young wrote:
> Again, I think it is bad to use old page table, below issues need consider:
> 1) make sure old page table are reliable across crash
> 2) do not allow writing oldmem after crash
>
> Please correct me if I'm wrong, or if above is not doable I think I will vote for
> resetting pci bus.
>
> Thanks
> Dave
>
Hi Dave,

When updating the context tables, we have to write their address to root 
tables, this will cause writing to old mem.

Resetting the pci bus has been discussed, please check this:
http://lists.infradead.org/pipermail/kexec/2014-October/012752.html
https://lkml.org/lkml/2014/10/21/890

Thanks
Zhenhua

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-15  5:47     ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-04-15  5:47 UTC (permalink / raw)
  To: Dave Young
  Cc: alex.williamson, indou.takao, bhe, tom.vaden, rwright, linux-pci,
	joro, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	ddutile, doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux,
	li.zhang6, dwmw2, vgoyal

On 04/15/2015 08:57 AM, Dave Young wrote:
> Again, I think it is bad to use old page table, below issues need consider:
> 1) make sure old page table are reliable across crash
> 2) do not allow writing oldmem after crash
>
> Please correct me if I'm wrong, or if above is not doable I think I will vote for
> resetting pci bus.
>
> Thanks
> Dave
>
Hi Dave,

When updating the context tables, we have to write their address to root 
tables, this will cause writing to old mem.

Resetting the pci bus has been discussed, please check this:
http://lists.infradead.org/pipermail/kexec/2014-October/012752.html
https://lkml.org/lkml/2014/10/21/890

Thanks
Zhenhua




_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
  2015-04-15  5:47     ` Li, ZhenHua
@ 2015-04-15  6:48       ` Dave Young
  -1 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-04-15  6:48 UTC (permalink / raw)
  To: Li, ZhenHua
  Cc: dwmw2, indou.takao, bhe, joro, vgoyal, iommu, linux-kernel,
	linux-pci, kexec, alex.williamson, ddutile, ishii.hironobu,
	bhelgaas, doug.hatch, jerry.hoemann, tom.vaden, li.zhang6,
	lisa.mitchell, billsumnerlinux, rwright

On 04/15/15 at 01:47pm, Li, ZhenHua wrote:
> On 04/15/2015 08:57 AM, Dave Young wrote:
> >Again, I think it is bad to use old page table, below issues need consider:
> >1) make sure old page table are reliable across crash
> >2) do not allow writing oldmem after crash
> >
> >Please correct me if I'm wrong, or if above is not doable I think I will vote for
> >resetting pci bus.
> >
> >Thanks
> >Dave
> >
> Hi Dave,
> 
> When updating the context tables, we have to write their address to root
> tables, this will cause writing to old mem.
> 
> Resetting the pci bus has been discussed, please check this:
> http://lists.infradead.org/pipermail/kexec/2014-October/012752.html
> https://lkml.org/lkml/2014/10/21/890

I know one reason to use old pgtable is this looks better because it fixes the
real problem, but it is not a good way if it introduce more problems because of
it have to use oldmem. I will be glad if this is not a problem but I have not
been convinced.

OTOH, there's many types of iommu, intel, amd, a lot of other types. They need
their own fixes, so it looks not that elegant.

For pci reset, it is not perfect, but it has another advantage, the patch is
simpler. The problem I see from the old discusssion is, reset bus in 2nd kernel
is acceptable but it does not fix things on sparc platform. AFAIK current reported
problems are intel and amd iommu, at least pci reset stuff does not make it worse.

Thanks
Dave

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-15  6:48       ` Dave Young
  0 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-04-15  6:48 UTC (permalink / raw)
  To: Li, ZhenHua
  Cc: alex.williamson, indou.takao, bhe, tom.vaden, rwright, linux-pci,
	joro, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	ddutile, doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux,
	li.zhang6, dwmw2, vgoyal

On 04/15/15 at 01:47pm, Li, ZhenHua wrote:
> On 04/15/2015 08:57 AM, Dave Young wrote:
> >Again, I think it is bad to use old page table, below issues need consider:
> >1) make sure old page table are reliable across crash
> >2) do not allow writing oldmem after crash
> >
> >Please correct me if I'm wrong, or if above is not doable I think I will vote for
> >resetting pci bus.
> >
> >Thanks
> >Dave
> >
> Hi Dave,
> 
> When updating the context tables, we have to write their address to root
> tables, this will cause writing to old mem.
> 
> Resetting the pci bus has been discussed, please check this:
> http://lists.infradead.org/pipermail/kexec/2014-October/012752.html
> https://lkml.org/lkml/2014/10/21/890

I know one reason to use old pgtable is this looks better because it fixes the
real problem, but it is not a good way if it introduce more problems because of
it have to use oldmem. I will be glad if this is not a problem but I have not
been convinced.

OTOH, there's many types of iommu, intel, amd, a lot of other types. They need
their own fixes, so it looks not that elegant.

For pci reset, it is not perfect, but it has another advantage, the patch is
simpler. The problem I see from the old discusssion is, reset bus in 2nd kernel
is acceptable but it does not fix things on sparc platform. AFAIK current reported
problems are intel and amd iommu, at least pci reset stuff does not make it worse.

Thanks
Dave

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
  2015-04-15  6:48       ` Dave Young
@ 2015-04-21  1:39         ` Li, ZhenHua
  -1 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-04-21  1:39 UTC (permalink / raw)
  To: Dave Young
  Cc: dwmw2, indou.takao, bhe, joro, vgoyal, iommu, linux-kernel,
	linux-pci, kexec, alex.williamson, ddutile, ishii.hironobu,
	bhelgaas, doug.hatch, jerry.hoemann, tom.vaden, li.zhang6,
	lisa.mitchell, billsumnerlinux, rwright, Li, ZhenHua

Hi Dave,
I found the old mail:
http://lkml.iu.edu/hypermail/linux/kernel/1410.2/03584.html

Please check this and you will find the discussion.

Regards
Zhenhua

On 04/15/2015 02:48 PM, Dave Young wrote:
> On 04/15/15 at 01:47pm, Li, ZhenHua wrote:
>> On 04/15/2015 08:57 AM, Dave Young wrote:
>>> Again, I think it is bad to use old page table, below issues need consider:
>>> 1) make sure old page table are reliable across crash
>>> 2) do not allow writing oldmem after crash
>>>
>>> Please correct me if I'm wrong, or if above is not doable I think I will vote for
>>> resetting pci bus.
>>>
>>> Thanks
>>> Dave
>>>
>> Hi Dave,
>>
>> When updating the context tables, we have to write their address to root
>> tables, this will cause writing to old mem.
>>
>> Resetting the pci bus has been discussed, please check this:
>> http://lists.infradead.org/pipermail/kexec/2014-October/012752.html
>> https://lkml.org/lkml/2014/10/21/890
>
> I know one reason to use old pgtable is this looks better because it fixes the
> real problem, but it is not a good way if it introduce more problems because of
> it have to use oldmem. I will be glad if this is not a problem but I have not
> been convinced.
>
> OTOH, there's many types of iommu, intel, amd, a lot of other types. They need
> their own fixes, so it looks not that elegant.
>
> For pci reset, it is not perfect, but it has another advantage, the patch is
> simpler. The problem I see from the old discusssion is, reset bus in 2nd kernel
> is acceptable but it does not fix things on sparc platform. AFAIK current reported
> problems are intel and amd iommu, at least pci reset stuff does not make it worse.
>
> Thanks
> Dave
>


^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-21  1:39         ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-04-21  1:39 UTC (permalink / raw)
  To: Dave Young
  Cc: alex.williamson, indou.takao, bhe, tom.vaden, rwright, linux-pci,
	joro, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	Li, ZhenHua, ddutile, doug.hatch, ishii.hironobu, bhelgaas,
	billsumnerlinux, li.zhang6, dwmw2, vgoyal

Hi Dave,
I found the old mail:
http://lkml.iu.edu/hypermail/linux/kernel/1410.2/03584.html

Please check this and you will find the discussion.

Regards
Zhenhua

On 04/15/2015 02:48 PM, Dave Young wrote:
> On 04/15/15 at 01:47pm, Li, ZhenHua wrote:
>> On 04/15/2015 08:57 AM, Dave Young wrote:
>>> Again, I think it is bad to use old page table, below issues need consider:
>>> 1) make sure old page table are reliable across crash
>>> 2) do not allow writing oldmem after crash
>>>
>>> Please correct me if I'm wrong, or if above is not doable I think I will vote for
>>> resetting pci bus.
>>>
>>> Thanks
>>> Dave
>>>
>> Hi Dave,
>>
>> When updating the context tables, we have to write their address to root
>> tables, this will cause writing to old mem.
>>
>> Resetting the pci bus has been discussed, please check this:
>> http://lists.infradead.org/pipermail/kexec/2014-October/012752.html
>> https://lkml.org/lkml/2014/10/21/890
>
> I know one reason to use old pgtable is this looks better because it fixes the
> real problem, but it is not a good way if it introduce more problems because of
> it have to use oldmem. I will be glad if this is not a problem but I have not
> been convinced.
>
> OTOH, there's many types of iommu, intel, amd, a lot of other types. They need
> their own fixes, so it looks not that elegant.
>
> For pci reset, it is not perfect, but it has another advantage, the patch is
> simpler. The problem I see from the old discusssion is, reset bus in 2nd kernel
> is acceptable but it does not fix things on sparc platform. AFAIK current reported
> problems are intel and amd iommu, at least pci reset stuff does not make it worse.
>
> Thanks
> Dave
>


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-21  2:53           ` Dave Young
  0 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-04-21  2:53 UTC (permalink / raw)
  To: Li, ZhenHua
  Cc: dwmw2, indou.takao, bhe, joro, vgoyal, iommu, linux-kernel,
	linux-pci, kexec, alex.williamson, ddutile, ishii.hironobu,
	bhelgaas, doug.hatch, jerry.hoemann, tom.vaden, li.zhang6,
	lisa.mitchell, billsumnerlinux, rwright

Hi,

On 04/21/15 at 09:39am, Li, ZhenHua wrote:
> Hi Dave,
> I found the old mail:
> http://lkml.iu.edu/hypermail/linux/kernel/1410.2/03584.html

I know and I have read it before.

==================  quote  ===================
> > > So with this in mind I would prefer initially taking over the
> > > page-tables from the old kernel before the device drivers re-initialize
> > > the devices.
> >
> > This makes the dump kernel more dependent on data from the old kernel,
> > which we obviously want to avoid when possible.

> Sure, but this is not really possible here (unless we have a generic and
> reliable way to reset all PCI endpoint devices and cancel all in-flight
> DMA before we disable the IOMMU in the kdump kernel).
> Otherwise we always risk data corruption somewhere, in system memory or
> on disk.
=================  quote  ====================

What I understand above is it is not really possible to avoid the problem.

But IMHO we should avoid it or we will have problems in the future, if we
really cannot avoid it I would say switching to pci reset way is better.

> 
> Please check this and you will find the discussion.
> 
> Regards
> Zhenhua
> 
> On 04/15/2015 02:48 PM, Dave Young wrote:
> >On 04/15/15 at 01:47pm, Li, ZhenHua wrote:
> >>On 04/15/2015 08:57 AM, Dave Young wrote:
> >>>Again, I think it is bad to use old page table, below issues need consider:
> >>>1) make sure old page table are reliable across crash
> >>>2) do not allow writing oldmem after crash
> >>>
> >>>Please correct me if I'm wrong, or if above is not doable I think I will vote for
> >>>resetting pci bus.
> >>>
> >>>Thanks
> >>>Dave
> >>>
> >>Hi Dave,
> >>
> >>When updating the context tables, we have to write their address to root
> >>tables, this will cause writing to old mem.
> >>
> >>Resetting the pci bus has been discussed, please check this:
> >>http://lists.infradead.org/pipermail/kexec/2014-October/012752.html
> >>https://lkml.org/lkml/2014/10/21/890
> >
> >I know one reason to use old pgtable is this looks better because it fixes the
> >real problem, but it is not a good way if it introduce more problems because of
> >it have to use oldmem. I will be glad if this is not a problem but I have not
> >been convinced.
> >
> >OTOH, there's many types of iommu, intel, amd, a lot of other types. They need
> >their own fixes, so it looks not that elegant.
> >
> >For pci reset, it is not perfect, but it has another advantage, the patch is
> >simpler. The problem I see from the old discusssion is, reset bus in 2nd kernel
> >is acceptable but it does not fix things on sparc platform. AFAIK current reported
> >problems are intel and amd iommu, at least pci reset stuff does not make it worse.
> >
> >Thanks
> >Dave
> >
> 

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-21  2:53           ` Dave Young
  0 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-04-21  2:53 UTC (permalink / raw)
  To: Li, ZhenHua
  Cc: bhe-H+wXaHxf7aLQT0dZR+AlfA, tom.vaden-VXdhtT5mjnY,
	rwright-VXdhtT5mjnY, linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

Hi,

On 04/21/15 at 09:39am, Li, ZhenHua wrote:
> Hi Dave,
> I found the old mail:
> http://lkml.iu.edu/hypermail/linux/kernel/1410.2/03584.html

I know and I have read it before.

==================  quote  ===================
> > > So with this in mind I would prefer initially taking over the
> > > page-tables from the old kernel before the device drivers re-initialize
> > > the devices.
> >
> > This makes the dump kernel more dependent on data from the old kernel,
> > which we obviously want to avoid when possible.

> Sure, but this is not really possible here (unless we have a generic and
> reliable way to reset all PCI endpoint devices and cancel all in-flight
> DMA before we disable the IOMMU in the kdump kernel).
> Otherwise we always risk data corruption somewhere, in system memory or
> on disk.
=================  quote  ====================

What I understand above is it is not really possible to avoid the problem.

But IMHO we should avoid it or we will have problems in the future, if we
really cannot avoid it I would say switching to pci reset way is better.

> 
> Please check this and you will find the discussion.
> 
> Regards
> Zhenhua
> 
> On 04/15/2015 02:48 PM, Dave Young wrote:
> >On 04/15/15 at 01:47pm, Li, ZhenHua wrote:
> >>On 04/15/2015 08:57 AM, Dave Young wrote:
> >>>Again, I think it is bad to use old page table, below issues need consider:
> >>>1) make sure old page table are reliable across crash
> >>>2) do not allow writing oldmem after crash
> >>>
> >>>Please correct me if I'm wrong, or if above is not doable I think I will vote for
> >>>resetting pci bus.
> >>>
> >>>Thanks
> >>>Dave
> >>>
> >>Hi Dave,
> >>
> >>When updating the context tables, we have to write their address to root
> >>tables, this will cause writing to old mem.
> >>
> >>Resetting the pci bus has been discussed, please check this:
> >>http://lists.infradead.org/pipermail/kexec/2014-October/012752.html
> >>https://lkml.org/lkml/2014/10/21/890
> >
> >I know one reason to use old pgtable is this looks better because it fixes the
> >real problem, but it is not a good way if it introduce more problems because of
> >it have to use oldmem. I will be glad if this is not a problem but I have not
> >been convinced.
> >
> >OTOH, there's many types of iommu, intel, amd, a lot of other types. They need
> >their own fixes, so it looks not that elegant.
> >
> >For pci reset, it is not perfect, but it has another advantage, the patch is
> >simpler. The problem I see from the old discusssion is, reset bus in 2nd kernel
> >is acceptable but it does not fix things on sparc platform. AFAIK current reported
> >problems are intel and amd iommu, at least pci reset stuff does not make it worse.
> >
> >Thanks
> >Dave
> >
> 

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-21  2:53           ` Dave Young
  0 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-04-21  2:53 UTC (permalink / raw)
  To: Li, ZhenHua
  Cc: alex.williamson, indou.takao, bhe, tom.vaden, rwright, linux-pci,
	joro, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	ddutile, doug.hatch, ishii.hironobu, bhelgaas, billsumnerlinux,
	li.zhang6, dwmw2, vgoyal

Hi,

On 04/21/15 at 09:39am, Li, ZhenHua wrote:
> Hi Dave,
> I found the old mail:
> http://lkml.iu.edu/hypermail/linux/kernel/1410.2/03584.html

I know and I have read it before.

==================  quote  ===================
> > > So with this in mind I would prefer initially taking over the
> > > page-tables from the old kernel before the device drivers re-initialize
> > > the devices.
> >
> > This makes the dump kernel more dependent on data from the old kernel,
> > which we obviously want to avoid when possible.

> Sure, but this is not really possible here (unless we have a generic and
> reliable way to reset all PCI endpoint devices and cancel all in-flight
> DMA before we disable the IOMMU in the kdump kernel).
> Otherwise we always risk data corruption somewhere, in system memory or
> on disk.
=================  quote  ====================

What I understand above is it is not really possible to avoid the problem.

But IMHO we should avoid it or we will have problems in the future, if we
really cannot avoid it I would say switching to pci reset way is better.

> 
> Please check this and you will find the discussion.
> 
> Regards
> Zhenhua
> 
> On 04/15/2015 02:48 PM, Dave Young wrote:
> >On 04/15/15 at 01:47pm, Li, ZhenHua wrote:
> >>On 04/15/2015 08:57 AM, Dave Young wrote:
> >>>Again, I think it is bad to use old page table, below issues need consider:
> >>>1) make sure old page table are reliable across crash
> >>>2) do not allow writing oldmem after crash
> >>>
> >>>Please correct me if I'm wrong, or if above is not doable I think I will vote for
> >>>resetting pci bus.
> >>>
> >>>Thanks
> >>>Dave
> >>>
> >>Hi Dave,
> >>
> >>When updating the context tables, we have to write their address to root
> >>tables, this will cause writing to old mem.
> >>
> >>Resetting the pci bus has been discussed, please check this:
> >>http://lists.infradead.org/pipermail/kexec/2014-October/012752.html
> >>https://lkml.org/lkml/2014/10/21/890
> >
> >I know one reason to use old pgtable is this looks better because it fixes the
> >real problem, but it is not a good way if it introduce more problems because of
> >it have to use oldmem. I will be glad if this is not a problem but I have not
> >been convinced.
> >
> >OTOH, there's many types of iommu, intel, amd, a lot of other types. They need
> >their own fixes, so it looks not that elegant.
> >
> >For pci reset, it is not perfect, but it has another advantage, the patch is
> >simpler. The problem I see from the old discusssion is, reset bus in 2nd kernel
> >is acceptable but it does not fix things on sparc platform. AFAIK current reported
> >problems are intel and amd iommu, at least pci reset stuff does not make it worse.
> >
> >Thanks
> >Dave
> >
> 

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-23  8:35   ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-04-23  8:35 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright

[-- Attachment #1: Type: text/plain, Size: 8550 bytes --]

Tested on HP Superdome X.
Result: Passed.

PCI list and log are attached.

superdomex_boot.log: Log for first kernel.
superdomex_dump.log: Log for kdump kernel.
lspci: log for command lspci

Thanks
Zhenhua
On 04/10/2015 04:42 PM, Li, Zhen-Hua wrote:
> This patchset is an update of Bill Sumner's patchset, implements a fix for:
> If a kernel boots with intel_iommu=on on a system that supports intel vt-d,
> when a panic happens, the kdump kernel will boot with these faults:
>
>      dmar: DRHD: handling fault status reg 102
>      dmar: DMAR:[DMA Read] Request device [01:00.0] fault addr fff80000
>      DMAR:[fault reason 01] Present bit in root entry is clear
>
>      dmar: DRHD: handling fault status reg 2
>      dmar: INTR-REMAP: Request device [[61:00.0] fault index 42
>      INTR-REMAP:[fault reason 34] Present field in the IRTE entry is clear
>
> On some system, the interrupt remapping fault will also happen even if the
> intel_iommu is not set to on, because the interrupt remapping will be enabled
> when x2apic is needed by the system.
>
> The cause of the DMA fault is described in Bill's original version, and the
> INTR-Remap fault is caused by a similar reason. In short, the initialization
> of vt-d drivers causes the in-flight DMA and interrupt requests get wrong
> response.
>
> To fix this problem, we modifies the behaviors of the intel vt-d in the
> crashdump kernel:
>
> For DMA Remapping:
> 1. To accept the vt-d hardware in an active state,
> 2. Do not disable and re-enable the translation, keep it enabled.
> 3. Use the old root entry table, do not rewrite the RTA register.
> 4. Malloc and use new context entry table, copy data from the old ones that
>     used by the old kernel.
> 5. Keep using the old page tables before driver is loaded.
> 6. After device driver is loaded, when it issues the first dma_map command,
>     free the dmar_domain structure for this device, and generate a new one, so
>     that the device can be assigned a new and empty page table.
> 7. When a new context entry table is generated, we also save its address to
>     the old root entry table.
>
> For Interrupt Remapping:
> 1. To accept the vt-d hardware in an active state,
> 2. Do not disable and re-enable the interrupt remapping, keep it enabled.
> 3. Use the old interrupt remapping table, do not rewrite the IRTA register.
> 4. When ioapic entry is setup, the interrupt remapping table is changed, and
>     the updated data will be stored to the old interrupt remapping table.
>
> Advantages of this approach:
> 1. All manipulation of the IO-device is done by the Linux device-driver
>     for that device.
> 2. This approach behaves in a manner very similar to operation without an
>     active iommu.
> 3. Any activity between the IO-device and its RMRR areas is handled by the
>     device-driver in the same manner as during a non-kdump boot.
> 4. If an IO-device has no driver in the kdump kernel, it is simply left alone.
>     This supports the practice of creating a special kdump kernel without
>     drivers for any devices that are not required for taking a crashdump.
> 5. Minimal code-changes among the existing mainline intel vt-d code.
>
> Summary of changes in this patch set:
> 1. Added some useful function for root entry table in code intel-iommu.c
> 2. Added new members to struct root_entry and struct irte;
> 3. Functions to load old root entry table to iommu->root_entry from the memory
>     of old kernel.
> 4. Functions to malloc new context entry table and copy the data from the old
>     ones to the malloced new ones.
> 5. Functions to enable support for DMA remapping in kdump kernel.
> 6. Functions to load old irte data from the old kernel to the kdump kernel.
> 7. Some code changes that support other behaviours that have been listed.
> 8. In the new functions, use physical address as "unsigned long" type, not
>     pointers.
>
> Original version by Bill Sumner:
>      https://lkml.org/lkml/2014/1/10/518
>      https://lkml.org/lkml/2014/4/15/716
>      https://lkml.org/lkml/2014/4/24/836
>
> Zhenhua's updates:
>      https://lkml.org/lkml/2014/10/21/134
>      https://lkml.org/lkml/2014/12/15/121
>      https://lkml.org/lkml/2014/12/22/53
>      https://lkml.org/lkml/2015/1/6/1166
>      https://lkml.org/lkml/2015/1/12/35
>      https://lkml.org/lkml/2015/3/19/33
>
> Changelog[v10]:
>      1. Do not use CONFIG_CRASH_DUMP and is_kdump_kernel().
>         Use one flag which stores the te and ir status in last kernel:
>             iommu->pre_enabled_trans
>             iommu->pre_enabled_ir
>
> Changelog[v9]:
>      1. Add new function iommu_attach_domain_with_id.
>      2. Do not copy old page tables, keep using the old ones.
>      3. Remove functions:
>             intel_iommu_did_to_domain_values_entry
>             intel_iommu_get_dids_from_old_kernel
>             device_to_domain_id
>             copy_page_addr
>             copy_page_table
>             copy_context_entry
>             copy_context_entry_table
>      4. Add new function device_to_existing_context_entry.
>
> Changelog[v8]:
>      1. Add a missing __iommu_flush_cache in function copy_page_table.
>
> Changelog[v7]:
>      1. Use __iommu_flush_cache to flush the data to hardware.
>
> Changelog[v6]:
>      1. Use "unsigned long" as type of physical address.
>      2. Use new function unmap_device_dma to unmap the old dma.
>      3. Some small incorrect bits order for aw shift.
>
> Changelog[v5]:
>      1. Do not disable and re-enable traslation and interrupt remapping.
>      2. Use old root entry table.
>      3. Use old interrupt remapping table.
>      4. New functions to copy data from old kernel, and save to old kernel mem.
>      5. New functions to save updated root entry table and irte table.
>      6. Use intel_unmap to unmap the old dma;
>      7. Allocate new pages while driver is being loaded.
>
> Changelog[v4]:
>      1. Cut off the patches that move some defines and functions to new files.
>      2. Reduce the numbers of patches to five, make it more easier to read.
>      3. Changed the name of functions, make them consistent with current context
>         get/set functions.
>      4. Add change to function __iommu_attach_domain.
>
> Changelog[v3]:
>      1. Commented-out "#define DEBUG 1" to eliminate debug messages.
>      2. Updated the comments about changes in each version.
>      3. Fixed: one-line added to Copy-Translations patch to initialize the iovad
>            struct as recommended by Baoquan He [bhe@redhat.com]
>            init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
>
> Changelog[v2]:
>      The following series implements a fix for:
>      A kdump problem about DMA that has been discussed for a long time. That is,
>      when a kernel panics and boots into the kdump kernel, DMA started by the
>      panicked kernel is not stopped before the kdump kernel is booted and the
>      kdump kernel disables the IOMMU while this DMA continues.  This causes the
>      IOMMU to stop translating the DMA addresses as IOVAs and begin to treat
>      them as physical memory addresses -- which causes the DMA to either:
>          (1) generate DMAR errors or
>          (2) generate PCI SERR errors or
>          (3) transfer data to or from incorrect areas of memory. Often this
>              causes the dump to fail.
>
> Changelog[v1]:
>      The original version.
>
> Changed in this version:
> 1. Do not disable and re-enable traslation and interrupt remapping.
> 2. Use old root entry table.
> 3. Use old interrupt remapping table.
> 4. Use "unsigned long" as physical address.
> 5. Use intel_unmap to unmap the old dma;
>
> Baoquan He <bhe@redhat.com> helps testing this patchset.
> Takao Indoh <indou.takao@jp.fujitsu.com> gives valuable suggestions.
>
> Li, Zhen-Hua (10):
>    iommu/vt-d: New function to attach domain with id
>    iommu/vt-d: Items required for kdump
>    iommu/vt-d: Function to get old context entry
>    iommu/vt-d: functions to copy data from old mem
>    iommu/vt-d: Add functions to load and save old re
>    iommu/vt-d: datatypes and functions used for kdump
>    iommu/vt-d: enable kdump support in iommu module
>    iommu/vt-d: assign new page table for dma_map
>    iommu/vt-d: Copy functions for irte
>    iommu/vt-d: Use old irte in kdump kernel
>
>   drivers/iommu/intel-iommu.c         | 518 ++++++++++++++++++++++++++++++++++--
>   drivers/iommu/intel_irq_remapping.c |  96 ++++++-
>   include/linux/intel-iommu.h         |  16 ++
>   3 files changed, 605 insertions(+), 25 deletions(-)
>


[-- Attachment #2: superdomex_boot.log --]
[-- Type: text/x-log, Size: 158996 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.0.0-rc7.v10u2 (root@dhb5.fcux.usa.hp.com) (gcc version 4.8.2 20140120 (Red Hat 4.8.2-16) (GCC) ) #1 SMP Thu Apr 9 02:19:13 EDT 2015
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us crashkernel=512M vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000078bfefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000078bff000-0x00000000799fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000799ff000-0x000000007bdfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007bdff000-0x000000007bffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007bfff000-0x000000007bffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ff1fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000100000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000100001000-0x000000207fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000004000000000-0x0000004000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000004000001000-0x0000009fffffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000fdfe0000000-0x00000fdfffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe060000000-0x00000fe07fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe0e0000000-0x00000fe0ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe160000000-0x00000fe17fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe1e0000000-0x00000fe1ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe260000000-0x00000fe27fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe2e0000000-0x00000fe2ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe360000000-0x00000fe37fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe3e0000000-0x00000fe3ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe460000000-0x00000fe47fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe4e0000000-0x00000fe4ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe560000000-0x00000fe57fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe5e0000000-0x00000fe5ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe660000000-0x00000fe67fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe6e0000000-0x00000fe6ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe760000000-0x00000fe77fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe7e0000000-0x00000fe7ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x77787018-0x777fd857] usable ==> usable
[    0.000000] e820: update [mem 0x77755018-0x77786e57] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000077755017] usable
[    0.000000] reserve setup_data: [mem 0x0000000077755018-0x0000000077786e57] usable
[    0.000000] reserve setup_data: [mem 0x0000000077786e58-0x0000000077787017] usable
[    0.000000] reserve setup_data: [mem 0x0000000077787018-0x00000000777fd857] usable
[    0.000000] reserve setup_data: [mem 0x00000000777fd858-0x0000000078bfefff] usable
[    0.000000] reserve setup_data: [mem 0x0000000078bff000-0x00000000799fefff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000799ff000-0x000000007bdfefff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000007bdff000-0x000000007bffefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000007bfff000-0x000000007bffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ff1fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x0000000100000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000100001000-0x000000207fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000004000000000-0x0000004000000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000004000001000-0x0000009fffffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000fdfe0000000-0x00000fdfffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe060000000-0x00000fe07fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe0e0000000-0x00000fe0ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe160000000-0x00000fe17fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe1e0000000-0x00000fe1ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe260000000-0x00000fe27fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe2e0000000-0x00000fe2ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe360000000-0x00000fe37fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe3e0000000-0x00000fe3ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe460000000-0x00000fe47fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe4e0000000-0x00000fe4ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe560000000-0x00000fe57fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe5e0000000-0x00000fe5ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe660000000-0x00000fe67fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe6e0000000-0x00000fe6ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe760000000-0x00000fe77fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe7e0000000-0x00000fe7ffffffff] reserved
[    0.000000] efi: EFI v2.31 by HP
[    0.000000] efi:  ACPI=0x7bffe000  ACPI 2.0=0x7bffe014  SMBIOS=0x799f8000 
[    0.000000] efi: mem00: [Boot Code          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000001000-0x0000000000002000) (0MB)
[    0.000000] efi: mem02: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000002000-0x000000000008e000) (0MB)
[    0.000000] efi: mem03: [Reserved           |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000000008e000-0x0000000000090000) (0MB)
[    0.000000] efi: mem04: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000090000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem05: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000100000-0x0000000001000000) (15MB)
[    0.000000] efi: mem06: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000001000000-0x000000000212d000) (17MB)
[    0.000000] efi: mem07: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000000212d000-0x000000003f4b3000) (979MB)
[    0.000000] efi: mem08: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000003f4b3000-0x000000005c800000) (467MB)
[    0.000000] efi: mem09: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000005c800000-0x000000005ca00000) (2MB)
[    0.000000] efi: mem10: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000005ca00000-0x000000006d038000) (262MB)
[    0.000000] efi: mem11: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000006d038000-0x000000006f3fc000) (35MB)
[    0.000000] efi: mem12: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000006f3fc000-0x00000000738e8000) (68MB)
[    0.000000] efi: mem13: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000738e8000-0x0000000073e21000) (5MB)
[    0.000000] efi: mem14: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073e21000-0x0000000073e3b000) (0MB)
[    0.000000] efi: mem15: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073e3b000-0x0000000073e3e000) (0MB)
[    0.000000] efi: mem16: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073e3e000-0x0000000073e5f000) (0MB)
[    0.000000] efi: mem17: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073e5f000-0x0000000073f68000) (1MB)
[    0.000000] efi: mem18: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073f68000-0x0000000073f69000) (0MB)
[    0.000000] efi: mem19: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073f69000-0x00000000742b9000) (3MB)
[    0.000000] efi: mem20: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000742b9000-0x00000000742fb000) (0MB)
[    0.000000] efi: mem21: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000742fb000-0x0000000074313000) (0MB)
[    0.000000] efi: mem22: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074313000-0x0000000074333000) (0MB)
[    0.000000] efi: mem23: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074333000-0x0000000074359000) (0MB)
[    0.000000] efi: mem24: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074359000-0x000000007436e000) (0MB)
[    0.000000] efi: mem25: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007436e000-0x0000000074559000) (1MB)
[    0.000000] efi: mem26: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074559000-0x000000007457a000) (0MB)
[    0.000000] efi: mem27: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007457a000-0x0000000074595000) (0MB)
[    0.000000] efi: mem28: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074595000-0x0000000074596000) (0MB)
[    0.000000] efi: mem29: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074596000-0x00000000746a6000) (1MB)
[    0.000000] efi: mem30: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000746a6000-0x00000000746a8000) (0MB)
[    0.000000] efi: mem31: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000746a8000-0x00000000773ff000) (45MB)
[    0.000000] efi: mem32: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000773ff000-0x0000000077754000) (3MB)
[    0.000000] efi: mem33: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000077754000-0x00000000777ff000) (0MB)
[    0.000000] efi: mem34: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000777ff000-0x0000000077b16000) (3MB)
[    0.000000] efi: mem35: [Loader Code        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000077b16000-0x0000000077bff000) (0MB)
[    0.000000] efi: mem36: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000077bff000-0x000000007823e000) (6MB)
[    0.000000] efi: mem37: [Boot Code          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007823e000-0x0000000078bff000) (9MB)
[    0.000000] efi: mem38: [Runtime Data       |RUN|  |  |  |   |WB|WT|WC|UC] range=[0x0000000078bff000-0x00000000790ff000) (5MB)
[    0.000000] efi: mem39: [Runtime Code       |RUN|  |  |  |   |WB|WT|WC|UC] range=[0x00000000790ff000-0x00000000798ff000) (8MB)
[    0.000000] efi: mem40: [Reserved           |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000798ff000-0x00000000799ff000) (1MB)
[    0.000000] efi: mem41: [ACPI Memory NVS    |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000799ff000-0x000000007bdff000) (36MB)
[    0.000000] efi: mem42: [ACPI Reclaim Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007bdff000-0x000000007bfff000) (2MB)
[    0.000000] efi: mem43: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007bfff000-0x000000007c000000) (0MB)
[    0.000000] efi: mem44: [ACPI Memory NVS    |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000100000000-0x0000000100001000) (0MB)
[    0.000000] efi: mem45: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000100001000-0x0000002080000000) (129023MB)
[    0.000000] efi: mem46: [ACPI Memory NVS    |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000004000000000-0x0000004000001000) (0MB)
[    0.000000] efi: mem47: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000004000001000-0x000000a000000000) (393215MB)
[    0.000000] efi: mem48: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x0000000080000000-0x0000000090000000) (256MB)
[    0.000000] efi: mem49: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem50: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000000ff000000-0x00000000ff200000) (2MB)
[    0.000000] efi: mem51: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fdfe0000000-0x00000fe000000000) (512MB)
[    0.000000] efi: mem52: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe060000000-0x00000fe080000000) (512MB)
[    0.000000] efi: mem53: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe0e0000000-0x00000fe100000000) (512MB)
[    0.000000] efi: mem54: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe160000000-0x00000fe180000000) (512MB)
[    0.000000] efi: mem55: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe1e0000000-0x00000fe200000000) (512MB)
[    0.000000] efi: mem56: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe260000000-0x00000fe280000000) (512MB)
[    0.000000] efi: mem57: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe2e0000000-0x00000fe300000000) (512MB)
[    0.000000] efi: mem58: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe360000000-0x00000fe380000000) (512MB)
[    0.000000] efi: mem59: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe3e0000000-0x00000fe400000000) (512MB)
[    0.000000] efi: mem60: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe460000000-0x00000fe480000000) (512MB)
[    0.000000] efi: mem61: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe4e0000000-0x00000fe500000000) (512MB)
[    0.000000] efi: mem62: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe560000000-0x00000fe580000000) (512MB)
[    0.000000] efi: mem63: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe5e0000000-0x00000fe600000000) (512MB)
[    0.000000] efi: mem64: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe660000000-0x00000fe680000000) (512MB)
[    0.000000] efi: mem65: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe6e0000000-0x00000fe700000000) (512MB)
[    0.000000] efi: mem66: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe760000000-0x00000fe780000000) (512MB)
[    0.000000] efi: mem67: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe7e0000000-0x00000fe800000000) (512MB)
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: HP Superdome2 16s x86, BIOS Bundle: 005.073.000 SFW: 015.082.000 08/08/2014
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] AGP: No AGP bridge found
[    0.000000] e820: last_pfn = 0xa000000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: write-back
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-DFFFF write-protect
[    0.000000]   E0000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000080000000 mask 3FFF80000000 uncachable
[    0.000000]   1 base 0F0000000000 mask 3F8000000000 uncachable
[    0.000000]   2 base 0F8000000000 mask 3FC000000000 uncachable
[    0.000000]   3 base 0FC000000000 mask 3FE000000000 uncachable
[    0.000000]   4 base 0FE000000000 mask 3FF000000000 uncachable
[    0.000000]   5 base 0000FF000000 mask 3FFFFFE00000 uncachable
[    0.000000]   6 base 0FDF80000000 mask 3FFF80000000 uncachable
[    0.000000]   7 base 0FE000000000 mask 3FF800000000 uncachable
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] PAT configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- UC  
[    0.000000] x2apic: enabled by BIOS, switching to x2apic ops
[    0.000000] e820: last_pfn = 0x7c000 max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01fa1000, 0x01fa1fff] PGTABLE
[    0.000000] BRK [0x01fa2000, 0x01fa2fff] PGTABLE
[    0.000000] BRK [0x01fa3000, 0x01fa3fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x9fffe00000-0x9fffffffff]
[    0.000000]  [mem 0x9fffe00000-0x9fffffffff] page 1G
[    0.000000] BRK [0x01fa4000, 0x01fa4fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x9fe0000000-0x9fffdfffff]
[    0.000000]  [mem 0x9fe0000000-0x9fffdfffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x8000000000-0x9fdfffffff]
[    0.000000]  [mem 0x8000000000-0x9fdfffffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x00100000-0x78bfefff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x789fffff] page 2M
[    0.000000]  [mem 0x78a00000-0x78bfefff] page 4k
[    0.000000] init_memory_mapping: [mem 0x7bfff000-0x7bffffff]
[    0.000000]  [mem 0x7bfff000-0x7bffffff] page 4k
[    0.000000] BRK [0x01fa5000, 0x01fa5fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x100001000-0x207fffffff]
[    0.000000]  [mem 0x100001000-0x1001fffff] page 4k
[    0.000000]  [mem 0x100200000-0x13fffffff] page 2M
[    0.000000]  [mem 0x140000000-0x207fffffff] page 1G
[    0.000000] BRK [0x01fa6000, 0x01fa6fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x4000001000-0x7fffffffff]
[    0.000000]  [mem 0x4000001000-0x40001fffff] page 4k
[    0.000000]  [mem 0x4000200000-0x403fffffff] page 2M
[    0.000000]  [mem 0x4040000000-0x7fffffffff] page 1G
[    0.000000] RAMDISK: [mem 0x3f4b3000-0x3ffe7fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000007BFFE014 000024 (v02 HP    )
[    0.000000] ACPI: XSDT 0x000000007BFFD0E8 0000AC (v01 HP     03010201 00000002 MSFT 01000013)
[    0.000000] ACPI: FACP 0x000000007BFFB000 00010C (v05 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: DSDT 0x000000007BFF1000 0004A8 (v02 HP     CORE     00000002 HPAG 00020000)
[    0.000000] ACPI: FACS 0x000000007AD00000 000040
[    0.000000] ACPI: MCEJ 0x000000007BFFC000 000130 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: HPET 0x000000007BFFA000 000038 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: MCFG 0x000000007BFF9000 00003C (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SLIT 0x000000007BFF8000 00003C (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: APIC 0x000000007BFF7000 000DA8 (v03 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SRAT 0x000000007BFF6000 000C38 (v02 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SPMI 0x000000007BFF5000 000040 (v05 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SPCR 0x000000007BFF4000 000050 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: DBGP 0x000000007BFF3000 000034 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: RASF 0x000000007BFF2000 000030 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SSDT 0x000000007BFD7000 019FB9 (v02 HP     BLADE000 00000002 HPAG 00020000)
[    0.000000] ACPI: SSDT 0x000000007BFBD000 0196F0 (v02 HP     BLADE001 00000002 HPAG 00020000)
[    0.000000] ACPI: DMAR 0x000000007BFBB000 000368 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: HEST 0x000000007BFBA000 000184 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: BERT 0x000000007BFB9000 000030 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: EINJ 0x000000007BFB8000 000150 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] System requires x2apic physical mode
[    0.000000] Setting APIC routing to physical x2apic.
[    0.000000] SRAT: PXM 0 -> APIC 0x0000 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0001 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0002 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0003 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0004 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0005 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0006 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0007 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0008 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0009 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000b -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000d -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000f -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0010 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0011 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0012 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0013 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0014 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0015 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0016 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0017 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0018 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0019 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x001a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x001b -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x001c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x001d -> Node 0
[    0.000000] SRAT: PXM 1 -> APIC 0x0020 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0021 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0022 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0023 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0024 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0025 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0026 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0027 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0028 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0029 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002a -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002b -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002c -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002d -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002e -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002f -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0030 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0031 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0032 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0033 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0034 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0035 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0036 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0037 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0038 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0039 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x003a -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x003b -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x003c -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x003d -> Node 1
[    0.000000] SRAT: PXM 2 -> APIC 0x0040 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0041 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0042 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0043 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0044 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0045 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0046 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0047 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0048 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0049 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004a -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004b -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004c -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004d -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004e -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004f -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0050 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0051 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0052 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0053 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0054 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0055 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0056 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0057 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0058 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0059 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x005a -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x005b -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x005c -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x005d -> Node 2
[    0.000000] SRAT: PXM 3 -> APIC 0x0060 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0061 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0062 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0063 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0064 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0065 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0066 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0067 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0068 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0069 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006a -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006b -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006c -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006d -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006e -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006f -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0070 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0071 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0072 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0073 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0074 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0075 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0076 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0077 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0078 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0079 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x007a -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x007b -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x007c -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x007d -> Node 3
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.000000] SRAT: Node 1 PXM 1 [mem 0x4000000000-0x5fffffffff]
[    0.000000] SRAT: Node 2 PXM 2 [mem 0x6000000000-0x7fffffffff]
[    0.000000] SRAT: Node 3 PXM 3 [mem 0x8000000000-0x9fffffffff]
[    0.000000] NUMA: Initialized distance table, cnt=4
[    0.000000] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00000000-0x207fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x207ffda000-0x207fffffff]
[    0.000000] NODE_DATA(1) allocated [mem 0x5ffffda000-0x5fffffffff]
[    0.000000] NODE_DATA(2) allocated [mem 0x7ffffda000-0x7fffffffff]
[    0.000000] NODE_DATA(3) allocated [mem 0x9ffffd4000-0x9fffff9fff]
[    0.000000] Reserving 512MB of memory at 384MB for crashkernel (System RAM: 524171MB)
[    0.000000]  [ffffea0000000000-ffffea0081ffffff] PMD -> [ffff881fffe00000-ffff88207fdfffff] on node 0
[    0.000000]  [ffffea0100000000-ffffea017fffffff] PMD -> [ffff885f7fe00000-ffff885fffdfffff] on node 1
[    0.000000]  [ffffea0180000000-ffffea01ffffffff] PMD -> [ffff887f7fe00000-ffff887fffdfffff] on node 2
[    0.000000]  [ffffea0200000000-ffffea027fffffff] PMD -> [ffff889f7f600000-ffff889fff5fffff] on node 3
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x0000009fffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008dfff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000078bfefff]
[    0.000000]   node   0: [mem 0x000000007bfff000-0x000000007bffffff]
[    0.000000]   node   0: [mem 0x0000000100001000-0x000000207fffffff]
[    0.000000]   node   1: [mem 0x0000004000001000-0x0000005fffffffff]
[    0.000000]   node   2: [mem 0x0000006000000000-0x0000007fffffffff]
[    0.000000]   node   3: [mem 0x0000008000000000-0x0000009fffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fffffff]
[    0.000000] On node 0 totalpages: 33524636
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 22 pages reserved
[    0.000000]   DMA zone: 3997 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 7664 pages used for memmap
[    0.000000]   DMA32 zone: 490496 pages, LIFO batch:31
[    0.000000]   Normal zone: 516096 pages used for memmap
[    0.000000]   Normal zone: 33030143 pages, LIFO batch:31
[    0.000000] Initmem setup node 1 [mem 0x0000004000001000-0x0000005fffffffff]
[    0.000000] On node 1 totalpages: 33554431
[    0.000000]   Normal zone: 524288 pages used for memmap
[    0.000000]   Normal zone: 33554431 pages, LIFO batch:31
[    0.000000] Initmem setup node 2 [mem 0x0000006000000000-0x0000007fffffffff]
[    0.000000] On node 2 totalpages: 33554432
[    0.000000]   Normal zone: 524288 pages used for memmap
[    0.000000]   Normal zone: 33554432 pages, LIFO batch:31
[    0.000000] Initmem setup node 3 [mem 0x0000008000000000-0x0000009fffffffff]
[    0.000000] On node 3 totalpages: 33554432
[    0.000000]   Normal zone: 524288 pages used for memmap
[    0.000000]   Normal zone: 33554432 pages, LIFO batch:31
[    0.000000] tboot: non-0 tboot_addr but it is not of type E820_RESERVED
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] System requires x2apic physical mode
[    0.000000] ACPI: X2APIC (apic_id[0x00] uid[0x00] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x02] uid[0x02] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x04] uid[0x04] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x06] uid[0x06] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x08] uid[0x08] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0a] uid[0x0a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0c] uid[0x0c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0e] uid[0x0e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x10] uid[0x10] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x12] uid[0x12] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x14] uid[0x14] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x16] uid[0x16] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x18] uid[0x18] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x1a] uid[0x1a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x1c] uid[0x1c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x20] uid[0x24] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x22] uid[0x26] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x24] uid[0x28] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x26] uid[0x2a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x28] uid[0x2c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2a] uid[0x2e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2c] uid[0x30] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2e] uid[0x32] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x30] uid[0x34] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x32] uid[0x36] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x34] uid[0x38] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x36] uid[0x3a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x38] uid[0x3c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x3a] uid[0x3e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x3c] uid[0x40] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x40] uid[0x48] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x42] uid[0x4a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x44] uid[0x4c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x46] uid[0x4e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x48] uid[0x50] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4a] uid[0x52] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4c] uid[0x54] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4e] uid[0x56] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x50] uid[0x58] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x52] uid[0x5a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x54] uid[0x5c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x56] uid[0x5e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x58] uid[0x60] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x5a] uid[0x62] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x5c] uid[0x64] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x60] uid[0x6c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x62] uid[0x6e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x64] uid[0x70] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x66] uid[0x72] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x68] uid[0x74] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6a] uid[0x76] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6c] uid[0x78] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6e] uid[0x7a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x70] uid[0x7c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x72] uid[0x7e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x74] uid[0x80] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x76] uid[0x82] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x78] uid[0x84] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x7a] uid[0x86] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x7c] uid[0x88] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x01] uid[0x01] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x03] uid[0x03] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x05] uid[0x05] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x07] uid[0x07] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x09] uid[0x09] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0b] uid[0x0b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0d] uid[0x0d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0f] uid[0x0f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x11] uid[0x11] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x13] uid[0x13] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x15] uid[0x15] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x17] uid[0x17] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x19] uid[0x19] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x1b] uid[0x1b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x1d] uid[0x1d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x21] uid[0x25] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x23] uid[0x27] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x25] uid[0x29] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x27] uid[0x2b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x29] uid[0x2d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2b] uid[0x2f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2d] uid[0x31] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2f] uid[0x33] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x31] uid[0x35] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x33] uid[0x37] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x35] uid[0x39] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x37] uid[0x3b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x39] uid[0x3d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x3b] uid[0x3f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x3d] uid[0x41] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x41] uid[0x49] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x43] uid[0x4b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x45] uid[0x4d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x47] uid[0x4f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x49] uid[0x51] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4b] uid[0x53] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4d] uid[0x55] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4f] uid[0x57] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x51] uid[0x59] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x53] uid[0x5b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x55] uid[0x5d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x57] uid[0x5f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x59] uid[0x61] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x5b] uid[0x63] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x5d] uid[0x65] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x61] uid[0x6d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x63] uid[0x6f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x65] uid[0x71] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x67] uid[0x73] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x69] uid[0x75] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6b] uid[0x77] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6d] uid[0x79] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6f] uid[0x7b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x71] uid[0x7d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x73] uid[0x7f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x75] uid[0x81] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x77] uid[0x83] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x79] uid[0x85] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x7b] uid[0x87] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x7d] uid[0x89] enabled)
[    0.000000] ACPI: X2APIC_NMI (uid[0x00] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x01] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x02] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x03] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x04] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x05] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x06] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x07] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x08] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x09] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x10] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x11] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x12] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x13] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x14] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x15] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x16] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x17] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x18] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x19] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x24] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x25] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x26] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x27] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x28] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x29] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x30] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x31] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x32] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x33] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x34] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x35] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x36] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x37] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x38] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x39] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x40] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x41] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x48] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x49] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x50] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x51] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x52] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x53] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x54] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x55] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x56] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x57] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x58] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x59] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x60] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x61] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x62] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x63] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x64] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x65] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x70] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x71] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x72] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x73] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x74] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x75] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x76] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x77] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x78] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x79] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x80] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x81] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x82] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x83] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x84] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x85] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x86] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x87] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x88] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x89] high level lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x09] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec04000] gsi_base[48])
[    0.000000] IOAPIC[2]: apic_id 10, version 32, address 0xfec04000, GSI 48-71
[    0.000000] ACPI: IOAPIC (id[0x0b] address[0xfec08000] gsi_base[72])
[    0.000000] IOAPIC[3]: apic_id 11, version 32, address 0xfec08000, GSI 72-95
[    0.000000] ACPI: IOAPIC (id[0x0c] address[0xfec09000] gsi_base[96])
[    0.000000] IOAPIC[4]: apic_id 12, version 32, address 0xfec09000, GSI 96-119
[    0.000000] ACPI: IOAPIC (id[0x0d] address[0xfec0c000] gsi_base[120])
[    0.000000] IOAPIC[5]: apic_id 13, version 32, address 0xfec0c000, GSI 120-143
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[    0.000000] smpboot: Allowing 120 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008e000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x77755000-0x77755fff]
[    0.000000] PM: Registered nosave memory: [mem 0x77786000-0x77786fff]
[    0.000000] PM: Registered nosave memory: [mem 0x77787000-0x77787fff]
[    0.000000] PM: Registered nosave memory: [mem 0x777fd000-0x777fdfff]
[    0.000000] PM: Registered nosave memory: [mem 0x78bff000-0x799fefff]
[    0.000000] PM: Registered nosave memory: [mem 0x799ff000-0x7bdfefff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bdff000-0x7bffefff]
[    0.000000] PM: Registered nosave memory: [mem 0x7c000000-0x7fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x80000000-0x8fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x90000000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xff1fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff200000-0xffffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x100000000-0x100000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x2080000000-0x3fffffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x4000000000-0x4000000fff]
[    0.000000] e820: [mem 0x90000000-0xfed1bfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:120 nr_cpu_ids:120 nr_node_ids:4
[    0.000000] PERCPU: Embedded 32 pages/cpu @ffff881fffa00000 s91544 r8192 d31336 u131072
[    0.000000] pcpu-alloc: s91544 r8192 d31336 u131072 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 000 001 002 003 004 005 006 007 008 009 010 011 012 013 014 060 
[    0.000000] pcpu-alloc: [0] 061 062 063 064 065 066 067 068 069 070 071 072 073 074 --- --- 
[    0.000000] pcpu-alloc: [1] 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 075 
[    0.000000] pcpu-alloc: [1] 076 077 078 079 080 081 082 083 084 085 086 087 088 089 --- --- 
[    0.000000] pcpu-alloc: [2] 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 090 
[    0.000000] pcpu-alloc: [2] 091 092 093 094 095 096 097 098 099 100 101 102 103 104 --- --- 
[    0.000000] pcpu-alloc: [3] 045 046 047 048 049 050 051 052 053 054 055 056 057 058 059 105 
[    0.000000] pcpu-alloc: [3] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 --- --- 
[    0.000000] Built 4 zonelists in Node order, mobility grouping on.  Total pages: 132091221
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us crashkernel=512M vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on
[    0.000000] Intel-IOMMU: enabled
[    0.000000] log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] log_buf_len total cpu_extra contributions: 487424 bytes
[    0.000000] log_buf_len min size: 524288 bytes
[    0.000000] log_buf_len: 1048576 bytes
[    0.000000] early log buf free: 472608(90%)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[    0.000000] AGP: Checking aperture...
[    0.000000] AGP: No AGP bridge found
[    0.000000] Memory: 527618408K/536751724K available (6899K kernel code, 1427K rwdata, 3228K rodata, 1704K init, 2688K bss, 9133316K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=120, Nodes=4
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=120.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=120
[    0.000000] NR_IRQS:524544 nr_irqs:3424 16
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-119.
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [ttyS0] enabled
[    0.000000] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2793.819 MHz processor
[    0.000164] Calibrating delay loop (skipped), value calculated using timer frequency.. 5587.63 BogoMIPS (lpj=2793819)
[    0.012102] pid_max: default: 122880 minimum: 960
[    0.017404] ACPI: Core revision 20150204
[    0.032570] ACPI: All ACPI Tables successfully acquired
[    0.040156] Security Framework initialized
[    0.044803] SELinux:  Initializing.
[    0.048752] SELinux:  Starting in permissive mode
[    0.087385] Dentry cache hash table entries: 67108864 (order: 17, 536870912 bytes)
[    0.304007] Inode-cache hash table entries: 33554432 (order: 16, 268435456 bytes)
[    0.404609] Mount-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.413456] Mountpoint-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.428585] Initializing cgroup subsys blkio
[    0.433429] Initializing cgroup subsys memory
[    0.438423] Initializing cgroup subsys devices
[    0.443417] Initializing cgroup subsys freezer
[    0.448412] Initializing cgroup subsys net_cls
[    0.453419] Initializing cgroup subsys perf_event
[    0.458793] Initializing cgroup subsys hugetlb
[    0.464032] CPU: Physical Processor ID: 0
[    0.468538] CPU: Processor Core ID: 0
[    0.473527] mce: CPU supports 32 MCE banks
[    0.478203] CPU0: Thermal monitoring enabled (TM1)
[    0.483632] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.489794] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    0.496876] Freeing SMP alternatives memory: 28K (ffffffff81cf7000 - ffffffff81cfe000)
[    0.510186] ftrace: allocating 25687 entries in 101 pages
[    0.529790] dmar: Host address width 44
[    0.534104] dmar: DRHD base: 0x00000093ff8000 flags: 0x0
[    0.540095] dmar: IOMMU 0: reg_base_addr 93ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.549188] dmar: DRHD base: 0x00000097ff8000 flags: 0x0
[    0.555163] dmar: IOMMU 1: reg_base_addr 97ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.564252] dmar: DRHD base: 0x0000009bff8000 flags: 0x0
[    0.570234] dmar: IOMMU 2: reg_base_addr 9bff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.579330] dmar: DRHD base: 0x0000009fff8000 flags: 0x0
[    0.585304] dmar: IOMMU 3: reg_base_addr 9fff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.594395] dmar: RMRR base: 0x00000079911000 end: 0x00000079913fff
[    0.601438] dmar: RMRR base: 0x0000007990e000 end: 0x00000079910fff
[    0.608481] dmar: ATSR flags: 0x0
[    0.612208] dmar: ATSR flags: 0x0
[    0.615934] dmar: ATSR flags: 0x0
[    0.619659] dmar: ATSR flags: 0x0
[    0.623383] dmar: RHSA base: 0x00000093ff8000 proximity domain: 0x0
[    0.630426] dmar: RHSA base: 0x00000097ff8000 proximity domain: 0x1
[    0.637467] dmar: RHSA base: 0x0000009bff8000 proximity domain: 0x2
[    0.644507] dmar: RHSA base: 0x0000009fff8000 proximity domain: 0x3
[    0.651551] IOAPIC id 13 under DRHD base  0x9fff8000 IOMMU 3
[    0.657909] IOAPIC id 11 under DRHD base  0x9bff8000 IOMMU 2
[    0.664268] IOAPIC id 12 under DRHD base  0x9bff8000 IOMMU 2
[    0.670626] IOAPIC id 10 under DRHD base  0x97ff8000 IOMMU 1
[    0.676986] IOAPIC id 8 under DRHD base  0x93ff8000 IOMMU 0
[    0.683249] IOAPIC id 9 under DRHD base  0x93ff8000 IOMMU 0
[    0.689512] HPET id 0 under DRHD base 0x93ff8000
[    0.698379] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.707215] Enabled IRQ remapping in x2apic mode
[    0.712419] System requires x2apic physical mode
[    0.714163] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.730927] TSC deadline timer enabled
[    0.730952] smpboot: CPU0: Intel(R) Xeon(R) CPU E7-2890 v2 @ 2.80GHz (fam: 06, model: 3e, stepping: 07)
[    0.741559] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
[    0.753143] ... version:                3
[    0.757642] ... bit width:              48
[    0.762236] ... generic registers:      4
[    0.766735] ... value mask:             0000ffffffffffff
[    0.772696] ... max period:             0000ffffffffffff
[    0.778656] ... fixed-purpose events:   3
[    0.783152] ... event mask:             000000070000000f
[    0.792461] x86: Booting SMP configuration:
[    0.797159] .... node  #0, CPUs:          #1
[    0.827714] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.837122]    #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14
[    1.037843] .... node  #1, CPUs:    #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29
[    1.376996] .... node  #2, CPUs:    #30  #31  #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44
[    1.717647] .... node  #3, CPUs:    #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59
[    2.058125] .... node  #0, CPUs:    #60  #61  #62  #63  #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74
[    2.291256] .... node  #1, CPUs:    #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89
[    2.559283] .... node  #2, CPUs:    #90  #91  #92  #93  #94  #95  #96  #97  #98  #99 #100 #101 #102 #103 #104
[    2.828440] .... node  #3, CPUs:   #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119
[    3.097277] x86: Booted up 4 nodes, 120 CPUs
[    3.102294] smpboot: Total of 120 processors activated (671389.98 BogoMIPS)
[    3.661767] devtmpfs: initialized
[    3.665566] Using 2GB memory block size for large-memory system
[    3.676425] evm: security.selinux
[    3.680146] evm: security.ima
[    3.683477] evm: security.capability
[    3.687659] PM: Registering ACPI NVS region [mem 0x799ff000-0x7bdfefff] (37748736 bytes)
[    3.697231] PM: Registering ACPI NVS region [mem 0x100000000-0x100000fff] (4096 bytes)
[    3.706124] PM: Registering ACPI NVS region [mem 0x4000000000-0x4000000fff] (4096 bytes)
[    3.717159] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    3.726459] NET: Registered protocol family 16
[    3.736709] cpuidle: using governor menu
[    3.741258] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    3.749760] ACPI: bus type PCI registered
[    3.754262] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    3.761690] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0x80000000-0x83ffffff] (base 0x80000000)
[    3.772145] PCI: MMCONFIG at [mem 0x80000000-0x83ffffff] reserved in E820
[    3.779869] PCI: Using configuration type 1 for base access
[    3.796823] ACPI: Added _OSI(Module Device)
[    3.801521] ACPI: Added _OSI(Processor Device)
[    3.806509] ACPI: Added _OSI(3.0 _SCP Extensions)
[    3.811790] ACPI: Added _OSI(Processor Aggregator Device)
[    3.840014] ACPI: Interpreter enabled
[    3.844129] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
[    3.854508] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
[    3.864887] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20150204/hwxface-580)
[    3.875264] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20150204/hwxface-580)
[    3.885642] ACPI: (supports S0 S5)
[    3.889460] ACPI: Using IOAPIC for interrupt routing
[    3.895095] HEST: Table parsing has been initialized.
[    3.900769] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    3.923282] ACPI: PCI Root Bridge [IO00] (domain 0000 [bus 00-0f])
[    3.930227] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    3.939453] acpi PNP0A08:00: PCIe AER handled by firmware
[    3.945582] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    3.954258] PCI host bridge to bus 0000:00
[    3.958859] pci_bus 0000:00: root bus resource [bus 00-0f]
[    3.965020] pci_bus 0000:00: root bus resource [io  0x1000-0x3fff window]
[    3.972645] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    3.980268] pci_bus 0000:00: root bus resource [mem 0x90000000-0x93efffff window]
[    3.988674] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    3.997080] pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfedfffff window]
[    4.005483] pci_bus 0000:00: root bus resource [mem 0xfc000000000-0xfc07fffffff window]
[    4.014472] pci_bus 0000:00: root bus resource [mem 0xfe200000000-0xfe27fffffff window]
[    4.023472] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[    4.023552] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    4.023636] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[    4.023728] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    4.023806] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[    4.023897] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    4.023974] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[    4.024067] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    4.024138] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000
[    4.024156] pci 0000:00:04.0: reg 0x10: [mem 0xfc07ff1c000-0xfc07ff1ffff 64bit]
[    4.024291] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000
[    4.024308] pci 0000:00:04.1: reg 0x10: [mem 0xfc07ff18000-0xfc07ff1bfff 64bit]
[    4.024435] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000
[    4.024451] pci 0000:00:04.2: reg 0x10: [mem 0xfc07ff14000-0xfc07ff17fff 64bit]
[    4.024583] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000
[    4.024600] pci 0000:00:04.3: reg 0x10: [mem 0xfc07ff10000-0xfc07ff13fff 64bit]
[    4.024724] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000
[    4.024741] pci 0000:00:04.4: reg 0x10: [mem 0xfc07ff0c000-0xfc07ff0ffff 64bit]
[    4.024866] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000
[    4.024883] pci 0000:00:04.5: reg 0x10: [mem 0xfc07ff08000-0xfc07ff0bfff 64bit]
[    4.025011] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000
[    4.025029] pci 0000:00:04.6: reg 0x10: [mem 0xfc07ff04000-0xfc07ff07fff 64bit]
[    4.025152] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000
[    4.025169] pci 0000:00:04.7: reg 0x10: [mem 0xfc07ff00000-0xfc07ff03fff 64bit]
[    4.025300] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[    4.025409] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    4.025489] pci 0000:00:1c.0: [8086:1d1e] type 01 class 0x060400
[    4.025584] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    4.025610] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    4.030891] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    4.038481] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[    4.038505] pci 0000:00:1d.0: reg 0x10: [mem 0x90400000-0x904003ff]
[    4.038609] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    4.038669] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[    4.038933] pci 0000:01:00.0: [8086:10f8] type 00 class 0x020000
[    4.038944] pci 0000:01:00.0: reg 0x10: [mem 0x90200000-0x902fffff]
[    4.038958] pci 0000:01:00.0: reg 0x18: [io  0x0000-0x001f]
[    4.038965] pci 0000:01:00.0: reg 0x1c: [mem 0x90304000-0x90307fff]
[    4.038983] pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0007ffff pref]
[    4.039029] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    4.039060] pci 0000:01:00.0: reg 0x184: [mem 0xfc07fb00000-0xfc07fb03fff 64bit pref]
[    4.039074] pci 0000:01:00.0: reg 0x190: [mem 0xfc07fa00000-0xfc07fa03fff 64bit pref]
[    4.039138] pci 0000:01:00.1: [8086:10f8] type 00 class 0x020000
[    4.039148] pci 0000:01:00.1: reg 0x10: [mem 0x90100000-0x901fffff]
[    4.039161] pci 0000:01:00.1: reg 0x18: [io  0x0000-0x001f]
[    4.039169] pci 0000:01:00.1: reg 0x1c: [mem 0x90300000-0x90303fff]
[    4.039187] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.039232] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    4.039259] pci 0000:01:00.1: reg 0x184: [mem 0xfc07f900000-0xfc07f903fff 64bit pref]
[    4.039273] pci 0000:01:00.1: reg 0x190: [mem 0xfc07f800000-0xfc07f803fff 64bit pref]
[    4.040483] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[    4.046355] pci 0000:00:02.0:   bridge window [mem 0x90100000-0x903fffff]
[    4.046360] pci 0000:00:02.0:   bridge window [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[    4.046466] pci 0000:03:00.0: [1077:2031] type 00 class 0x0c0400
[    4.046481] pci 0000:03:00.0: reg 0x10: [mem 0xfc07fe0a000-0xfc07fe0bfff 64bit pref]
[    4.046492] pci 0000:03:00.0: reg 0x18: [mem 0xfc07fe04000-0xfc07fe07fff 64bit pref]
[    4.046503] pci 0000:03:00.0: reg 0x20: [mem 0xfc07fd00000-0xfc07fdfffff 64bit pref]
[    4.046511] pci 0000:03:00.0: reg 0x30: [mem 0x00000000-0x0003ffff pref]
[    4.046556] pci 0000:03:00.0: PME# supported from D3cold
[    4.046629] pci 0000:03:00.1: [1077:2031] type 00 class 0x0c0400
[    4.046643] pci 0000:03:00.1: reg 0x10: [mem 0xfc07fe08000-0xfc07fe09fff 64bit pref]
[    4.046654] pci 0000:03:00.1: reg 0x18: [mem 0xfc07fe00000-0xfc07fe03fff 64bit pref]
[    4.046666] pci 0000:03:00.1: reg 0x20: [mem 0xfc07fc00000-0xfc07fcfffff 64bit pref]
[    4.046674] pci 0000:03:00.1: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
[    4.046717] pci 0000:03:00.1: PME# supported from D3cold
[    4.048385] pci 0000:00:02.2: PCI bridge to [bus 03]
[    4.053971] pci 0000:00:02.2:   bridge window [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[    4.054067] pci 0000:00:03.0: PCI bridge to [bus 04]
[    4.059719] pci 0000:00:11.0: PCI bridge to [bus 05]
[    4.065385] pci 0000:06:00.0: [103c:3306] type 00 class 0x088000
[    4.065412] pci 0000:06:00.0: reg 0x10: [io  0x1400-0x14ff]
[    4.065429] pci 0000:06:00.0: reg 0x14: [mem 0x93a8c000-0x93a8c1ff]
[    4.065445] pci 0000:06:00.0: reg 0x18: [io  0x1200-0x12ff]
[    4.065664] pci 0000:06:00.1: [102b:0533] type 00 class 0x030000
[    4.065690] pci 0000:06:00.1: reg 0x10: [mem 0x92000000-0x92ffffff pref]
[    4.065706] pci 0000:06:00.1: reg 0x14: [mem 0x93a88000-0x93a8bfff]
[    4.065723] pci 0000:06:00.1: reg 0x18: [mem 0x93000000-0x937fffff]
[    4.065938] pci 0000:06:00.2: [103c:3307] type 00 class 0x088000
[    4.065964] pci 0000:06:00.2: reg 0x10: [io  0x1000-0x10ff]
[    4.065980] pci 0000:06:00.2: reg 0x14: [mem 0x93a8c400-0x93a8c4ff]
[    4.065997] pci 0000:06:00.2: reg 0x18: [mem 0x93800000-0x938fffff]
[    4.066013] pci 0000:06:00.2: reg 0x1c: [mem 0x93a00000-0x93a7ffff]
[    4.066029] pci 0000:06:00.2: reg 0x20: [mem 0x93a80000-0x93a87fff]
[    4.066045] pci 0000:06:00.2: reg 0x24: [mem 0x93900000-0x939fffff]
[    4.066061] pci 0000:06:00.2: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    4.066145] pci 0000:06:00.2: PME# supported from D0 D3hot D3cold
[    4.066229] pci 0000:06:00.4: [103c:3300] type 00 class 0x0c0300
[    4.066319] pci 0000:06:00.4: reg 0x20: [io  0x1500-0x151f]
[    4.068355] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    4.073933] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    4.073937] pci 0000:00:1c.0:   bridge window [mem 0x92000000-0x93efffff]
[    4.073943] pci 0000:00:1c.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    4.074000] pci_bus 0000:00: on NUMA node 0
[    4.074002] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
[    4.082250] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.091799] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.101348] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.110905] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.120458] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.130007] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.139558] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.149109] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.158651] ACPI: PCI Root Bridge [IO01] (domain 0000 [bus 10-1f])
[    4.165591] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    4.174813] acpi PNP0A08:01: PCIe AER handled by firmware
[    4.180941] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    4.189587] PCI host bridge to bus 0000:10
[    4.194188] pci_bus 0000:10: root bus resource [bus 10-1f]
[    4.200350] pci_bus 0000:10: root bus resource [io  0x4000-0x7fff window]
[    4.207973] pci_bus 0000:10: root bus resource [mem 0x94000000-0x97ff7fff window]
[    4.216379] pci_bus 0000:10: root bus resource [mem 0xfc400000000-0xfc47fffffff window]
[    4.225385] pci 0000:10:02.0: [8086:0e04] type 01 class 0x060400
[    4.225482] pci 0000:10:02.0: PME# supported from D0 D3hot D3cold
[    4.225558] pci 0000:10:02.2: [8086:0e06] type 01 class 0x060400
[    4.225653] pci 0000:10:02.2: PME# supported from D0 D3hot D3cold
[    4.225722] pci 0000:10:03.0: [8086:0e08] type 01 class 0x060400
[    4.225819] pci 0000:10:03.0: PME# supported from D0 D3hot D3cold
[    4.225886] pci 0000:10:04.0: [8086:0e20] type 00 class 0x088000
[    4.225904] pci 0000:10:04.0: reg 0x10: [mem 0xfc47ff1c000-0xfc47ff1ffff 64bit]
[    4.226031] pci 0000:10:04.1: [8086:0e21] type 00 class 0x088000
[    4.226048] pci 0000:10:04.1: reg 0x10: [mem 0xfc47ff18000-0xfc47ff1bfff 64bit]
[    4.226171] pci 0000:10:04.2: [8086:0e22] type 00 class 0x088000
[    4.226189] pci 0000:10:04.2: reg 0x10: [mem 0xfc47ff14000-0xfc47ff17fff 64bit]
[    4.226316] pci 0000:10:04.3: [8086:0e23] type 00 class 0x088000
[    4.226334] pci 0000:10:04.3: reg 0x10: [mem 0xfc47ff10000-0xfc47ff13fff 64bit]
[    4.226464] pci 0000:10:04.4: [8086:0e24] type 00 class 0x088000
[    4.226481] pci 0000:10:04.4: reg 0x10: [mem 0xfc47ff0c000-0xfc47ff0ffff 64bit]
[    4.226605] pci 0000:10:04.5: [8086:0e25] type 00 class 0x088000
[    4.226623] pci 0000:10:04.5: reg 0x10: [mem 0xfc47ff08000-0xfc47ff0bfff 64bit]
[    4.226749] pci 0000:10:04.6: [8086:0e26] type 00 class 0x088000
[    4.226767] pci 0000:10:04.6: reg 0x10: [mem 0xfc47ff04000-0xfc47ff07fff 64bit]
[    4.226891] pci 0000:10:04.7: [8086:0e27] type 00 class 0x088000
[    4.226908] pci 0000:10:04.7: reg 0x10: [mem 0xfc47ff00000-0xfc47ff03fff 64bit]
[    4.227137] pci 0000:10:02.0: PCI bridge to [bus 11]
[    4.232777] pci 0000:10:02.2: PCI bridge to [bus 12]
[    4.238455] pci 0000:10:03.0: PCI bridge to [bus 13]
[    4.244063] pci_bus 0000:10: on NUMA node 1
[    4.244065] acpi PNP0A08:01: Disabling ASPM (FADT indicates it is unsupported)
[    4.253864] ACPI: PCI Root Bridge [IO02] (domain 0000 [bus 20-2f])
[    4.260807] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    4.270030] acpi PNP0A08:02: PCIe AER handled by firmware
[    4.276159] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    4.284822] PCI host bridge to bus 0000:20
[    4.289420] pci_bus 0000:20: root bus resource [bus 20-2f]
[    4.295581] pci_bus 0000:20: root bus resource [io  0x8000-0xbfff window]
[    4.303204] pci_bus 0000:20: root bus resource [mem 0x98000000-0x9befffff window]
[    4.311609] pci_bus 0000:20: root bus resource [mem 0xf0800000000-0xf087fffffff window]
[    4.320610] pci 0000:20:00.0: [8086:0e00] type 00 class 0x060000
[    4.320692] pci 0000:20:00.0: PME# supported from D0 D3hot D3cold
[    4.320768] pci 0000:20:02.0: [8086:0e04] type 01 class 0x060400
[    4.320872] pci 0000:20:02.0: PME# supported from D0 D3hot D3cold
[    4.320949] pci 0000:20:02.2: [8086:0e06] type 01 class 0x060400
[    4.321053] pci 0000:20:02.2: PME# supported from D0 D3hot D3cold
[    4.321136] pci 0000:20:03.0: [8086:0e08] type 01 class 0x060400
[    4.321241] pci 0000:20:03.0: PME# supported from D0 D3hot D3cold
[    4.321315] pci 0000:20:04.0: [8086:0e20] type 00 class 0x088000
[    4.321334] pci 0000:20:04.0: reg 0x10: [mem 0xf087ff1c000-0xf087ff1ffff 64bit]
[    4.321475] pci 0000:20:04.1: [8086:0e21] type 00 class 0x088000
[    4.321494] pci 0000:20:04.1: reg 0x10: [mem 0xf087ff18000-0xf087ff1bfff 64bit]
[    4.321634] pci 0000:20:04.2: [8086:0e22] type 00 class 0x088000
[    4.321653] pci 0000:20:04.2: reg 0x10: [mem 0xf087ff14000-0xf087ff17fff 64bit]
[    4.321795] pci 0000:20:04.3: [8086:0e23] type 00 class 0x088000
[    4.321815] pci 0000:20:04.3: reg 0x10: [mem 0xf087ff10000-0xf087ff13fff 64bit]
[    4.321952] pci 0000:20:04.4: [8086:0e24] type 00 class 0x088000
[    4.321971] pci 0000:20:04.4: reg 0x10: [mem 0xf087ff0c000-0xf087ff0ffff 64bit]
[    4.322106] pci 0000:20:04.5: [8086:0e25] type 00 class 0x088000
[    4.322125] pci 0000:20:04.5: reg 0x10: [mem 0xf087ff08000-0xf087ff0bfff 64bit]
[    4.322260] pci 0000:20:04.6: [8086:0e26] type 00 class 0x088000
[    4.322280] pci 0000:20:04.6: reg 0x10: [mem 0xf087ff04000-0xf087ff07fff 64bit]
[    4.322415] pci 0000:20:04.7: [8086:0e27] type 00 class 0x088000
[    4.322434] pci 0000:20:04.7: reg 0x10: [mem 0xf087ff00000-0xf087ff03fff 64bit]
[    4.322579] pci 0000:20:11.0: [8086:1d3e] type 01 class 0x060400
[    4.322699] pci 0000:20:11.0: PME# supported from D0 D3hot D3cold
[    4.322786] pci 0000:20:1c.0: [8086:1d1e] type 01 class 0x060400
[    4.322890] pci 0000:20:1c.0: PME# supported from D0 D3hot D3cold
[    4.322917] pci 0000:20:1c.0: Enabling MPC IRBNCE
[    4.328201] pci 0000:20:1c.0: Intel PCH root port ACS workaround enabled
[    4.335791] pci 0000:20:1d.0: [8086:1d26] type 00 class 0x0c0320
[    4.335816] pci 0000:20:1d.0: reg 0x10: [mem 0x98300000-0x983003ff]
[    4.335928] pci 0000:20:1d.0: PME# supported from D0 D3hot D3cold
[    4.335991] pci 0000:20:1f.0: [8086:1d41] type 00 class 0x060100
[    4.336274] pci 0000:21:00.0: [8086:10f8] type 00 class 0x020000
[    4.336286] pci 0000:21:00.0: reg 0x10: [mem 0x98100000-0x981fffff]
[    4.336301] pci 0000:21:00.0: reg 0x18: [io  0x0000-0x001f]
[    4.336308] pci 0000:21:00.0: reg 0x1c: [mem 0x98204000-0x98207fff]
[    4.336329] pci 0000:21:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.336380] pci 0000:21:00.0: PME# supported from D0 D3hot D3cold
[    4.336416] pci 0000:21:00.0: reg 0x184: [mem 0xf087fe00000-0xf087fe03fff 64bit pref]
[    4.336430] pci 0000:21:00.0: reg 0x190: [mem 0xf087fd00000-0xf087fd03fff 64bit pref]
[    4.336500] pci 0000:21:00.1: [8086:10f8] type 00 class 0x020000
[    4.336512] pci 0000:21:00.1: reg 0x10: [mem 0x98000000-0x980fffff]
[    4.336526] pci 0000:21:00.1: reg 0x18: [io  0x0000-0x001f]
[    4.336534] pci 0000:21:00.1: reg 0x1c: [mem 0x98200000-0x98203fff]
[    4.336553] pci 0000:21:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.336605] pci 0000:21:00.1: PME# supported from D0 D3hot D3cold
[    4.336635] pci 0000:21:00.1: reg 0x184: [mem 0xf087fc00000-0xf087fc03fff 64bit pref]
[    4.336650] pci 0000:21:00.1: reg 0x190: [mem 0xf087fb00000-0xf087fb03fff 64bit pref]
[    4.337755] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[    4.343628] pci 0000:20:02.0:   bridge window [mem 0x98000000-0x982fffff]
[    4.343634] pci 0000:20:02.0:   bridge window [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[    4.343741] pci 0000:20:02.2: PCI bridge to [bus 23]
[    4.349426] pci 0000:20:03.0: PCI bridge to [bus 24]
[    4.355083] pci 0000:20:11.0: PCI bridge to [bus 25]
[    4.360761] pci 0000:26:00.0: [103c:3306] type 00 class 0x088000
[    4.360788] pci 0000:26:00.0: reg 0x10: [io  0x0000-0x00ff]
[    4.360806] pci 0000:26:00.0: reg 0x14: [mem 0x9bd88000-0x9bd881ff]
[    4.360824] pci 0000:26:00.0: reg 0x18: [io  0x0000-0x00ff]
[    4.361055] pci 0000:26:00.2: [103c:3307] type 00 class 0x088000
[    4.361083] pci 0000:26:00.2: reg 0x10: [io  0x0000-0x00ff]
[    4.361099] pci 0000:26:00.2: reg 0x14: [mem 0x9bd88400-0x9bd884ff]
[    4.361116] pci 0000:26:00.2: reg 0x18: [mem 0x9bb00000-0x9bbfffff]
[    4.361134] pci 0000:26:00.2: reg 0x1c: [mem 0x9bd00000-0x9bd7ffff]
[    4.361152] pci 0000:26:00.2: reg 0x20: [mem 0x9bd80000-0x9bd87fff]
[    4.361168] pci 0000:26:00.2: reg 0x24: [mem 0x9bc00000-0x9bcfffff]
[    4.361185] pci 0000:26:00.2: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    4.361274] pci 0000:26:00.2: PME# supported from D0 D3hot D3cold
[    4.362695] pci 0000:20:1c.0: PCI bridge to [bus 26]
[    4.368292] pci 0000:20:1c.0:   bridge window [mem 0x9bb00000-0x9befffff]
[    4.368299] pci 0000:20:1c.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    4.368350] pci_bus 0000:20: on NUMA node 2
[    4.368351] acpi PNP0A08:02: Disabling ASPM (FADT indicates it is unsupported)
[    4.376526] ACPI: PCI Root Bridge [IO03] (domain 0000 [bus 30-3f])
[    4.383471] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    4.392697] acpi PNP0A08:03: PCIe AER handled by firmware
[    4.398825] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    4.407473] PCI host bridge to bus 0000:30
[    4.412072] pci_bus 0000:30: root bus resource [bus 30-3f]
[    4.418232] pci_bus 0000:30: root bus resource [io  0xc000-0xffff window]
[    4.425856] pci_bus 0000:30: root bus resource [mem 0x9c000000-0x9fff7fff window]
[    4.434259] pci_bus 0000:30: root bus resource [mem 0xf0c00000000-0xf0c7fffffff window]
[    4.443263] pci 0000:30:02.0: [8086:0e04] type 01 class 0x060400
[    4.443369] pci 0000:30:02.0: PME# supported from D0 D3hot D3cold
[    4.443445] pci 0000:30:02.2: [8086:0e06] type 01 class 0x060400
[    4.443547] pci 0000:30:02.2: PME# supported from D0 D3hot D3cold
[    4.443621] pci 0000:30:03.0: [8086:0e08] type 01 class 0x060400
[    4.443726] pci 0000:30:03.0: PME# supported from D0 D3hot D3cold
[    4.443795] pci 0000:30:04.0: [8086:0e20] type 00 class 0x088000
[    4.443814] pci 0000:30:04.0: reg 0x10: [mem 0xf0c7ff1c000-0xf0c7ff1ffff 64bit]
[    4.443949] pci 0000:30:04.1: [8086:0e21] type 00 class 0x088000
[    4.443967] pci 0000:30:04.1: reg 0x10: [mem 0xf0c7ff18000-0xf0c7ff1bfff 64bit]
[    4.444100] pci 0000:30:04.2: [8086:0e22] type 00 class 0x088000
[    4.444119] pci 0000:30:04.2: reg 0x10: [mem 0xf0c7ff14000-0xf0c7ff17fff 64bit]
[    4.444254] pci 0000:30:04.3: [8086:0e23] type 00 class 0x088000
[    4.444273] pci 0000:30:04.3: reg 0x10: [mem 0xf0c7ff10000-0xf0c7ff13fff 64bit]
[    4.444407] pci 0000:30:04.4: [8086:0e24] type 00 class 0x088000
[    4.444427] pci 0000:30:04.4: reg 0x10: [mem 0xf0c7ff0c000-0xf0c7ff0ffff 64bit]
[    4.444557] pci 0000:30:04.5: [8086:0e25] type 00 class 0x088000
[    4.444576] pci 0000:30:04.5: reg 0x10: [mem 0xf0c7ff08000-0xf0c7ff0bfff 64bit]
[    4.444708] pci 0000:30:04.6: [8086:0e26] type 00 class 0x088000
[    4.444726] pci 0000:30:04.6: reg 0x10: [mem 0xf0c7ff04000-0xf0c7ff07fff 64bit]
[    4.444856] pci 0000:30:04.7: [8086:0e27] type 00 class 0x088000
[    4.444875] pci 0000:30:04.7: reg 0x10: [mem 0xf0c7ff00000-0xf0c7ff03fff 64bit]
[    4.445117] pci 0000:30:02.0: PCI bridge to [bus 31]
[    4.450763] pci 0000:30:02.2: PCI bridge to [bus 32]
[    4.456450] pci 0000:30:03.0: PCI bridge to [bus 33]
[    4.462059] pci_bus 0000:30: on NUMA node 3
[    4.462060] acpi PNP0A08:03: Disabling ASPM (FADT indicates it is unsupported)
[    4.470231] ACPI: Enabled 1 GPEs in block 80 to FF
[    4.475943] vgaarb: setting as boot device: PCI:0000:06:00.1
[    4.482310] vgaarb: device added: PCI:0000:06:00.1,decodes=io+mem,owns=io+mem,locks=none
[    4.491443] vgaarb: loaded
[    4.494481] vgaarb: bridge control possible 0000:06:00.1
[    4.500811] SCSI subsystem initialized
[    4.505074] ACPI: bus type USB registered
[    4.509613] usbcore: registered new interface driver usbfs
[    4.515782] usbcore: registered new interface driver hub
[    4.522745] usbcore: registered new device driver usb
[    4.530014] PCI: Using ACPI for IRQ routing
[    4.535053] PCI: Discovered peer bus 0f
[    4.539361] PCI: root bus 0f: using default resources
[    4.539364] PCI: Probing PCI hardware (bus 0f)
[    4.539424] PCI host bridge to bus 0000:0f
[    4.544073] pci_bus 0000:0f: root bus resource [io  0x0000-0xffff]
[    4.551027] pci_bus 0000:0f: root bus resource [mem 0x00000000-0x3fffffffffff]
[    4.559136] pci_bus 0000:0f: No busn resource found for root bus, will use [bus 0f-ff]
[    4.568031] pci_bus 0000:0f: busn_res: can not insert [bus 0f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-0f])
[    4.568053] pci 0000:0f:08.0: [8086:0e80] type 00 class 0x088000
[    4.568204] pci 0000:0f:08.2: [8086:0e32] type 00 class 0x110100
[    4.568278] pci 0000:0f:09.0: [8086:0e90] type 00 class 0x088000
[    4.568346] pci 0000:0f:09.2: [8086:0e33] type 00 class 0x110100
[    4.568416] pci 0000:0f:0a.0: [8086:0ec0] type 00 class 0x088000
[    4.568479] pci 0000:0f:0a.1: [8086:0ec1] type 00 class 0x088000
[    4.568548] pci 0000:0f:0a.2: [8086:0ec2] type 00 class 0x088000
[    4.568612] pci 0000:0f:0a.3: [8086:0ec3] type 00 class 0x088000
[    4.568679] pci 0000:0f:0b.0: [8086:0e1e] type 00 class 0x088000
[    4.568745] pci 0000:0f:0b.3: [8086:0e1f] type 00 class 0x088000
[    4.568810] pci 0000:0f:0c.0: [8086:0ee0] type 00 class 0x088000
[    4.568885] pci 0000:0f:0c.1: [8086:0ee2] type 00 class 0x088000
[    4.568947] pci 0000:0f:0c.2: [8086:0ee4] type 00 class 0x088000
[    4.569012] pci 0000:0f:0c.3: [8086:0ee6] type 00 class 0x088000
[    4.569084] pci 0000:0f:0c.4: [8086:0ee8] type 00 class 0x088000
[    4.569148] pci 0000:0f:0c.5: [8086:0eea] type 00 class 0x088000
[    4.569211] pci 0000:0f:0c.6: [8086:0eec] type 00 class 0x088000
[    4.569274] pci 0000:0f:0c.7: [8086:0eee] type 00 class 0x088000
[    4.569371] pci 0000:0f:0d.0: [8086:0ee1] type 00 class 0x088000
[    4.569433] pci 0000:0f:0d.1: [8086:0ee3] type 00 class 0x088000
[    4.569497] pci 0000:0f:0d.2: [8086:0ee5] type 00 class 0x088000
[    4.569562] pci 0000:0f:0d.3: [8086:0ee7] type 00 class 0x088000
[    4.569626] pci 0000:0f:0d.4: [8086:0ee9] type 00 class 0x088000
[    4.569689] pci 0000:0f:0d.5: [8086:0eeb] type 00 class 0x088000
[    4.569752] pci 0000:0f:0d.6: [8086:0eed] type 00 class 0x088000
[    4.569816] pci 0000:0f:0e.0: [8086:0ea0] type 00 class 0x088000
[    4.569883] pci 0000:0f:0e.1: [8086:0e30] type 00 class 0x110100
[    4.569961] pci 0000:0f:0f.0: [8086:0ea8] type 00 class 0x088000
[    4.570055] pci 0000:0f:0f.1: [8086:0e71] type 00 class 0x088000
[    4.570140] pci 0000:0f:0f.2: [8086:0eaa] type 00 class 0x088000
[    4.570233] pci 0000:0f:0f.3: [8086:0eab] type 00 class 0x088000
[    4.570320] pci 0000:0f:0f.4: [8086:0eac] type 00 class 0x088000
[    4.570406] pci 0000:0f:0f.5: [8086:0ead] type 00 class 0x088000
[    4.570491] pci 0000:0f:10.0: [8086:0eb0] type 00 class 0x088000
[    4.570578] pci 0000:0f:10.1: [8086:0eb1] type 00 class 0x088000
[    4.570665] pci 0000:0f:10.2: [8086:0eb2] type 00 class 0x088000
[    4.570749] pci 0000:0f:10.3: [8086:0eb3] type 00 class 0x088000
[    4.570836] pci 0000:0f:10.4: [8086:0eb4] type 00 class 0x088000
[    4.570926] pci 0000:0f:10.5: [8086:0eb5] type 00 class 0x088000
[    4.571014] pci 0000:0f:10.6: [8086:0eb6] type 00 class 0x088000
[    4.571105] pci 0000:0f:10.7: [8086:0eb7] type 00 class 0x088000
[    4.571193] pci 0000:0f:11.0: [8086:0ef8] type 00 class 0x088000
[    4.571279] pci 0000:0f:11.1: [8086:0ef9] type 00 class 0x088000
[    4.571367] pci 0000:0f:11.2: [8086:0efa] type 00 class 0x088000
[    4.571455] pci 0000:0f:11.4: [8086:0efc] type 00 class 0x088000
[    4.571543] pci 0000:0f:11.5: [8086:0efd] type 00 class 0x088000
[    4.571634] pci 0000:0f:13.0: [8086:0e1d] type 00 class 0x088000
[    4.571699] pci 0000:0f:13.1: [8086:0e34] type 00 class 0x110100
[    4.571766] pci 0000:0f:13.4: [8086:0e81] type 00 class 0x088000
[    4.571835] pci 0000:0f:13.5: [8086:0e36] type 00 class 0x110100
[    4.571900] pci 0000:0f:13.6: [8086:0e37] type 00 class 0x110100
[    4.571969] pci 0000:0f:16.0: [8086:0ec8] type 00 class 0x088000
[    4.572035] pci 0000:0f:16.1: [8086:0ec9] type 00 class 0x088000
[    4.572103] pci 0000:0f:16.2: [8086:0eca] type 00 class 0x088000
[    4.572176] pci 0000:0f:18.0: [8086:0e40] type 00 class 0x088000
[    4.572247] pci 0000:0f:18.2: [8086:0e3a] type 00 class 0x110100
[    4.572332] pci 0000:0f:1c.0: [8086:0e60] type 00 class 0x088000
[    4.572434] pci 0000:0f:1c.1: [8086:0e38] type 00 class 0x110100
[    4.572516] pci 0000:0f:1d.0: [8086:0e68] type 00 class 0x088000
[    4.572611] pci 0000:0f:1d.1: [8086:0e79] type 00 class 0x088000
[    4.572703] pci 0000:0f:1d.2: [8086:0e6a] type 00 class 0x088000
[    4.572792] pci 0000:0f:1d.3: [8086:0e6b] type 00 class 0x088000
[    4.572883] pci 0000:0f:1d.4: [8086:0e6c] type 00 class 0x088000
[    4.572972] pci 0000:0f:1d.5: [8086:0e6d] type 00 class 0x088000
[    4.573064] pci 0000:0f:1e.0: [8086:0ef0] type 00 class 0x088000
[    4.573155] pci 0000:0f:1e.1: [8086:0ef1] type 00 class 0x088000
[    4.573247] pci 0000:0f:1e.2: [8086:0ef2] type 00 class 0x088000
[    4.573337] pci 0000:0f:1e.3: [8086:0ef3] type 00 class 0x088000
[    4.573428] pci 0000:0f:1e.4: [8086:0ef4] type 00 class 0x088000
[    4.573526] pci 0000:0f:1e.5: [8086:0ef5] type 00 class 0x088000
[    4.573617] pci 0000:0f:1e.6: [8086:0ef6] type 00 class 0x088000
[    4.573707] pci 0000:0f:1e.7: [8086:0ef7] type 00 class 0x088000
[    4.573797] pci 0000:0f:1f.0: [8086:0ed8] type 00 class 0x088000
[    4.573888] pci 0000:0f:1f.1: [8086:0ed9] type 00 class 0x088000
[    4.573979] pci 0000:0f:1f.4: [8086:0edc] type 00 class 0x088000
[    4.574067] pci 0000:0f:1f.5: [8086:0edd] type 00 class 0x088000
[    4.574157] pci 0000:0f:1f.6: [8086:0ede] type 00 class 0x088000
[    4.574242] pci 0000:0f:1f.7: [8086:0edf] type 00 class 0x088000
[    4.574332] pci_bus 0000:0f: busn_res: [bus 0f-ff] end is updated to 0f
[    4.574334] pci_bus 0000:0f: busn_res: can not insert [bus 0f] under domain [bus 00-ff] (conflicts with (null) [bus 00-0f])
[    4.574564] PCI: Discovered peer bus 1f
[    4.578866] PCI: root bus 1f: using default resources
[    4.578867] PCI: Probing PCI hardware (bus 1f)
[    4.578891] PCI host bridge to bus 0000:1f
[    4.583490] pci_bus 0000:1f: root bus resource [io  0x0000-0xffff]
[    4.590431] pci_bus 0000:1f: root bus resource [mem 0x00000000-0x3fffffffffff]
[    4.598543] pci_bus 0000:1f: No busn resource found for root bus, will use [bus 1f-ff]
[    4.607436] pci_bus 0000:1f: busn_res: can not insert [bus 1f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 10-1f])
[    4.607447] pci 0000:1f:08.0: [8086:0e80] type 00 class 0x088000
[    4.607522] pci 0000:1f:08.2: [8086:0e32] type 00 class 0x110100
[    4.607590] pci 0000:1f:09.0: [8086:0e90] type 00 class 0x088000
[    4.607663] pci 0000:1f:09.2: [8086:0e33] type 00 class 0x110100
[    4.607735] pci 0000:1f:0a.0: [8086:0ec0] type 00 class 0x088000
[    4.607798] pci 0000:1f:0a.1: [8086:0ec1] type 00 class 0x088000
[    4.607862] pci 0000:1f:0a.2: [8086:0ec2] type 00 class 0x088000
[    4.607928] pci 0000:1f:0a.3: [8086:0ec3] type 00 class 0x088000
[    4.607997] pci 0000:1f:0b.0: [8086:0e1e] type 00 class 0x088000
[    4.608062] pci 0000:1f:0b.3: [8086:0e1f] type 00 class 0x088000
[    4.608122] pci 0000:1f:0c.0: [8086:0ee0] type 00 class 0x088000
[    4.608185] pci 0000:1f:0c.1: [8086:0ee2] type 00 class 0x088000
[    4.608248] pci 0000:1f:0c.2: [8086:0ee4] type 00 class 0x088000
[    4.608317] pci 0000:1f:0c.3: [8086:0ee6] type 00 class 0x088000
[    4.608385] pci 0000:1f:0c.4: [8086:0ee8] type 00 class 0x088000
[    4.608454] pci 0000:1f:0c.5: [8086:0eea] type 00 class 0x088000
[    4.608519] pci 0000:1f:0c.6: [8086:0eec] type 00 class 0x088000
[    4.608582] pci 0000:1f:0c.7: [8086:0eee] type 00 class 0x088000
[    4.608643] pci 0000:1f:0d.0: [8086:0ee1] type 00 class 0x088000
[    4.608709] pci 0000:1f:0d.1: [8086:0ee3] type 00 class 0x088000
[    4.608771] pci 0000:1f:0d.2: [8086:0ee5] type 00 class 0x088000
[    4.608835] pci 0000:1f:0d.3: [8086:0ee7] type 00 class 0x088000
[    4.608898] pci 0000:1f:0d.4: [8086:0ee9] type 00 class 0x088000
[    4.608965] pci 0000:1f:0d.5: [8086:0eeb] type 00 class 0x088000
[    4.609030] pci 0000:1f:0d.6: [8086:0eed] type 00 class 0x088000
[    4.609094] pci 0000:1f:0e.0: [8086:0ea0] type 00 class 0x088000
[    4.609164] pci 0000:1f:0e.1: [8086:0e30] type 00 class 0x110100
[    4.609239] pci 0000:1f:0f.0: [8086:0ea8] type 00 class 0x088000
[    4.609330] pci 0000:1f:0f.1: [8086:0e71] type 00 class 0x088000
[    4.609418] pci 0000:1f:0f.2: [8086:0eaa] type 00 class 0x088000
[    4.609511] pci 0000:1f:0f.3: [8086:0eab] type 00 class 0x088000
[    4.609598] pci 0000:1f:0f.4: [8086:0eac] type 00 class 0x088000
[    4.609688] pci 0000:1f:0f.5: [8086:0ead] type 00 class 0x088000
[    4.609778] pci 0000:1f:10.0: [8086:0eb0] type 00 class 0x088000
[    4.609868] pci 0000:1f:10.1: [8086:0eb1] type 00 class 0x088000
[    4.609957] pci 0000:1f:10.2: [8086:0eb2] type 00 class 0x088000
[    4.610044] pci 0000:1f:10.3: [8086:0eb3] type 00 class 0x088000
[    4.610133] pci 0000:1f:10.4: [8086:0eb4] type 00 class 0x088000
[    4.610220] pci 0000:1f:10.5: [8086:0eb5] type 00 class 0x088000
[    4.610307] pci 0000:1f:10.6: [8086:0eb6] type 00 class 0x088000
[    4.610397] pci 0000:1f:10.7: [8086:0eb7] type 00 class 0x088000
[    4.610487] pci 0000:1f:11.0: [8086:0ef8] type 00 class 0x088000
[    4.610575] pci 0000:1f:11.1: [8086:0ef9] type 00 class 0x088000
[    4.610661] pci 0000:1f:11.2: [8086:0efa] type 00 class 0x088000
[    4.610749] pci 0000:1f:11.4: [8086:0efc] type 00 class 0x088000
[    4.610836] pci 0000:1f:11.5: [8086:0efd] type 00 class 0x088000
[    4.610922] pci 0000:1f:13.0: [8086:0e1d] type 00 class 0x088000
[    4.610988] pci 0000:1f:13.1: [8086:0e34] type 00 class 0x110100
[    4.611058] pci 0000:1f:13.4: [8086:0e81] type 00 class 0x088000
[    4.611123] pci 0000:1f:13.5: [8086:0e36] type 00 class 0x110100
[    4.611192] pci 0000:1f:13.6: [8086:0e37] type 00 class 0x110100
[    4.611263] pci 0000:1f:16.0: [8086:0ec8] type 00 class 0x088000
[    4.611331] pci 0000:1f:16.1: [8086:0ec9] type 00 class 0x088000
[    4.611398] pci 0000:1f:16.2: [8086:0eca] type 00 class 0x088000
[    4.611479] pci 0000:1f:18.0: [8086:0e40] type 00 class 0x088000
[    4.611593] pci 0000:1f:18.2: [8086:0e3a] type 00 class 0x110100
[    4.611687] pci 0000:1f:1c.0: [8086:0e60] type 00 class 0x088000
[    4.611761] pci 0000:1f:1c.1: [8086:0e38] type 00 class 0x110100
[    4.611843] pci 0000:1f:1d.0: [8086:0e68] type 00 class 0x088000
[    4.611934] pci 0000:1f:1d.1: [8086:0e79] type 00 class 0x088000
[    4.612023] pci 0000:1f:1d.2: [8086:0e6a] type 00 class 0x088000
[    4.612110] pci 0000:1f:1d.3: [8086:0e6b] type 00 class 0x088000
[    4.612198] pci 0000:1f:1d.4: [8086:0e6c] type 00 class 0x088000
[    4.612287] pci 0000:1f:1d.5: [8086:0e6d] type 00 class 0x088000
[    4.612381] pci 0000:1f:1e.0: [8086:0ef0] type 00 class 0x088000
[    4.612476] pci 0000:1f:1e.1: [8086:0ef1] type 00 class 0x088000
[    4.612568] pci 0000:1f:1e.2: [8086:0ef2] type 00 class 0x088000
[    4.612663] pci 0000:1f:1e.3: [8086:0ef3] type 00 class 0x088000
[    4.612753] pci 0000:1f:1e.4: [8086:0ef4] type 00 class 0x088000
[    4.612843] pci 0000:1f:1e.5: [8086:0ef5] type 00 class 0x088000
[    4.612934] pci 0000:1f:1e.6: [8086:0ef6] type 00 class 0x088000
[    4.613024] pci 0000:1f:1e.7: [8086:0ef7] type 00 class 0x088000
[    4.613115] pci 0000:1f:1f.0: [8086:0ed8] type 00 class 0x088000
[    4.613204] pci 0000:1f:1f.1: [8086:0ed9] type 00 class 0x088000
[    4.613296] pci 0000:1f:1f.4: [8086:0edc] type 00 class 0x088000
[    4.613383] pci 0000:1f:1f.5: [8086:0edd] type 00 class 0x088000
[    4.613474] pci 0000:1f:1f.6: [8086:0ede] type 00 class 0x088000
[    4.613562] pci 0000:1f:1f.7: [8086:0edf] type 00 class 0x088000
[    4.613648] pci_bus 0000:1f: busn_res: [bus 1f-ff] end is updated to 1f
[    4.613650] pci_bus 0000:1f: busn_res: can not insert [bus 1f] under domain [bus 00-ff] (conflicts with (null) [bus 10-1f])
[    4.613945] PCI: Discovered peer bus 2f
[    4.618249] PCI: root bus 2f: using default resources
[    4.618250] PCI: Probing PCI hardware (bus 2f)
[    4.618271] PCI host bridge to bus 0000:2f
[    4.622871] pci_bus 0000:2f: root bus resource [io  0x0000-0xffff]
[    4.629813] pci_bus 0000:2f: root bus resource [mem 0x00000000-0x3fffffffffff]
[    4.637923] pci_bus 0000:2f: No busn resource found for root bus, will use [bus 2f-ff]
[    4.646817] pci_bus 0000:2f: busn_res: can not insert [bus 2f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 20-2f])
[    4.646828] pci 0000:2f:08.0: [8086:0e80] type 00 class 0x088000
[    4.646897] pci 0000:2f:08.2: [8086:0e32] type 00 class 0x110100
[    4.646965] pci 0000:2f:09.0: [8086:0e90] type 00 class 0x088000
[    4.647029] pci 0000:2f:09.2: [8086:0e33] type 00 class 0x110100
[    4.647104] pci 0000:2f:0a.0: [8086:0ec0] type 00 class 0x088000
[    4.647166] pci 0000:2f:0a.1: [8086:0ec1] type 00 class 0x088000
[    4.647225] pci 0000:2f:0a.2: [8086:0ec2] type 00 class 0x088000
[    4.647292] pci 0000:2f:0a.3: [8086:0ec3] type 00 class 0x088000
[    4.647353] pci 0000:2f:0b.0: [8086:0e1e] type 00 class 0x088000
[    4.647412] pci 0000:2f:0b.3: [8086:0e1f] type 00 class 0x088000
[    4.647478] pci 0000:2f:0c.0: [8086:0ee0] type 00 class 0x088000
[    4.647538] pci 0000:2f:0c.1: [8086:0ee2] type 00 class 0x088000
[    4.647598] pci 0000:2f:0c.2: [8086:0ee4] type 00 class 0x088000
[    4.647657] pci 0000:2f:0c.3: [8086:0ee6] type 00 class 0x088000
[    4.647719] pci 0000:2f:0c.4: [8086:0ee8] type 00 class 0x088000
[    4.647776] pci 0000:2f:0c.5: [8086:0eea] type 00 class 0x088000
[    4.647839] pci 0000:2f:0c.6: [8086:0eec] type 00 class 0x088000
[    4.647899] pci 0000:2f:0c.7: [8086:0eee] type 00 class 0x088000
[    4.647961] pci 0000:2f:0d.0: [8086:0ee1] type 00 class 0x088000
[    4.648023] pci 0000:2f:0d.1: [8086:0ee3] type 00 class 0x088000
[    4.648083] pci 0000:2f:0d.2: [8086:0ee5] type 00 class 0x088000
[    4.648145] pci 0000:2f:0d.3: [8086:0ee7] type 00 class 0x088000
[    4.648206] pci 0000:2f:0d.4: [8086:0ee9] type 00 class 0x088000
[    4.648264] pci 0000:2f:0d.5: [8086:0eeb] type 00 class 0x088000
[    4.648323] pci 0000:2f:0d.6: [8086:0eed] type 00 class 0x088000
[    4.648381] pci 0000:2f:0e.0: [8086:0ea0] type 00 class 0x088000
[    4.648447] pci 0000:2f:0e.1: [8086:0e30] type 00 class 0x110100
[    4.648519] pci 0000:2f:0f.0: [8086:0ea8] type 00 class 0x088000
[    4.648597] pci 0000:2f:0f.1: [8086:0e71] type 00 class 0x088000
[    4.648676] pci 0000:2f:0f.2: [8086:0eaa] type 00 class 0x088000
[    4.648753] pci 0000:2f:0f.3: [8086:0eab] type 00 class 0x088000
[    4.648840] pci 0000:2f:0f.4: [8086:0eac] type 00 class 0x088000
[    4.648924] pci 0000:2f:0f.5: [8086:0ead] type 00 class 0x088000
[    4.649004] pci 0000:2f:10.0: [8086:0eb0] type 00 class 0x088000
[    4.649089] pci 0000:2f:10.1: [8086:0eb1] type 00 class 0x088000
[    4.649174] pci 0000:2f:10.2: [8086:0eb2] type 00 class 0x088000
[    4.649255] pci 0000:2f:10.3: [8086:0eb3] type 00 class 0x088000
[    4.649337] pci 0000:2f:10.4: [8086:0eb4] type 00 class 0x088000
[    4.649420] pci 0000:2f:10.5: [8086:0eb5] type 00 class 0x088000
[    4.649503] pci 0000:2f:10.6: [8086:0eb6] type 00 class 0x088000
[    4.649583] pci 0000:2f:10.7: [8086:0eb7] type 00 class 0x088000
[    4.649664] pci 0000:2f:11.0: [8086:0ef8] type 00 class 0x088000
[    4.649753] pci 0000:2f:11.1: [8086:0ef9] type 00 class 0x088000
[    4.649838] pci 0000:2f:11.2: [8086:0efa] type 00 class 0x088000
[    4.649921] pci 0000:2f:11.4: [8086:0efc] type 00 class 0x088000
[    4.650001] pci 0000:2f:11.5: [8086:0efd] type 00 class 0x088000
[    4.650088] pci 0000:2f:13.0: [8086:0e1d] type 00 class 0x088000
[    4.650150] pci 0000:2f:13.1: [8086:0e34] type 00 class 0x110100
[    4.650213] pci 0000:2f:13.4: [8086:0e81] type 00 class 0x088000
[    4.650275] pci 0000:2f:13.5: [8086:0e36] type 00 class 0x110100
[    4.650419] pci 0000:2f:13.6: [8086:0e37] type 00 class 0x110100
[    4.650486] pci 0000:2f:16.0: [8086:0ec8] type 00 class 0x088000
[    4.650549] pci 0000:2f:16.1: [8086:0ec9] type 00 class 0x088000
[    4.650612] pci 0000:2f:16.2: [8086:0eca] type 00 class 0x088000
[    4.650684] pci 0000:2f:18.0: [8086:0e40] type 00 class 0x088000
[    4.650751] pci 0000:2f:18.2: [8086:0e3a] type 00 class 0x110100
[    4.650827] pci 0000:2f:1c.0: [8086:0e60] type 00 class 0x088000
[    4.650902] pci 0000:2f:1c.1: [8086:0e38] type 00 class 0x110100
[    4.650982] pci 0000:2f:1d.0: [8086:0e68] type 00 class 0x088000
[    4.651067] pci 0000:2f:1d.1: [8086:0e79] type 00 class 0x088000
[    4.651152] pci 0000:2f:1d.2: [8086:0e6a] type 00 class 0x088000
[    4.651235] pci 0000:2f:1d.3: [8086:0e6b] type 00 class 0x088000
[    4.651320] pci 0000:2f:1d.4: [8086:0e6c] type 00 class 0x088000
[    4.651401] pci 0000:2f:1d.5: [8086:0e6d] type 00 class 0x088000
[    4.651486] pci 0000:2f:1e.0: [8086:0ef0] type 00 class 0x088000
[    4.651570] pci 0000:2f:1e.1: [8086:0ef1] type 00 class 0x088000
[    4.651654] pci 0000:2f:1e.2: [8086:0ef2] type 00 class 0x088000
[    4.651739] pci 0000:2f:1e.3: [8086:0ef3] type 00 class 0x088000
[    4.651824] pci 0000:2f:1e.4: [8086:0ef4] type 00 class 0x088000
[    4.651915] pci 0000:2f:1e.5: [8086:0ef5] type 00 class 0x088000
[    4.651999] pci 0000:2f:1e.6: [8086:0ef6] type 00 class 0x088000
[    4.652083] pci 0000:2f:1e.7: [8086:0ef7] type 00 class 0x088000
[    4.652167] pci 0000:2f:1f.0: [8086:0ed8] type 00 class 0x088000
[    4.652251] pci 0000:2f:1f.1: [8086:0ed9] type 00 class 0x088000
[    4.652365] pci 0000:2f:1f.4: [8086:0edc] type 00 class 0x088000
[    4.652448] pci 0000:2f:1f.5: [8086:0edd] type 00 class 0x088000
[    4.652531] pci 0000:2f:1f.6: [8086:0ede] type 00 class 0x088000
[    4.652612] pci 0000:2f:1f.7: [8086:0edf] type 00 class 0x088000
[    4.652694] pci_bus 0000:2f: busn_res: [bus 2f-ff] end is updated to 2f
[    4.652696] pci_bus 0000:2f: busn_res: can not insert [bus 2f] under domain [bus 00-ff] (conflicts with (null) [bus 20-2f])
[    4.652886] PCI: Discovered peer bus 3f
[    4.657189] PCI: root bus 3f: using default resources
[    4.657190] PCI: Probing PCI hardware (bus 3f)
[    4.657214] PCI host bridge to bus 0000:3f
[    4.661811] pci_bus 0000:3f: root bus resource [io  0x0000-0xffff]
[    4.668749] pci_bus 0000:3f: root bus resource [mem 0x00000000-0x3fffffffffff]
[    4.676861] pci_bus 0000:3f: No busn resource found for root bus, will use [bus 3f-ff]
[    4.685753] pci_bus 0000:3f: busn_res: can not insert [bus 3f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 30-3f])
[    4.685763] pci 0000:3f:08.0: [8086:0e80] type 00 class 0x088000
[    4.685831] pci 0000:3f:08.2: [8086:0e32] type 00 class 0x110100
[    4.685895] pci 0000:3f:09.0: [8086:0e90] type 00 class 0x088000
[    4.685955] pci 0000:3f:09.2: [8086:0e33] type 00 class 0x110100
[    4.686023] pci 0000:3f:0a.0: [8086:0ec0] type 00 class 0x088000
[    4.686081] pci 0000:3f:0a.1: [8086:0ec1] type 00 class 0x088000
[    4.686139] pci 0000:3f:0a.2: [8086:0ec2] type 00 class 0x088000
[    4.686195] pci 0000:3f:0a.3: [8086:0ec3] type 00 class 0x088000
[    4.686257] pci 0000:3f:0b.0: [8086:0e1e] type 00 class 0x088000
[    4.686313] pci 0000:3f:0b.3: [8086:0e1f] type 00 class 0x088000
[    4.686368] pci 0000:3f:0c.0: [8086:0ee0] type 00 class 0x088000
[    4.686426] pci 0000:3f:0c.1: [8086:0ee2] type 00 class 0x088000
[    4.686481] pci 0000:3f:0c.2: [8086:0ee4] type 00 class 0x088000
[    4.686534] pci 0000:3f:0c.3: [8086:0ee6] type 00 class 0x088000
[    4.686586] pci 0000:3f:0c.4: [8086:0ee8] type 00 class 0x088000
[    4.686639] pci 0000:3f:0c.5: [8086:0eea] type 00 class 0x088000
[    4.686691] pci 0000:3f:0c.6: [8086:0eec] type 00 class 0x088000
[    4.686745] pci 0000:3f:0c.7: [8086:0eee] type 00 class 0x088000
[    4.686801] pci 0000:3f:0d.0: [8086:0ee1] type 00 class 0x088000
[    4.686854] pci 0000:3f:0d.1: [8086:0ee3] type 00 class 0x088000
[    4.686914] pci 0000:3f:0d.2: [8086:0ee5] type 00 class 0x088000
[    4.686971] pci 0000:3f:0d.3: [8086:0ee7] type 00 class 0x088000
[    4.687027] pci 0000:3f:0d.4: [8086:0ee9] type 00 class 0x088000
[    4.687082] pci 0000:3f:0d.5: [8086:0eeb] type 00 class 0x088000
[    4.687138] pci 0000:3f:0d.6: [8086:0eed] type 00 class 0x088000
[    4.687194] pci 0000:3f:0e.0: [8086:0ea0] type 00 class 0x088000
[    4.687254] pci 0000:3f:0e.1: [8086:0e30] type 00 class 0x110100
[    4.687320] pci 0000:3f:0f.0: [8086:0ea8] type 00 class 0x088000
[    4.687398] pci 0000:3f:0f.1: [8086:0e71] type 00 class 0x088000
[    4.687472] pci 0000:3f:0f.2: [8086:0eaa] type 00 class 0x088000
[    4.687547] pci 0000:3f:0f.3: [8086:0eab] type 00 class 0x088000
[    4.687621] pci 0000:3f:0f.4: [8086:0eac] type 00 class 0x088000
[    4.687696] pci 0000:3f:0f.5: [8086:0ead] type 00 class 0x088000
[    4.687777] pci 0000:3f:10.0: [8086:0eb0] type 00 class 0x088000
[    4.687854] pci 0000:3f:10.1: [8086:0eb1] type 00 class 0x088000
[    4.687928] pci 0000:3f:10.2: [8086:0eb2] type 00 class 0x088000
[    4.688009] pci 0000:3f:10.3: [8086:0eb3] type 00 class 0x088000
[    4.688087] pci 0000:3f:10.4: [8086:0eb4] type 00 class 0x088000
[    4.688164] pci 0000:3f:10.5: [8086:0eb5] type 00 class 0x088000
[    4.688242] pci 0000:3f:10.6: [8086:0eb6] type 00 class 0x088000
[    4.688322] pci 0000:3f:10.7: [8086:0eb7] type 00 class 0x088000
[    4.688402] pci 0000:3f:11.0: [8086:0ef8] type 00 class 0x088000
[    4.688540] pci 0000:3f:11.1: [8086:0ef9] type 00 class 0x088000
[    4.688615] pci 0000:3f:11.2: [8086:0efa] type 00 class 0x088000
[    4.688691] pci 0000:3f:11.4: [8086:0efc] type 00 class 0x088000
[    4.688767] pci 0000:3f:11.5: [8086:0efd] type 00 class 0x088000
[    4.688843] pci 0000:3f:13.0: [8086:0e1d] type 00 class 0x088000
[    4.688899] pci 0000:3f:13.1: [8086:0e34] type 00 class 0x110100
[    4.688957] pci 0000:3f:13.4: [8086:0e81] type 00 class 0x088000
[    4.689013] pci 0000:3f:13.5: [8086:0e36] type 00 class 0x110100
[    4.689070] pci 0000:3f:13.6: [8086:0e37] type 00 class 0x110100
[    4.689131] pci 0000:3f:16.0: [8086:0ec8] type 00 class 0x088000
[    4.689200] pci 0000:3f:16.1: [8086:0ec9] type 00 class 0x088000
[    4.689256] pci 0000:3f:16.2: [8086:0eca] type 00 class 0x088000
[    4.689321] pci 0000:3f:18.0: [8086:0e40] type 00 class 0x088000
[    4.689385] pci 0000:3f:18.2: [8086:0e3a] type 00 class 0x110100
[    4.689453] pci 0000:3f:1c.0: [8086:0e60] type 00 class 0x088000
[    4.689514] pci 0000:3f:1c.1: [8086:0e38] type 00 class 0x110100
[    4.689583] pci 0000:3f:1d.0: [8086:0e68] type 00 class 0x088000
[    4.689661] pci 0000:3f:1d.1: [8086:0e79] type 00 class 0x088000
[    4.689739] pci 0000:3f:1d.2: [8086:0e6a] type 00 class 0x088000
[    4.689818] pci 0000:3f:1d.3: [8086:0e6b] type 00 class 0x088000
[    4.689896] pci 0000:3f:1d.4: [8086:0e6c] type 00 class 0x088000
[    4.689973] pci 0000:3f:1d.5: [8086:0e6d] type 00 class 0x088000
[    4.690053] pci 0000:3f:1e.0: [8086:0ef0] type 00 class 0x088000
[    4.690132] pci 0000:3f:1e.1: [8086:0ef1] type 00 class 0x088000
[    4.690209] pci 0000:3f:1e.2: [8086:0ef2] type 00 class 0x088000
[    4.690291] pci 0000:3f:1e.3: [8086:0ef3] type 00 class 0x088000
[    4.690367] pci 0000:3f:1e.4: [8086:0ef4] type 00 class 0x088000
[    4.690441] pci 0000:3f:1e.5: [8086:0ef5] type 00 class 0x088000
[    4.690515] pci 0000:3f:1e.6: [8086:0ef6] type 00 class 0x088000
[    4.690587] pci 0000:3f:1e.7: [8086:0ef7] type 00 class 0x088000
[    4.690662] pci 0000:3f:1f.0: [8086:0ed8] type 00 class 0x088000
[    4.690734] pci 0000:3f:1f.1: [8086:0ed9] type 00 class 0x088000
[    4.690817] pci 0000:3f:1f.4: [8086:0edc] type 00 class 0x088000
[    4.690889] pci 0000:3f:1f.5: [8086:0edd] type 00 class 0x088000
[    4.690964] pci 0000:3f:1f.6: [8086:0ede] type 00 class 0x088000
[    4.691040] pci 0000:3f:1f.7: [8086:0edf] type 00 class 0x088000
[    4.691114] pci_bus 0000:3f: busn_res: [bus 3f-ff] end is updated to 3f
[    4.691116] pci_bus 0000:3f: busn_res: can not insert [bus 3f] under domain [bus 00-ff] (conflicts with (null) [bus 30-3f])
[    4.691129] PCI: pci_cache_line_size set to 64 bytes
[    4.691815] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[    4.691818] e820: reserve RAM buffer [mem 0x77755018-0x77ffffff]
[    4.691819] e820: reserve RAM buffer [mem 0x77787018-0x77ffffff]
[    4.691820] e820: reserve RAM buffer [mem 0x78bff000-0x7bffffff]
[    4.692190] NetLabel: Initializing
[    4.696008] NetLabel:  domain hash size = 128
[    4.700898] NetLabel:  protocols = UNLABELED CIPSOv4
[    4.706496] NetLabel:  unlabeled traffic allowed by default
[    4.712849] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    4.719881] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    4.729035] Switched to clocksource hpet
[    4.745387] pnp: PnP ACPI init
[    4.749433] pnp 00:00: Plug and Play ACPI device, IDs IPI0001 (active)
[    4.749533] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    4.750136] pnp: PnP ACPI: found 2 devices
[    4.756963] pci 0000:01:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    4.768104] pci 0000:03:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[    4.779241] pci 0000:21:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    4.790378] pci 0000:21:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    4.801582] pci 0000:00:02.2: BAR 14: assigned [mem 0x90000000-0x900fffff]
[    4.809305] pci 0000:00:02.0: BAR 13: assigned [io  0x2000-0x2fff]
[    4.816249] pci 0000:01:00.0: BAR 6: assigned [mem 0x90380000-0x903fffff pref]
[    4.824363] pci 0000:01:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[    4.832278] pci 0000:01:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[    4.840586] pci 0000:01:00.0: BAR 2: assigned [io  0x2000-0x201f]
[    4.847433] pci 0000:01:00.1: BAR 2: assigned [io  0x2020-0x203f]
[    4.854279] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[    4.860152] pci 0000:00:02.0:   bridge window [io  0x2000-0x2fff]
[    4.867003] pci 0000:00:02.0:   bridge window [mem 0x90100000-0x903fffff]
[    4.874630] pci 0000:00:02.0:   bridge window [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[    4.883918] pci 0000:03:00.0: BAR 6: assigned [mem 0x90000000-0x9003ffff pref]
[    4.892030] pci 0000:03:00.1: BAR 6: assigned [mem 0x90040000-0x9007ffff pref]
[    4.900141] pci 0000:00:02.2: PCI bridge to [bus 03]
[    4.905719] pci 0000:00:02.2:   bridge window [mem 0x90000000-0x900fffff]
[    4.913344] pci 0000:00:02.2:   bridge window [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[    4.922632] pci 0000:00:03.0: PCI bridge to [bus 04]
[    4.928219] pci 0000:00:11.0: PCI bridge to [bus 05]
[    4.933810] pci 0000:06:00.2: BAR 6: assigned [mem 0x93a90000-0x93a9ffff pref]
[    4.941922] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    4.947500] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    4.954348] pci 0000:00:1c.0:   bridge window [mem 0x92000000-0x93efffff]
[    4.961982] pci_bus 0000:00: resource 4 [io  0x1000-0x3fff window]
[    4.961983] pci_bus 0000:00: resource 5 [io  0x0000-0x0cf7 window]
[    4.961985] pci_bus 0000:00: resource 6 [mem 0x90000000-0x93efffff window]
[    4.961986] pci_bus 0000:00: resource 7 [mem 0x000a0000-0x000bffff window]
[    4.961987] pci_bus 0000:00: resource 8 [mem 0xfed00000-0xfedfffff window]
[    4.961989] pci_bus 0000:00: resource 9 [mem 0xfc000000000-0xfc07fffffff window]
[    4.961990] pci_bus 0000:00: resource 10 [mem 0xfe200000000-0xfe27fffffff window]
[    4.961993] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    4.961994] pci_bus 0000:01: resource 1 [mem 0x90100000-0x903fffff]
[    4.961995] pci_bus 0000:01: resource 2 [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[    4.961998] pci_bus 0000:03: resource 1 [mem 0x90000000-0x900fffff]
[    4.961999] pci_bus 0000:03: resource 2 [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[    4.962001] pci_bus 0000:06: resource 0 [io  0x1000-0x1fff]
[    4.962002] pci_bus 0000:06: resource 1 [mem 0x92000000-0x93efffff]
[    4.962026] pci 0000:10:02.0: PCI bridge to [bus 11]
[    4.967614] pci 0000:10:02.2: PCI bridge to [bus 12]
[    4.973200] pci 0000:10:03.0: PCI bridge to [bus 13]
[    4.978786] pci_bus 0000:10: resource 4 [io  0x4000-0x7fff window]
[    4.978787] pci_bus 0000:10: resource 5 [mem 0x94000000-0x97ff7fff window]
[    4.978789] pci_bus 0000:10: resource 6 [mem 0xfc400000000-0xfc47fffffff window]
[    4.978830] pci 0000:20:02.0: BAR 13: assigned [io  0x8000-0x8fff]
[    4.985772] pci 0000:20:1c.0: BAR 13: assigned [io  0x9000-0x9fff]
[    4.992715] pci 0000:21:00.0: BAR 6: assigned [mem 0x98280000-0x982fffff pref]
[    5.000828] pci 0000:21:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[    5.008747] pci 0000:21:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[    5.017053] pci 0000:21:00.0: BAR 2: assigned [io  0x8000-0x801f]
[    5.023898] pci 0000:21:00.1: BAR 2: assigned [io  0x8020-0x803f]
[    5.030745] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[    5.036613] pci 0000:20:02.0:   bridge window [io  0x8000-0x8fff]
[    5.043461] pci 0000:20:02.0:   bridge window [mem 0x98000000-0x982fffff]
[    5.051088] pci 0000:20:02.0:   bridge window [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[    5.060374] pci 0000:20:02.2: PCI bridge to [bus 23]
[    5.065961] pci 0000:20:03.0: PCI bridge to [bus 24]
[    5.071547] pci 0000:20:11.0: PCI bridge to [bus 25]
[    5.077136] pci 0000:26:00.2: BAR 6: assigned [mem 0x9bd90000-0x9bd9ffff pref]
[    5.085249] pci 0000:26:00.0: BAR 0: assigned [io  0x9000-0x90ff]
[    5.092096] pci 0000:26:00.0: BAR 2: assigned [io  0x9400-0x94ff]
[    5.098943] pci 0000:26:00.2: BAR 0: assigned [io  0x9800-0x98ff]
[    5.105790] pci 0000:20:1c.0: PCI bridge to [bus 26]
[    5.111367] pci 0000:20:1c.0:   bridge window [io  0x9000-0x9fff]
[    5.118214] pci 0000:20:1c.0:   bridge window [mem 0x9bb00000-0x9befffff]
[    5.125847] pci_bus 0000:20: resource 4 [io  0x8000-0xbfff window]
[    5.125848] pci_bus 0000:20: resource 5 [mem 0x98000000-0x9befffff window]
[    5.125849] pci_bus 0000:20: resource 6 [mem 0xf0800000000-0xf087fffffff window]
[    5.125851] pci_bus 0000:21: resource 0 [io  0x8000-0x8fff]
[    5.125852] pci_bus 0000:21: resource 1 [mem 0x98000000-0x982fffff]
[    5.125854] pci_bus 0000:21: resource 2 [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[    5.125856] pci_bus 0000:26: resource 0 [io  0x9000-0x9fff]
[    5.125857] pci_bus 0000:26: resource 1 [mem 0x9bb00000-0x9befffff]
[    5.125877] pci 0000:30:02.0: PCI bridge to [bus 31]
[    5.131465] pci 0000:30:02.2: PCI bridge to [bus 32]
[    5.137049] pci 0000:30:03.0: PCI bridge to [bus 33]
[    5.142633] pci_bus 0000:30: resource 4 [io  0xc000-0xffff window]
[    5.142634] pci_bus 0000:30: resource 5 [mem 0x9c000000-0x9fff7fff window]
[    5.142636] pci_bus 0000:30: resource 6 [mem 0xf0c00000000-0xf0c7fffffff window]
[    5.142645] pci_bus 0000:0f: resource 4 [io  0x0000-0xffff]
[    5.142646] pci_bus 0000:0f: resource 5 [mem 0x00000000-0x3fffffffffff]
[    5.142656] pci_bus 0000:1f: resource 4 [io  0x0000-0xffff]
[    5.142657] pci_bus 0000:1f: resource 5 [mem 0x00000000-0x3fffffffffff]
[    5.142668] pci_bus 0000:2f: resource 4 [io  0x0000-0xffff]
[    5.142669] pci_bus 0000:2f: resource 5 [mem 0x00000000-0x3fffffffffff]
[    5.142679] pci_bus 0000:3f: resource 4 [io  0x0000-0xffff]
[    5.142680] pci_bus 0000:3f: resource 5 [mem 0x00000000-0x3fffffffffff]
[    5.142830] NET: Registered protocol family 2
[    5.149825] TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
[    5.159842] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    5.167714] TCP: Hash tables configured (established 524288 bind 65536)
[    5.175196] TCP: reno registered
[    5.179010] UDP hash table entries: 65536 (order: 9, 2097152 bytes)
[    5.186834] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes)
[    5.195821] NET: Registered protocol family 1
[    5.201140] pci 0000:06:00.1: Video device with shadowed ROM
[    5.201993] PCI: CLS 64 bytes, default 64
[    5.202151] Unpacking initramfs...
[    5.385292] Freeing initrd memory: 11476K (ffff88003f4b3000 - ffff88003ffe8000)
[    5.396627] IOMMU: dmar3 using Queued invalidation
[    5.402014] IOMMU: dmar2 using Queued invalidation
[    5.407398] IOMMU: dmar1 using Queued invalidation
[    5.412784] IOMMU: dmar0 using Queued invalidation
[    5.418180] IOMMU: Setting RMRR:
[    5.421854] IOMMU: Setting identity map for device 0000:20:1d.0 [0x7990e000 - 0x79910fff]
[    5.431144] IOMMU: Setting identity map for device 0000:00:1d.0 [0x79911000 - 0x79913fff]
[    5.440401] IOMMU: Prepare 0-16MiB unity mapping for LPC
[    5.446396] IOMMU: Setting identity map for device 0000:00:1f.0 [0x0 - 0xffffff]
[    5.454788] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[    5.480378] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    5.496177] microcode: CPU0 sig=0x306e7, pf=0x80, revision=0x70e
[    5.502933] microcode: CPU1 sig=0x306e7, pf=0x80, revision=0x70e
[    5.509684] microcode: CPU2 sig=0x306e7, pf=0x80, revision=0x70e
[    5.516435] microcode: CPU3 sig=0x306e7, pf=0x80, revision=0x70e
[    5.523187] microcode: CPU4 sig=0x306e7, pf=0x80, revision=0x70e
[    5.529939] microcode: CPU5 sig=0x306e7, pf=0x80, revision=0x70e
[    5.536691] microcode: CPU6 sig=0x306e7, pf=0x80, revision=0x70e
[    5.543440] microcode: CPU7 sig=0x306e7, pf=0x80, revision=0x70e
[    5.550190] microcode: CPU8 sig=0x306e7, pf=0x80, revision=0x70e
[    5.556941] microcode: CPU9 sig=0x306e7, pf=0x80, revision=0x70e
[    5.563691] microcode: CPU10 sig=0x306e7, pf=0x80, revision=0x70e
[    5.570541] microcode: CPU11 sig=0x306e7, pf=0x80, revision=0x70e
[    5.577388] microcode: CPU12 sig=0x306e7, pf=0x80, revision=0x70e
[    5.584237] microcode: CPU13 sig=0x306e7, pf=0x80, revision=0x70e
[    5.591085] microcode: CPU14 sig=0x306e7, pf=0x80, revision=0x70e
[    5.597952] microcode: CPU15 sig=0x306e7, pf=0x80, revision=0x70e
[    5.604848] microcode: CPU16 sig=0x306e7, pf=0x80, revision=0x70e
[    5.611699] microcode: CPU17 sig=0x306e7, pf=0x80, revision=0x70e
[    5.618549] microcode: CPU18 sig=0x306e7, pf=0x80, revision=0x70e
[    5.625396] microcode: CPU19 sig=0x306e7, pf=0x80, revision=0x70e
[    5.632245] microcode: CPU20 sig=0x306e7, pf=0x80, revision=0x70e
[    5.639092] microcode: CPU21 sig=0x306e7, pf=0x80, revision=0x70e
[    5.645944] microcode: CPU22 sig=0x306e7, pf=0x80, revision=0x70e
[    5.652793] microcode: CPU23 sig=0x306e7, pf=0x80, revision=0x70e
[    5.659640] microcode: CPU24 sig=0x306e7, pf=0x80, revision=0x70e
[    5.666491] microcode: CPU25 sig=0x306e7, pf=0x80, revision=0x70e
[    5.673339] microcode: CPU26 sig=0x306e7, pf=0x80, revision=0x70e
[    5.680186] microcode: CPU27 sig=0x306e7, pf=0x80, revision=0x70e
[    5.687035] microcode: CPU28 sig=0x306e7, pf=0x80, revision=0x70e
[    5.693884] microcode: CPU29 sig=0x306e7, pf=0x80, revision=0x70e
[    5.700782] microcode: CPU30 sig=0x306e7, pf=0x80, revision=0x70e
[    5.707642] microcode: CPU31 sig=0x306e7, pf=0x80, revision=0x70e
[    5.714494] microcode: CPU32 sig=0x306e7, pf=0x80, revision=0x70e
[    5.721347] microcode: CPU33 sig=0x306e7, pf=0x80, revision=0x70e
[    5.728198] microcode: CPU34 sig=0x306e7, pf=0x80, revision=0x70e
[    5.735046] microcode: CPU35 sig=0x306e7, pf=0x80, revision=0x70e
[    5.741896] microcode: CPU36 sig=0x306e7, pf=0x80, revision=0x70e
[    5.748745] microcode: CPU37 sig=0x306e7, pf=0x80, revision=0x70e
[    5.755594] microcode: CPU38 sig=0x306e7, pf=0x80, revision=0x70e
[    5.762441] microcode: CPU39 sig=0x306e7, pf=0x80, revision=0x70e
[    5.769291] microcode: CPU40 sig=0x306e7, pf=0x80, revision=0x70e
[    5.776139] microcode: CPU41 sig=0x306e7, pf=0x80, revision=0x70e
[    5.782989] microcode: CPU42 sig=0x306e7, pf=0x80, revision=0x70e
[    5.789836] microcode: CPU43 sig=0x306e7, pf=0x80, revision=0x70e
[    5.796683] microcode: CPU44 sig=0x306e7, pf=0x80, revision=0x70e
[    5.803550] microcode: CPU45 sig=0x306e7, pf=0x80, revision=0x70e
[    5.810417] microcode: CPU46 sig=0x306e7, pf=0x80, revision=0x70e
[    5.817263] microcode: CPU47 sig=0x306e7, pf=0x80, revision=0x70e
[    5.824111] microcode: CPU48 sig=0x306e7, pf=0x80, revision=0x70e
[    5.830959] microcode: CPU49 sig=0x306e7, pf=0x80, revision=0x70e
[    5.837801] microcode: CPU50 sig=0x306e7, pf=0x80, revision=0x70e
[    5.844652] microcode: CPU51 sig=0x306e7, pf=0x80, revision=0x70e
[    5.851499] microcode: CPU52 sig=0x306e7, pf=0x80, revision=0x70e
[    5.858347] microcode: CPU53 sig=0x306e7, pf=0x80, revision=0x70e
[    5.865193] microcode: CPU54 sig=0x306e7, pf=0x80, revision=0x70e
[    5.872040] microcode: CPU55 sig=0x306e7, pf=0x80, revision=0x70e
[    5.878888] microcode: CPU56 sig=0x306e7, pf=0x80, revision=0x70e
[    5.885735] microcode: CPU57 sig=0x306e7, pf=0x80, revision=0x70e
[    5.892584] microcode: CPU58 sig=0x306e7, pf=0x80, revision=0x70e
[    5.899432] microcode: CPU59 sig=0x306e7, pf=0x80, revision=0x70e
[    5.906282] microcode: CPU60 sig=0x306e7, pf=0x80, revision=0x70e
[    5.913130] microcode: CPU61 sig=0x306e7, pf=0x80, revision=0x70e
[    5.919976] microcode: CPU62 sig=0x306e7, pf=0x80, revision=0x70e
[    5.926822] microcode: CPU63 sig=0x306e7, pf=0x80, revision=0x70e
[    5.933668] microcode: CPU64 sig=0x306e7, pf=0x80, revision=0x70e
[    5.940516] microcode: CPU65 sig=0x306e7, pf=0x80, revision=0x70e
[    5.947361] microcode: CPU66 sig=0x306e7, pf=0x80, revision=0x70e
[    5.954210] microcode: CPU67 sig=0x306e7, pf=0x80, revision=0x70e
[    5.961057] microcode: CPU68 sig=0x306e7, pf=0x80, revision=0x70e
[    5.967903] microcode: CPU69 sig=0x306e7, pf=0x80, revision=0x70e
[    5.974748] microcode: CPU70 sig=0x306e7, pf=0x80, revision=0x70e
[    5.981596] microcode: CPU71 sig=0x306e7, pf=0x80, revision=0x70e
[    5.988441] microcode: CPU72 sig=0x306e7, pf=0x80, revision=0x70e
[    5.995286] microcode: CPU73 sig=0x306e7, pf=0x80, revision=0x70e
[    6.002134] microcode: CPU74 sig=0x306e7, pf=0x80, revision=0x70e
[    6.008984] microcode: CPU75 sig=0x306e7, pf=0x80, revision=0x70e
[    6.015834] microcode: CPU76 sig=0x306e7, pf=0x80, revision=0x70e
[    6.022683] microcode: CPU77 sig=0x306e7, pf=0x80, revision=0x70e
[    6.029528] microcode: CPU78 sig=0x306e7, pf=0x80, revision=0x70e
[    6.036381] microcode: CPU79 sig=0x306e7, pf=0x80, revision=0x70e
[    6.043227] microcode: CPU80 sig=0x306e7, pf=0x80, revision=0x70e
[    6.050075] microcode: CPU81 sig=0x306e7, pf=0x80, revision=0x70e
[    6.056923] microcode: CPU82 sig=0x306e7, pf=0x80, revision=0x70e
[    6.063769] microcode: CPU83 sig=0x306e7, pf=0x80, revision=0x70e
[    6.070616] microcode: CPU84 sig=0x306e7, pf=0x80, revision=0x70e
[    6.077462] microcode: CPU85 sig=0x306e7, pf=0x80, revision=0x70e
[    6.084310] microcode: CPU86 sig=0x306e7, pf=0x80, revision=0x70e
[    6.091157] microcode: CPU87 sig=0x306e7, pf=0x80, revision=0x70e
[    6.098006] microcode: CPU88 sig=0x306e7, pf=0x80, revision=0x70e
[    6.104855] microcode: CPU89 sig=0x306e7, pf=0x80, revision=0x70e
[    6.111709] microcode: CPU90 sig=0x306e7, pf=0x80, revision=0x70e
[    6.118557] microcode: CPU91 sig=0x306e7, pf=0x80, revision=0x70e
[    6.125405] microcode: CPU92 sig=0x306e7, pf=0x80, revision=0x70e
[    6.132252] microcode: CPU93 sig=0x306e7, pf=0x80, revision=0x70e
[    6.139099] microcode: CPU94 sig=0x306e7, pf=0x80, revision=0x70e
[    6.145945] microcode: CPU95 sig=0x306e7, pf=0x80, revision=0x70e
[    6.152793] microcode: CPU96 sig=0x306e7, pf=0x80, revision=0x70e
[    6.159640] microcode: CPU97 sig=0x306e7, pf=0x80, revision=0x70e
[    6.166489] microcode: CPU98 sig=0x306e7, pf=0x80, revision=0x70e
[    6.173335] microcode: CPU99 sig=0x306e7, pf=0x80, revision=0x70e
[    6.180181] microcode: CPU100 sig=0x306e7, pf=0x80, revision=0x70e
[    6.187129] microcode: CPU101 sig=0x306e7, pf=0x80, revision=0x70e
[    6.194073] microcode: CPU102 sig=0x306e7, pf=0x80, revision=0x70e
[    6.201017] microcode: CPU103 sig=0x306e7, pf=0x80, revision=0x70e
[    6.207960] microcode: CPU104 sig=0x306e7, pf=0x80, revision=0x70e
[    6.214904] microcode: CPU105 sig=0x306e7, pf=0x80, revision=0x70e
[    6.221849] microcode: CPU106 sig=0x306e7, pf=0x80, revision=0x70e
[    6.228792] microcode: CPU107 sig=0x306e7, pf=0x80, revision=0x70e
[    6.235734] microcode: CPU108 sig=0x306e7, pf=0x80, revision=0x70e
[    6.242678] microcode: CPU109 sig=0x306e7, pf=0x80, revision=0x70e
[    6.249620] microcode: CPU110 sig=0x306e7, pf=0x80, revision=0x70e
[    6.256564] microcode: CPU111 sig=0x306e7, pf=0x80, revision=0x70e
[    6.263507] microcode: CPU112 sig=0x306e7, pf=0x80, revision=0x70e
[    6.270456] microcode: CPU113 sig=0x306e7, pf=0x80, revision=0x70e
[    6.277400] microcode: CPU114 sig=0x306e7, pf=0x80, revision=0x70e
[    6.284342] microcode: CPU115 sig=0x306e7, pf=0x80, revision=0x70e
[    6.291286] microcode: CPU116 sig=0x306e7, pf=0x80, revision=0x70e
[    6.298232] microcode: CPU117 sig=0x306e7, pf=0x80, revision=0x70e
[    6.305175] microcode: CPU118 sig=0x306e7, pf=0x80, revision=0x70e
[    6.312120] microcode: CPU119 sig=0x306e7, pf=0x80, revision=0x70e
[    6.319173] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    6.337619] futex hash table entries: 32768 (order: 9, 2097152 bytes)
[    6.345481] Initialise system trusted keyring
[    6.350461] audit: initializing netlink subsys (disabled)
[    6.356591] audit: type=2000 audit(1428561281.609:1): initialized
[    6.365131] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    6.373672] zpool: loaded
[    6.376617] zbud: loaded
[    6.379862] VFS: Disk quotas dquot_6.5.2
[    6.384384] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    6.392832] Key type big_key registered
[    6.397148] SELinux:  Registering netfilter hooks
[    6.409570] alg: No test for stdrng (krng)
[    6.414219] NET: Registered protocol family 38
[    6.419245] Key type asymmetric registered
[    6.423855] Asymmetric key parser 'x509' registered
[    6.429361] bounce: pool size: 64 pages
[    6.433722] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    6.442953] io scheduler noop registered
[    6.447365] io scheduler deadline registered (default)
[    6.453217] io scheduler cfq registered
[    6.464350] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    6.472180] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    6.479517] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    6.486859] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
[    6.486867] tsc: Refined TSC clocksource calibration: 2793.687 MHz
[    6.493887] pcieport 0000:00:02.2: Signaling PME through PCIe PME interrupt
[    6.501713] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    6.509049] pci 0000:03:00.1: Signaling PME through PCIe PME interrupt
[    6.516389] pcie_pme 0000:00:02.2:pcie01: service driver pcie_pme loaded
[    6.516415] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    6.524248] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[    6.524274] pcieport 0000:00:11.0: Signaling PME through PCIe PME interrupt
[    6.532101] pcie_pme 0000:00:11.0:pcie01: service driver pcie_pme loaded
[    6.532135] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    6.539955] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    6.547293] pci 0000:06:00.1: Signaling PME through PCIe PME interrupt
[    6.554627] pci 0000:06:00.2: Signaling PME through PCIe PME interrupt
[    6.561964] pci 0000:06:00.4: Signaling PME through PCIe PME interrupt
[    6.569302] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    6.569337] pcieport 0000:10:02.0: Signaling PME through PCIe PME interrupt
[    6.577165] pcie_pme 0000:10:02.0:pcie01: service driver pcie_pme loaded
[    6.577198] pcieport 0000:10:02.2: Signaling PME through PCIe PME interrupt
[    6.585021] pcie_pme 0000:10:02.2:pcie01: service driver pcie_pme loaded
[    6.585053] pcieport 0000:10:03.0: Signaling PME through PCIe PME interrupt
[    6.592882] pcie_pme 0000:10:03.0:pcie01: service driver pcie_pme loaded
[    6.592906] pcieport 0000:20:02.0: Signaling PME through PCIe PME interrupt
[    6.600730] pci 0000:21:00.0: Signaling PME through PCIe PME interrupt
[    6.608063] pci 0000:21:00.1: Signaling PME through PCIe PME interrupt
[    6.615400] pcie_pme 0000:20:02.0:pcie01: service driver pcie_pme loaded
[    6.615420] pcieport 0000:20:02.2: Signaling PME through PCIe PME interrupt
[    6.623252] pcie_pme 0000:20:02.2:pcie01: service driver pcie_pme loaded
[    6.623374] pcieport 0000:20:03.0: Signaling PME through PCIe PME interrupt
[    6.631200] pcie_pme 0000:20:03.0:pcie01: service driver pcie_pme loaded
[    6.631221] pcieport 0000:20:11.0: Signaling PME through PCIe PME interrupt
[    6.639045] pcie_pme 0000:20:11.0:pcie01: service driver pcie_pme loaded
[    6.639065] pcieport 0000:20:1c.0: Signaling PME through PCIe PME interrupt
[    6.646889] pci 0000:26:00.0: Signaling PME through PCIe PME interrupt
[    6.654221] pci 0000:26:00.2: Signaling PME through PCIe PME interrupt
[    6.661560] pcie_pme 0000:20:1c.0:pcie01: service driver pcie_pme loaded
[    6.661583] pcieport 0000:30:02.0: Signaling PME through PCIe PME interrupt
[    6.669407] pcie_pme 0000:30:02.0:pcie01: service driver pcie_pme loaded
[    6.669426] pcieport 0000:30:02.2: Signaling PME through PCIe PME interrupt
[    6.677251] pcie_pme 0000:30:02.2:pcie01: service driver pcie_pme loaded
[    6.677269] pcieport 0000:30:03.0: Signaling PME through PCIe PME interrupt
[    6.685096] pcie_pme 0000:30:03.0:pcie01: service driver pcie_pme loaded
[    6.685103] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    6.691387] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    6.698872] efifb: probing for efifb
[    6.702930] efifb: framebuffer at 0x92000000, mapped to 0xffffc90035480000, using 3072k, total 3072k
[    6.713193] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    6.719939] efifb: scrolling: redraw
[    6.723957] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    6.763619] Console: switching to colour frame buffer device 128x48
[    6.803254] fb0: EFI VGA frame buffer device
[    6.808059] intel_idle: MWAIT substates: 0x1120
[    6.808060] intel_idle: v0.4 model 0x3E
[    6.808061] intel_idle: lapic_timer_reliable_states 0xffffffff
[    6.811857] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    6.821248] ACPI: Power Button [PWRB]
[    6.828347] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    6.836769] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    6.864612] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    6.874031] Non-volatile memory driver v1.3
[    6.878768] Linux agpgart interface v0.103
[    6.884098] rdac: device handler registered
[    6.888875] hp_sw: device handler registered
[    6.893676] emc: device handler registered
[    6.898277] alua: device handler registered
[    6.903013] libphy: Fixed MDIO Bus: probed
[    6.907694] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    6.915050] ehci-pci: EHCI PCI platform driver
[    6.920601] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    6.926562] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
[    6.934889] ehci-pci 0000:00:1d.0: debug port 2
[    6.943907] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    6.943925] ehci-pci 0000:00:1d.0: irq 23, io mem 0x90400000
[    6.955672] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    6.962189] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    6.969813] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.977929] usb usb1: Product: EHCI Host Controller
[    6.983407] usb usb1: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[    6.990351] usb usb1: SerialNumber: 0000:00:1d.0
[    6.995664] hub 1-0:1.0: USB hub found
[    6.999884] hub 1-0:1.0: 2 ports detected
[    7.005054] ehci-pci 0000:20:1d.0: EHCI Host Controller
[    7.011050] ehci-pci 0000:20:1d.0: new USB bus registered, assigned bus number 2
[    7.019380] ehci-pci 0000:20:1d.0: debug port 2
[    7.028398] ehci-pci 0000:20:1d.0: cache line size of 64 is not supported
[    7.028429] ehci-pci 0000:20:1d.0: irq 46, io mem 0x98300000
[    7.040775] ehci-pci 0000:20:1d.0: USB 2.0 started, EHCI 1.00
[    7.047307] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    7.054934] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.063048] usb usb2: Product: EHCI Host Controller
[    7.068525] usb usb2: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[    7.075467] usb usb2: SerialNumber: 0000:20:1d.0
[    7.080791] hub 2-0:1.0: USB hub found
[    7.085015] hub 2-0:1.0: 2 ports detected
[    7.089789] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    7.096742] ohci-pci: OHCI PCI platform driver
[    7.101770] uhci_hcd: USB Universal Host Controller Interface driver
[    7.108996] uhci_hcd 0000:06:00.4: UHCI Host Controller
[    7.114939] uhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 3
[    7.123266] uhci_hcd 0000:06:00.4: detected 8 ports
[    7.128746] uhci_hcd 0000:06:00.4: port count misdetected? forcing to 2 ports
[    7.136801] uhci_hcd 0000:06:00.4: irq 16, io base 0x00001500
[    7.143377] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    7.151004] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.159117] usb usb3: Product: UHCI Host Controller
[    7.164595] usb usb3: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[    7.171538] usb usb3: SerialNumber: 0000:06:00.4
[    7.176825] hub 3-0:1.0: USB hub found
[    7.181044] hub 3-0:1.0: 2 ports detected
[    7.185928] usbcore: registered new interface driver usbserial
[    7.192494] usbcore: registered new interface driver usbserial_generic
[    7.199840] usbserial: USB Serial support registered for generic
[    7.206616] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    7.306117] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    7.391227] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    7.430660] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    7.438189] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    7.446446] hub 1-1:1.0: USB hub found
[    7.450803] hub 1-1:1.0: 8 ports detected
[    8.264599] i8042: No controller found
[    8.268916] Switched to clocksource tsc
[    8.268976] mousedev: PS/2 mouse device common for all mice
[    8.269475] rtc_cmos 00:01: RTC can wake from S4
[    8.269723] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    8.269781] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    8.269807] Intel P-state driver initializing.
[    8.280750] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    8.280753] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.281192] hub 2-1:1.0: USB hub found
[    8.281416] hub 2-1:1.0: 8 ports detected
[    8.285050] EFI Variables Facility v0.08 2004-May-17
[    8.306314] hidraw: raw HID events driver (C) Jiri Kosina
[    8.306486] usbcore: registered new interface driver usbhid
[    8.306487] usbhid: USB HID core driver
[    8.306591] drop_monitor: Initializing network drop monitor service
[    8.306991] TCP: cubic registered
[    8.306997] Initializing XFRM netlink socket
[    8.307264] NET: Registered protocol family 10
[    8.309402] NET: Registered protocol family 17
[    8.313579] Loading compiled-in X.509 certificates
[    8.314485] Loaded X.509 cert 'Magrathea: Glacier signing key: 307113a598e2a4626872c8019495ffd1ab8d036a'
[    8.314503] registered taskstats version 1
[    8.319948] Key type trusted registered
[    8.327646] Key type encrypted registered
[    8.327656] ima: No TPM chip found, activating TPM-bypass!
[    8.327731] evm: HMAC attrs: 0x1
[    8.332339] rtc_cmos 00:01: setting system clock to 2015-04-09 06:34:50 UTC (1428561290)
[    8.440072] Freeing unused kernel memory: 1704K (ffffffff81b4d000 - ffffffff81cf7000)
[    8.442684] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[    8.502978] systemd[1]: systemd 208 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    8.519572] systemd[1]: Running in initial RAM disk.
[    8.537224] usb 1-1.3: New USB device found, idVendor=0424, idProduct=2660
[    8.537341] systemd[1]: Set hostname to <dhb5.fcux.usa.hp.com>.
[    8.551640] usb 1-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.551743] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
[    8.552066] hub 1-1.3:1.0: USB hub found
[    8.552150] hub 1-1.3:1.0: 2 ports detected
[    8.577376] random: systemd urandom read with 10 bits of entropy available
[    8.637307] usb 2-1.3: New USB device found, idVendor=0424, idProduct=2660
[    8.645051] usb 2-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.653930] hub 2-1.3:1.0: USB hub found
[    8.658495] hub 2-1.3:1.0: 2 ports detected
[    8.659677] systemd[1]: Expecting device dev-disk-by\x2duuid-227bc7d6\x2d3f21\x2d4e34\x2db43d\x2d7f65c5e3dbcc.device...
[    8.685007] systemd[1]: Starting -.slice.
[    8.694976] systemd[1]: Created slice -.slice.
[    8.700129] systemd[1]: Starting System Slice.
[    8.711982] systemd[1]: Created slice System Slice.
[    8.717566] systemd[1]: Starting Slices.
[    8.727000] systemd[1]: Reached target Slices.
[    8.732101] systemd[1]: Starting Timers.
[    8.741014] systemd[1]: Reached target Timers.
[    8.746119] systemd[1]: Starting Journal Socket.
[    8.758024] systemd[1]: Listening on Journal Socket.
[    8.763863] systemd[1]: Starting dracut cmdline hook...
[    8.775622] systemd[1]: Starting Journal Service...
[    8.793115] systemd[1]: Started Journal Service.
[    8.805320] systemd-journald[955]: Vacuuming done, freed 0 bytes
[    8.894627] device-mapper: uevent: version 1.0.3
[    8.901087] device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised: dm-devel@redhat.com
[    8.918129] device-mapper: multipath: version 1.8.0 loaded
[    9.043076] systemd-udevd[1109]: starting version 208
[    9.148278] [drm] Initialized drm 1.1.0 20060810
[    9.154459] qla2xxx [0000:00:00.0]-0005: : QLogic Fibre Channel HBA Driver: 8.07.00.16-k.
[    9.164786] qla2xxx [0000:03:00.0]-011c: : MSI-X vector count: 31.
[    9.173021] qla2xxx [0000:03:00.0]-001d: : Found an ISP2031 irq 47 iobase 0xffffc9003543e000.
[    9.194637] checking generic (92000000 300000) vs hw (92000000 1000000)
[    9.194640] fb: switching to mgag200drmfb from EFI VGA
[    9.201176] Console: switching to colour dummy device 80x25
[    9.218672] [TTM] Zone  kernel: Available graphics memory: 263902940 kiB
[    9.226206] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    9.233545] [TTM] Initializing pool allocator
[    9.240088] [TTM] Initializing DMA pool allocator
[    9.300190] fbcon: mgadrmfb (fb0) is primary device
[    9.501853] Console: switching to colour frame buffer device 128x48
[    9.547921] mgag200 0000:06:00.1: fb0: mgadrmfb frame buffer device
[    9.547922] mgag200 0000:06:00.1: registered panic notifier
[    9.648081] [drm] Initialized mgag200 1.0.0 20110418 for 0000:06:00.1 on minor 0
[   10.754648] scsi host0: qla2xxx
[   10.761537] qla2xxx [0000:03:00.0]-00fb:0: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[   10.770449] qla2xxx [0000:03:00.0]-00fc:0: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.0 hdma+ host#=0 fw=7.03.01 (d0d5).
[   10.782726] qla2xxx [0000:03:00.1]-011c: : MSI-X vector count: 31.
[   10.789672] qla2xxx [0000:03:00.1]-001d: : Found an ISP2031 irq 50 iobase 0xffffc9003543a000.
[   11.542666] qla2xxx [0000:03:00.0]-500a:0: LOOP UP detected (8 Gbps).
[   12.160433] scsi host1: qla2xxx
[   12.167552] qla2xxx [0000:03:00.1]-00fb:1: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[   12.176464] qla2xxx [0000:03:00.1]-00fc:1: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.1 hdma+ host#=1 fw=7.03.01 (d0d5).
[   12.765519] scsi: waiting for bus probes to complete ...
[   17.183350] scsi 0:0:0:0: Enclosure         HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.193517] scsi 0:0:0:0: alua: supports implicit TPGS
[   17.199816] scsi 0:0:0:0: alua: port group 01 rel port 05
[   17.206101] scsi 0:0:0:0: alua: port group 01 state N non-preferred supports tOlusNA
[   17.214817] scsi 0:0:0:0: alua: Attached
[   17.221863] scsi 0:0:0:50: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.231626] scsi 0:0:0:50: alua: supports implicit TPGS
[   17.238186] scsi 0:0:0:50: alua: port group 01 rel port 05
[   17.244511] scsi 0:0:0:50: alua: port group 01 state N non-preferred supports tOlusNA
[   17.253318] scsi 0:0:0:50: alua: Attached
[   17.258817] scsi 0:0:0:51: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.269640] scsi 0:0:0:51: alua: supports implicit TPGS
[   17.276194] sd 0:0:0:51: alua: port group 01 rel port 05
[   17.276228] sd 0:0:0:51: [sdb] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   17.276231] sd 0:0:0:50: [sda] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   17.299908] sd 0:0:0:51: alua: port group 01 state N non-preferred supports tOlusNA
[   17.299923] sd 0:0:0:51: [sdb] Write Protect is off
[   17.299928] sd 0:0:0:50: [sda] Write Protect is off
[   17.299930] sd 0:0:0:51: [sdb] Mode Sense: d7 00 00 08
[   17.299933] sd 0:0:0:50: [sda] Mode Sense: d7 00 00 08
[   17.319574] sd 0:0:0:51: alua: Attached
[   17.319658] sd 0:0:0:51: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.319684] sd 0:0:0:50: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.345785] scsi 0:0:0:52: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.355572] scsi 0:0:0:52: alua: supports implicit TPGS
[   17.361748] scsi 0:0:0:52: alua: port group 01 rel port 05
[   17.368028] scsi 0:0:0:52: alua: port group 01 state N non-preferred supports tOlusNA
[   17.376868] scsi 0:0:0:52: alua: Attached
[   17.382181] sd 0:0:0:52: [sdc] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.391138] scsi 0:0:0:53: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.400828] sd 0:0:0:52: [sdc] Write Protect is off
[   17.406321] sd 0:0:0:52: [sdc] Mode Sense: d7 00 00 08
[   17.406394] scsi 0:0:0:53: alua: supports implicit TPGS
[   17.406453] sd 0:0:0:52: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.409007] sd 0:0:0:52: [sdc] Attached SCSI disk
[   17.428209] scsi 0:0:0:53: alua: port group 01 rel port 05
[   17.435706] scsi 0:0:0:53: alua: port group 01 state N non-preferred supports tOlusNA
[   17.444513] scsi 0:0:0:53: alua: Attached
[   17.449226]  sda: sda1 sda2 sda3 sda4
[   17.449437] sd 0:0:0:53: [sdd] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.449894] sd 0:0:0:53: [sdd] Write Protect is off
[   17.449903] sd 0:0:0:53: [sdd] Mode Sense: d7 00 00 08
[   17.449968] scsi 0:0:0:54: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.450035] sd 0:0:0:53: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.450461] scsi 0:0:0:54: alua: supports implicit TPGS
[   17.450668] scsi 0:0:0:54: alua: port group 01 rel port 05
[   17.450740] scsi 0:0:0:54: alua: port group 01 state N non-preferred supports tOlusNA
[   17.450742] scsi 0:0:0:54: alua: Attached
[   17.451174] sd 0:0:0:54: [sde] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.451582] sd 0:0:0:54: [sde] Write Protect is off
[   17.451584] sd 0:0:0:54: [sde] Mode Sense: d7 00 00 08
[   17.451681] sd 0:0:0:54: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.457124] scsi 0:0:1:0: Enclosure         HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.458471] scsi 0:0:1:0: alua: supports implicit TPGS
[   17.458701] scsi 0:0:1:0: alua: port group 00 rel port 01
[   17.458770] scsi 0:0:1:0: alua: port group 00 state N non-preferred supports tOlusNA
[   17.458771] scsi 0:0:1:0: alua: Attached
[   17.460646] scsi 0:0:1:50: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.461554] scsi 0:0:1:50: alua: supports implicit TPGS
[   17.461781] scsi 0:0:1:50: alua: port group 00 rel port 01
[   17.461850] scsi 0:0:1:50: alua: port group 00 state A preferred supports tOlusNA
[   17.461852] scsi 0:0:1:50: alua: Attached
[   17.462501] sd 0:0:0:54: [sde] Attached SCSI disk
[   17.462547] sd 0:0:0:53: [sdd] Attached SCSI disk
[   17.462651] sd 0:0:1:50: [sdf] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   17.462708] scsi 0:0:1:51: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.463490] scsi 0:0:1:51: alua: supports implicit TPGS
[   17.463491] sd 0:0:1:50: [sdf] Write Protect is off
[   17.463494] sd 0:0:1:50: [sdf] Mode Sense: d7 00 00 08
[   17.463689] scsi 0:0:1:51: alua: port group 00 rel port 01
[   17.463702] sd 0:0:1:50: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.463757] scsi 0:0:1:51: alua: port group 00 state A preferred supports tOlusNA
[   17.463758] scsi 0:0:1:51: alua: Attached
[   17.464039] sd 0:0:1:51: [sdg] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   17.464523]  sdb: sdb1 sdb2 sdb3
[   17.464578] scsi 0:0:1:52: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.464870] sd 0:0:1:51: [sdg] Write Protect is off
[   17.464872] sd 0:0:1:51: [sdg] Mode Sense: d7 00 00 08
[   17.465383] sd 0:0:1:51: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.465616] scsi 0:0:1:52: alua: supports implicit TPGS
[   17.465906] scsi 0:0:1:52: alua: port group 00 rel port 01
[   17.466004] scsi 0:0:1:52: alua: port group 00 state A preferred supports tOlusNA
[   17.466006] scsi 0:0:1:52: alua: Attached
[   17.466291] sd 0:0:1:52: [sdh] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.466852] scsi 0:0:1:53: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.467495] sd 0:0:0:51: [sdb] Attached SCSI disk
[   17.467867] sd 0:0:1:52: [sdh] Write Protect is off
[   17.467870] sd 0:0:1:52: [sdh] Mode Sense: d7 00 00 08
[   17.468188] scsi 0:0:1:53: alua: supports implicit TPGS
[   17.468237] sd 0:0:1:52: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.468624] random: nonblocking pool is initialized
[   17.468672] scsi 0:0:1:53: alua: port group 00 rel port 01
[   17.468776] scsi 0:0:1:53: alua: port group 00 state A preferred supports tOlusNA
[   17.468778] scsi 0:0:1:53: alua: Attached
[   17.469143]  sdf: sdf1 sdf2 sdf3 sdf4
[   17.470241] sd 0:0:1:53: [sdi] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.470279] scsi 0:0:1:54: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.471056] sd 0:0:1:53: [sdi] Write Protect is off
[   17.471059] sd 0:0:1:53: [sdi] Mode Sense: d7 00 00 08
[   17.471068] scsi 0:0:1:54: alua: supports implicit TPGS
[   17.471773] sd 0:0:1:53: [sdi] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.471831] scsi 0:0:1:54: alua: port group 00 rel port 01
[   17.472295] scsi 0:0:1:54: alua: port group 00 state A preferred supports tOlusNA
[   17.472297] scsi 0:0:1:54: alua: Attached
[   17.473091] sd 0:0:1:50: [sdf] Attached SCSI disk
[   17.473244] sd 0:0:1:54: [sdj] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.474096] sd 0:0:1:54: [sdj] Write Protect is off
[   17.474099] sd 0:0:1:54: [sdj] Mode Sense: d7 00 00 08
[   17.474625]  sdg: sdg1 sdg2 sdg3
[   17.474798] sd 0:0:1:54: [sdj] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.476228] sd 0:0:1:52: [sdh] Attached SCSI disk
[   17.477347] sd 0:0:1:51: [sdg] Attached SCSI disk
[   17.479458] sd 0:0:1:53: [sdi] Attached SCSI disk
[   17.481173] sd 0:0:1:54: [sdj] Attached SCSI disk
[   17.781654] device-mapper: multipath service-time: version 0.2.0 loaded
[   17.932605] sd 0:0:0:50: [sda] Attached SCSI disk
[   18.459031] EXT4-fs (dm-10): mounted filesystem with ordered data mode. Opts: (null)
[   18.780230] systemd-journald[955]: Received SIGTERM
[   19.352078] audit: type=1404 audit(1428561301.505:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[   19.456614] SELinux: 2048 avtab hash slots, 99663 rules.
[   19.476653] SELinux: 2048 avtab hash slots, 99663 rules.
[   19.505114] SELinux:  8 users, 86 roles, 4799 types, 280 bools, 1 sens, 1024 cats
[   19.505117] SELinux:  83 classes, 99663 rules
[   19.509631] SELinux:  Permission audit_read in class capability2 not defined in policy.
[   19.518629] SELinux:  Class binder not defined in policy.
[   19.524693] SELinux: the above unknown classes and permissions will be allowed
[   19.532815] SELinux:  Completing initialization.
[   19.532816] SELinux:  Setting up existing superblocks.
[   19.546312] audit: type=1403 audit(1428561301.699:3): policy loaded auid=4294967295 ses=4294967295
[   19.563151] systemd[1]: Successfully loaded SELinux policy in 226.528ms.
[   19.704253] audit: type=1400 audit(1428561301.857:4): avc:  denied  { associate } for  pid=1 comm="systemd" name="/" dev="pstore" ino=14346 scontext=system_u:object_r:sysfs_t:s0 tcontext=system_u:object_r:pstorefs_t:s0 tclass=filesystem permissive=0
[   19.729278] systemd[1]: Unable to fix label of /sys/fs/pstore: Permission denied
[   19.804910] systemd[1]: Relabelled /dev and /run in 67.019ms.
[   20.851270] systemd-journald[1773]: Vacuuming done, freed 0 bytes
[   21.003725] EXT4-fs (dm-10): re-mounted. Opts: (null)
[   21.106532] systemd-udevd[1824]: starting version 208
[   21.165723] RPC: Registered named UNIX socket transport module.
[   21.172382] RPC: Registered udp transport module.
[   21.177674] RPC: Registered tcp transport module.
[   21.182963] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   21.269395] ipmi message handler version 39.2
[   21.294240] IPMI System Interface driver.
[   21.299268] ipmi_si: probing via ACPI
[   21.303419] ipmi_si 00:00: [mem 0xfe262110000-0xfe262110002] regsize 1 spacing 1 irq 20
[   21.312466] ipmi_si: Adding ACPI-specified bt state machine
[   21.318852] ipmi_si: probing via SPMI
[   21.323094] ipmi_si: SPMI: mem 0xfe262110000 regsize 1 spacing 1 irq 20
[   21.330550] ipmi_si: Adding SPMI-specified bt state machine duplicate interface
[   21.336785] ipmi_si: Trying ACPI-specified bt state machine at mem address 0xfe262110000, slave address 0x0, irq 20
[   21.343755] ipmi_si 00:00: Using irq 20
[   21.355256] dca service started, version 1.12.1
[   21.362168] input: PC Speaker as /devices/platform/pcspkr/input/input1
[   21.372082] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   21.372224] EDAC MC: Ver: 3.0.0
[   21.373828] IPMI BT: req2rsp=6 secs retries=16
[   21.398917] ipmi_si 00:00: Found new BMC (man_id: 0x00000b, prod_id: 0x1002, dev_id: 0x40)
[   21.408271] ipmi_si 00:00: IPMI bt interface initialized
[   21.418674] lpc_ich 0000:20:1f.0: I/O space for ACPI uninitialized
[   21.425731] lpc_ich 0000:20:1f.0: No MFD cells added
[   21.433854] ioatdma: Intel(R) QuickData Technology Driver 4.00
[   21.434361] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434384] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434402] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434427] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434445] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434456] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434461] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434467] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434473] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434478] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434480] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434486] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434492] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434501] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434509] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434511] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434517] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434523] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434528] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434533] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434535] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434541] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434547] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434552] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434558] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434560] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434565] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434571] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434576] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434582] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434583] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434589] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434595] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434600] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434606] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434608] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434629] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434635] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434640] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434645] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434647] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434657] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434663] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434668] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434673] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434675] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434682] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434687] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434693] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434698] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434700] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434709] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434716] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434726] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434737] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434739] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434749] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434757] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434763] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434770] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434772] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434796] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434801] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434807] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434812] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434813] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
[   21.434826] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
[   21.434913] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[   21.435391] EDAC MC0: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#0: DEV 0000:0f:0e.0 (POLLED)
[   21.435591] EDAC MC1: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#1: DEV 0000:1f:0e.0 (POLLED)
[   21.435861] EDAC MC2: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#2: DEV 0000:2f:0e.0 (POLLED)
[   21.437391] EDAC MC3: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#3: DEV 0000:3f:0e.0 (POLLED)
[   21.437392] EDAC sbridge:  Ver: 1.1.0 
[   21.439861] hpwdt 0000:06:00.0: HP Watchdog Timer Driver: NMI decoding initialized, allow kernel dump: ON (default = 1/ON)
[   21.440263] hpwdt 0000:06:00.0: HP Watchdog Timer Driver: 1.3.3, timer margin: 30 seconds (nowayout=0).
[   21.576078] pps_core: LinuxPPS API ver. 1 registered
[   21.581663] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[   21.618453] ses 0:0:0:0: Attached Enclosure device
[   21.625306] ses 0:0:1:0: Attached Enclosure device
[   21.633067] iTCO_vendor_support: vendor-support=0
[   21.633078] Adding 2047996k swap on /dev/mapper/rhel_dhb5-swap.  Priority:-1 extents:1 across:2047996k FS
[   21.655955] PTP clock support registered
[   21.661130] ipmi device interface
[   21.667317] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   21.675242] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[   21.691156] AVX version of gcm_enc/dec engaged.
[   21.696997] AES CTR mode by8 optimization enabled
[   21.698929] EXT4-fs (dm-9): mounted filesystem with ordered data mode. Opts: (null)
[   21.723041] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[   21.775542] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.0.1-k
[   21.784153] ixgbe: Copyright (c) 1999-2014 Intel Corporation.
[   21.791878] alg: No test for crc32 (crc32-pclmul)
[   21.837656] FAT-fs (dm-8): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[   21.856906] systemd-journald[1773]: Received request to flush runtime journal from PID 1
[   21.875050] audit: type=1305 audit(1428561304.025:5): audit_pid=2540 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1
[   21.884916] ixgbe 0000:01:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[   21.885053] ixgbe 0000:01:00.0: PCI Express bandwidth of 32GT/s available
[   21.885054] ixgbe 0000:01:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[   21.885389] ixgbe 0000:01:00.0: MAC: 2, PHY: 1, PBA No: G33590-000
[   21.885393] ixgbe 0000:01:00.0: e4:11:5b:9a:f4:48
[   21.927966] ixgbe 0000:01:00.0: Intel(R) 10 Gigabit Network Connection
[   22.023465] ixgbe 0000:01:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[   22.033759] ixgbe 0000:01:00.1: PCI Express bandwidth of 32GT/s available
[   22.042805] ixgbe 0000:01:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[   22.052850] ixgbe 0000:01:00.1: MAC: 2, PHY: 1, PBA No: G33590-000
[   22.060917] ixgbe 0000:01:00.1: e4:11:5b:9a:f4:49
[   22.104737] ixgbe 0000:01:00.1: Intel(R) 10 Gigabit Network Connection
[   22.203838] ixgbe 0000:21:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[   22.214138] ixgbe 0000:21:00.0: PCI Express bandwidth of 32GT/s available
[   22.223310] ixgbe 0000:21:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[   22.233092] ixgbe 0000:21:00.0: MAC: 2, PHY: 1, PBA No: G33590-000
[   22.241268] ixgbe 0000:21:00.0: e4:11:5b:9a:ed:84
[   22.248589] ip_tables: (C) 2000-2006 Netfilter Core Team
[   22.257585] ses 0:0:0:0: Attached scsi generic sg0 type 13
[   22.263946] sd 0:0:0:50: Attached scsi generic sg1 type 0
[   22.270142] sd 0:0:0:51: Attached scsi generic sg2 type 0
[   22.276382] sd 0:0:0:52: Attached scsi generic sg3 type 0
[   22.283972] sd 0:0:0:53: Attached scsi generic sg4 type 0
[   22.284504] ixgbe 0000:21:00.0: Intel(R) 10 Gigabit Network Connection
[   22.300523] sd 0:0:0:54: Attached scsi generic sg5 type 0
[   22.307423] ses 0:0:1:0: Attached scsi generic sg6 type 13
[   22.313803] sd 0:0:1:50: Attached scsi generic sg7 type 0
[   22.320115] sd 0:0:1:51: Attached scsi generic sg8 type 0
[   22.326439] sd 0:0:1:52: Attached scsi generic sg9 type 0
[   22.332725] sd 0:0:1:53: Attached scsi generic sg10 type 0
[   22.339114] sd 0:0:1:54: Attached scsi generic sg11 type 0
[   22.379597] ixgbe 0000:21:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[   22.389217] ixgbe 0000:21:00.1: PCI Express bandwidth of 32GT/s available
[   22.396849] ixgbe 0000:21:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[   22.405212] ixgbe 0000:21:00.1: MAC: 2, PHY: 1, PBA No: G33590-000
[   22.412154] ixgbe 0000:21:00.1: e4:11:5b:9a:ed:85
[   22.453746] ixgbe 0000:21:00.1: Intel(R) 10 Gigabit Network Connection
[   22.467412] ixgbe 0000:21:00.1 ens50403203f1: renamed from eth3
[   22.494387] systemd-udevd[1834]: renamed network interface eth3 to ens50403203f1
[   22.518371] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   22.568413] ixgbe 0000:01:00.0 eno32: renamed from eth0
[   22.585591] systemd-udevd[1835]: renamed network interface eth0 to eno32
[   22.617298] Ebtables v2.0 registered
[   22.668266] ixgbe 0000:01:00.1 ens50402691f1: renamed from eth1
[   22.705712] systemd-udevd[1839]: renamed network interface eth1 to ens50402691f1
[   22.705718] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[   22.769151] ixgbe 0000:21:00.0 eno384: renamed from eth2
[   22.790791] systemd-udevd[1840]: renamed network interface eth2 to eno384
[   22.898431] cfg80211: Calling CRDA to update world regulatory domain
[   23.000971] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
[   23.270609] ixgbe 0000:01:00.0: registered PHC device on eno32
[   23.281251] ixgbe 0000:01:00.0 eno32: NIC Link is Up 10 Gbps, Flow Control: None
[   23.597832] ixgbe 0000:01:00.1: registered PHC device on ens50402691f1
[   23.608722] ixgbe 0000:01:00.1 ens50402691f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[   23.908562] ixgbe 0000:21:00.0: registered PHC device on eno384
[   23.918991] ixgbe 0000:21:00.0 eno384: NIC Link is Up 10 Gbps, Flow Control: None
[   24.216920] ixgbe 0000:21:00.1: registered PHC device on ens50403203f1
[   24.227378] ixgbe 0000:21:00.1 ens50403203f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[   33.256689] qla2xxx [0000:03:00.1]-8038:1: Cable is unplugged...
[48319.454576] hpilo 0000:06:00.2: Open could not dequeue a packet
[57716.150688] hpilo 0000:06:00.2: Open could not dequeue a packet
[105365.068430] hpilo 0000:06:00.2: Open could not dequeue a packet
[125704.610472] hpilo 0000:06:00.2: Open could not dequeue a packet
[210189.867789] perf interrupt took too long (2697 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
[312433.072947] hpilo 0000:06:00.2: Open could not dequeue a packet
[319465.196351] hpilo 0000:06:00.2: Open could not dequeue a packet
[454397.519972] perf interrupt took too long (5264 > 5000), lowering kernel.perf_event_max_sample_rate to 25000
[496698.512924] hpilo 0000:06:00.2: Open could not dequeue a packet
[518643.486101] hpilo 0000:06:00.2: Open could not dequeue a packet
[540406.727950] hpilo 0000:06:00.2: Closing, but controller still active
[555461.338496] hpilo 0000:06:00.2: Open could not dequeue a packet
[558403.097119] hpilo 0000:06:00.2: Open could not dequeue a packet

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: superdomex_dump.log --]
[-- Type: text/x-log; name="superdomex_dump.log", Size: 108368 bytes --]

[root@dhb5 ~]# echo c > /proc/sysrq-trigger 
[612372.032509] sysrq: SysRq : Trigger a crash
[612372.037385] BUG: unable to handle kernel NULL pointer dereference at           (null)
[612372.046291] IP: [<ffffffff8141af96>] sysrq_handle_crash+0x16/0x20
[612372.053248] PGD 7f59044067 PUD 7f59045067 PMD 0 
[612372.058554] Oops: 0002 [#1] SMP 
[612372.062290] Modules linked in: ip6t_rpfilter ip6t_REJECT nf_reject_ipv6 nf_conntrack_ipv6 nf_defrag_ipv6 ipt_REJECT nf_reject_ipv4 nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack cfg80211 rfkill ebtable_nat ebtable_broute bridge stp llc ebtable_filter ebtables ip6table_mangle ip6table_security ip6table_raw ip6table_filter ip6_tables iptable_mangle iptable_security iptable_raw iptable_filter sg ip_tables x86_pkg_temp_thermal coretemp kvm_intel kvm vfat crct10dif_pclmul fat crc32_pclmul ixgbe crc32c_intel ghash_clmulni_intel aesni_intel iTCO_wdt ptp lrw ipmi_devintf iTCO_vendor_support gf128mul ses glue_helper pps_core ablk_helper enclosure mdio hpilo hpwdt sb_edac cryptd lpc_ich ioatdma nfsd pcspkr shpchp edac_core dca mfd_core ipmi_si auth_rpcgss ipmi_msghandler nfs_acl lockd grace sunrpc ext4 jbd2 dm_service_time sd_mod mgag200 syscopyarea sysfillrect sysimgblt i2c_algo_bit drm_kms_helper ttm qla2xxx drm i2c_core scsi_transport_fc dm_mirror dm_region_hash dm_log dm_multipath dm_mod
[612372.162142] CPU: 16 PID: 25330 Comm: bash Not tainted 4.0.0-rc7.v10u2 #1
[612372.169764] Hardware name: HP Superdome2 16s x86, BIOS Bundle: 005.073.000 SFW: 015.082.000 08/08/2014
[612372.180310] task: ffff881fc84051c0 ti: ffff881f98990000 task.ti: ffff881f98990000
[612372.188808] RIP: 0010:[<ffffffff8141af96>]  [<ffffffff8141af96>] sysrq_handle_crash+0x16/0x20
[612372.198484] RSP: 0018:ffff881f98993e58  EFLAGS: 00010246
[612372.204541] RAX: 000000000000000f RBX: ffffffff81ad0fa0 RCX: 0000000000000000
[612372.212646] RDX: 0000000000000000 RSI: ffff885f7fa2e6d8 RDI: 0000000000000063
[612372.220752] RBP: ffff881f98993e58 R08: 00000000000000c2 R09: ffff889fffeb3580
[612372.228860] R10: 00000000000008e0 R11: 00000000000008df R12: 0000000000000063
[612372.236965] R13: 0000000000000000 R14: 0000000000000007 R15: 0000000000000000
[612372.245073] FS:  00007fac00982740(0000) GS:ffff885f7fa20000(0000) knlGS:0000000000000000
[612372.254251] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[612372.260795] CR2: 0000000000000000 CR3: 0000007f5e7b7000 CR4: 00000000001407e0
[612372.268903] Stack:
[612372.271256]  ffff881f98993e88 ffffffff8141b817 0000000000000002 00007fac00987000
[612372.279689]  0000000000000002 ffff881f98993f48 ffff881f98993ea8 ffffffff8141bcc3
[612372.288130]  0000000000000001 ffff887f7134b800 ffff881f98993ed8 ffffffff8125dffd
[612372.296562] Call Trace:
[612372.299407]  [<ffffffff8141b817>] __handle_sysrq+0x107/0x170
[612372.305855]  [<ffffffff8141bcc3>] write_sysrq_trigger+0x33/0x40
[612372.312602]  [<ffffffff8125dffd>] proc_reg_write+0x3d/0x80
[612372.318864]  [<ffffffff811f2f37>] vfs_write+0xb7/0x1f0
[612372.324728]  [<ffffffff8102336c>] ? do_audit_syscall_entry+0x6c/0x70
[612372.331958]  [<ffffffff811f3bb5>] SyS_write+0x55/0xd0
[612372.337728]  [<ffffffff816b7ac9>] system_call_fastpath+0x12/0x17
[612372.344566] Code: c1 f7 ff ff eb db 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 0f 1f 44 00 00 55 c7 05 f8 92 60 00 01 00 00 00 48 89 e5 0f ae f8 <c6> 04 25 00 00 00 00 01 5d c3 0f 1f 44 00 00 55 31 c0 48 89 e5 
[612372.366415] RIP  [<ffffffff8141af96>] sysrq_handle_crash+0x16/0x20
[612372.373456]  RSP <ffff881f98993e58>
[612372.377465] CR2: 0000000000000000
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.0.0-rc7.v10u2 (root@dhb5.fcux.usa.hp.com) (gcc version 4.8.2 20140120 (Red Hat 4.8.2-16) (GCC) ) #1 SMP Thu Apr 9 02:19:13 EDT 2015
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on irqpoll nr_cpus=4 reset_devices cgroup_disable=memory mce=off numa=off udev.children-max=2 panic=10 rootflags=nofail acpi_no_memhotplug disable_cpu_apicid=0 memmap=exactmap memmap=564K@4K memmap=523700K@393216K acpi_rsdp=0x7bffe014 elfcorehdr=916916K memmap=36864K#1992700K memmap=2048K#2029564K memmap=4K#4194304K memmap=4K#268435456K
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000100-0x000000000008dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000078bfefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000078bff000-0x00000000799fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000799ff000-0x000000007bdfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007bdff000-0x000000007bffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007bfff000-0x000000007bffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ff1fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000100000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000100001000-0x000000207fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000004000000000-0x0000004000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000004000001000-0x0000009fffffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000fdfe0000000-0x00000fdfffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe060000000-0x00000fe07fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe0e0000000-0x00000fe0ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe160000000-0x00000fe17fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe1e0000000-0x00000fe1ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe260000000-0x00000fe27fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe2e0000000-0x00000fe2ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe360000000-0x00000fe37fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe3e0000000-0x00000fe3ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe460000000-0x00000fe47fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe4e0000000-0x00000fe4ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe560000000-0x00000fe57fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe5e0000000-0x00000fe5ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe660000000-0x00000fe67fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe6e0000000-0x00000fe6ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe760000000-0x00000fe77fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe7e0000000-0x00000fe7ffffffff] reserved
[    0.000000] e820: last_pfn = 0xa000000 max_arch_pfn = 0x400000000
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: user-defined physical RAM map:
[    0.000000] user: [mem 0x0000000000001000-0x000000000008dfff] usable
[    0.000000] user: [mem 0x0000000018000000-0x0000000037f6cfff] usable
[    0.000000] user: [mem 0x00000000799ff000-0x000000007bffefff] ACPI data
[    0.000000] user: [mem 0x0000000100000000-0x0000000100000fff] ACPI data
[    0.000000] user: [mem 0x0000004000000000-0x0000004000000fff] ACPI data
[    0.000000] DMI not present or invalid.
[    0.000000] AGP: No AGP bridge found
[    0.000000] e820: last_pfn = 0x37f6d max_arch_pfn = 0x400000000
[    0.000000] PAT configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- UC  
[    0.000000] x2apic: enabled by BIOS, switching to x2apic ops
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000] init_memory_mapping: [mem 0x37000000-0x371fffff]
[    0.000000] init_memory_mapping: [mem 0x20000000-0x36ffffff]
[    0.000000] init_memory_mapping: [mem 0x18000000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x37200000-0x37f6cfff]
[    0.000000] RAMDISK: [mem 0x37384000-0x37f59fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000007BFFE014 000024 (v02 HP    )
[    0.000000] ACPI: XSDT 0x000000007BFFD0E8 0000AC (v01 HP     03010201 00000002 MSFT 01000013)
[    0.000000] ACPI: FACP 0x000000007BFFB000 00010C (v05 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: DSDT 0x000000007BFF1000 0004A8 (v02 HP     CORE     00000002 HPAG 00020000)
[    0.000000] ACPI: FACS 0x000000007AD00000 000040
[    0.000000] ACPI: MCEJ 0x000000007BFFC000 000130 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: HPET 0x000000007BFFA000 000038 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: MCFG 0x000000007BFF9000 00003C (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SLIT 0x000000007BFF8000 00003C (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: APIC 0x000000007BFF7000 000DA8 (v03 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SRAT 0x000000007BFF6000 000C38 (v02 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SPMI 0x000000007BFF5000 000040 (v05 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SPCR 0x000000007BFF4000 000050 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: DBGP 0x000000007BFF3000 000034 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: RASF 0x000000007BFF2000 000030 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SSDT 0x000000007BFD7000 019FB9 (v02 HP     BLADE000 00000002 HPAG 00020000)
[    0.000000] ACPI: SSDT 0x000000007BFBD000 0196F0 (v02 HP     BLADE001 00000002 HPAG 00020000)
[    0.000000] ACPI: DMAR 0x000000007BFBB000 000368 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: HEST 0x000000007BFBA000 000184 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: BERT 0x000000007BFB9000 000030 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: EINJ 0x000000007BFB8000 000150 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] Setting APIC routing to physical x2apic.
[    0.000000] NUMA turned off
[    0.000000] Faking a node at [mem 0x0000000000000000-0x0000000037f6cfff]
[    0.000000] NODE_DATA(0) allocated [mem 0x3735e000-0x37383fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x0000000037f6cfff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008dfff]
[    0.000000]   node   0: [mem 0x0000000018000000-0x0000000037f6cfff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000037f6cfff]
[    0.000000] ACPI: X2APIC (apic_id[0x00] uid[0x00] enabled)
[    0.000000] APIC: Disabling requested cpu. Processor 0/0x0 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x02] uid[0x02] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x04] uid[0x04] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x06] uid[0x06] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x08] uid[0x08] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 4/0x8 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0a] uid[0x0a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 5/0xa ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0c] uid[0x0c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 6/0xc ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0e] uid[0x0e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 7/0xe ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x10] uid[0x10] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 8/0x10 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x12] uid[0x12] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 9/0x12 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x14] uid[0x14] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 10/0x14 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x16] uid[0x16] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 11/0x16 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x18] uid[0x18] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 12/0x18 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x1a] uid[0x1a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 13/0x1a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x1c] uid[0x1c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 14/0x1c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x20] uid[0x24] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 15/0x20 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x22] uid[0x26] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x24] uid[0x28] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 17/0x24 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x26] uid[0x2a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 18/0x26 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x28] uid[0x2c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 19/0x28 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2a] uid[0x2e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 20/0x2a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2c] uid[0x30] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 21/0x2c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2e] uid[0x32] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 22/0x2e ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x30] uid[0x34] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 23/0x30 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x32] uid[0x36] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 24/0x32 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x34] uid[0x38] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 25/0x34 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x36] uid[0x3a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 26/0x36 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x38] uid[0x3c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 27/0x38 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x3a] uid[0x3e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 28/0x3a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x3c] uid[0x40] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 29/0x3c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x40] uid[0x48] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 30/0x40 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x42] uid[0x4a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 31/0x42 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x44] uid[0x4c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 32/0x44 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x46] uid[0x4e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 33/0x46 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x48] uid[0x50] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 34/0x48 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4a] uid[0x52] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 35/0x4a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4c] uid[0x54] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 36/0x4c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4e] uid[0x56] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 37/0x4e ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x50] uid[0x58] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 38/0x50 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x52] uid[0x5a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 39/0x52 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x54] uid[0x5c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 40/0x54 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x56] uid[0x5e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 41/0x56 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x58] uid[0x60] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 42/0x58 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x5a] uid[0x62] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 43/0x5a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x5c] uid[0x64] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 44/0x5c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x60] uid[0x6c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 45/0x60 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x62] uid[0x6e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 46/0x62 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x64] uid[0x70] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 47/0x64 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x66] uid[0x72] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 48/0x66 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x68] uid[0x74] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 49/0x68 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6a] uid[0x76] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 50/0x6a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6c] uid[0x78] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 51/0x6c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6e] uid[0x7a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 52/0x6e ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x70] uid[0x7c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 53/0x70 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x72] uid[0x7e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 54/0x72 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x74] uid[0x80] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 55/0x74 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x76] uid[0x82] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 56/0x76 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x78] uid[0x84] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 57/0x78 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x7a] uid[0x86] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 58/0x7a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x7c] uid[0x88] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 59/0x7c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x01] uid[0x01] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 60/0x1 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x03] uid[0x03] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 61/0x3 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x05] uid[0x05] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 62/0x5 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x07] uid[0x07] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 63/0x7 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x09] uid[0x09] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 64/0x9 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0b] uid[0x0b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 65/0xb ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0d] uid[0x0d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 66/0xd ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0f] uid[0x0f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 67/0xf ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x11] uid[0x11] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 68/0x11 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x13] uid[0x13] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 69/0x13 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x15] uid[0x15] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 70/0x15 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x17] uid[0x17] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 71/0x17 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x19] uid[0x19] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 72/0x19 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x1b] uid[0x1b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 73/0x1b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x1d] uid[0x1d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 74/0x1d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x21] uid[0x25] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 75/0x21 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x23] uid[0x27] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 76/0x23 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x25] uid[0x29] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 77/0x25 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x27] uid[0x2b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 78/0x27 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x29] uid[0x2d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 79/0x29 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2b] uid[0x2f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 80/0x2b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2d] uid[0x31] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 81/0x2d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2f] uid[0x33] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 82/0x2f ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x31] uid[0x35] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 83/0x31 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x33] uid[0x37] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 84/0x33 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x35] uid[0x39] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 85/0x35 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x37] uid[0x3b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 86/0x37 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x39] uid[0x3d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 87/0x39 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x3b] uid[0x3f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 88/0x3b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x3d] uid[0x41] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 89/0x3d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x41] uid[0x49] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 90/0x41 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x43] uid[0x4b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 91/0x43 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x45] uid[0x4d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 92/0x45 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x47] uid[0x4f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 93/0x47 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x49] uid[0x51] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 94/0x49 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4b] uid[0x53] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 95/0x4b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4d] uid[0x55] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 96/0x4d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4f] uid[0x57] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 97/0x4f ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x51] uid[0x59] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 98/0x51 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x53] uid[0x5b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 99/0x53 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x55] uid[0x5d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 100/0x55 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x57] uid[0x5f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 101/0x57 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x59] uid[0x61] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 102/0x59 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x5b] uid[0x63] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 103/0x5b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x5d] uid[0x65] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 104/0x5d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x61] uid[0x6d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 105/0x61 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x63] uid[0x6f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 106/0x63 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x65] uid[0x71] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 107/0x65 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x67] uid[0x73] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 108/0x67 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x69] uid[0x75] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 109/0x69 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6b] uid[0x77] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 110/0x6b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6d] uid[0x79] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 111/0x6d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6f] uid[0x7b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 112/0x6f ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x71] uid[0x7d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 113/0x71 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x73] uid[0x7f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 114/0x73 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x75] uid[0x81] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 115/0x75 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x77] uid[0x83] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 116/0x77 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x79] uid[0x85] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 117/0x79 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x7b] uid[0x87] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 118/0x7b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x7d] uid[0x89] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 119/0x7d ignored.
[    0.000000] ACPI: X2APIC_NMI (uid[0x00] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x01] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x02] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x03] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x04] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x05] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x06] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x07] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x08] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x09] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x10] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x11] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x12] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x13] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x14] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x15] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x16] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x17] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x18] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x19] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x24] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x25] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x26] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x27] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x28] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x29] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x30] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x31] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x32] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x33] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x34] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x35] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x36] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x37] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x38] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x39] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x40] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x41] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x48] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x49] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x50] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x51] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x52] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x53] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x54] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x55] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x56] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x57] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x58] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x59] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x60] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x61] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x62] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x63] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x64] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x65] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x70] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x71] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x72] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x73] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x74] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x75] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x76] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x77] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x78] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x79] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x80] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x81] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x82] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x83] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x84] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x85] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x86] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x87] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x88] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x89] high level lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x09] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec04000] gsi_base[48])
[    0.000000] IOAPIC[2]: apic_id 10, version 32, address 0xfec04000, GSI 48-71
[    0.000000] ACPI: IOAPIC (id[0x0b] address[0xfec08000] gsi_base[72])
[    0.000000] IOAPIC[3]: apic_id 11, version 32, address 0xfec08000, GSI 72-95
[    0.000000] ACPI: IOAPIC (id[0x0c] address[0xfec09000] gsi_base[96])
[    0.000000] IOAPIC[4]: apic_id 12, version 32, address 0xfec09000, GSI 96-119
[    0.000000] ACPI: IOAPIC (id[0x0d] address[0xfec0c000] gsi_base[120])
[    0.000000] IOAPIC[5]: apic_id 13, version 32, address 0xfec0c000, GSI 120-143
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[    0.000000] smpboot: 120 Processors exceeds NR_CPUS limit of 4
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008e000-0x17ffffff]
[    0.000000] e820: [mem 0x7bfff000-0xffffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 32 pages/cpu @ffff880037000000 s91544 r8192 d31336 u524288
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 128996
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on irqpoll nr_cpus=4 reset_devices cgroup_disable=memory mce=off numa=off udev.children-max=2 panic=10 rootflags=nofail acpi_no_memhotplug disable_cpu_apicid=0 memmap=exactmap memmap=564K@4K memmap=523700K@393216K acpi_rsdp=0x7bffe014 elfcorehdr=916916K memmap=36864K#1992700K memmap=2048K#2029564K memmap=4K#4194304K memmap=4K#268435456K
[    0.000000] Intel-IOMMU: enabled
[    0.000000] Misrouted IRQ fixup and polling support enabled
[    0.000000] This may significantly impact system performance
[    0.000000] Disabling memory control group subsystem
[    0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[    0.000000] AGP: Checking aperture...
[    0.000000] AGP: No AGP bridge found
[    0.000000] Memory: 484896K/524264K available (6899K kernel code, 1427K rwdata, 3228K rodata, 1704K init, 2688K bss, 39368K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS:524544 nr_irqs:1024 16
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-3.
[    0.000000] Spurious LAPIC timer interrupt on cpu 0
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [ttyS0] enabled
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2793.528 MHz processor
[    0.000030] Calibrating delay loop (skipped), value calculated using timer frequency.. 5587.05 BogoMIPS (lpj=2793528)
[    0.011950] pid_max: default: 32768 minimum: 301
[    0.017136] ACPI: Core revision 20150204
[    0.030375] ACPI: All ACPI Tables successfully acquired
[    0.036276] Security Framework initialized
[    0.040879] SELinux:  Initializing.
[    0.044851] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.052761] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.060525] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
[    0.067949] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)
[    0.076007] Initializing cgroup subsys blkio
[    0.080797] Initializing cgroup subsys memory
[    0.085686] Initializing cgroup subsys devices
[    0.090671] Initializing cgroup subsys freezer
[    0.095657] Initializing cgroup subsys net_cls
[    0.100643] Initializing cgroup subsys perf_event
[    0.105921] Initializing cgroup subsys hugetlb
[    0.110936] CPU: Physical Processor ID: 1
[    0.115432] CPU: Processor Core ID: 1
[    0.119547] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.126287] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.134981] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.141135] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    0.148100] Freeing SMP alternatives memory: 28K (ffffffff81cf7000 - ffffffff81cfe000)
[    0.158353] ftrace: allocating 25687 entries in 101 pages
[    0.176442] dmar: Host address width 44
[    0.180746] dmar: DRHD base: 0x00000093ff8000 flags: 0x0
[    0.186712] dmar: IOMMU 0: reg_base_addr 93ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.195794] dmar: DRHD base: 0x00000097ff8000 flags: 0x0
[    0.201756] dmar: IOMMU 1: reg_base_addr 97ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.210838] dmar: DRHD base: 0x0000009bff8000 flags: 0x0
[    0.216803] dmar: IOMMU 2: reg_base_addr 9bff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.225886] dmar: DRHD base: 0x0000009fff8000 flags: 0x0
[    0.231848] dmar: IOMMU 3: reg_base_addr 9fff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.240931] dmar: RMRR base: 0x00000079911000 end: 0x00000079913fff
[    0.247965] dmar: RMRR base: 0x0000007990e000 end: 0x00000079910fff
[    0.254998] dmar: ATSR flags: 0x0
[    0.258715] dmar: ATSR flags: 0x0
[    0.262431] dmar: ATSR flags: 0x0
[    0.266148] dmar: ATSR flags: 0x0
[    0.269863] dmar: RHSA base: 0x00000093ff8000 proximity domain: 0x0
[    0.276896] dmar: RHSA base: 0x00000097ff8000 proximity domain: 0x1
[    0.283929] dmar: RHSA base: 0x0000009bff8000 proximity domain: 0x2
[    0.290960] dmar: RHSA base: 0x0000009fff8000 proximity domain: 0x3
[    0.297994] IOAPIC id 13 under DRHD base  0x9fff8000 IOMMU 3
[    0.304342] IOAPIC id 11 under DRHD base  0x9bff8000 IOMMU 2
[    0.310692] IOAPIC id 12 under DRHD base  0x9bff8000 IOMMU 2
[    0.317041] IOAPIC id 10 under DRHD base  0x97ff8000 IOMMU 1
[    0.323391] IOAPIC id 8 under DRHD base  0x93ff8000 IOMMU 0
[    0.329645] IOAPIC id 9 under DRHD base  0x93ff8000 IOMMU 0
[    0.335897] HPET id 0 under DRHD base 0x93ff8000
[    0.342640] IR is enabled prior to OS.
[    0.346849] IR is enabled prior to OS.
[    0.351056] IR is enabled prior to OS.
[    0.355264] IR is enabled prior to OS.
[    0.359473] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.377636] Enabled IRQ remapping in x2apic mode
[    0.384371] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.401150] smpboot: CPU0: Intel(R) Xeon(R) CPU E7-2890 v2 @ 2.80GHz (fam: 06, model: 3e, stepping: 07)
[    0.411746] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Broken BIOS detected, complain to your hardware vendor.
[    0.427041] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 38d is b0)
[    0.435635] Intel PMU driver.
[    0.438964] ... version:                3
[    0.443461] ... bit width:              48
[    0.448055] ... generic registers:      4
[    0.452554] ... value mask:             0000ffffffffffff
[    0.458515] ... max period:             0000ffffffffffff
[    0.464476] ... fixed-purpose events:   3
[    0.468972] ... event mask:             000000070000000f
[    0.475539] x86: Booting SMP configuration:
[    0.480237] .... node  #0, CPUs:      #1
[    0.578185] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.587491]  #2 #3
[    0.617753] x86: Booted up 1 node, 4 CPUs
[    0.622458] smpboot: Total of 4 processors activated (22360.76 BogoMIPS)
[    0.644450] devtmpfs: initialized
[    0.649952] evm: security.selinux
[    0.653673] evm: security.ima
[    0.657000] evm: security.capability
[    0.661315] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.669287] NET: Registered protocol family 16
[    0.678998] cpuidle: using governor menu
[    0.683500] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.692000] ACPI: bus type PCI registered
[    0.696500] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.703792] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0x80000000-0x83ffffff] (base 0x80000000)
[    0.714244] PCI: not using MMCONFIG
[    0.718158] PCI: Using configuration type 1 for base access
[    0.729404] ACPI: Added _OSI(Module Device)
[    0.734101] ACPI: Added _OSI(Processor Device)
[    0.739088] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.744368] ACPI: Added _OSI(Processor Aggregator Device)
[    0.764920] ACPI: Interpreter enabled
[    0.769033] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
[    0.779425] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
[    0.789805] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20150204/hwxface-580)
[    0.800176] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20150204/hwxface-580)
[    0.810556] ACPI: (supports S0 S5)
[    0.814373] ACPI: Using IOAPIC for interrupt routing
[    0.819978] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0x80000000-0x83ffffff] (base 0x80000000)
[    0.832714] [Firmware Info]: PCI: MMCONFIG at [mem 0x80000000-0x83ffffff] not reserved in ACPI motherboard resources
[    0.844529] PCI: not using MMCONFIG
[    0.848504] HEST: Table parsing has been initialized.
[    0.854174] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.873807] APIC: Disabling requested cpu. Processor 120/0x0 ignored.
[    0.881037] ACPI: Unable to map lapic to logical cpu number
[    0.887322] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 121/0x1 ignored.
[    0.896309] ACPI: Unable to map lapic to logical cpu number
[    0.902618] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 122/0x3 ignored.
[    0.911602] ACPI: Unable to map lapic to logical cpu number
[    0.917911] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 123/0x5 ignored.
[    0.926898] ACPI: Unable to map lapic to logical cpu number
[    0.933205] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 124/0x7 ignored.
[    0.942191] ACPI: Unable to map lapic to logical cpu number
[    0.948487] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 125/0x8 ignored.
[    0.957475] ACPI: Unable to map lapic to logical cpu number
[    0.963753] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 126/0x9 ignored.
[    0.972741] ACPI: Unable to map lapic to logical cpu number
[    0.979037] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 127/0xa ignored.
[    0.988023] ACPI: Unable to map lapic to logical cpu number
[    0.994304] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 128/0xb ignored.
[    1.003290] ACPI: Unable to map lapic to logical cpu number
[    1.009585] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 129/0xc ignored.
[    1.018571] ACPI: Unable to map lapic to logical cpu number
[    1.024853] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 130/0xd ignored.
[    1.033838] ACPI: Unable to map lapic to logical cpu number
[    1.040137] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 131/0xe ignored.
[    1.049123] ACPI: Unable to map lapic to logical cpu number
[    1.055402] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 132/0xf ignored.
[    1.064389] ACPI: Unable to map lapic to logical cpu number
[    1.070684] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 133/0x10 ignored.
[    1.079766] ACPI: Unable to map lapic to logical cpu number
[    1.086047] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 134/0x11 ignored.
[    1.095131] ACPI: Unable to map lapic to logical cpu number
[    1.101426] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 135/0x12 ignored.
[    1.110510] ACPI: Unable to map lapic to logical cpu number
[    1.116789] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 136/0x13 ignored.
[    1.125875] ACPI: Unable to map lapic to logical cpu number
[    1.132170] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 137/0x14 ignored.
[    1.141253] ACPI: Unable to map lapic to logical cpu number
[    1.147533] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 138/0x15 ignored.
[    1.156616] ACPI: Unable to map lapic to logical cpu number
[    1.162912] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 139/0x16 ignored.
[    1.171996] ACPI: Unable to map lapic to logical cpu number
[    1.178277] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 140/0x17 ignored.
[    1.187359] ACPI: Unable to map lapic to logical cpu number
[    1.193655] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 141/0x18 ignored.
[    1.202738] ACPI: Unable to map lapic to logical cpu number
[    1.209018] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 142/0x19 ignored.
[    1.218101] ACPI: Unable to map lapic to logical cpu number
[    1.224397] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 143/0x1a ignored.
[    1.233480] ACPI: Unable to map lapic to logical cpu number
[    1.239759] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 144/0x1b ignored.
[    1.248842] ACPI: Unable to map lapic to logical cpu number
[    1.255138] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 145/0x1c ignored.
[    1.264220] ACPI: Unable to map lapic to logical cpu number
[    1.270499] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 146/0x1d ignored.
[    1.279581] ACPI: Unable to map lapic to logical cpu number
[    1.285890] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 147/0x20 ignored.
[    1.294974] ACPI: Unable to map lapic to logical cpu number
[    1.301254] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 148/0x21 ignored.
[    1.310337] ACPI: Unable to map lapic to logical cpu number
[    1.316644] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 149/0x23 ignored.
[    1.325726] ACPI: Unable to map lapic to logical cpu number
[    1.332023] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 150/0x24 ignored.
[    1.341107] ACPI: Unable to map lapic to logical cpu number
[    1.347387] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 151/0x25 ignored.
[    1.356470] ACPI: Unable to map lapic to logical cpu number
[    1.362765] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 152/0x26 ignored.
[    1.371849] ACPI: Unable to map lapic to logical cpu number
[    1.378128] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 153/0x27 ignored.
[    1.387211] ACPI: Unable to map lapic to logical cpu number
[    1.393507] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 154/0x28 ignored.
[    1.402589] ACPI: Unable to map lapic to logical cpu number
[    1.408869] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 155/0x29 ignored.
[    1.417953] ACPI: Unable to map lapic to logical cpu number
[    1.424248] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 156/0x2a ignored.
[    1.433332] ACPI: Unable to map lapic to logical cpu number
[    1.439612] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 157/0x2b ignored.
[    1.448696] ACPI: Unable to map lapic to logical cpu number
[    1.454991] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 158/0x2c ignored.
[    1.464074] ACPI: Unable to map lapic to logical cpu number
[    1.470354] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 159/0x2d ignored.
[    1.479437] ACPI: Unable to map lapic to logical cpu number
[    1.485732] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 160/0x2e ignored.
[    1.494815] ACPI: Unable to map lapic to logical cpu number
[    1.501093] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 161/0x2f ignored.
[    1.510177] ACPI: Unable to map lapic to logical cpu number
[    1.516472] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 162/0x30 ignored.
[    1.525555] ACPI: Unable to map lapic to logical cpu number
[    1.531834] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 163/0x31 ignored.
[    1.540917] ACPI: Unable to map lapic to logical cpu number
[    1.547214] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 164/0x32 ignored.
[    1.556296] ACPI: Unable to map lapic to logical cpu number
[    1.562579] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 165/0x33 ignored.
[    1.571663] ACPI: Unable to map lapic to logical cpu number
[    1.577957] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 166/0x34 ignored.
[    1.587040] ACPI: Unable to map lapic to logical cpu number
[    1.593320] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 167/0x35 ignored.
[    1.602405] ACPI: Unable to map lapic to logical cpu number
[    1.608701] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 168/0x36 ignored.
[    1.617785] ACPI: Unable to map lapic to logical cpu number
[    1.624064] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 169/0x37 ignored.
[    1.633146] ACPI: Unable to map lapic to logical cpu number
[    1.639441] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 170/0x38 ignored.
[    1.648525] ACPI: Unable to map lapic to logical cpu number
[    1.654803] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 171/0x39 ignored.
[    1.663886] ACPI: Unable to map lapic to logical cpu number
[    1.670181] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 172/0x3a ignored.
[    1.679263] ACPI: Unable to map lapic to logical cpu number
[    1.685542] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 173/0x3b ignored.
[    1.694625] ACPI: Unable to map lapic to logical cpu number
[    1.700923] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 174/0x3c ignored.
[    1.710008] ACPI: Unable to map lapic to logical cpu number
[    1.716288] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 175/0x3d ignored.
[    1.725371] ACPI: Unable to map lapic to logical cpu number
[    1.731651] ACPI: PCI Root Bridge [IO00] (domain 0000 [bus 00-0f])
[    1.738592] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    1.746348] acpi PNP0A08:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.757299] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    1.770239] PCI host bridge to bus 0000:00
[    1.774837] pci_bus 0000:00: root bus resource [bus 00-0f]
[    1.780995] pci_bus 0000:00: root bus resource [io  0x1000-0x3fff window]
[    1.788615] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    1.796235] pci_bus 0000:00: root bus resource [mem 0x90000000-0x93efffff window]
[    1.804635] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    1.813034] pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfedfffff window]
[    1.821434] pci_bus 0000:00: root bus resource [mem 0xfc000000000-0xfc07fffffff window]
[    1.830420] pci_bus 0000:00: root bus resource [mem 0xfe200000000-0xfe27fffffff window]
[    1.841134] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    1.846420] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    1.856959] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[    1.864840] pci 0000:00:02.2: PCI bridge to [bus 03]
[    1.870504] pci 0000:00:03.0: PCI bridge to [bus 04]
[    1.876142] pci 0000:00:11.0: PCI bridge to [bus 05]
[    1.884743] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    1.890494] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.900032] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.909572] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.919111] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.928647] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.938180] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.947713] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.957248] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.966778] ACPI: PCI Root Bridge [IO01] (domain 0000 [bus 10-1f])
[    1.973717] acpi PNP0A08:01: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    1.981466] acpi PNP0A08:01: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.992410] acpi PNP0A08:01: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    2.005330] PCI host bridge to bus 0000:10
[    2.009927] pci_bus 0000:10: root bus resource [bus 10-1f]
[    2.016083] pci_bus 0000:10: root bus resource [io  0x4000-0x7fff window]
[    2.023703] pci_bus 0000:10: root bus resource [mem 0x94000000-0x97ff7fff window]
[    2.032103] pci_bus 0000:10: root bus resource [mem 0xfc400000000-0xfc47fffffff window]
[    2.042477] pci 0000:10:02.0: PCI bridge to [bus 11]
[    2.048106] pci 0000:10:02.2: PCI bridge to [bus 12]
[    2.053764] pci 0000:10:03.0: PCI bridge to [bus 13]
[    2.059452] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 176/0x40 ignored.
[    2.068535] ACPI: Unable to map lapic to logical cpu number
[    2.074821] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 177/0x41 ignored.
[    2.083906] ACPI: Unable to map lapic to logical cpu number
[    2.090203] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 178/0x42 ignored.
[    2.099286] ACPI: Unable to map lapic to logical cpu number
[    2.105569] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 179/0x43 ignored.
[    2.114653] ACPI: Unable to map lapic to logical cpu number
[    2.120951] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 180/0x44 ignored.
[    2.130034] ACPI: Unable to map lapic to logical cpu number
[    2.136315] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 181/0x45 ignored.
[    2.145399] ACPI: Unable to map lapic to logical cpu number
[    2.151696] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 182/0x46 ignored.
[    2.160779] ACPI: Unable to map lapic to logical cpu number
[    2.167061] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 183/0x47 ignored.
[    2.176144] ACPI: Unable to map lapic to logical cpu number
[    2.182441] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 184/0x48 ignored.
[    2.191524] ACPI: Unable to map lapic to logical cpu number
[    2.197803] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 185/0x49 ignored.
[    2.206886] ACPI: Unable to map lapic to logical cpu number
[    2.213185] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 186/0x4a ignored.
[    2.222268] ACPI: Unable to map lapic to logical cpu number
[    2.228550] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 187/0x4b ignored.
[    2.237633] ACPI: Unable to map lapic to logical cpu number
[    2.243930] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 188/0x4c ignored.
[    2.253013] ACPI: Unable to map lapic to logical cpu number
[    2.259295] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 189/0x4d ignored.
[    2.268378] ACPI: Unable to map lapic to logical cpu number
[    2.274674] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 190/0x4e ignored.
[    2.283759] ACPI: Unable to map lapic to logical cpu number
[    2.290040] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 191/0x4f ignored.
[    2.299123] ACPI: Unable to map lapic to logical cpu number
[    2.305421] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 192/0x50 ignored.
[    2.314504] ACPI: Unable to map lapic to logical cpu number
[    2.320785] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 193/0x51 ignored.
[    2.329868] ACPI: Unable to map lapic to logical cpu number
[    2.336165] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 194/0x52 ignored.
[    2.345248] ACPI: Unable to map lapic to logical cpu number
[    2.351527] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 195/0x53 ignored.
[    2.360611] ACPI: Unable to map lapic to logical cpu number
[    2.366906] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 196/0x54 ignored.
[    2.375989] ACPI: Unable to map lapic to logical cpu number
[    2.382273] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 197/0x55 ignored.
[    2.391356] ACPI: Unable to map lapic to logical cpu number
[    2.397652] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 198/0x56 ignored.
[    2.406734] ACPI: Unable to map lapic to logical cpu number
[    2.413016] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 199/0x57 ignored.
[    2.422100] ACPI: Unable to map lapic to logical cpu number
[    2.428397] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 200/0x58 ignored.
[    2.437481] ACPI: Unable to map lapic to logical cpu number
[    2.443760] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 201/0x59 ignored.
[    2.452843] ACPI: Unable to map lapic to logical cpu number
[    2.459141] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 202/0x5a ignored.
[    2.468224] ACPI: Unable to map lapic to logical cpu number
[    2.474506] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 203/0x5b ignored.
[    2.483590] ACPI: Unable to map lapic to logical cpu number
[    2.489887] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 204/0x5c ignored.
[    2.498970] ACPI: Unable to map lapic to logical cpu number
[    2.505252] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 205/0x5d ignored.
[    2.514335] ACPI: Unable to map lapic to logical cpu number
[    2.520642] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 206/0x60 ignored.
[    2.529726] ACPI: Unable to map lapic to logical cpu number
[    2.536007] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 207/0x61 ignored.
[    2.545091] ACPI: Unable to map lapic to logical cpu number
[    2.551388] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 208/0x62 ignored.
[    2.560471] ACPI: Unable to map lapic to logical cpu number
[    2.566752] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 209/0x63 ignored.
[    2.575834] ACPI: Unable to map lapic to logical cpu number
[    2.582133] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 210/0x64 ignored.
[    2.591215] ACPI: Unable to map lapic to logical cpu number
[    2.597498] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 211/0x65 ignored.
[    2.606581] ACPI: Unable to map lapic to logical cpu number
[    2.612877] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 212/0x66 ignored.
[    2.621961] ACPI: Unable to map lapic to logical cpu number
[    2.628242] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 213/0x67 ignored.
[    2.637326] ACPI: Unable to map lapic to logical cpu number
[    2.643624] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 214/0x68 ignored.
[    2.652708] ACPI: Unable to map lapic to logical cpu number
[    2.658991] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 215/0x69 ignored.
[    2.668074] ACPI: Unable to map lapic to logical cpu number
[    2.674370] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 216/0x6a ignored.
[    2.683455] ACPI: Unable to map lapic to logical cpu number
[    2.689736] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 217/0x6b ignored.
[    2.698819] ACPI: Unable to map lapic to logical cpu number
[    2.705114] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 218/0x6c ignored.
[    2.714197] ACPI: Unable to map lapic to logical cpu number
[    2.720478] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 219/0x6d ignored.
[    2.729562] ACPI: Unable to map lapic to logical cpu number
[    2.735860] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 220/0x6e ignored.
[    2.744943] ACPI: Unable to map lapic to logical cpu number
[    2.751224] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 221/0x6f ignored.
[    2.760307] ACPI: Unable to map lapic to logical cpu number
[    2.766601] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 222/0x70 ignored.
[    2.775684] ACPI: Unable to map lapic to logical cpu number
[    2.781965] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 223/0x71 ignored.
[    2.791048] ACPI: Unable to map lapic to logical cpu number
[    2.797346] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 224/0x72 ignored.
[    2.806430] ACPI: Unable to map lapic to logical cpu number
[    2.812712] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 225/0x73 ignored.
[    2.821796] ACPI: Unable to map lapic to logical cpu number
[    2.828092] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 226/0x74 ignored.
[    2.837176] ACPI: Unable to map lapic to logical cpu number
[    2.843455] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 227/0x75 ignored.
[    2.852539] ACPI: Unable to map lapic to logical cpu number
[    2.858838] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 228/0x76 ignored.
[    2.867923] ACPI: Unable to map lapic to logical cpu number
[    2.874204] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 229/0x77 ignored.
[    2.883289] ACPI: Unable to map lapic to logical cpu number
[    2.889586] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 230/0x78 ignored.
[    2.898670] ACPI: Unable to map lapic to logical cpu number
[    2.904952] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 231/0x79 ignored.
[    2.914035] ACPI: Unable to map lapic to logical cpu number
[    2.920330] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 232/0x7a ignored.
[    2.929414] ACPI: Unable to map lapic to logical cpu number
[    2.935698] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 233/0x7b ignored.
[    2.944781] ACPI: Unable to map lapic to logical cpu number
[    2.951077] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 234/0x7c ignored.
[    2.960161] ACPI: Unable to map lapic to logical cpu number
[    2.966442] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 235/0x7d ignored.
[    2.975524] ACPI: Unable to map lapic to logical cpu number
[    2.981801] ACPI: PCI Root Bridge [IO02] (domain 0000 [bus 20-2f])
[    2.988740] acpi PNP0A08:02: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    2.996491] acpi PNP0A08:02: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    3.007434] acpi PNP0A08:02: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    3.020360] PCI host bridge to bus 0000:20
[    3.024956] pci_bus 0000:20: root bus resource [bus 20-2f]
[    3.031114] pci_bus 0000:20: root bus resource [io  0x8000-0xbfff window]
[    3.038734] pci_bus 0000:20: root bus resource [mem 0x98000000-0x9befffff window]
[    3.047133] pci_bus 0000:20: root bus resource [mem 0xf0800000000-0xf087fffffff window]
[    3.057920] pci 0000:20:1c.0: Enabling MPC IRBNCE
[    3.063201] pci 0000:20:1c.0: Intel PCH root port ACS workaround enabled
[    3.072740] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[    3.078706] pci 0000:20:02.2: PCI bridge to [bus 23]
[    3.084370] pci 0000:20:03.0: PCI bridge to [bus 24]
[    3.090011] pci 0000:20:11.0: PCI bridge to [bus 25]
[    3.098606] pci 0000:20:1c.0: PCI bridge to [bus 26]
[    3.104290] ACPI: PCI Root Bridge [IO03] (domain 0000 [bus 30-3f])
[    3.111230] acpi PNP0A08:03: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    3.118981] acpi PNP0A08:03: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    3.129925] acpi PNP0A08:03: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    3.142847] PCI host bridge to bus 0000:30
[    3.147443] pci_bus 0000:30: root bus resource [bus 30-3f]
[    3.153601] pci_bus 0000:30: root bus resource [io  0xc000-0xffff window]
[    3.161221] pci_bus 0000:30: root bus resource [mem 0x9c000000-0x9fff7fff window]
[    3.169621] pci_bus 0000:30: root bus resource [mem 0xf0c00000000-0xf0c7fffffff window]
[    3.180086] pci 0000:30:02.0: PCI bridge to [bus 31]
[    3.185719] pci 0000:30:02.2: PCI bridge to [bus 32]
[    3.191383] pci 0000:30:03.0: PCI bridge to [bus 33]
[    3.197040] ACPI: Enabled 1 GPEs in block 80 to FF
[    3.202563] vgaarb: setting as boot device: PCI:0000:06:00.1
[    3.208913] vgaarb: device added: PCI:0000:06:00.1,decodes=io+mem,owns=io+mem,locks=none
[    3.218001] vgaarb: loaded
[    3.221035] vgaarb: bridge control possible 0000:06:00.1
[    3.227066] SCSI subsystem initialized
[    3.231296] ACPI: bus type USB registered
[    3.235808] usbcore: registered new interface driver usbfs
[    3.241971] usbcore: registered new interface driver hub
[    3.247949] usbcore: registered new device driver usb
[    3.253735] PCI: Using ACPI for IRQ routing
[    3.258692] NetLabel: Initializing
[    3.262509] NetLabel:  domain hash size = 128
[    3.267398] NetLabel:  protocols = UNLABELED CIPSOv4
[    3.272980] NetLabel:  unlabeled traffic allowed by default
[    3.279328] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    3.286341] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    3.294931] Switched to clocksource hpet
[    3.305360] pnp: PnP ACPI init
[    3.309898] pnp: PnP ACPI: found 2 devices
[    3.316115] pci 0000:01:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    3.327253] pci 0000:03:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[    3.338391] pci 0000:21:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    3.349525] pci 0000:21:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    3.360707] pci 0000:01:00.0: BAR 6: assigned [mem 0x90380000-0x903fffff pref]
[    3.368819] pci 0000:01:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[    3.376736] pci 0000:01:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[    3.385046] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[    3.390916] pci 0000:00:02.0:   bridge window [io  0x2000-0x2fff]
[    3.397763] pci 0000:00:02.0:   bridge window [mem 0x90100000-0x903fffff]
[    3.405389] pci 0000:00:02.0:   bridge window [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[    3.414674] pci 0000:03:00.0: BAR 6: assigned [mem 0x90000000-0x9003ffff pref]
[    3.422787] pci 0000:03:00.1: BAR 6: assigned [mem 0x90040000-0x9007ffff pref]
[    3.430896] pci 0000:00:02.2: PCI bridge to [bus 03]
[    3.436473] pci 0000:00:02.2:   bridge window [mem 0x90000000-0x900fffff]
[    3.444098] pci 0000:00:02.2:   bridge window [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[    3.453383] pci 0000:00:03.0: PCI bridge to [bus 04]
[    3.458966] pci 0000:00:11.0: PCI bridge to [bus 05]
[    3.464554] pci 0000:06:00.2: BAR 6: assigned [mem 0x93a90000-0x93a9ffff pref]
[    3.472667] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    3.478243] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    3.485091] pci 0000:00:1c.0:   bridge window [mem 0x92000000-0x93efffff]
[    3.492757] pci 0000:10:02.0: PCI bridge to [bus 11]
[    3.498340] pci 0000:10:02.2: PCI bridge to [bus 12]
[    3.503923] pci 0000:10:03.0: PCI bridge to [bus 13]
[    3.509549] pci 0000:21:00.0: BAR 6: assigned [mem 0x98280000-0x982fffff pref]
[    3.517662] pci 0000:21:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[    3.525578] pci 0000:21:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[    3.533883] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[    3.539752] pci 0000:20:02.0:   bridge window [io  0x8000-0x8fff]
[    3.546597] pci 0000:20:02.0:   bridge window [mem 0x98000000-0x982fffff]
[    3.554222] pci 0000:20:02.0:   bridge window [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[    3.563508] pci 0000:20:02.2: PCI bridge to [bus 23]
[    3.569091] pci 0000:20:03.0: PCI bridge to [bus 24]
[    3.574675] pci 0000:20:11.0: PCI bridge to [bus 25]
[    3.580262] pci 0000:26:00.2: BAR 6: assigned [mem 0x9bd90000-0x9bd9ffff pref]
[    3.588372] pci 0000:20:1c.0: PCI bridge to [bus 26]
[    3.593947] pci 0000:20:1c.0:   bridge window [io  0x9000-0x9fff]
[    3.600795] pci 0000:20:1c.0:   bridge window [mem 0x9bb00000-0x9befffff]
[    3.608456] pci 0000:30:02.0: PCI bridge to [bus 31]
[    3.614039] pci 0000:30:02.2: PCI bridge to [bus 32]
[    3.619623] pci 0000:30:03.0: PCI bridge to [bus 33]
[    3.625237] NET: Registered protocol family 2
[    3.630278] TCP established hash table entries: 4096 (order: 3, 32768 bytes)
[    3.638207] TCP bind hash table entries: 4096 (order: 4, 65536 bytes)
[    3.645452] TCP: Hash tables configured (established 4096 bind 4096)
[    3.652617] TCP: reno registered
[    3.656244] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    3.662798] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    3.669873] NET: Registered protocol family 1
[    3.680606] Unpacking initramfs...
[    3.830067] Freeing initrd memory: 12120K (ffff880037384000 - ffff880037f5a000)
[    3.838765] Translation is enabled prior to OS.
[    3.843855] IOMMU Copying translate tables from panicked kernel
[    3.850546] IOMMU: root_cache:0xffff880034248000 phys:0x009f70d14000
[    3.857810] Translation is enabled prior to OS.
[    3.862896] IOMMU Copying translate tables from panicked kernel
[    3.869591] IOMMU: root_cache:0xffff88003424a000 phys:0x007f71751000
[    3.876772] Translation is enabled prior to OS.
[    3.881858] IOMMU Copying translate tables from panicked kernel
[    3.888531] IOMMU: root_cache:0xffff880031db7000 phys:0x005f71a8f000
[    3.895716] Translation is enabled prior to OS.
[    3.900803] IOMMU Copying translate tables from panicked kernel
[    3.907513] IOMMU: root_cache:0xffff8800342e9000 phys:0x001ff0a69000
[    3.914648] IOMMU: dmar3 using Queued invalidation
[    3.920028] IOMMU: dmar2 using Queued invalidation
[    3.925409] IOMMU: dmar1 using Queued invalidation
[    3.930789] IOMMU: dmar0 using Queued invalidation
[    3.936204] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[    3.945004] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    3.956961] microcode: CPU0 sig=0x306e7, pf=0x80, revision=0x70e
[    3.963708] microcode: CPU1 sig=0x306e7, pf=0x80, revision=0x70e
[    3.970461] microcode: CPU2 sig=0x306e7, pf=0x80, revision=0x70e
[    3.977207] microcode: CPU3 sig=0x306e7, pf=0x80, revision=0x70e
[    3.983993] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    3.994336] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    4.001295] Initialise system trusted keyring
[    4.006206] audit: initializing netlink subsys (disabled)
[    4.012285] audit: type=2000 audit(1429172893.405:1): initialized
[    4.019582] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    4.027738] zpool: loaded
[    4.030683] zbud: loaded
[    4.033659] VFS: Disk quotas dquot_6.5.2
[    4.038098] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.046046] Key type big_key registered
[    4.051223] alg: No test for stdrng (krng)
[    4.055833] NET: Registered protocol family 38
[    4.060830] Key type asymmetric registered
[    4.065431] Asymmetric key parser 'x509' registered
[    4.070928] bounce: pool size: 64 pages
[    4.075265] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    4.083617] io scheduler noop registered
[    4.088027] io scheduler deadline registered (default)
[    4.093826] io scheduler cfq registered
[    4.099640] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    4.105911] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    4.113559] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    4.122941] ACPI: Power Button [PWRB]
[    4.127347] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    4.135717] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
\x034.163465] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    4.172558] Non-volatile memory driver v1.3
[    4.177288] Linux agpgart interface v0.103
[    4.181991] rdac: device handler registered
[    4.186723] hp_sw: device handler registered
[    4.191519] emc: device handler registered
[    4.196118] alua: device handler registered
[    4.200838] libphy: Fixed MDIO Bus: probed
[    4.205483] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    4.212819] ehci-pci: EHCI PCI platform driver
[    4.217909] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    4.223817] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
[    4.232139] ehci-pci 0000:00:1d.0: debug port 2
[    4.241215] ehci-pci 0000:00:1d.0: irq 23, io mem 0x90400000
[    4.253141] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    4.259626] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    4.267250] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.275361] usb usb1: Product: EHCI Host Controller
[    4.280840] usb usb1: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[    4.287780] usb usb1: SerialNumber: 0000:00:1d.0
[    4.293060] hub 1-0:1.0: USB hub found
[    4.297278] hub 1-0:1.0: 2 ports detected
[    4.301946] ehci-pci 0000:20:1d.0: EHCI Host Controller
[    4.307853] ehci-pci 0000:20:1d.0: new USB bus registered, assigned bus number 2
[    4.316174] ehci-pci 0000:20:1d.0: debug port 2
[    4.325245] ehci-pci 0000:20:1d.0: irq 30, io mem 0x98300000
[    4.337246] ehci-pci 0000:20:1d.0: USB 2.0 started, EHCI 1.00
[    4.343728] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    4.351354] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.359463] usb usb2: Product: EHCI Host Controller
[    4.364940] usb usb2: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[    4.371880] usb usb2: SerialNumber: 0000:20:1d.0
[    4.377136] hub 2-0:1.0: USB hub found
[    4.381348] hub 2-0:1.0: 2 ports detected
[    4.385908] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    4.392855] ohci-pci: OHCI PCI platform driver
[    4.397857] uhci_hcd: USB Universal Host Controller Interface driver
[    4.405064] uhci_hcd 0000:06:00.4: UHCI Host Controller
[    4.410967] uhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 3
[    4.419292] uhci_hcd 0000:06:00.4: detected 8 ports
[    4.424767] uhci_hcd 0000:06:00.4: port count misdetected? forcing to 2 ports
[    4.432818] uhci_hcd 0000:06:00.4: irq 16, io base 0x00001500
[    4.439383] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    4.447009] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.455119] usb usb3: Product: UHCI Host Controller
[    4.460596] usb usb3: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[    4.467536] usb usb3: SerialNumber: 0000:06:00.4
[    4.472789] hub 3-0:1.0: USB hub found
[    4.477004] hub 3-0:1.0: 2 ports detected
[    4.481593] usbcore: registered new interface driver usbserial
[    4.488169] usbcore: registered new interface driver usbserial_generic
[    4.495506] usbserial: USB Serial support registered for generic
[    4.502266] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    4.948011] tsc: Refined TSC clocksource calibration: 2793.687 MHz
[    5.529759] i8042: No controller found
[    5.534014] mousedev: PS/2 mouse device common for all mice
[    5.540392] rtc_cmos 00:01: RTC can wake from S4
[    5.545705] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    5.552578] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    5.561190] Intel P-state driver initializing.
[    5.566280] hidraw: raw HID events driver (C) Jiri Kosina
[    5.572436] usbcore: registered new interface driver usbhid
[    5.578696] usbhid: USB HID core driver
[    5.583034] drop_monitor: Initializing network drop monitor service
[    5.590130] TCP: cubic registered
[    5.593854] Initializing XFRM netlink socket
[    5.598720] NET: Registered protocol family 10
[    5.603891] NET: Registered protocol family 17
[    5.608888] mce: Unable to init device /dev/mcelog (rc: -5)
[    5.615368] Loading compiled-in X.509 certificates
[    5.621393] Loaded X.509 cert 'Magrathea: Glacier signing key: 307113a598e2a4626872c8019495ffd1ab8d036a'
[    5.632053] registered taskstats version 1
[    5.635891] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    5.635903] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    5.652714] Key type trusted registered
[    5.659807] Key type encrypted registered
[    5.664317] ima: No TPM chip found, activating TPM-bypass!
[    5.670502] evm: HMAC attrs: 0x1
[    5.675242] rtc_cmos 00:01: setting system clock to 2015-04-16 08:28:19 UTC (1429172899)
[    5.685045] Freeing unused kernel memory: 1704K (ffffffff81b4d000 - ffffffff81cf7000)
[    5.696223] systemd[1]: systemd 208 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    5.710306] systemd[1]: Running in initial RAM disk.

Welcome to ^[[0;34mRed Hat Enterprise Linux Server 7.0 (Maipo) dracut-033-161.el7 (Initramfs)^[[0m!

[    5.727108] systemd[1]: Set hostname to <dhb5.fcux.usa.hp.com>.
[    5.734364] random: systemd urandom read with 3 bits of entropy available
[    5.754384] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    5.761916] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.764178] systemd[1]: Expecting device dev-disk-by\x2duuid-309f5617\x2da658\x2d49d1\x2db464\x2dcc38f471ab07.device...
[    5.782056] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    5.782057] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.782255] hub 1-1:1.0: USB hub found
[    5.782310] hub 2-1:1.0: USB hub found
[    5.782365] hub 1-1:1.0: 8 ports detected
[    5.782420] hub 2-1:1.0: 8 ports detected
         Expecting device dev-disk-by\x2duuid-309f5617\x2da65...1ab07.device...
[    5.824208] systemd[1]: Expecting device dev-mapper-rhel_dhb5\x2dswap.device...
         Expecting device dev-mapper-rhel_dhb5\x2dswap.device...
[    5.840201] systemd[1]: Expecting device dev-disk-by\x2duuid-1C36\x2d187E.device...
         Expecting device dev-disk-by\x2duuid-1C36\x2d187E.device...
[    5.856223] systemd[1]: Expecting device dev-disk-by\x2duuid-227bc7d6\x2d3f21\x2d4e34\x2db43d\x2d7f65c5e3dbcc.device...
         Expecting device dev-disk-by\x2duuid-227bc7d6\x2d3f2...3dbcc.device...
[    5.878249] systemd[1]: Starting -.slice.
[^[[32m  OK  ^[[0m] Created slice -.slice.
[    5.887258] systemd[1]: Created slice -.slice.
[    5.892301] systemd[1]: Starting System Slice.
[^[[32m  OK  ^[[0m] Created slice System Slice.
[    5.902277] systemd[1]: Created slice System Slice.
[    5.907793] systemd[1]: Starting Slices.
[^[[32m  OK  ^[[0m] Reached target Slices.
[    5.917293] systemd[1]: Reached target Slices.
[    5.922319] systemd[1]: Starting Timers.
[^[[32m  OK  ^[[0m] Reached target Timers.
[    5.931310] systemd[1]: Reached target Timers.
[    5.936340] systemd[1]: Starting Journal Socket.
[^[[32m  OK  ^[[0m] Listening on Journal Socket.
[    5.948329] systemd[1]: Listening on Journal Socket.
[    5.953915] Switched to clocksource tsc
[    5.954060] systemd[1]: Starting dracut cmdline hook...
         Starting dracut cmdline hook...
[    5.969628] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[^[[32m  OK  ^[[0m] Started Journa[    5.982669] systemd-journald[120]: Vacuuming done, freed 0 bytes
l Service.
[    5.992388] systemd[1]: Started Journal Service.
[^[[32m  OK  ^[[0m] Reached target Paths.
[^[[32m  OK  ^[[0m] Listening on udev Kernel Socket.
[^[[32m  OK  ^[[0m] Listening on udev Control Socket.
[^[[32m  OK  ^[[0m] Reached target Sockets.
         Starting Apply Kernel Variables...
         Starting Create list of required static device nodes...rrent kernel...
         Starting Device-Mapper Multipath Device Controller...
[^[[32m  OK  ^[[0m] Reached target[    6.059444] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
 Swap.
[    6.067442] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
[    6.075902] device-mapper: uevent: version 1.0.3
[^[[32m  OK  ^[[0m[    6.081236] device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised: dm-devel@redhat.com
] Reached target[    6.093418] device-mapper: multipath: version 1.8.0 loaded
 Local File Systems.
[^[[32m  OK  ^[[0m] Started dracut cmdline hook.
[^[[32m  OK  ^[[0m] Started Apply Kernel Variables.
         Starting dracut pre-udev hook...
[^[[32m  OK  ^[[0m] Started Create list of required static device nodes ...current kernel.
         Starting Create static device nodes in /dev...
[^[[32m  OK  ^[[0m] Started Device-Mapper Multipath Device Controller.
[^[[32m  OK  ^[[0m] Started Create static device nodes in /dev.
[    6.154934] usb 1-1.3: New USB device found, idVendor=0424, idProduct=2660
[    6.162877] usb 1-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.171347] hub 1-1.3:1.0: USB hub found
[    6.175860] hub 1-1.3:1.0: 2 ports detected
[    6.180140] usb 2-1.3: New USB device found, idVendor=0424, idProduct=2660
[    6.187868] usb 2-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[^[[32m  OK  ^[[0m[    6.196308] hub 2-1.3:1.0: USB hub found
] Started dracut[    6.202173] hub 2-1.3:1.0: 2 ports detected
 pre-udev hook.
         Starting udev Kernel Device Manager...
[    6.219086] systemd-udevd[237]: starting version 208
[^[[32m  OK  ^[[0m] Started udev Kernel Device Manager.
         Starting udev Coldplug all Devices...
         Mounting Configuration File System...
[^[[32m  OK  ^[[0m] Started udev Coldplug all Devices.
[^[[32m  OK  ^[[0m] Mounted Configuration File System.
         Starting dracut initqueue hook...
[^[[32m  OK  ^[[0m] Reached target System Initialization.
[^[[32m  OK  ^[[0m] Reached target Basic System.
[    6.285238] qla2xxx [0000:00:00.0]-0005: : QLogic Fibre Channel HBA Driver: 8.07.00.16-k.
[    6.294497] qla2xxx [0000:03:00.0]-011c: : MSI-X vector count: 31.
[    6.301440] qla2xxx [0000:03:00.0]-001d: : Found an ISP2031 irq 31 iobase 0xffffc900002ae000.
         Starting File System Check on /dev/disk/by-uuid/227b...7f65c5e3dbcc...
systemd-fsck[272]: fsck: error 2 (No such file or directory) while executing fsck.ext2 for /dev/disk/by-uuid/227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc
[^[[32m  OK  ^[[0m] Started File System Check on /dev/disk/by-uuid/227bc...d-7f65c5e3dbcc.
[    7.679447] scsi host0: qla2xxx
[    7.683164] qla2xxx [0000:03:00.0]-00fb:0: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[    7.692065] qla2xxx [0000:03:00.0]-00fc:0: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.0 hdma- host#=0 fw=7.03.01 (d0d5).
[    7.704050] qla2xxx [0000:03:00.1]-011c: : MSI-X vector count: 31.
[    7.710995] qla2xxx [0000:03:00.1]-001d: : Found an ISP2031 irq 34 iobase 0xffffc900002b0000.
[    8.466145] qla2xxx [0000:03:00.0]-500a:0: LOOP UP detected (8 Gbps).
[    9.070190] scsi host1: qla2xxx
[    9.076242] qla2xxx [0000:03:00.1]-00fb:1: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[    9.085139] qla2xxx [0000:03:00.1]-00fc:1: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.1 hdma- host#=1 fw=7.03.01 (d0d5).
[    9.691943] scsi: waiting for bus probes to complete ...
[   14.090926] scsi 0:0:0:0: Enclosure         HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.100122] hpwdt 0000:06:00.0: Unable to detect the 64 Bit CRU Service.
[   14.100519] scsi 0:0:0:0: alua: supports implicit TPGS
[   14.101249] scsi 0:0:0:0: alua: port group 01 rel port 05
[   14.101318] scsi 0:0:0:0: alua: port group 01 state N non-preferred supports tOlusNA
[   14.101319] scsi 0:0:0:0: alua: Attached
[   14.104988] scsi 0:0:0:50: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.105601] scsi 0:0:0:50: alua: supports implicit TPGS
[   14.105792] scsi 0:0:0:50: alua: port group 01 rel port 05
[   14.105856] scsi 0:0:0:50: alua: port group 01 state N non-preferred supports tOlusNA
[   14.105857] scsi 0:0:0:50: alua: Attached
[   14.106085] scsi 0:0:0:51: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.106424] scsi 0:0:0:51: alua: supports implicit TPGS
[   14.106782] scsi 0:0:0:51: alua: port group 01 rel port 05
[   14.107115] scsi 0:0:0:51: alua: port group 01 state N non-preferred supports tOlusNA
[   14.107116] scsi 0:0:0:51: alua: Attached
[   14.107348] scsi 0:0:0:52: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.107692] scsi 0:0:0:52: alua: supports implicit TPGS
[   14.107895] scsi 0:0:0:52: alua: port group 01 rel port 05
[   14.107957] scsi 0:0:0:52: alua: port group 01 state N non-preferred supports tOlusNA
[   14.107958] scsi 0:0:0:52: alua: Attached
[   14.108186] scsi 0:0:0:53: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.108670] scsi 0:0:0:53: alua: supports implicit TPGS
[   14.109106] scsi 0:0:0:53: alua: port group 01 rel port 05
[   14.109170] scsi 0:0:0:53: alua: port group 01 state N non-preferred supports tOlusNA
[   14.109171] scsi 0:0:0:53: alua: Attached
[   14.109392] scsi 0:0:0:54: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.109734] scsi 0:0:0:54: alua: supports implicit TPGS
[   14.109924] scsi 0:0:0:54: alua: port group 01 rel port 05
[   14.109988] scsi 0:0:0:54: alua: port group 01 state N non-preferred supports tOlusNA
[   14.109989] scsi 0:0:0:54: alua: Attached
[   14.117043] scsi 0:0:1:0: Enclosure         HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.118896] scsi 0:0:1:0: alua: supports implicit TPGS
[   14.120452] scsi 0:0:1:0: alua: port group 00 rel port 01
[   14.120521] scsi 0:0:1:0: alua: port group 00 state N non-preferred supports tOlusNA
[   14.120522] scsi 0:0:1:0: alua: Attached
[   14.122939] scsi 0:0:1:50: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.123285] scsi 0:0:1:50: alua: supports implicit TPGS
[   14.124576] scsi 0:0:1:50: alua: port group 00 rel port 01
[   14.124641] scsi 0:0:1:50: alua: port group 00 state A preferred supports tOlusNA
[   14.124642] scsi 0:0:1:50: alua: Attached
[   14.124872] scsi 0:0:1:51: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.126323] scsi 0:0:1:51: alua: supports implicit TPGS
[   14.126516] scsi 0:0:1:51: alua: port group 00 rel port 01
[   14.126581] scsi 0:0:1:51: alua: port group 00 state A preferred supports tOlusNA
[   14.126582] scsi 0:0:1:51: alua: Attached
[   14.126806] scsi 0:0:1:52: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.128246] scsi 0:0:1:52: alua: supports implicit TPGS
[   14.128441] scsi 0:0:1:52: alua: port group 00 rel port 01
[   14.128635] scsi 0:0:1:52: alua: port group 00 state A preferred supports tOlusNA
[   14.128636] scsi 0:0:1:52: alua: Attached
[   14.130766] scsi 0:0:1:53: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.132665] scsi 0:0:1:53: alua: supports implicit TPGS
[   14.134478] scsi 0:0:1:53: alua: port group 00 rel port 01
[   14.134677] scsi 0:0:1:53: alua: port group 00 state A preferred supports tOlusNA
[   14.134678] scsi 0:0:1:53: alua: Attached
[   14.136280] scsi 0:0:1:54: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.138042] scsi 0:0:1:54: alua: supports implicit TPGS
[   14.138238] scsi 0:0:1:54: alua: port group 00 rel port 01
[   14.138302] scsi 0:0:1:54: alua: port group 00 state A preferred supports tOlusNA
[   14.138303] scsi 0:0:1:54: alua: Attached
[   14.153850] [drm] Initialized drm 1.1.0 20060810
[   14.523890] [TTM] Zone  kernel: Available graphics memory: 249374 kiB
[   14.531125] [TTM] Initializing pool allocator
[   14.536022] [TTM] Initializing DMA pool allocator
[   14.570544] fbcon: mgadrmfb (fb0) is primary device
[   14.693209] Console: switching to colour frame buffer device 128x48
[   14.737835] mgag200 0000:06:00.1: fb0: mgadrmfb frame buffer device
[   14.744877] mgag200 0000:06:00.1: registered panic notifier
[   14.751428] sd 0:0:0:50: [sda] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   14.760146] sd 0:0:0:51: [sdb] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   14.760148] sd 0:0:0:54: [sde] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.760168] sd 0:0:0:53: [sdd] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.760231] sd 0:0:1:50: [sdf] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   14.760263] sd 0:0:1:51: [sdg] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   14.760664] sd 0:0:1:50: [sdf] Write Protect is off
[   14.760705] sd 0:0:1:51: [sdg] Write Protect is off
[   14.760793] sd 0:0:1:50: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.760828] sd 0:0:1:51: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.761082] sd 0:0:0:52: [sdc] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.761303] sd 0:0:1:52: [sdh] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.761314] sd 0:0:1:53: [sdi] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.761382] sd 0:0:1:54: [sdj] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.761910] sd 0:0:0:54: [sde] Write Protect is off
[   14.761957] sd 0:0:0:50: [sda] Write Protect is off
[   14.761976] sd 0:0:0:53: [sdd] Write Protect is off
[   14.762051] sd 0:0:0:52: [sdc] Write Protect is off
[   14.762071] sd 0:0:0:54: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762077] sd 0:0:0:50: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762134] sd 0:0:0:53: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762197] sd 0:0:0:52: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762655] sd 0:0:1:52: [sdh] Write Protect is off
[   14.762671] sd 0:0:1:53: [sdi] Write Protect is off
[   14.762679] sd 0:0:1:54: [sdj] Write Protect is off
[   14.762799] sd 0:0:1:52: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762942] sd 0:0:1:53: [sdi] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762994] sd 0:0:1:54: [sdj] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.796120] sd 0:0:1:54: [sdj] Attached SCSI disk
[   14.804336] sd 0:0:0:54: [sde] Attached SCSI disk
[   14.807081] sd 0:0:0:53: [sdd] Attached SCSI disk
[   14.808932] random: nonblocking pool is initialized
[   14.809408] sd 0:0:0:52: [sdc] Attached SCSI disk
[   14.809649] sd 0:0:1:52: [sdh] Attached SCSI disk
[   14.809940] sd 0:0:1:53: [sdi] Attached SCSI disk
[   14.826381]  sdg: sdg1 sdg2 sdg3
[   14.836077] sd 0:0:1:51: [sdg] Attached SCSI disk
[   14.839624]  sdf: sdf1 sdf2 sdf3 sdf4
[   14.845076] sd 0:0:1:50: [sdf] Attached SCSI disk
[   14.845605]  sda: sda1 sda2 sda3 sda4
[   14.854284] sd 0:0:0:50: [sda] Attached SCSI disk
[   15.045217] sd 0:0:0:51: [sdb] Write Protect is off
[   15.050811] sd 0:0:0:51: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   15.051679] [drm] Initialized mgag200 1.0.0 20110418 for 0000:06:00.1 on minor 0
[   15.072279]  sdb: sdb1 sdb2 sdb3
[   15.076731] sd 0:0:0:51: [sdb] Attached SCSI disk
[   15.211225] device-mapper: multipath service-time: version 0.2.0 loaded
[^[[32m  OK  ^[[0m] Started dracut initqueue hook.
         Mounting /sysroot...
[^[[32m  OK  ^[[0m] Reached target Initrd Root File System.
         Starting Reload Configuration from the Real Root...
[   16.159937] EXT4-fs (dm-7): INFO: recovery required on readonly filesystem
[   16.167662] EXT4-fs (dm-7): write access will be enabled during recovery
[^[[32m  OK  ^[[0m] Started Reload Configuration from the Real Root.
[^[[32m  OK  ^[[0m] Reached target Initrd File Systems.
[^[[32m  OK  ^[[0m] Reached target Initrd Default Target.
[   16.332695] EXT4-fs (dm-7): orphan cleanup on readonly fs
[   16.364569] EXT4-fs (dm-7): 2 orphan inodes deleted
[   16.370109] EXT4-fs (dm-7): recovery complete
[   16.376741] EXT4-fs (dm-7): mounted filesystem with ordered data mode. Opts: (null)
kdump: dump target is /dev/mappe[   16.426873] EXT4-fs (dm-7): re-mounted. Opts: stripe=256,data=ordered
r/mpatha3
kdump: saving to /sysroot//var/crash/127.0.0.1-2015.04.16-04:28:30/
kdump: saving vmcore-dmesg.txt
Missing the struct log size export
kdump: saving vmcore-dmesg.txt failed
kdump: saving vmcore
\rExcluding unnecessary pages        : [  0.0 %] /\rExcluding unnecessary pages        : [  0.9 %] |\rExcluding unnecessary pages        : [ 61.8 %] \\rExcluding unnecessary pages        : [ 90.1 %] -\rExcluding unnecessary pages        : [100.0 %] /\rExcluding unnecessary pages        : [  0.0 %] |\rExcluding unnecessary pages        : [ 18.9 %] \\rExcluding unnecessary pages        : [ 72.9 %] -\rExcluding unnecessary pages        : [100.0 %] /\rCopying data                       : [  0.0 %] |\rCopying data                       : [  0.4 %] \\rCopying data                       : [  0.8 %] -\rCopying data                       : [  1.2 %] /\rCopying data                       : [  1.7 %] |\rCopying data                       : [  2.2 %] \\rCopying data                       : [  2.6 %] -[   30.166587] qla2xxx [0000:03:00.1]-8038:1: Cable is unplugged...
\rCopying data                       : [  3.1 %] /\rCopying data                       : [  3.6 %] |\rCopying data                       : [  4.1 %] \\rCopying data                       : [  4.5 %] -\rCopying data                       : [  5.0 %] /\rCopying data                       : [  5.5 %] |\rCopying data                       : [  6.0 %] \\rCopying data                       : [  6.4 %] -\rCopying data                       : [  6.9 %] /\rCopying data                       : [  7.4 %] |\rCopying data                       : [  7.9 %] \\rCopying data                       : [  8.4 %] -\rCopying data                       : [  8.8 %] /\rCopying data                       : [  9.3 %] |\rCopying data                       : [  9.8 %] \\rCopying data                       : [ 10.4 %] -\rCopying data                       : [ 11.0 %] /\rCopying data                       : [ 12.1 %] |\rCopying data                       : [ 13.1 %] \\rCopying data                       : [ 13.9 %] -\rCopying data                       : [ 14.7 %] /\rCopying data                       : [ 15.5 %] |\rCopying data                       : [ 16.3 %] \\rCopying data                       : [ 17.1 %] -\rCopying data                       : [ 17.9 %] /\rCopying data                       : [ 18.7 %] |\rCopying data                       : [ 19.5 %] \\rCopying data                       : [ 20.3 %] -\rCopying data                       : [ 21.1 %] /\rCopying data                       : [ 21.9 %] |\rCopying data                       : [ 22.7 %] \\rCopying data                       : [ 23.5 %] -\rCopying data                       : [ 24.3 %] /\rCopying data                       : [ 25.1 %] |\rCopying data                       : [ 26.0 %] \\rCopying data                       : [ 26.8 %] -\rCopying data                       : [ 27.6 %] /\rCopying data                       : [ 28.4 %] |\rCopying data                       : [ 29.2 %] \\rCopying data                       : [ 30.0 %] -\rCopying data                       : [ 30.7 %] /\rCopying data                       : [ 31.0 %] |\rCopying data                       : [ 31.4 %] \\rCopying data                       : [ 32.0 %] -\rCopying data                       : [ 32.7 %] /\rCopying data                       : [ 33.7 %] |\rCopying data                       : [ 34.7 %] \\rCopying data                       : [ 35.5 %] -\rCopying data                       : [ 36.3 %] /\rCopying data                       : [ 37.1 %] |\rCopying data                       : [ 37.9 %] \\rCopying data                       : [ 38.7 %] -\rCopying data                       : [ 39.5 %] /\rCopying data                       : [ 40.3 %] |\rCopying data                       : [ 41.1 %] \\rCopying data                       : [ 41.9 %] -\rCopying data                       : [ 42.7 %] /\rCopying data                       : [ 43.5 %] |\rCopying data                       : [ 44.3 %] \\rCopying data                       : [ 45.1 %] -\rCopying data                       : [ 45.9 %] /\rCopying data                       : [ 46.7 %] |\rCopying data                       : [ 47.5 %] \\rCopying data                       : [ 48.3 %] -\rCopying data                       : [ 49.1 %] /\rCopying data                       : [ 49.9 %] |\rCopying data                       : [ 50.7 %] \\rCopying data                       : [ 51.6 %] -\rCopying data                       : [ 52.3 %] /\rCopying data                       : [ 52.6 %] |\rCopying data                       : [ 53.0 %] \\rCopying data                       : [ 53.5 %] -\rCopying data                       : [ 53.9 %] /\rCopying data                       : [ 55.2 %] |\rCopying data                       : [ 55.7 %] \\rCopying data                       : [ 56.3 %] -\rCopying data                       : [ 57.4 %] /\rCopying data                       : [ 58.4 %] |\rCopying data                       : [ 59.2 %] \\rCopying data                       : [ 59.9 %] -\rCopying data                       : [ 60.7 %] /\rCopying data                       : [ 61.5 %] |\rCopying data                       : [ 62.3 %] \\rCopying data                       : [ 63.1 %] -\rCopying data                       : [ 63.9 %] /\rCopying data                       : [ 64.7 %] |\rCopying data                       : [ 65.4 %] \\rCopying data                       : [ 66.2 %] -\rCopying data                       : [ 67.0 %] /\rCopying data                       : [ 67.8 %] |\rCopying data                       : [ 68.6 %] \\rCopying data                       : [ 69.4 %] -\rCopying data                       : [ 70.2 %] /\rCopying data                       : [ 71.0 %] |\rCopying data                       : [ 71.7 %] \\rCopying data                       : [ 72.5 %] -\rCopying data                       : [ 73.3 %] /\rCopying data                       : [ 74.1 %] |\rCopying data                       : [ 74.9 %] \\rCopying data                       : [ 75.6 %] -\rCopying data                       : [ 76.1 %] /\rCopying data                       : [ 77.6 %] |\rCopying data                       : [ 79.7 %] \\rCopying data                       : [ 80.3 %] -\rCopying data                       : [ 81.3 %] /\rCopying data                       : [ 82.3 %] |\rCopying data                       : [ 83.1 %] \\rCopying data                       : [ 83.9 %] -\rCopying data                       : [ 84.7 %] /\rCopying data                       : [ 85.4 %] |\rCopying data                       : [ 86.2 %] \\rCopying data                       : [ 87.0 %] -\rCopying data                       : [ 87.8 %] /\rCopying data                       : [ 88.6 %] |\rCopying data                       : [ 89.4 %] \\rCopying data                       : [ 90.2 %] -\rCopying data                       : [ 91.0 %] /\rCopying data                       : [ 91.7 %] |\rCopying data                       : [ 92.5 %] \\rCopying data                       : [ 93.3 %] -\rCopying data                       : [ 94.1 %] /\rCopying data                       : [ 94.9 %] |\rCopying data                       : [ 95.7 %] \\rCopying data                       : [ 96.5 %] -\rCopying data                       : [ 97.2 %] /\rCopying data                       : [ 98.0 %] |\rCopying data                       : [ 98.8 %] \\rCopying data                       : [ 99.6 %] -\rCopying data                       : [100.0 %] /
kdump: saving vmcore complete
Rebooting.
[  158.228249] sd 0:0:1:54: [sdj] Synchronizing SCSI cache
[  158.235146] sd 0:0:1:53: [sdi] Synchronizing SCSI cache
[  158.241074] sd 0:0:1:52: [sdh] Synchronizing SCSI cache
[  158.246992] sd 0:0:1:51: [sdg] Synchronizing SCSI cache
[  158.252910] sd 0:0:1:50: [sdf] Synchronizing SCSI cache
[  158.258828] sd 0:0:0:54: [sde] Synchronizing SCSI cache
[  158.264761] sd 0:0:0:53: [sdd] Synchronizing SCSI cache
[  158.270678] sd 0:0:0:52: [sdc] Synchronizing SCSI cache
[  158.276596] sd 0:0:0:51: [sdb] Synchronizing SCSI cache
[  158.282512] sd 0:0:0:50: [sda] Synchronizing SCSI cache
[  158.304155] reboot: Restarting system
[  158.308266] reboot: machine restart

[-- Attachment #4: lspci --]
[-- Type: text/plain, Size: 43434 bytes --]

00:00.0 Host bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DMI2 (rev 07)
00:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
00:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
00:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
00:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
00:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
00:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
00:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
00:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
00:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
00:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
00:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
00:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 06)
00:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 8 (rev b6)
00:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 06)
00:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 06)
01:00.0 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
01:00.1 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
03:00.0 Fibre Channel: QLogic Corp. ISP8324-based 16Gb Fibre Channel to PCI Express Adapter (rev 02)
03:00.1 Fibre Channel: QLogic Corp. ISP8324-based 16Gb Fibre Channel to PCI Express Adapter (rev 02)
06:00.0 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Slave Instrumentation & System Support (rev 06)
06:00.1 VGA compatible controller: Matrox Electronics Systems Ltd. MGA G200EH (rev 01)
06:00.2 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Management Processor Support and Messaging (rev 06)
06:00.4 USB controller: Hewlett-Packard Company Integrated Lights-Out Standard Virtual USB Controller (rev 03)
0f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
0f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
0f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
0f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
0f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
0f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
0f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
0f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
0f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
0f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
0f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
0f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
0f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
0f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
0f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
0f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
0f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
0f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
0f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
0f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
0f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
0f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
0f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
0f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
0f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
0f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
0f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
0f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
0f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
0f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
0f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
0f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
0f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
0f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
0f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
0f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
0f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
0f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
0f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
0f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
0f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
0f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
0f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
0f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
0f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
10:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
10:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
10:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
10:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
10:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
10:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
10:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
10:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
10:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
10:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
10:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
1f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
1f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
1f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
1f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
1f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
1f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
1f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
1f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
1f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
1f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
1f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
1f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
1f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
1f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
1f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
1f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
1f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
1f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
1f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
1f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
1f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
1f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
1f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
1f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
1f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
1f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
1f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
1f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
1f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
1f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
1f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
1f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
1f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
1f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
1f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
1f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
1f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
1f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
1f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
1f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
1f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
1f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
1f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
1f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
1f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
20:00.0 Host bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DMI2 (rev 07)
20:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
20:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
20:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
20:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
20:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
20:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
20:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
20:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
20:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
20:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
20:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
20:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 06)
20:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 8 (rev b6)
20:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 06)
20:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 06)
21:00.0 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
21:00.1 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
26:00.0 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Slave Instrumentation & System Support (rev 06)
26:00.2 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Management Processor Support and Messaging (rev 06)
2f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
2f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
2f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
2f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
2f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
2f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
2f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
2f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
2f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
2f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
2f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
2f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
2f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
2f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
2f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
2f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
2f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
2f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
2f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
2f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
2f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
2f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
2f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
2f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
2f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
2f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
2f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
2f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
2f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
2f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
2f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
2f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
2f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
2f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
2f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
2f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
2f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
2f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
2f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
2f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
2f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
2f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
2f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
2f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
2f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
30:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
30:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
30:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
30:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
30:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
30:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
30:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
30:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
30:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
30:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
30:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
3f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
3f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
3f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
3f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
3f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
3f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
3f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
3f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
3f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
3f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
3f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
3f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
3f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
3f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
3f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
3f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
3f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
3f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
3f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
3f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
3f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
3f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
3f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
3f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
3f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
3f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
3f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
3f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
3f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
3f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
3f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
3f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
3f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
3f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
3f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
3f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
3f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
3f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
3f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
3f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
3f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
3f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
3f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
3f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
3f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-23  8:35   ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-04-23  8:35 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: bhe-H+wXaHxf7aLQT0dZR+AlfA, tom.vaden-VXdhtT5mjnY,
	rwright-VXdhtT5mjnY, dwmw2-wEGCiKHe2LqWVfeAwA7xHQ,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dyoung-H+wXaHxf7aLQT0dZR+AlfA, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

[-- Attachment #1: Type: text/plain, Size: 8633 bytes --]

Tested on HP Superdome X.
Result: Passed.

PCI list and log are attached.

superdomex_boot.log: Log for first kernel.
superdomex_dump.log: Log for kdump kernel.
lspci: log for command lspci

Thanks
Zhenhua
On 04/10/2015 04:42 PM, Li, Zhen-Hua wrote:
> This patchset is an update of Bill Sumner's patchset, implements a fix for:
> If a kernel boots with intel_iommu=on on a system that supports intel vt-d,
> when a panic happens, the kdump kernel will boot with these faults:
>
>      dmar: DRHD: handling fault status reg 102
>      dmar: DMAR:[DMA Read] Request device [01:00.0] fault addr fff80000
>      DMAR:[fault reason 01] Present bit in root entry is clear
>
>      dmar: DRHD: handling fault status reg 2
>      dmar: INTR-REMAP: Request device [[61:00.0] fault index 42
>      INTR-REMAP:[fault reason 34] Present field in the IRTE entry is clear
>
> On some system, the interrupt remapping fault will also happen even if the
> intel_iommu is not set to on, because the interrupt remapping will be enabled
> when x2apic is needed by the system.
>
> The cause of the DMA fault is described in Bill's original version, and the
> INTR-Remap fault is caused by a similar reason. In short, the initialization
> of vt-d drivers causes the in-flight DMA and interrupt requests get wrong
> response.
>
> To fix this problem, we modifies the behaviors of the intel vt-d in the
> crashdump kernel:
>
> For DMA Remapping:
> 1. To accept the vt-d hardware in an active state,
> 2. Do not disable and re-enable the translation, keep it enabled.
> 3. Use the old root entry table, do not rewrite the RTA register.
> 4. Malloc and use new context entry table, copy data from the old ones that
>     used by the old kernel.
> 5. Keep using the old page tables before driver is loaded.
> 6. After device driver is loaded, when it issues the first dma_map command,
>     free the dmar_domain structure for this device, and generate a new one, so
>     that the device can be assigned a new and empty page table.
> 7. When a new context entry table is generated, we also save its address to
>     the old root entry table.
>
> For Interrupt Remapping:
> 1. To accept the vt-d hardware in an active state,
> 2. Do not disable and re-enable the interrupt remapping, keep it enabled.
> 3. Use the old interrupt remapping table, do not rewrite the IRTA register.
> 4. When ioapic entry is setup, the interrupt remapping table is changed, and
>     the updated data will be stored to the old interrupt remapping table.
>
> Advantages of this approach:
> 1. All manipulation of the IO-device is done by the Linux device-driver
>     for that device.
> 2. This approach behaves in a manner very similar to operation without an
>     active iommu.
> 3. Any activity between the IO-device and its RMRR areas is handled by the
>     device-driver in the same manner as during a non-kdump boot.
> 4. If an IO-device has no driver in the kdump kernel, it is simply left alone.
>     This supports the practice of creating a special kdump kernel without
>     drivers for any devices that are not required for taking a crashdump.
> 5. Minimal code-changes among the existing mainline intel vt-d code.
>
> Summary of changes in this patch set:
> 1. Added some useful function for root entry table in code intel-iommu.c
> 2. Added new members to struct root_entry and struct irte;
> 3. Functions to load old root entry table to iommu->root_entry from the memory
>     of old kernel.
> 4. Functions to malloc new context entry table and copy the data from the old
>     ones to the malloced new ones.
> 5. Functions to enable support for DMA remapping in kdump kernel.
> 6. Functions to load old irte data from the old kernel to the kdump kernel.
> 7. Some code changes that support other behaviours that have been listed.
> 8. In the new functions, use physical address as "unsigned long" type, not
>     pointers.
>
> Original version by Bill Sumner:
>      https://lkml.org/lkml/2014/1/10/518
>      https://lkml.org/lkml/2014/4/15/716
>      https://lkml.org/lkml/2014/4/24/836
>
> Zhenhua's updates:
>      https://lkml.org/lkml/2014/10/21/134
>      https://lkml.org/lkml/2014/12/15/121
>      https://lkml.org/lkml/2014/12/22/53
>      https://lkml.org/lkml/2015/1/6/1166
>      https://lkml.org/lkml/2015/1/12/35
>      https://lkml.org/lkml/2015/3/19/33
>
> Changelog[v10]:
>      1. Do not use CONFIG_CRASH_DUMP and is_kdump_kernel().
>         Use one flag which stores the te and ir status in last kernel:
>             iommu->pre_enabled_trans
>             iommu->pre_enabled_ir
>
> Changelog[v9]:
>      1. Add new function iommu_attach_domain_with_id.
>      2. Do not copy old page tables, keep using the old ones.
>      3. Remove functions:
>             intel_iommu_did_to_domain_values_entry
>             intel_iommu_get_dids_from_old_kernel
>             device_to_domain_id
>             copy_page_addr
>             copy_page_table
>             copy_context_entry
>             copy_context_entry_table
>      4. Add new function device_to_existing_context_entry.
>
> Changelog[v8]:
>      1. Add a missing __iommu_flush_cache in function copy_page_table.
>
> Changelog[v7]:
>      1. Use __iommu_flush_cache to flush the data to hardware.
>
> Changelog[v6]:
>      1. Use "unsigned long" as type of physical address.
>      2. Use new function unmap_device_dma to unmap the old dma.
>      3. Some small incorrect bits order for aw shift.
>
> Changelog[v5]:
>      1. Do not disable and re-enable traslation and interrupt remapping.
>      2. Use old root entry table.
>      3. Use old interrupt remapping table.
>      4. New functions to copy data from old kernel, and save to old kernel mem.
>      5. New functions to save updated root entry table and irte table.
>      6. Use intel_unmap to unmap the old dma;
>      7. Allocate new pages while driver is being loaded.
>
> Changelog[v4]:
>      1. Cut off the patches that move some defines and functions to new files.
>      2. Reduce the numbers of patches to five, make it more easier to read.
>      3. Changed the name of functions, make them consistent with current context
>         get/set functions.
>      4. Add change to function __iommu_attach_domain.
>
> Changelog[v3]:
>      1. Commented-out "#define DEBUG 1" to eliminate debug messages.
>      2. Updated the comments about changes in each version.
>      3. Fixed: one-line added to Copy-Translations patch to initialize the iovad
>            struct as recommended by Baoquan He [bhe-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org]
>            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-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> helps testing this patchset.
> Takao Indoh <indou.takao-+CUm20s59erQFUHtdCDX3A@public.gmane.org> gives valuable suggestions.
>
> Li, Zhen-Hua (10):
>    iommu/vt-d: New function to attach domain with id
>    iommu/vt-d: Items required for kdump
>    iommu/vt-d: Function to get old context entry
>    iommu/vt-d: functions to copy data from old mem
>    iommu/vt-d: Add functions to load and save old re
>    iommu/vt-d: datatypes and functions used for kdump
>    iommu/vt-d: enable kdump support in iommu module
>    iommu/vt-d: assign new page table for dma_map
>    iommu/vt-d: Copy functions for irte
>    iommu/vt-d: Use old irte in kdump kernel
>
>   drivers/iommu/intel-iommu.c         | 518 ++++++++++++++++++++++++++++++++++--
>   drivers/iommu/intel_irq_remapping.c |  96 ++++++-
>   include/linux/intel-iommu.h         |  16 ++
>   3 files changed, 605 insertions(+), 25 deletions(-)
>


[-- Attachment #2: superdomex_boot.log --]
[-- Type: text/x-log, Size: 159130 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.0.0-rc7.v10u2 (root-3yB+mE9+RlsNQruUV56Gk1aTQe2KTcn/@public.gmane.org) (gcc version 4.8.2 20140120 (Red Hat 4.8.2-16) (GCC) ) #1 SMP Thu Apr 9 02:19:13 EDT 2015
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us crashkernel=512M vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000078bfefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000078bff000-0x00000000799fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000799ff000-0x000000007bdfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007bdff000-0x000000007bffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007bfff000-0x000000007bffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ff1fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000100000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000100001000-0x000000207fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000004000000000-0x0000004000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000004000001000-0x0000009fffffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000fdfe0000000-0x00000fdfffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe060000000-0x00000fe07fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe0e0000000-0x00000fe0ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe160000000-0x00000fe17fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe1e0000000-0x00000fe1ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe260000000-0x00000fe27fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe2e0000000-0x00000fe2ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe360000000-0x00000fe37fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe3e0000000-0x00000fe3ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe460000000-0x00000fe47fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe4e0000000-0x00000fe4ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe560000000-0x00000fe57fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe5e0000000-0x00000fe5ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe660000000-0x00000fe67fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe6e0000000-0x00000fe6ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe760000000-0x00000fe77fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe7e0000000-0x00000fe7ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x77787018-0x777fd857] usable ==> usable
[    0.000000] e820: update [mem 0x77755018-0x77786e57] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000077755017] usable
[    0.000000] reserve setup_data: [mem 0x0000000077755018-0x0000000077786e57] usable
[    0.000000] reserve setup_data: [mem 0x0000000077786e58-0x0000000077787017] usable
[    0.000000] reserve setup_data: [mem 0x0000000077787018-0x00000000777fd857] usable
[    0.000000] reserve setup_data: [mem 0x00000000777fd858-0x0000000078bfefff] usable
[    0.000000] reserve setup_data: [mem 0x0000000078bff000-0x00000000799fefff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000799ff000-0x000000007bdfefff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000007bdff000-0x000000007bffefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000007bfff000-0x000000007bffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ff1fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x0000000100000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000100001000-0x000000207fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000004000000000-0x0000004000000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000004000001000-0x0000009fffffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000fdfe0000000-0x00000fdfffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe060000000-0x00000fe07fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe0e0000000-0x00000fe0ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe160000000-0x00000fe17fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe1e0000000-0x00000fe1ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe260000000-0x00000fe27fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe2e0000000-0x00000fe2ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe360000000-0x00000fe37fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe3e0000000-0x00000fe3ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe460000000-0x00000fe47fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe4e0000000-0x00000fe4ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe560000000-0x00000fe57fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe5e0000000-0x00000fe5ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe660000000-0x00000fe67fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe6e0000000-0x00000fe6ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe760000000-0x00000fe77fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe7e0000000-0x00000fe7ffffffff] reserved
[    0.000000] efi: EFI v2.31 by HP
[    0.000000] efi:  ACPI=0x7bffe000  ACPI 2.0=0x7bffe014  SMBIOS=0x799f8000 
[    0.000000] efi: mem00: [Boot Code          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000001000-0x0000000000002000) (0MB)
[    0.000000] efi: mem02: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000002000-0x000000000008e000) (0MB)
[    0.000000] efi: mem03: [Reserved           |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000000008e000-0x0000000000090000) (0MB)
[    0.000000] efi: mem04: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000090000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem05: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000100000-0x0000000001000000) (15MB)
[    0.000000] efi: mem06: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000001000000-0x000000000212d000) (17MB)
[    0.000000] efi: mem07: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000000212d000-0x000000003f4b3000) (979MB)
[    0.000000] efi: mem08: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000003f4b3000-0x000000005c800000) (467MB)
[    0.000000] efi: mem09: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000005c800000-0x000000005ca00000) (2MB)
[    0.000000] efi: mem10: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000005ca00000-0x000000006d038000) (262MB)
[    0.000000] efi: mem11: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000006d038000-0x000000006f3fc000) (35MB)
[    0.000000] efi: mem12: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000006f3fc000-0x00000000738e8000) (68MB)
[    0.000000] efi: mem13: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000738e8000-0x0000000073e21000) (5MB)
[    0.000000] efi: mem14: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073e21000-0x0000000073e3b000) (0MB)
[    0.000000] efi: mem15: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073e3b000-0x0000000073e3e000) (0MB)
[    0.000000] efi: mem16: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073e3e000-0x0000000073e5f000) (0MB)
[    0.000000] efi: mem17: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073e5f000-0x0000000073f68000) (1MB)
[    0.000000] efi: mem18: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073f68000-0x0000000073f69000) (0MB)
[    0.000000] efi: mem19: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073f69000-0x00000000742b9000) (3MB)
[    0.000000] efi: mem20: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000742b9000-0x00000000742fb000) (0MB)
[    0.000000] efi: mem21: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000742fb000-0x0000000074313000) (0MB)
[    0.000000] efi: mem22: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074313000-0x0000000074333000) (0MB)
[    0.000000] efi: mem23: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074333000-0x0000000074359000) (0MB)
[    0.000000] efi: mem24: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074359000-0x000000007436e000) (0MB)
[    0.000000] efi: mem25: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007436e000-0x0000000074559000) (1MB)
[    0.000000] efi: mem26: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074559000-0x000000007457a000) (0MB)
[    0.000000] efi: mem27: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007457a000-0x0000000074595000) (0MB)
[    0.000000] efi: mem28: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074595000-0x0000000074596000) (0MB)
[    0.000000] efi: mem29: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074596000-0x00000000746a6000) (1MB)
[    0.000000] efi: mem30: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000746a6000-0x00000000746a8000) (0MB)
[    0.000000] efi: mem31: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000746a8000-0x00000000773ff000) (45MB)
[    0.000000] efi: mem32: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000773ff000-0x0000000077754000) (3MB)
[    0.000000] efi: mem33: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000077754000-0x00000000777ff000) (0MB)
[    0.000000] efi: mem34: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000777ff000-0x0000000077b16000) (3MB)
[    0.000000] efi: mem35: [Loader Code        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000077b16000-0x0000000077bff000) (0MB)
[    0.000000] efi: mem36: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000077bff000-0x000000007823e000) (6MB)
[    0.000000] efi: mem37: [Boot Code          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007823e000-0x0000000078bff000) (9MB)
[    0.000000] efi: mem38: [Runtime Data       |RUN|  |  |  |   |WB|WT|WC|UC] range=[0x0000000078bff000-0x00000000790ff000) (5MB)
[    0.000000] efi: mem39: [Runtime Code       |RUN|  |  |  |   |WB|WT|WC|UC] range=[0x00000000790ff000-0x00000000798ff000) (8MB)
[    0.000000] efi: mem40: [Reserved           |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000798ff000-0x00000000799ff000) (1MB)
[    0.000000] efi: mem41: [ACPI Memory NVS    |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000799ff000-0x000000007bdff000) (36MB)
[    0.000000] efi: mem42: [ACPI Reclaim Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007bdff000-0x000000007bfff000) (2MB)
[    0.000000] efi: mem43: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007bfff000-0x000000007c000000) (0MB)
[    0.000000] efi: mem44: [ACPI Memory NVS    |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000100000000-0x0000000100001000) (0MB)
[    0.000000] efi: mem45: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000100001000-0x0000002080000000) (129023MB)
[    0.000000] efi: mem46: [ACPI Memory NVS    |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000004000000000-0x0000004000001000) (0MB)
[    0.000000] efi: mem47: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000004000001000-0x000000a000000000) (393215MB)
[    0.000000] efi: mem48: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x0000000080000000-0x0000000090000000) (256MB)
[    0.000000] efi: mem49: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem50: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000000ff000000-0x00000000ff200000) (2MB)
[    0.000000] efi: mem51: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fdfe0000000-0x00000fe000000000) (512MB)
[    0.000000] efi: mem52: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe060000000-0x00000fe080000000) (512MB)
[    0.000000] efi: mem53: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe0e0000000-0x00000fe100000000) (512MB)
[    0.000000] efi: mem54: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe160000000-0x00000fe180000000) (512MB)
[    0.000000] efi: mem55: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe1e0000000-0x00000fe200000000) (512MB)
[    0.000000] efi: mem56: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe260000000-0x00000fe280000000) (512MB)
[    0.000000] efi: mem57: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe2e0000000-0x00000fe300000000) (512MB)
[    0.000000] efi: mem58: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe360000000-0x00000fe380000000) (512MB)
[    0.000000] efi: mem59: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe3e0000000-0x00000fe400000000) (512MB)
[    0.000000] efi: mem60: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe460000000-0x00000fe480000000) (512MB)
[    0.000000] efi: mem61: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe4e0000000-0x00000fe500000000) (512MB)
[    0.000000] efi: mem62: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe560000000-0x00000fe580000000) (512MB)
[    0.000000] efi: mem63: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe5e0000000-0x00000fe600000000) (512MB)
[    0.000000] efi: mem64: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe660000000-0x00000fe680000000) (512MB)
[    0.000000] efi: mem65: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe6e0000000-0x00000fe700000000) (512MB)
[    0.000000] efi: mem66: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe760000000-0x00000fe780000000) (512MB)
[    0.000000] efi: mem67: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe7e0000000-0x00000fe800000000) (512MB)
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: HP Superdome2 16s x86, BIOS Bundle: 005.073.000 SFW: 015.082.000 08/08/2014
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] AGP: No AGP bridge found
[    0.000000] e820: last_pfn = 0xa000000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: write-back
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-DFFFF write-protect
[    0.000000]   E0000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000080000000 mask 3FFF80000000 uncachable
[    0.000000]   1 base 0F0000000000 mask 3F8000000000 uncachable
[    0.000000]   2 base 0F8000000000 mask 3FC000000000 uncachable
[    0.000000]   3 base 0FC000000000 mask 3FE000000000 uncachable
[    0.000000]   4 base 0FE000000000 mask 3FF000000000 uncachable
[    0.000000]   5 base 0000FF000000 mask 3FFFFFE00000 uncachable
[    0.000000]   6 base 0FDF80000000 mask 3FFF80000000 uncachable
[    0.000000]   7 base 0FE000000000 mask 3FF800000000 uncachable
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] PAT configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- UC  
[    0.000000] x2apic: enabled by BIOS, switching to x2apic ops
[    0.000000] e820: last_pfn = 0x7c000 max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01fa1000, 0x01fa1fff] PGTABLE
[    0.000000] BRK [0x01fa2000, 0x01fa2fff] PGTABLE
[    0.000000] BRK [0x01fa3000, 0x01fa3fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x9fffe00000-0x9fffffffff]
[    0.000000]  [mem 0x9fffe00000-0x9fffffffff] page 1G
[    0.000000] BRK [0x01fa4000, 0x01fa4fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x9fe0000000-0x9fffdfffff]
[    0.000000]  [mem 0x9fe0000000-0x9fffdfffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x8000000000-0x9fdfffffff]
[    0.000000]  [mem 0x8000000000-0x9fdfffffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x00100000-0x78bfefff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x789fffff] page 2M
[    0.000000]  [mem 0x78a00000-0x78bfefff] page 4k
[    0.000000] init_memory_mapping: [mem 0x7bfff000-0x7bffffff]
[    0.000000]  [mem 0x7bfff000-0x7bffffff] page 4k
[    0.000000] BRK [0x01fa5000, 0x01fa5fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x100001000-0x207fffffff]
[    0.000000]  [mem 0x100001000-0x1001fffff] page 4k
[    0.000000]  [mem 0x100200000-0x13fffffff] page 2M
[    0.000000]  [mem 0x140000000-0x207fffffff] page 1G
[    0.000000] BRK [0x01fa6000, 0x01fa6fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x4000001000-0x7fffffffff]
[    0.000000]  [mem 0x4000001000-0x40001fffff] page 4k
[    0.000000]  [mem 0x4000200000-0x403fffffff] page 2M
[    0.000000]  [mem 0x4040000000-0x7fffffffff] page 1G
[    0.000000] RAMDISK: [mem 0x3f4b3000-0x3ffe7fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000007BFFE014 000024 (v02 HP    )
[    0.000000] ACPI: XSDT 0x000000007BFFD0E8 0000AC (v01 HP     03010201 00000002 MSFT 01000013)
[    0.000000] ACPI: FACP 0x000000007BFFB000 00010C (v05 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: DSDT 0x000000007BFF1000 0004A8 (v02 HP     CORE     00000002 HPAG 00020000)
[    0.000000] ACPI: FACS 0x000000007AD00000 000040
[    0.000000] ACPI: MCEJ 0x000000007BFFC000 000130 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: HPET 0x000000007BFFA000 000038 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: MCFG 0x000000007BFF9000 00003C (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SLIT 0x000000007BFF8000 00003C (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: APIC 0x000000007BFF7000 000DA8 (v03 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SRAT 0x000000007BFF6000 000C38 (v02 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SPMI 0x000000007BFF5000 000040 (v05 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SPCR 0x000000007BFF4000 000050 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: DBGP 0x000000007BFF3000 000034 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: RASF 0x000000007BFF2000 000030 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SSDT 0x000000007BFD7000 019FB9 (v02 HP     BLADE000 00000002 HPAG 00020000)
[    0.000000] ACPI: SSDT 0x000000007BFBD000 0196F0 (v02 HP     BLADE001 00000002 HPAG 00020000)
[    0.000000] ACPI: DMAR 0x000000007BFBB000 000368 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: HEST 0x000000007BFBA000 000184 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: BERT 0x000000007BFB9000 000030 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: EINJ 0x000000007BFB8000 000150 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] System requires x2apic physical mode
[    0.000000] Setting APIC routing to physical x2apic.
[    0.000000] SRAT: PXM 0 -> APIC 0x0000 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0001 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0002 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0003 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0004 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0005 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0006 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0007 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0008 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0009 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000b -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000d -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000f -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0010 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0011 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0012 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0013 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0014 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0015 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0016 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0017 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0018 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0019 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x001a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x001b -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x001c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x001d -> Node 0
[    0.000000] SRAT: PXM 1 -> APIC 0x0020 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0021 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0022 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0023 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0024 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0025 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0026 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0027 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0028 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0029 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002a -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002b -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002c -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002d -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002e -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002f -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0030 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0031 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0032 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0033 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0034 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0035 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0036 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0037 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0038 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0039 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x003a -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x003b -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x003c -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x003d -> Node 1
[    0.000000] SRAT: PXM 2 -> APIC 0x0040 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0041 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0042 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0043 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0044 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0045 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0046 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0047 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0048 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0049 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004a -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004b -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004c -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004d -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004e -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004f -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0050 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0051 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0052 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0053 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0054 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0055 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0056 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0057 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0058 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0059 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x005a -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x005b -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x005c -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x005d -> Node 2
[    0.000000] SRAT: PXM 3 -> APIC 0x0060 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0061 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0062 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0063 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0064 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0065 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0066 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0067 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0068 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0069 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006a -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006b -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006c -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006d -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006e -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006f -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0070 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0071 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0072 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0073 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0074 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0075 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0076 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0077 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0078 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0079 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x007a -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x007b -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x007c -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x007d -> Node 3
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.000000] SRAT: Node 1 PXM 1 [mem 0x4000000000-0x5fffffffff]
[    0.000000] SRAT: Node 2 PXM 2 [mem 0x6000000000-0x7fffffffff]
[    0.000000] SRAT: Node 3 PXM 3 [mem 0x8000000000-0x9fffffffff]
[    0.000000] NUMA: Initialized distance table, cnt=4
[    0.000000] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00000000-0x207fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x207ffda000-0x207fffffff]
[    0.000000] NODE_DATA(1) allocated [mem 0x5ffffda000-0x5fffffffff]
[    0.000000] NODE_DATA(2) allocated [mem 0x7ffffda000-0x7fffffffff]
[    0.000000] NODE_DATA(3) allocated [mem 0x9ffffd4000-0x9fffff9fff]
[    0.000000] Reserving 512MB of memory at 384MB for crashkernel (System RAM: 524171MB)
[    0.000000]  [ffffea0000000000-ffffea0081ffffff] PMD -> [ffff881fffe00000-ffff88207fdfffff] on node 0
[    0.000000]  [ffffea0100000000-ffffea017fffffff] PMD -> [ffff885f7fe00000-ffff885fffdfffff] on node 1
[    0.000000]  [ffffea0180000000-ffffea01ffffffff] PMD -> [ffff887f7fe00000-ffff887fffdfffff] on node 2
[    0.000000]  [ffffea0200000000-ffffea027fffffff] PMD -> [ffff889f7f600000-ffff889fff5fffff] on node 3
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x0000009fffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008dfff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000078bfefff]
[    0.000000]   node   0: [mem 0x000000007bfff000-0x000000007bffffff]
[    0.000000]   node   0: [mem 0x0000000100001000-0x000000207fffffff]
[    0.000000]   node   1: [mem 0x0000004000001000-0x0000005fffffffff]
[    0.000000]   node   2: [mem 0x0000006000000000-0x0000007fffffffff]
[    0.000000]   node   3: [mem 0x0000008000000000-0x0000009fffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fffffff]
[    0.000000] On node 0 totalpages: 33524636
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 22 pages reserved
[    0.000000]   DMA zone: 3997 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 7664 pages used for memmap
[    0.000000]   DMA32 zone: 490496 pages, LIFO batch:31
[    0.000000]   Normal zone: 516096 pages used for memmap
[    0.000000]   Normal zone: 33030143 pages, LIFO batch:31
[    0.000000] Initmem setup node 1 [mem 0x0000004000001000-0x0000005fffffffff]
[    0.000000] On node 1 totalpages: 33554431
[    0.000000]   Normal zone: 524288 pages used for memmap
[    0.000000]   Normal zone: 33554431 pages, LIFO batch:31
[    0.000000] Initmem setup node 2 [mem 0x0000006000000000-0x0000007fffffffff]
[    0.000000] On node 2 totalpages: 33554432
[    0.000000]   Normal zone: 524288 pages used for memmap
[    0.000000]   Normal zone: 33554432 pages, LIFO batch:31
[    0.000000] Initmem setup node 3 [mem 0x0000008000000000-0x0000009fffffffff]
[    0.000000] On node 3 totalpages: 33554432
[    0.000000]   Normal zone: 524288 pages used for memmap
[    0.000000]   Normal zone: 33554432 pages, LIFO batch:31
[    0.000000] tboot: non-0 tboot_addr but it is not of type E820_RESERVED
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] System requires x2apic physical mode
[    0.000000] ACPI: X2APIC (apic_id[0x00] uid[0x00] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x02] uid[0x02] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x04] uid[0x04] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x06] uid[0x06] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x08] uid[0x08] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0a] uid[0x0a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0c] uid[0x0c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0e] uid[0x0e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x10] uid[0x10] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x12] uid[0x12] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x14] uid[0x14] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x16] uid[0x16] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x18] uid[0x18] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x1a] uid[0x1a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x1c] uid[0x1c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x20] uid[0x24] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x22] uid[0x26] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x24] uid[0x28] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x26] uid[0x2a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x28] uid[0x2c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2a] uid[0x2e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2c] uid[0x30] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2e] uid[0x32] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x30] uid[0x34] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x32] uid[0x36] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x34] uid[0x38] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x36] uid[0x3a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x38] uid[0x3c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x3a] uid[0x3e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x3c] uid[0x40] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x40] uid[0x48] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x42] uid[0x4a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x44] uid[0x4c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x46] uid[0x4e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x48] uid[0x50] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4a] uid[0x52] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4c] uid[0x54] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4e] uid[0x56] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x50] uid[0x58] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x52] uid[0x5a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x54] uid[0x5c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x56] uid[0x5e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x58] uid[0x60] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x5a] uid[0x62] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x5c] uid[0x64] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x60] uid[0x6c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x62] uid[0x6e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x64] uid[0x70] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x66] uid[0x72] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x68] uid[0x74] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6a] uid[0x76] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6c] uid[0x78] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6e] uid[0x7a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x70] uid[0x7c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x72] uid[0x7e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x74] uid[0x80] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x76] uid[0x82] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x78] uid[0x84] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x7a] uid[0x86] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x7c] uid[0x88] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x01] uid[0x01] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x03] uid[0x03] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x05] uid[0x05] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x07] uid[0x07] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x09] uid[0x09] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0b] uid[0x0b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0d] uid[0x0d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0f] uid[0x0f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x11] uid[0x11] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x13] uid[0x13] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x15] uid[0x15] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x17] uid[0x17] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x19] uid[0x19] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x1b] uid[0x1b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x1d] uid[0x1d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x21] uid[0x25] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x23] uid[0x27] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x25] uid[0x29] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x27] uid[0x2b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x29] uid[0x2d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2b] uid[0x2f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2d] uid[0x31] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2f] uid[0x33] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x31] uid[0x35] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x33] uid[0x37] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x35] uid[0x39] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x37] uid[0x3b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x39] uid[0x3d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x3b] uid[0x3f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x3d] uid[0x41] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x41] uid[0x49] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x43] uid[0x4b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x45] uid[0x4d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x47] uid[0x4f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x49] uid[0x51] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4b] uid[0x53] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4d] uid[0x55] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4f] uid[0x57] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x51] uid[0x59] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x53] uid[0x5b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x55] uid[0x5d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x57] uid[0x5f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x59] uid[0x61] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x5b] uid[0x63] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x5d] uid[0x65] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x61] uid[0x6d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x63] uid[0x6f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x65] uid[0x71] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x67] uid[0x73] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x69] uid[0x75] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6b] uid[0x77] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6d] uid[0x79] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6f] uid[0x7b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x71] uid[0x7d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x73] uid[0x7f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x75] uid[0x81] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x77] uid[0x83] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x79] uid[0x85] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x7b] uid[0x87] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x7d] uid[0x89] enabled)
[    0.000000] ACPI: X2APIC_NMI (uid[0x00] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x01] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x02] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x03] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x04] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x05] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x06] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x07] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x08] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x09] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x10] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x11] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x12] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x13] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x14] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x15] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x16] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x17] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x18] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x19] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x24] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x25] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x26] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x27] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x28] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x29] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x30] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x31] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x32] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x33] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x34] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x35] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x36] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x37] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x38] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x39] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x40] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x41] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x48] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x49] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x50] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x51] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x52] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x53] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x54] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x55] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x56] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x57] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x58] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x59] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x60] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x61] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x62] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x63] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x64] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x65] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x70] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x71] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x72] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x73] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x74] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x75] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x76] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x77] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x78] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x79] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x80] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x81] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x82] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x83] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x84] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x85] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x86] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x87] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x88] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x89] high level lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x09] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec04000] gsi_base[48])
[    0.000000] IOAPIC[2]: apic_id 10, version 32, address 0xfec04000, GSI 48-71
[    0.000000] ACPI: IOAPIC (id[0x0b] address[0xfec08000] gsi_base[72])
[    0.000000] IOAPIC[3]: apic_id 11, version 32, address 0xfec08000, GSI 72-95
[    0.000000] ACPI: IOAPIC (id[0x0c] address[0xfec09000] gsi_base[96])
[    0.000000] IOAPIC[4]: apic_id 12, version 32, address 0xfec09000, GSI 96-119
[    0.000000] ACPI: IOAPIC (id[0x0d] address[0xfec0c000] gsi_base[120])
[    0.000000] IOAPIC[5]: apic_id 13, version 32, address 0xfec0c000, GSI 120-143
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[    0.000000] smpboot: Allowing 120 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008e000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x77755000-0x77755fff]
[    0.000000] PM: Registered nosave memory: [mem 0x77786000-0x77786fff]
[    0.000000] PM: Registered nosave memory: [mem 0x77787000-0x77787fff]
[    0.000000] PM: Registered nosave memory: [mem 0x777fd000-0x777fdfff]
[    0.000000] PM: Registered nosave memory: [mem 0x78bff000-0x799fefff]
[    0.000000] PM: Registered nosave memory: [mem 0x799ff000-0x7bdfefff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bdff000-0x7bffefff]
[    0.000000] PM: Registered nosave memory: [mem 0x7c000000-0x7fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x80000000-0x8fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x90000000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xff1fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff200000-0xffffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x100000000-0x100000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x2080000000-0x3fffffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x4000000000-0x4000000fff]
[    0.000000] e820: [mem 0x90000000-0xfed1bfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:120 nr_cpu_ids:120 nr_node_ids:4
[    0.000000] PERCPU: Embedded 32 pages/cpu @ffff881fffa00000 s91544 r8192 d31336 u131072
[    0.000000] pcpu-alloc: s91544 r8192 d31336 u131072 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 000 001 002 003 004 005 006 007 008 009 010 011 012 013 014 060 
[    0.000000] pcpu-alloc: [0] 061 062 063 064 065 066 067 068 069 070 071 072 073 074 --- --- 
[    0.000000] pcpu-alloc: [1] 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 075 
[    0.000000] pcpu-alloc: [1] 076 077 078 079 080 081 082 083 084 085 086 087 088 089 --- --- 
[    0.000000] pcpu-alloc: [2] 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 090 
[    0.000000] pcpu-alloc: [2] 091 092 093 094 095 096 097 098 099 100 101 102 103 104 --- --- 
[    0.000000] pcpu-alloc: [3] 045 046 047 048 049 050 051 052 053 054 055 056 057 058 059 105 
[    0.000000] pcpu-alloc: [3] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 --- --- 
[    0.000000] Built 4 zonelists in Node order, mobility grouping on.  Total pages: 132091221
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us crashkernel=512M vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on
[    0.000000] Intel-IOMMU: enabled
[    0.000000] log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] log_buf_len total cpu_extra contributions: 487424 bytes
[    0.000000] log_buf_len min size: 524288 bytes
[    0.000000] log_buf_len: 1048576 bytes
[    0.000000] early log buf free: 472608(90%)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[    0.000000] AGP: Checking aperture...
[    0.000000] AGP: No AGP bridge found
[    0.000000] Memory: 527618408K/536751724K available (6899K kernel code, 1427K rwdata, 3228K rodata, 1704K init, 2688K bss, 9133316K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=120, Nodes=4
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=120.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=120
[    0.000000] NR_IRQS:524544 nr_irqs:3424 16
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-119.
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [ttyS0] enabled
[    0.000000] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2793.819 MHz processor
[    0.000164] Calibrating delay loop (skipped), value calculated using timer frequency.. 5587.63 BogoMIPS (lpj=2793819)
[    0.012102] pid_max: default: 122880 minimum: 960
[    0.017404] ACPI: Core revision 20150204
[    0.032570] ACPI: All ACPI Tables successfully acquired
[    0.040156] Security Framework initialized
[    0.044803] SELinux:  Initializing.
[    0.048752] SELinux:  Starting in permissive mode
[    0.087385] Dentry cache hash table entries: 67108864 (order: 17, 536870912 bytes)
[    0.304007] Inode-cache hash table entries: 33554432 (order: 16, 268435456 bytes)
[    0.404609] Mount-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.413456] Mountpoint-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.428585] Initializing cgroup subsys blkio
[    0.433429] Initializing cgroup subsys memory
[    0.438423] Initializing cgroup subsys devices
[    0.443417] Initializing cgroup subsys freezer
[    0.448412] Initializing cgroup subsys net_cls
[    0.453419] Initializing cgroup subsys perf_event
[    0.458793] Initializing cgroup subsys hugetlb
[    0.464032] CPU: Physical Processor ID: 0
[    0.468538] CPU: Processor Core ID: 0
[    0.473527] mce: CPU supports 32 MCE banks
[    0.478203] CPU0: Thermal monitoring enabled (TM1)
[    0.483632] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.489794] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    0.496876] Freeing SMP alternatives memory: 28K (ffffffff81cf7000 - ffffffff81cfe000)
[    0.510186] ftrace: allocating 25687 entries in 101 pages
[    0.529790] dmar: Host address width 44
[    0.534104] dmar: DRHD base: 0x00000093ff8000 flags: 0x0
[    0.540095] dmar: IOMMU 0: reg_base_addr 93ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.549188] dmar: DRHD base: 0x00000097ff8000 flags: 0x0
[    0.555163] dmar: IOMMU 1: reg_base_addr 97ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.564252] dmar: DRHD base: 0x0000009bff8000 flags: 0x0
[    0.570234] dmar: IOMMU 2: reg_base_addr 9bff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.579330] dmar: DRHD base: 0x0000009fff8000 flags: 0x0
[    0.585304] dmar: IOMMU 3: reg_base_addr 9fff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.594395] dmar: RMRR base: 0x00000079911000 end: 0x00000079913fff
[    0.601438] dmar: RMRR base: 0x0000007990e000 end: 0x00000079910fff
[    0.608481] dmar: ATSR flags: 0x0
[    0.612208] dmar: ATSR flags: 0x0
[    0.615934] dmar: ATSR flags: 0x0
[    0.619659] dmar: ATSR flags: 0x0
[    0.623383] dmar: RHSA base: 0x00000093ff8000 proximity domain: 0x0
[    0.630426] dmar: RHSA base: 0x00000097ff8000 proximity domain: 0x1
[    0.637467] dmar: RHSA base: 0x0000009bff8000 proximity domain: 0x2
[    0.644507] dmar: RHSA base: 0x0000009fff8000 proximity domain: 0x3
[    0.651551] IOAPIC id 13 under DRHD base  0x9fff8000 IOMMU 3
[    0.657909] IOAPIC id 11 under DRHD base  0x9bff8000 IOMMU 2
[    0.664268] IOAPIC id 12 under DRHD base  0x9bff8000 IOMMU 2
[    0.670626] IOAPIC id 10 under DRHD base  0x97ff8000 IOMMU 1
[    0.676986] IOAPIC id 8 under DRHD base  0x93ff8000 IOMMU 0
[    0.683249] IOAPIC id 9 under DRHD base  0x93ff8000 IOMMU 0
[    0.689512] HPET id 0 under DRHD base 0x93ff8000
[    0.698379] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.707215] Enabled IRQ remapping in x2apic mode
[    0.712419] System requires x2apic physical mode
[    0.714163] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.730927] TSC deadline timer enabled
[    0.730952] smpboot: CPU0: Intel(R) Xeon(R) CPU E7-2890 v2 @ 2.80GHz (fam: 06, model: 3e, stepping: 07)
[    0.741559] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
[    0.753143] ... version:                3
[    0.757642] ... bit width:              48
[    0.762236] ... generic registers:      4
[    0.766735] ... value mask:             0000ffffffffffff
[    0.772696] ... max period:             0000ffffffffffff
[    0.778656] ... fixed-purpose events:   3
[    0.783152] ... event mask:             000000070000000f
[    0.792461] x86: Booting SMP configuration:
[    0.797159] .... node  #0, CPUs:          #1
[    0.827714] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.837122]    #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14
[    1.037843] .... node  #1, CPUs:    #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29
[    1.376996] .... node  #2, CPUs:    #30  #31  #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44
[    1.717647] .... node  #3, CPUs:    #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59
[    2.058125] .... node  #0, CPUs:    #60  #61  #62  #63  #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74
[    2.291256] .... node  #1, CPUs:    #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89
[    2.559283] .... node  #2, CPUs:    #90  #91  #92  #93  #94  #95  #96  #97  #98  #99 #100 #101 #102 #103 #104
[    2.828440] .... node  #3, CPUs:   #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119
[    3.097277] x86: Booted up 4 nodes, 120 CPUs
[    3.102294] smpboot: Total of 120 processors activated (671389.98 BogoMIPS)
[    3.661767] devtmpfs: initialized
[    3.665566] Using 2GB memory block size for large-memory system
[    3.676425] evm: security.selinux
[    3.680146] evm: security.ima
[    3.683477] evm: security.capability
[    3.687659] PM: Registering ACPI NVS region [mem 0x799ff000-0x7bdfefff] (37748736 bytes)
[    3.697231] PM: Registering ACPI NVS region [mem 0x100000000-0x100000fff] (4096 bytes)
[    3.706124] PM: Registering ACPI NVS region [mem 0x4000000000-0x4000000fff] (4096 bytes)
[    3.717159] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    3.726459] NET: Registered protocol family 16
[    3.736709] cpuidle: using governor menu
[    3.741258] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    3.749760] ACPI: bus type PCI registered
[    3.754262] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    3.761690] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0x80000000-0x83ffffff] (base 0x80000000)
[    3.772145] PCI: MMCONFIG at [mem 0x80000000-0x83ffffff] reserved in E820
[    3.779869] PCI: Using configuration type 1 for base access
[    3.796823] ACPI: Added _OSI(Module Device)
[    3.801521] ACPI: Added _OSI(Processor Device)
[    3.806509] ACPI: Added _OSI(3.0 _SCP Extensions)
[    3.811790] ACPI: Added _OSI(Processor Aggregator Device)
[    3.840014] ACPI: Interpreter enabled
[    3.844129] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
[    3.854508] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
[    3.864887] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20150204/hwxface-580)
[    3.875264] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20150204/hwxface-580)
[    3.885642] ACPI: (supports S0 S5)
[    3.889460] ACPI: Using IOAPIC for interrupt routing
[    3.895095] HEST: Table parsing has been initialized.
[    3.900769] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    3.923282] ACPI: PCI Root Bridge [IO00] (domain 0000 [bus 00-0f])
[    3.930227] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    3.939453] acpi PNP0A08:00: PCIe AER handled by firmware
[    3.945582] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    3.954258] PCI host bridge to bus 0000:00
[    3.958859] pci_bus 0000:00: root bus resource [bus 00-0f]
[    3.965020] pci_bus 0000:00: root bus resource [io  0x1000-0x3fff window]
[    3.972645] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    3.980268] pci_bus 0000:00: root bus resource [mem 0x90000000-0x93efffff window]
[    3.988674] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    3.997080] pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfedfffff window]
[    4.005483] pci_bus 0000:00: root bus resource [mem 0xfc000000000-0xfc07fffffff window]
[    4.014472] pci_bus 0000:00: root bus resource [mem 0xfe200000000-0xfe27fffffff window]
[    4.023472] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[    4.023552] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    4.023636] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[    4.023728] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    4.023806] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[    4.023897] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    4.023974] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[    4.024067] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    4.024138] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000
[    4.024156] pci 0000:00:04.0: reg 0x10: [mem 0xfc07ff1c000-0xfc07ff1ffff 64bit]
[    4.024291] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000
[    4.024308] pci 0000:00:04.1: reg 0x10: [mem 0xfc07ff18000-0xfc07ff1bfff 64bit]
[    4.024435] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000
[    4.024451] pci 0000:00:04.2: reg 0x10: [mem 0xfc07ff14000-0xfc07ff17fff 64bit]
[    4.024583] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000
[    4.024600] pci 0000:00:04.3: reg 0x10: [mem 0xfc07ff10000-0xfc07ff13fff 64bit]
[    4.024724] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000
[    4.024741] pci 0000:00:04.4: reg 0x10: [mem 0xfc07ff0c000-0xfc07ff0ffff 64bit]
[    4.024866] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000
[    4.024883] pci 0000:00:04.5: reg 0x10: [mem 0xfc07ff08000-0xfc07ff0bfff 64bit]
[    4.025011] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000
[    4.025029] pci 0000:00:04.6: reg 0x10: [mem 0xfc07ff04000-0xfc07ff07fff 64bit]
[    4.025152] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000
[    4.025169] pci 0000:00:04.7: reg 0x10: [mem 0xfc07ff00000-0xfc07ff03fff 64bit]
[    4.025300] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[    4.025409] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    4.025489] pci 0000:00:1c.0: [8086:1d1e] type 01 class 0x060400
[    4.025584] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    4.025610] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    4.030891] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    4.038481] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[    4.038505] pci 0000:00:1d.0: reg 0x10: [mem 0x90400000-0x904003ff]
[    4.038609] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    4.038669] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[    4.038933] pci 0000:01:00.0: [8086:10f8] type 00 class 0x020000
[    4.038944] pci 0000:01:00.0: reg 0x10: [mem 0x90200000-0x902fffff]
[    4.038958] pci 0000:01:00.0: reg 0x18: [io  0x0000-0x001f]
[    4.038965] pci 0000:01:00.0: reg 0x1c: [mem 0x90304000-0x90307fff]
[    4.038983] pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0007ffff pref]
[    4.039029] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    4.039060] pci 0000:01:00.0: reg 0x184: [mem 0xfc07fb00000-0xfc07fb03fff 64bit pref]
[    4.039074] pci 0000:01:00.0: reg 0x190: [mem 0xfc07fa00000-0xfc07fa03fff 64bit pref]
[    4.039138] pci 0000:01:00.1: [8086:10f8] type 00 class 0x020000
[    4.039148] pci 0000:01:00.1: reg 0x10: [mem 0x90100000-0x901fffff]
[    4.039161] pci 0000:01:00.1: reg 0x18: [io  0x0000-0x001f]
[    4.039169] pci 0000:01:00.1: reg 0x1c: [mem 0x90300000-0x90303fff]
[    4.039187] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.039232] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    4.039259] pci 0000:01:00.1: reg 0x184: [mem 0xfc07f900000-0xfc07f903fff 64bit pref]
[    4.039273] pci 0000:01:00.1: reg 0x190: [mem 0xfc07f800000-0xfc07f803fff 64bit pref]
[    4.040483] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[    4.046355] pci 0000:00:02.0:   bridge window [mem 0x90100000-0x903fffff]
[    4.046360] pci 0000:00:02.0:   bridge window [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[    4.046466] pci 0000:03:00.0: [1077:2031] type 00 class 0x0c0400
[    4.046481] pci 0000:03:00.0: reg 0x10: [mem 0xfc07fe0a000-0xfc07fe0bfff 64bit pref]
[    4.046492] pci 0000:03:00.0: reg 0x18: [mem 0xfc07fe04000-0xfc07fe07fff 64bit pref]
[    4.046503] pci 0000:03:00.0: reg 0x20: [mem 0xfc07fd00000-0xfc07fdfffff 64bit pref]
[    4.046511] pci 0000:03:00.0: reg 0x30: [mem 0x00000000-0x0003ffff pref]
[    4.046556] pci 0000:03:00.0: PME# supported from D3cold
[    4.046629] pci 0000:03:00.1: [1077:2031] type 00 class 0x0c0400
[    4.046643] pci 0000:03:00.1: reg 0x10: [mem 0xfc07fe08000-0xfc07fe09fff 64bit pref]
[    4.046654] pci 0000:03:00.1: reg 0x18: [mem 0xfc07fe00000-0xfc07fe03fff 64bit pref]
[    4.046666] pci 0000:03:00.1: reg 0x20: [mem 0xfc07fc00000-0xfc07fcfffff 64bit pref]
[    4.046674] pci 0000:03:00.1: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
[    4.046717] pci 0000:03:00.1: PME# supported from D3cold
[    4.048385] pci 0000:00:02.2: PCI bridge to [bus 03]
[    4.053971] pci 0000:00:02.2:   bridge window [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[    4.054067] pci 0000:00:03.0: PCI bridge to [bus 04]
[    4.059719] pci 0000:00:11.0: PCI bridge to [bus 05]
[    4.065385] pci 0000:06:00.0: [103c:3306] type 00 class 0x088000
[    4.065412] pci 0000:06:00.0: reg 0x10: [io  0x1400-0x14ff]
[    4.065429] pci 0000:06:00.0: reg 0x14: [mem 0x93a8c000-0x93a8c1ff]
[    4.065445] pci 0000:06:00.0: reg 0x18: [io  0x1200-0x12ff]
[    4.065664] pci 0000:06:00.1: [102b:0533] type 00 class 0x030000
[    4.065690] pci 0000:06:00.1: reg 0x10: [mem 0x92000000-0x92ffffff pref]
[    4.065706] pci 0000:06:00.1: reg 0x14: [mem 0x93a88000-0x93a8bfff]
[    4.065723] pci 0000:06:00.1: reg 0x18: [mem 0x93000000-0x937fffff]
[    4.065938] pci 0000:06:00.2: [103c:3307] type 00 class 0x088000
[    4.065964] pci 0000:06:00.2: reg 0x10: [io  0x1000-0x10ff]
[    4.065980] pci 0000:06:00.2: reg 0x14: [mem 0x93a8c400-0x93a8c4ff]
[    4.065997] pci 0000:06:00.2: reg 0x18: [mem 0x93800000-0x938fffff]
[    4.066013] pci 0000:06:00.2: reg 0x1c: [mem 0x93a00000-0x93a7ffff]
[    4.066029] pci 0000:06:00.2: reg 0x20: [mem 0x93a80000-0x93a87fff]
[    4.066045] pci 0000:06:00.2: reg 0x24: [mem 0x93900000-0x939fffff]
[    4.066061] pci 0000:06:00.2: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    4.066145] pci 0000:06:00.2: PME# supported from D0 D3hot D3cold
[    4.066229] pci 0000:06:00.4: [103c:3300] type 00 class 0x0c0300
[    4.066319] pci 0000:06:00.4: reg 0x20: [io  0x1500-0x151f]
[    4.068355] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    4.073933] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    4.073937] pci 0000:00:1c.0:   bridge window [mem 0x92000000-0x93efffff]
[    4.073943] pci 0000:00:1c.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    4.074000] pci_bus 0000:00: on NUMA node 0
[    4.074002] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
[    4.082250] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.091799] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.101348] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.110905] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.120458] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.130007] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.139558] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.149109] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.158651] ACPI: PCI Root Bridge [IO01] (domain 0000 [bus 10-1f])
[    4.165591] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    4.174813] acpi PNP0A08:01: PCIe AER handled by firmware
[    4.180941] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    4.189587] PCI host bridge to bus 0000:10
[    4.194188] pci_bus 0000:10: root bus resource [bus 10-1f]
[    4.200350] pci_bus 0000:10: root bus resource [io  0x4000-0x7fff window]
[    4.207973] pci_bus 0000:10: root bus resource [mem 0x94000000-0x97ff7fff window]
[    4.216379] pci_bus 0000:10: root bus resource [mem 0xfc400000000-0xfc47fffffff window]
[    4.225385] pci 0000:10:02.0: [8086:0e04] type 01 class 0x060400
[    4.225482] pci 0000:10:02.0: PME# supported from D0 D3hot D3cold
[    4.225558] pci 0000:10:02.2: [8086:0e06] type 01 class 0x060400
[    4.225653] pci 0000:10:02.2: PME# supported from D0 D3hot D3cold
[    4.225722] pci 0000:10:03.0: [8086:0e08] type 01 class 0x060400
[    4.225819] pci 0000:10:03.0: PME# supported from D0 D3hot D3cold
[    4.225886] pci 0000:10:04.0: [8086:0e20] type 00 class 0x088000
[    4.225904] pci 0000:10:04.0: reg 0x10: [mem 0xfc47ff1c000-0xfc47ff1ffff 64bit]
[    4.226031] pci 0000:10:04.1: [8086:0e21] type 00 class 0x088000
[    4.226048] pci 0000:10:04.1: reg 0x10: [mem 0xfc47ff18000-0xfc47ff1bfff 64bit]
[    4.226171] pci 0000:10:04.2: [8086:0e22] type 00 class 0x088000
[    4.226189] pci 0000:10:04.2: reg 0x10: [mem 0xfc47ff14000-0xfc47ff17fff 64bit]
[    4.226316] pci 0000:10:04.3: [8086:0e23] type 00 class 0x088000
[    4.226334] pci 0000:10:04.3: reg 0x10: [mem 0xfc47ff10000-0xfc47ff13fff 64bit]
[    4.226464] pci 0000:10:04.4: [8086:0e24] type 00 class 0x088000
[    4.226481] pci 0000:10:04.4: reg 0x10: [mem 0xfc47ff0c000-0xfc47ff0ffff 64bit]
[    4.226605] pci 0000:10:04.5: [8086:0e25] type 00 class 0x088000
[    4.226623] pci 0000:10:04.5: reg 0x10: [mem 0xfc47ff08000-0xfc47ff0bfff 64bit]
[    4.226749] pci 0000:10:04.6: [8086:0e26] type 00 class 0x088000
[    4.226767] pci 0000:10:04.6: reg 0x10: [mem 0xfc47ff04000-0xfc47ff07fff 64bit]
[    4.226891] pci 0000:10:04.7: [8086:0e27] type 00 class 0x088000
[    4.226908] pci 0000:10:04.7: reg 0x10: [mem 0xfc47ff00000-0xfc47ff03fff 64bit]
[    4.227137] pci 0000:10:02.0: PCI bridge to [bus 11]
[    4.232777] pci 0000:10:02.2: PCI bridge to [bus 12]
[    4.238455] pci 0000:10:03.0: PCI bridge to [bus 13]
[    4.244063] pci_bus 0000:10: on NUMA node 1
[    4.244065] acpi PNP0A08:01: Disabling ASPM (FADT indicates it is unsupported)
[    4.253864] ACPI: PCI Root Bridge [IO02] (domain 0000 [bus 20-2f])
[    4.260807] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    4.270030] acpi PNP0A08:02: PCIe AER handled by firmware
[    4.276159] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    4.284822] PCI host bridge to bus 0000:20
[    4.289420] pci_bus 0000:20: root bus resource [bus 20-2f]
[    4.295581] pci_bus 0000:20: root bus resource [io  0x8000-0xbfff window]
[    4.303204] pci_bus 0000:20: root bus resource [mem 0x98000000-0x9befffff window]
[    4.311609] pci_bus 0000:20: root bus resource [mem 0xf0800000000-0xf087fffffff window]
[    4.320610] pci 0000:20:00.0: [8086:0e00] type 00 class 0x060000
[    4.320692] pci 0000:20:00.0: PME# supported from D0 D3hot D3cold
[    4.320768] pci 0000:20:02.0: [8086:0e04] type 01 class 0x060400
[    4.320872] pci 0000:20:02.0: PME# supported from D0 D3hot D3cold
[    4.320949] pci 0000:20:02.2: [8086:0e06] type 01 class 0x060400
[    4.321053] pci 0000:20:02.2: PME# supported from D0 D3hot D3cold
[    4.321136] pci 0000:20:03.0: [8086:0e08] type 01 class 0x060400
[    4.321241] pci 0000:20:03.0: PME# supported from D0 D3hot D3cold
[    4.321315] pci 0000:20:04.0: [8086:0e20] type 00 class 0x088000
[    4.321334] pci 0000:20:04.0: reg 0x10: [mem 0xf087ff1c000-0xf087ff1ffff 64bit]
[    4.321475] pci 0000:20:04.1: [8086:0e21] type 00 class 0x088000
[    4.321494] pci 0000:20:04.1: reg 0x10: [mem 0xf087ff18000-0xf087ff1bfff 64bit]
[    4.321634] pci 0000:20:04.2: [8086:0e22] type 00 class 0x088000
[    4.321653] pci 0000:20:04.2: reg 0x10: [mem 0xf087ff14000-0xf087ff17fff 64bit]
[    4.321795] pci 0000:20:04.3: [8086:0e23] type 00 class 0x088000
[    4.321815] pci 0000:20:04.3: reg 0x10: [mem 0xf087ff10000-0xf087ff13fff 64bit]
[    4.321952] pci 0000:20:04.4: [8086:0e24] type 00 class 0x088000
[    4.321971] pci 0000:20:04.4: reg 0x10: [mem 0xf087ff0c000-0xf087ff0ffff 64bit]
[    4.322106] pci 0000:20:04.5: [8086:0e25] type 00 class 0x088000
[    4.322125] pci 0000:20:04.5: reg 0x10: [mem 0xf087ff08000-0xf087ff0bfff 64bit]
[    4.322260] pci 0000:20:04.6: [8086:0e26] type 00 class 0x088000
[    4.322280] pci 0000:20:04.6: reg 0x10: [mem 0xf087ff04000-0xf087ff07fff 64bit]
[    4.322415] pci 0000:20:04.7: [8086:0e27] type 00 class 0x088000
[    4.322434] pci 0000:20:04.7: reg 0x10: [mem 0xf087ff00000-0xf087ff03fff 64bit]
[    4.322579] pci 0000:20:11.0: [8086:1d3e] type 01 class 0x060400
[    4.322699] pci 0000:20:11.0: PME# supported from D0 D3hot D3cold
[    4.322786] pci 0000:20:1c.0: [8086:1d1e] type 01 class 0x060400
[    4.322890] pci 0000:20:1c.0: PME# supported from D0 D3hot D3cold
[    4.322917] pci 0000:20:1c.0: Enabling MPC IRBNCE
[    4.328201] pci 0000:20:1c.0: Intel PCH root port ACS workaround enabled
[    4.335791] pci 0000:20:1d.0: [8086:1d26] type 00 class 0x0c0320
[    4.335816] pci 0000:20:1d.0: reg 0x10: [mem 0x98300000-0x983003ff]
[    4.335928] pci 0000:20:1d.0: PME# supported from D0 D3hot D3cold
[    4.335991] pci 0000:20:1f.0: [8086:1d41] type 00 class 0x060100
[    4.336274] pci 0000:21:00.0: [8086:10f8] type 00 class 0x020000
[    4.336286] pci 0000:21:00.0: reg 0x10: [mem 0x98100000-0x981fffff]
[    4.336301] pci 0000:21:00.0: reg 0x18: [io  0x0000-0x001f]
[    4.336308] pci 0000:21:00.0: reg 0x1c: [mem 0x98204000-0x98207fff]
[    4.336329] pci 0000:21:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.336380] pci 0000:21:00.0: PME# supported from D0 D3hot D3cold
[    4.336416] pci 0000:21:00.0: reg 0x184: [mem 0xf087fe00000-0xf087fe03fff 64bit pref]
[    4.336430] pci 0000:21:00.0: reg 0x190: [mem 0xf087fd00000-0xf087fd03fff 64bit pref]
[    4.336500] pci 0000:21:00.1: [8086:10f8] type 00 class 0x020000
[    4.336512] pci 0000:21:00.1: reg 0x10: [mem 0x98000000-0x980fffff]
[    4.336526] pci 0000:21:00.1: reg 0x18: [io  0x0000-0x001f]
[    4.336534] pci 0000:21:00.1: reg 0x1c: [mem 0x98200000-0x98203fff]
[    4.336553] pci 0000:21:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.336605] pci 0000:21:00.1: PME# supported from D0 D3hot D3cold
[    4.336635] pci 0000:21:00.1: reg 0x184: [mem 0xf087fc00000-0xf087fc03fff 64bit pref]
[    4.336650] pci 0000:21:00.1: reg 0x190: [mem 0xf087fb00000-0xf087fb03fff 64bit pref]
[    4.337755] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[    4.343628] pci 0000:20:02.0:   bridge window [mem 0x98000000-0x982fffff]
[    4.343634] pci 0000:20:02.0:   bridge window [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[    4.343741] pci 0000:20:02.2: PCI bridge to [bus 23]
[    4.349426] pci 0000:20:03.0: PCI bridge to [bus 24]
[    4.355083] pci 0000:20:11.0: PCI bridge to [bus 25]
[    4.360761] pci 0000:26:00.0: [103c:3306] type 00 class 0x088000
[    4.360788] pci 0000:26:00.0: reg 0x10: [io  0x0000-0x00ff]
[    4.360806] pci 0000:26:00.0: reg 0x14: [mem 0x9bd88000-0x9bd881ff]
[    4.360824] pci 0000:26:00.0: reg 0x18: [io  0x0000-0x00ff]
[    4.361055] pci 0000:26:00.2: [103c:3307] type 00 class 0x088000
[    4.361083] pci 0000:26:00.2: reg 0x10: [io  0x0000-0x00ff]
[    4.361099] pci 0000:26:00.2: reg 0x14: [mem 0x9bd88400-0x9bd884ff]
[    4.361116] pci 0000:26:00.2: reg 0x18: [mem 0x9bb00000-0x9bbfffff]
[    4.361134] pci 0000:26:00.2: reg 0x1c: [mem 0x9bd00000-0x9bd7ffff]
[    4.361152] pci 0000:26:00.2: reg 0x20: [mem 0x9bd80000-0x9bd87fff]
[    4.361168] pci 0000:26:00.2: reg 0x24: [mem 0x9bc00000-0x9bcfffff]
[    4.361185] pci 0000:26:00.2: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    4.361274] pci 0000:26:00.2: PME# supported from D0 D3hot D3cold
[    4.362695] pci 0000:20:1c.0: PCI bridge to [bus 26]
[    4.368292] pci 0000:20:1c.0:   bridge window [mem 0x9bb00000-0x9befffff]
[    4.368299] pci 0000:20:1c.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    4.368350] pci_bus 0000:20: on NUMA node 2
[    4.368351] acpi PNP0A08:02: Disabling ASPM (FADT indicates it is unsupported)
[    4.376526] ACPI: PCI Root Bridge [IO03] (domain 0000 [bus 30-3f])
[    4.383471] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    4.392697] acpi PNP0A08:03: PCIe AER handled by firmware
[    4.398825] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    4.407473] PCI host bridge to bus 0000:30
[    4.412072] pci_bus 0000:30: root bus resource [bus 30-3f]
[    4.418232] pci_bus 0000:30: root bus resource [io  0xc000-0xffff window]
[    4.425856] pci_bus 0000:30: root bus resource [mem 0x9c000000-0x9fff7fff window]
[    4.434259] pci_bus 0000:30: root bus resource [mem 0xf0c00000000-0xf0c7fffffff window]
[    4.443263] pci 0000:30:02.0: [8086:0e04] type 01 class 0x060400
[    4.443369] pci 0000:30:02.0: PME# supported from D0 D3hot D3cold
[    4.443445] pci 0000:30:02.2: [8086:0e06] type 01 class 0x060400
[    4.443547] pci 0000:30:02.2: PME# supported from D0 D3hot D3cold
[    4.443621] pci 0000:30:03.0: [8086:0e08] type 01 class 0x060400
[    4.443726] pci 0000:30:03.0: PME# supported from D0 D3hot D3cold
[    4.443795] pci 0000:30:04.0: [8086:0e20] type 00 class 0x088000
[    4.443814] pci 0000:30:04.0: reg 0x10: [mem 0xf0c7ff1c000-0xf0c7ff1ffff 64bit]
[    4.443949] pci 0000:30:04.1: [8086:0e21] type 00 class 0x088000
[    4.443967] pci 0000:30:04.1: reg 0x10: [mem 0xf0c7ff18000-0xf0c7ff1bfff 64bit]
[    4.444100] pci 0000:30:04.2: [8086:0e22] type 00 class 0x088000
[    4.444119] pci 0000:30:04.2: reg 0x10: [mem 0xf0c7ff14000-0xf0c7ff17fff 64bit]
[    4.444254] pci 0000:30:04.3: [8086:0e23] type 00 class 0x088000
[    4.444273] pci 0000:30:04.3: reg 0x10: [mem 0xf0c7ff10000-0xf0c7ff13fff 64bit]
[    4.444407] pci 0000:30:04.4: [8086:0e24] type 00 class 0x088000
[    4.444427] pci 0000:30:04.4: reg 0x10: [mem 0xf0c7ff0c000-0xf0c7ff0ffff 64bit]
[    4.444557] pci 0000:30:04.5: [8086:0e25] type 00 class 0x088000
[    4.444576] pci 0000:30:04.5: reg 0x10: [mem 0xf0c7ff08000-0xf0c7ff0bfff 64bit]
[    4.444708] pci 0000:30:04.6: [8086:0e26] type 00 class 0x088000
[    4.444726] pci 0000:30:04.6: reg 0x10: [mem 0xf0c7ff04000-0xf0c7ff07fff 64bit]
[    4.444856] pci 0000:30:04.7: [8086:0e27] type 00 class 0x088000
[    4.444875] pci 0000:30:04.7: reg 0x10: [mem 0xf0c7ff00000-0xf0c7ff03fff 64bit]
[    4.445117] pci 0000:30:02.0: PCI bridge to [bus 31]
[    4.450763] pci 0000:30:02.2: PCI bridge to [bus 32]
[    4.456450] pci 0000:30:03.0: PCI bridge to [bus 33]
[    4.462059] pci_bus 0000:30: on NUMA node 3
[    4.462060] acpi PNP0A08:03: Disabling ASPM (FADT indicates it is unsupported)
[    4.470231] ACPI: Enabled 1 GPEs in block 80 to FF
[    4.475943] vgaarb: setting as boot device: PCI:0000:06:00.1
[    4.482310] vgaarb: device added: PCI:0000:06:00.1,decodes=io+mem,owns=io+mem,locks=none
[    4.491443] vgaarb: loaded
[    4.494481] vgaarb: bridge control possible 0000:06:00.1
[    4.500811] SCSI subsystem initialized
[    4.505074] ACPI: bus type USB registered
[    4.509613] usbcore: registered new interface driver usbfs
[    4.515782] usbcore: registered new interface driver hub
[    4.522745] usbcore: registered new device driver usb
[    4.530014] PCI: Using ACPI for IRQ routing
[    4.535053] PCI: Discovered peer bus 0f
[    4.539361] PCI: root bus 0f: using default resources
[    4.539364] PCI: Probing PCI hardware (bus 0f)
[    4.539424] PCI host bridge to bus 0000:0f
[    4.544073] pci_bus 0000:0f: root bus resource [io  0x0000-0xffff]
[    4.551027] pci_bus 0000:0f: root bus resource [mem 0x00000000-0x3fffffffffff]
[    4.559136] pci_bus 0000:0f: No busn resource found for root bus, will use [bus 0f-ff]
[    4.568031] pci_bus 0000:0f: busn_res: can not insert [bus 0f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-0f])
[    4.568053] pci 0000:0f:08.0: [8086:0e80] type 00 class 0x088000
[    4.568204] pci 0000:0f:08.2: [8086:0e32] type 00 class 0x110100
[    4.568278] pci 0000:0f:09.0: [8086:0e90] type 00 class 0x088000
[    4.568346] pci 0000:0f:09.2: [8086:0e33] type 00 class 0x110100
[    4.568416] pci 0000:0f:0a.0: [8086:0ec0] type 00 class 0x088000
[    4.568479] pci 0000:0f:0a.1: [8086:0ec1] type 00 class 0x088000
[    4.568548] pci 0000:0f:0a.2: [8086:0ec2] type 00 class 0x088000
[    4.568612] pci 0000:0f:0a.3: [8086:0ec3] type 00 class 0x088000
[    4.568679] pci 0000:0f:0b.0: [8086:0e1e] type 00 class 0x088000
[    4.568745] pci 0000:0f:0b.3: [8086:0e1f] type 00 class 0x088000
[    4.568810] pci 0000:0f:0c.0: [8086:0ee0] type 00 class 0x088000
[    4.568885] pci 0000:0f:0c.1: [8086:0ee2] type 00 class 0x088000
[    4.568947] pci 0000:0f:0c.2: [8086:0ee4] type 00 class 0x088000
[    4.569012] pci 0000:0f:0c.3: [8086:0ee6] type 00 class 0x088000
[    4.569084] pci 0000:0f:0c.4: [8086:0ee8] type 00 class 0x088000
[    4.569148] pci 0000:0f:0c.5: [8086:0eea] type 00 class 0x088000
[    4.569211] pci 0000:0f:0c.6: [8086:0eec] type 00 class 0x088000
[    4.569274] pci 0000:0f:0c.7: [8086:0eee] type 00 class 0x088000
[    4.569371] pci 0000:0f:0d.0: [8086:0ee1] type 00 class 0x088000
[    4.569433] pci 0000:0f:0d.1: [8086:0ee3] type 00 class 0x088000
[    4.569497] pci 0000:0f:0d.2: [8086:0ee5] type 00 class 0x088000
[    4.569562] pci 0000:0f:0d.3: [8086:0ee7] type 00 class 0x088000
[    4.569626] pci 0000:0f:0d.4: [8086:0ee9] type 00 class 0x088000
[    4.569689] pci 0000:0f:0d.5: [8086:0eeb] type 00 class 0x088000
[    4.569752] pci 0000:0f:0d.6: [8086:0eed] type 00 class 0x088000
[    4.569816] pci 0000:0f:0e.0: [8086:0ea0] type 00 class 0x088000
[    4.569883] pci 0000:0f:0e.1: [8086:0e30] type 00 class 0x110100
[    4.569961] pci 0000:0f:0f.0: [8086:0ea8] type 00 class 0x088000
[    4.570055] pci 0000:0f:0f.1: [8086:0e71] type 00 class 0x088000
[    4.570140] pci 0000:0f:0f.2: [8086:0eaa] type 00 class 0x088000
[    4.570233] pci 0000:0f:0f.3: [8086:0eab] type 00 class 0x088000
[    4.570320] pci 0000:0f:0f.4: [8086:0eac] type 00 class 0x088000
[    4.570406] pci 0000:0f:0f.5: [8086:0ead] type 00 class 0x088000
[    4.570491] pci 0000:0f:10.0: [8086:0eb0] type 00 class 0x088000
[    4.570578] pci 0000:0f:10.1: [8086:0eb1] type 00 class 0x088000
[    4.570665] pci 0000:0f:10.2: [8086:0eb2] type 00 class 0x088000
[    4.570749] pci 0000:0f:10.3: [8086:0eb3] type 00 class 0x088000
[    4.570836] pci 0000:0f:10.4: [8086:0eb4] type 00 class 0x088000
[    4.570926] pci 0000:0f:10.5: [8086:0eb5] type 00 class 0x088000
[    4.571014] pci 0000:0f:10.6: [8086:0eb6] type 00 class 0x088000
[    4.571105] pci 0000:0f:10.7: [8086:0eb7] type 00 class 0x088000
[    4.571193] pci 0000:0f:11.0: [8086:0ef8] type 00 class 0x088000
[    4.571279] pci 0000:0f:11.1: [8086:0ef9] type 00 class 0x088000
[    4.571367] pci 0000:0f:11.2: [8086:0efa] type 00 class 0x088000
[    4.571455] pci 0000:0f:11.4: [8086:0efc] type 00 class 0x088000
[    4.571543] pci 0000:0f:11.5: [8086:0efd] type 00 class 0x088000
[    4.571634] pci 0000:0f:13.0: [8086:0e1d] type 00 class 0x088000
[    4.571699] pci 0000:0f:13.1: [8086:0e34] type 00 class 0x110100
[    4.571766] pci 0000:0f:13.4: [8086:0e81] type 00 class 0x088000
[    4.571835] pci 0000:0f:13.5: [8086:0e36] type 00 class 0x110100
[    4.571900] pci 0000:0f:13.6: [8086:0e37] type 00 class 0x110100
[    4.571969] pci 0000:0f:16.0: [8086:0ec8] type 00 class 0x088000
[    4.572035] pci 0000:0f:16.1: [8086:0ec9] type 00 class 0x088000
[    4.572103] pci 0000:0f:16.2: [8086:0eca] type 00 class 0x088000
[    4.572176] pci 0000:0f:18.0: [8086:0e40] type 00 class 0x088000
[    4.572247] pci 0000:0f:18.2: [8086:0e3a] type 00 class 0x110100
[    4.572332] pci 0000:0f:1c.0: [8086:0e60] type 00 class 0x088000
[    4.572434] pci 0000:0f:1c.1: [8086:0e38] type 00 class 0x110100
[    4.572516] pci 0000:0f:1d.0: [8086:0e68] type 00 class 0x088000
[    4.572611] pci 0000:0f:1d.1: [8086:0e79] type 00 class 0x088000
[    4.572703] pci 0000:0f:1d.2: [8086:0e6a] type 00 class 0x088000
[    4.572792] pci 0000:0f:1d.3: [8086:0e6b] type 00 class 0x088000
[    4.572883] pci 0000:0f:1d.4: [8086:0e6c] type 00 class 0x088000
[    4.572972] pci 0000:0f:1d.5: [8086:0e6d] type 00 class 0x088000
[    4.573064] pci 0000:0f:1e.0: [8086:0ef0] type 00 class 0x088000
[    4.573155] pci 0000:0f:1e.1: [8086:0ef1] type 00 class 0x088000
[    4.573247] pci 0000:0f:1e.2: [8086:0ef2] type 00 class 0x088000
[    4.573337] pci 0000:0f:1e.3: [8086:0ef3] type 00 class 0x088000
[    4.573428] pci 0000:0f:1e.4: [8086:0ef4] type 00 class 0x088000
[    4.573526] pci 0000:0f:1e.5: [8086:0ef5] type 00 class 0x088000
[    4.573617] pci 0000:0f:1e.6: [8086:0ef6] type 00 class 0x088000
[    4.573707] pci 0000:0f:1e.7: [8086:0ef7] type 00 class 0x088000
[    4.573797] pci 0000:0f:1f.0: [8086:0ed8] type 00 class 0x088000
[    4.573888] pci 0000:0f:1f.1: [8086:0ed9] type 00 class 0x088000
[    4.573979] pci 0000:0f:1f.4: [8086:0edc] type 00 class 0x088000
[    4.574067] pci 0000:0f:1f.5: [8086:0edd] type 00 class 0x088000
[    4.574157] pci 0000:0f:1f.6: [8086:0ede] type 00 class 0x088000
[    4.574242] pci 0000:0f:1f.7: [8086:0edf] type 00 class 0x088000
[    4.574332] pci_bus 0000:0f: busn_res: [bus 0f-ff] end is updated to 0f
[    4.574334] pci_bus 0000:0f: busn_res: can not insert [bus 0f] under domain [bus 00-ff] (conflicts with (null) [bus 00-0f])
[    4.574564] PCI: Discovered peer bus 1f
[    4.578866] PCI: root bus 1f: using default resources
[    4.578867] PCI: Probing PCI hardware (bus 1f)
[    4.578891] PCI host bridge to bus 0000:1f
[    4.583490] pci_bus 0000:1f: root bus resource [io  0x0000-0xffff]
[    4.590431] pci_bus 0000:1f: root bus resource [mem 0x00000000-0x3fffffffffff]
[    4.598543] pci_bus 0000:1f: No busn resource found for root bus, will use [bus 1f-ff]
[    4.607436] pci_bus 0000:1f: busn_res: can not insert [bus 1f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 10-1f])
[    4.607447] pci 0000:1f:08.0: [8086:0e80] type 00 class 0x088000
[    4.607522] pci 0000:1f:08.2: [8086:0e32] type 00 class 0x110100
[    4.607590] pci 0000:1f:09.0: [8086:0e90] type 00 class 0x088000
[    4.607663] pci 0000:1f:09.2: [8086:0e33] type 00 class 0x110100
[    4.607735] pci 0000:1f:0a.0: [8086:0ec0] type 00 class 0x088000
[    4.607798] pci 0000:1f:0a.1: [8086:0ec1] type 00 class 0x088000
[    4.607862] pci 0000:1f:0a.2: [8086:0ec2] type 00 class 0x088000
[    4.607928] pci 0000:1f:0a.3: [8086:0ec3] type 00 class 0x088000
[    4.607997] pci 0000:1f:0b.0: [8086:0e1e] type 00 class 0x088000
[    4.608062] pci 0000:1f:0b.3: [8086:0e1f] type 00 class 0x088000
[    4.608122] pci 0000:1f:0c.0: [8086:0ee0] type 00 class 0x088000
[    4.608185] pci 0000:1f:0c.1: [8086:0ee2] type 00 class 0x088000
[    4.608248] pci 0000:1f:0c.2: [8086:0ee4] type 00 class 0x088000
[    4.608317] pci 0000:1f:0c.3: [8086:0ee6] type 00 class 0x088000
[    4.608385] pci 0000:1f:0c.4: [8086:0ee8] type 00 class 0x088000
[    4.608454] pci 0000:1f:0c.5: [8086:0eea] type 00 class 0x088000
[    4.608519] pci 0000:1f:0c.6: [8086:0eec] type 00 class 0x088000
[    4.608582] pci 0000:1f:0c.7: [8086:0eee] type 00 class 0x088000
[    4.608643] pci 0000:1f:0d.0: [8086:0ee1] type 00 class 0x088000
[    4.608709] pci 0000:1f:0d.1: [8086:0ee3] type 00 class 0x088000
[    4.608771] pci 0000:1f:0d.2: [8086:0ee5] type 00 class 0x088000
[    4.608835] pci 0000:1f:0d.3: [8086:0ee7] type 00 class 0x088000
[    4.608898] pci 0000:1f:0d.4: [8086:0ee9] type 00 class 0x088000
[    4.608965] pci 0000:1f:0d.5: [8086:0eeb] type 00 class 0x088000
[    4.609030] pci 0000:1f:0d.6: [8086:0eed] type 00 class 0x088000
[    4.609094] pci 0000:1f:0e.0: [8086:0ea0] type 00 class 0x088000
[    4.609164] pci 0000:1f:0e.1: [8086:0e30] type 00 class 0x110100
[    4.609239] pci 0000:1f:0f.0: [8086:0ea8] type 00 class 0x088000
[    4.609330] pci 0000:1f:0f.1: [8086:0e71] type 00 class 0x088000
[    4.609418] pci 0000:1f:0f.2: [8086:0eaa] type 00 class 0x088000
[    4.609511] pci 0000:1f:0f.3: [8086:0eab] type 00 class 0x088000
[    4.609598] pci 0000:1f:0f.4: [8086:0eac] type 00 class 0x088000
[    4.609688] pci 0000:1f:0f.5: [8086:0ead] type 00 class 0x088000
[    4.609778] pci 0000:1f:10.0: [8086:0eb0] type 00 class 0x088000
[    4.609868] pci 0000:1f:10.1: [8086:0eb1] type 00 class 0x088000
[    4.609957] pci 0000:1f:10.2: [8086:0eb2] type 00 class 0x088000
[    4.610044] pci 0000:1f:10.3: [8086:0eb3] type 00 class 0x088000
[    4.610133] pci 0000:1f:10.4: [8086:0eb4] type 00 class 0x088000
[    4.610220] pci 0000:1f:10.5: [8086:0eb5] type 00 class 0x088000
[    4.610307] pci 0000:1f:10.6: [8086:0eb6] type 00 class 0x088000
[    4.610397] pci 0000:1f:10.7: [8086:0eb7] type 00 class 0x088000
[    4.610487] pci 0000:1f:11.0: [8086:0ef8] type 00 class 0x088000
[    4.610575] pci 0000:1f:11.1: [8086:0ef9] type 00 class 0x088000
[    4.610661] pci 0000:1f:11.2: [8086:0efa] type 00 class 0x088000
[    4.610749] pci 0000:1f:11.4: [8086:0efc] type 00 class 0x088000
[    4.610836] pci 0000:1f:11.5: [8086:0efd] type 00 class 0x088000
[    4.610922] pci 0000:1f:13.0: [8086:0e1d] type 00 class 0x088000
[    4.610988] pci 0000:1f:13.1: [8086:0e34] type 00 class 0x110100
[    4.611058] pci 0000:1f:13.4: [8086:0e81] type 00 class 0x088000
[    4.611123] pci 0000:1f:13.5: [8086:0e36] type 00 class 0x110100
[    4.611192] pci 0000:1f:13.6: [8086:0e37] type 00 class 0x110100
[    4.611263] pci 0000:1f:16.0: [8086:0ec8] type 00 class 0x088000
[    4.611331] pci 0000:1f:16.1: [8086:0ec9] type 00 class 0x088000
[    4.611398] pci 0000:1f:16.2: [8086:0eca] type 00 class 0x088000
[    4.611479] pci 0000:1f:18.0: [8086:0e40] type 00 class 0x088000
[    4.611593] pci 0000:1f:18.2: [8086:0e3a] type 00 class 0x110100
[    4.611687] pci 0000:1f:1c.0: [8086:0e60] type 00 class 0x088000
[    4.611761] pci 0000:1f:1c.1: [8086:0e38] type 00 class 0x110100
[    4.611843] pci 0000:1f:1d.0: [8086:0e68] type 00 class 0x088000
[    4.611934] pci 0000:1f:1d.1: [8086:0e79] type 00 class 0x088000
[    4.612023] pci 0000:1f:1d.2: [8086:0e6a] type 00 class 0x088000
[    4.612110] pci 0000:1f:1d.3: [8086:0e6b] type 00 class 0x088000
[    4.612198] pci 0000:1f:1d.4: [8086:0e6c] type 00 class 0x088000
[    4.612287] pci 0000:1f:1d.5: [8086:0e6d] type 00 class 0x088000
[    4.612381] pci 0000:1f:1e.0: [8086:0ef0] type 00 class 0x088000
[    4.612476] pci 0000:1f:1e.1: [8086:0ef1] type 00 class 0x088000
[    4.612568] pci 0000:1f:1e.2: [8086:0ef2] type 00 class 0x088000
[    4.612663] pci 0000:1f:1e.3: [8086:0ef3] type 00 class 0x088000
[    4.612753] pci 0000:1f:1e.4: [8086:0ef4] type 00 class 0x088000
[    4.612843] pci 0000:1f:1e.5: [8086:0ef5] type 00 class 0x088000
[    4.612934] pci 0000:1f:1e.6: [8086:0ef6] type 00 class 0x088000
[    4.613024] pci 0000:1f:1e.7: [8086:0ef7] type 00 class 0x088000
[    4.613115] pci 0000:1f:1f.0: [8086:0ed8] type 00 class 0x088000
[    4.613204] pci 0000:1f:1f.1: [8086:0ed9] type 00 class 0x088000
[    4.613296] pci 0000:1f:1f.4: [8086:0edc] type 00 class 0x088000
[    4.613383] pci 0000:1f:1f.5: [8086:0edd] type 00 class 0x088000
[    4.613474] pci 0000:1f:1f.6: [8086:0ede] type 00 class 0x088000
[    4.613562] pci 0000:1f:1f.7: [8086:0edf] type 00 class 0x088000
[    4.613648] pci_bus 0000:1f: busn_res: [bus 1f-ff] end is updated to 1f
[    4.613650] pci_bus 0000:1f: busn_res: can not insert [bus 1f] under domain [bus 00-ff] (conflicts with (null) [bus 10-1f])
[    4.613945] PCI: Discovered peer bus 2f
[    4.618249] PCI: root bus 2f: using default resources
[    4.618250] PCI: Probing PCI hardware (bus 2f)
[    4.618271] PCI host bridge to bus 0000:2f
[    4.622871] pci_bus 0000:2f: root bus resource [io  0x0000-0xffff]
[    4.629813] pci_bus 0000:2f: root bus resource [mem 0x00000000-0x3fffffffffff]
[    4.637923] pci_bus 0000:2f: No busn resource found for root bus, will use [bus 2f-ff]
[    4.646817] pci_bus 0000:2f: busn_res: can not insert [bus 2f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 20-2f])
[    4.646828] pci 0000:2f:08.0: [8086:0e80] type 00 class 0x088000
[    4.646897] pci 0000:2f:08.2: [8086:0e32] type 00 class 0x110100
[    4.646965] pci 0000:2f:09.0: [8086:0e90] type 00 class 0x088000
[    4.647029] pci 0000:2f:09.2: [8086:0e33] type 00 class 0x110100
[    4.647104] pci 0000:2f:0a.0: [8086:0ec0] type 00 class 0x088000
[    4.647166] pci 0000:2f:0a.1: [8086:0ec1] type 00 class 0x088000
[    4.647225] pci 0000:2f:0a.2: [8086:0ec2] type 00 class 0x088000
[    4.647292] pci 0000:2f:0a.3: [8086:0ec3] type 00 class 0x088000
[    4.647353] pci 0000:2f:0b.0: [8086:0e1e] type 00 class 0x088000
[    4.647412] pci 0000:2f:0b.3: [8086:0e1f] type 00 class 0x088000
[    4.647478] pci 0000:2f:0c.0: [8086:0ee0] type 00 class 0x088000
[    4.647538] pci 0000:2f:0c.1: [8086:0ee2] type 00 class 0x088000
[    4.647598] pci 0000:2f:0c.2: [8086:0ee4] type 00 class 0x088000
[    4.647657] pci 0000:2f:0c.3: [8086:0ee6] type 00 class 0x088000
[    4.647719] pci 0000:2f:0c.4: [8086:0ee8] type 00 class 0x088000
[    4.647776] pci 0000:2f:0c.5: [8086:0eea] type 00 class 0x088000
[    4.647839] pci 0000:2f:0c.6: [8086:0eec] type 00 class 0x088000
[    4.647899] pci 0000:2f:0c.7: [8086:0eee] type 00 class 0x088000
[    4.647961] pci 0000:2f:0d.0: [8086:0ee1] type 00 class 0x088000
[    4.648023] pci 0000:2f:0d.1: [8086:0ee3] type 00 class 0x088000
[    4.648083] pci 0000:2f:0d.2: [8086:0ee5] type 00 class 0x088000
[    4.648145] pci 0000:2f:0d.3: [8086:0ee7] type 00 class 0x088000
[    4.648206] pci 0000:2f:0d.4: [8086:0ee9] type 00 class 0x088000
[    4.648264] pci 0000:2f:0d.5: [8086:0eeb] type 00 class 0x088000
[    4.648323] pci 0000:2f:0d.6: [8086:0eed] type 00 class 0x088000
[    4.648381] pci 0000:2f:0e.0: [8086:0ea0] type 00 class 0x088000
[    4.648447] pci 0000:2f:0e.1: [8086:0e30] type 00 class 0x110100
[    4.648519] pci 0000:2f:0f.0: [8086:0ea8] type 00 class 0x088000
[    4.648597] pci 0000:2f:0f.1: [8086:0e71] type 00 class 0x088000
[    4.648676] pci 0000:2f:0f.2: [8086:0eaa] type 00 class 0x088000
[    4.648753] pci 0000:2f:0f.3: [8086:0eab] type 00 class 0x088000
[    4.648840] pci 0000:2f:0f.4: [8086:0eac] type 00 class 0x088000
[    4.648924] pci 0000:2f:0f.5: [8086:0ead] type 00 class 0x088000
[    4.649004] pci 0000:2f:10.0: [8086:0eb0] type 00 class 0x088000
[    4.649089] pci 0000:2f:10.1: [8086:0eb1] type 00 class 0x088000
[    4.649174] pci 0000:2f:10.2: [8086:0eb2] type 00 class 0x088000
[    4.649255] pci 0000:2f:10.3: [8086:0eb3] type 00 class 0x088000
[    4.649337] pci 0000:2f:10.4: [8086:0eb4] type 00 class 0x088000
[    4.649420] pci 0000:2f:10.5: [8086:0eb5] type 00 class 0x088000
[    4.649503] pci 0000:2f:10.6: [8086:0eb6] type 00 class 0x088000
[    4.649583] pci 0000:2f:10.7: [8086:0eb7] type 00 class 0x088000
[    4.649664] pci 0000:2f:11.0: [8086:0ef8] type 00 class 0x088000
[    4.649753] pci 0000:2f:11.1: [8086:0ef9] type 00 class 0x088000
[    4.649838] pci 0000:2f:11.2: [8086:0efa] type 00 class 0x088000
[    4.649921] pci 0000:2f:11.4: [8086:0efc] type 00 class 0x088000
[    4.650001] pci 0000:2f:11.5: [8086:0efd] type 00 class 0x088000
[    4.650088] pci 0000:2f:13.0: [8086:0e1d] type 00 class 0x088000
[    4.650150] pci 0000:2f:13.1: [8086:0e34] type 00 class 0x110100
[    4.650213] pci 0000:2f:13.4: [8086:0e81] type 00 class 0x088000
[    4.650275] pci 0000:2f:13.5: [8086:0e36] type 00 class 0x110100
[    4.650419] pci 0000:2f:13.6: [8086:0e37] type 00 class 0x110100
[    4.650486] pci 0000:2f:16.0: [8086:0ec8] type 00 class 0x088000
[    4.650549] pci 0000:2f:16.1: [8086:0ec9] type 00 class 0x088000
[    4.650612] pci 0000:2f:16.2: [8086:0eca] type 00 class 0x088000
[    4.650684] pci 0000:2f:18.0: [8086:0e40] type 00 class 0x088000
[    4.650751] pci 0000:2f:18.2: [8086:0e3a] type 00 class 0x110100
[    4.650827] pci 0000:2f:1c.0: [8086:0e60] type 00 class 0x088000
[    4.650902] pci 0000:2f:1c.1: [8086:0e38] type 00 class 0x110100
[    4.650982] pci 0000:2f:1d.0: [8086:0e68] type 00 class 0x088000
[    4.651067] pci 0000:2f:1d.1: [8086:0e79] type 00 class 0x088000
[    4.651152] pci 0000:2f:1d.2: [8086:0e6a] type 00 class 0x088000
[    4.651235] pci 0000:2f:1d.3: [8086:0e6b] type 00 class 0x088000
[    4.651320] pci 0000:2f:1d.4: [8086:0e6c] type 00 class 0x088000
[    4.651401] pci 0000:2f:1d.5: [8086:0e6d] type 00 class 0x088000
[    4.651486] pci 0000:2f:1e.0: [8086:0ef0] type 00 class 0x088000
[    4.651570] pci 0000:2f:1e.1: [8086:0ef1] type 00 class 0x088000
[    4.651654] pci 0000:2f:1e.2: [8086:0ef2] type 00 class 0x088000
[    4.651739] pci 0000:2f:1e.3: [8086:0ef3] type 00 class 0x088000
[    4.651824] pci 0000:2f:1e.4: [8086:0ef4] type 00 class 0x088000
[    4.651915] pci 0000:2f:1e.5: [8086:0ef5] type 00 class 0x088000
[    4.651999] pci 0000:2f:1e.6: [8086:0ef6] type 00 class 0x088000
[    4.652083] pci 0000:2f:1e.7: [8086:0ef7] type 00 class 0x088000
[    4.652167] pci 0000:2f:1f.0: [8086:0ed8] type 00 class 0x088000
[    4.652251] pci 0000:2f:1f.1: [8086:0ed9] type 00 class 0x088000
[    4.652365] pci 0000:2f:1f.4: [8086:0edc] type 00 class 0x088000
[    4.652448] pci 0000:2f:1f.5: [8086:0edd] type 00 class 0x088000
[    4.652531] pci 0000:2f:1f.6: [8086:0ede] type 00 class 0x088000
[    4.652612] pci 0000:2f:1f.7: [8086:0edf] type 00 class 0x088000
[    4.652694] pci_bus 0000:2f: busn_res: [bus 2f-ff] end is updated to 2f
[    4.652696] pci_bus 0000:2f: busn_res: can not insert [bus 2f] under domain [bus 00-ff] (conflicts with (null) [bus 20-2f])
[    4.652886] PCI: Discovered peer bus 3f
[    4.657189] PCI: root bus 3f: using default resources
[    4.657190] PCI: Probing PCI hardware (bus 3f)
[    4.657214] PCI host bridge to bus 0000:3f
[    4.661811] pci_bus 0000:3f: root bus resource [io  0x0000-0xffff]
[    4.668749] pci_bus 0000:3f: root bus resource [mem 0x00000000-0x3fffffffffff]
[    4.676861] pci_bus 0000:3f: No busn resource found for root bus, will use [bus 3f-ff]
[    4.685753] pci_bus 0000:3f: busn_res: can not insert [bus 3f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 30-3f])
[    4.685763] pci 0000:3f:08.0: [8086:0e80] type 00 class 0x088000
[    4.685831] pci 0000:3f:08.2: [8086:0e32] type 00 class 0x110100
[    4.685895] pci 0000:3f:09.0: [8086:0e90] type 00 class 0x088000
[    4.685955] pci 0000:3f:09.2: [8086:0e33] type 00 class 0x110100
[    4.686023] pci 0000:3f:0a.0: [8086:0ec0] type 00 class 0x088000
[    4.686081] pci 0000:3f:0a.1: [8086:0ec1] type 00 class 0x088000
[    4.686139] pci 0000:3f:0a.2: [8086:0ec2] type 00 class 0x088000
[    4.686195] pci 0000:3f:0a.3: [8086:0ec3] type 00 class 0x088000
[    4.686257] pci 0000:3f:0b.0: [8086:0e1e] type 00 class 0x088000
[    4.686313] pci 0000:3f:0b.3: [8086:0e1f] type 00 class 0x088000
[    4.686368] pci 0000:3f:0c.0: [8086:0ee0] type 00 class 0x088000
[    4.686426] pci 0000:3f:0c.1: [8086:0ee2] type 00 class 0x088000
[    4.686481] pci 0000:3f:0c.2: [8086:0ee4] type 00 class 0x088000
[    4.686534] pci 0000:3f:0c.3: [8086:0ee6] type 00 class 0x088000
[    4.686586] pci 0000:3f:0c.4: [8086:0ee8] type 00 class 0x088000
[    4.686639] pci 0000:3f:0c.5: [8086:0eea] type 00 class 0x088000
[    4.686691] pci 0000:3f:0c.6: [8086:0eec] type 00 class 0x088000
[    4.686745] pci 0000:3f:0c.7: [8086:0eee] type 00 class 0x088000
[    4.686801] pci 0000:3f:0d.0: [8086:0ee1] type 00 class 0x088000
[    4.686854] pci 0000:3f:0d.1: [8086:0ee3] type 00 class 0x088000
[    4.686914] pci 0000:3f:0d.2: [8086:0ee5] type 00 class 0x088000
[    4.686971] pci 0000:3f:0d.3: [8086:0ee7] type 00 class 0x088000
[    4.687027] pci 0000:3f:0d.4: [8086:0ee9] type 00 class 0x088000
[    4.687082] pci 0000:3f:0d.5: [8086:0eeb] type 00 class 0x088000
[    4.687138] pci 0000:3f:0d.6: [8086:0eed] type 00 class 0x088000
[    4.687194] pci 0000:3f:0e.0: [8086:0ea0] type 00 class 0x088000
[    4.687254] pci 0000:3f:0e.1: [8086:0e30] type 00 class 0x110100
[    4.687320] pci 0000:3f:0f.0: [8086:0ea8] type 00 class 0x088000
[    4.687398] pci 0000:3f:0f.1: [8086:0e71] type 00 class 0x088000
[    4.687472] pci 0000:3f:0f.2: [8086:0eaa] type 00 class 0x088000
[    4.687547] pci 0000:3f:0f.3: [8086:0eab] type 00 class 0x088000
[    4.687621] pci 0000:3f:0f.4: [8086:0eac] type 00 class 0x088000
[    4.687696] pci 0000:3f:0f.5: [8086:0ead] type 00 class 0x088000
[    4.687777] pci 0000:3f:10.0: [8086:0eb0] type 00 class 0x088000
[    4.687854] pci 0000:3f:10.1: [8086:0eb1] type 00 class 0x088000
[    4.687928] pci 0000:3f:10.2: [8086:0eb2] type 00 class 0x088000
[    4.688009] pci 0000:3f:10.3: [8086:0eb3] type 00 class 0x088000
[    4.688087] pci 0000:3f:10.4: [8086:0eb4] type 00 class 0x088000
[    4.688164] pci 0000:3f:10.5: [8086:0eb5] type 00 class 0x088000
[    4.688242] pci 0000:3f:10.6: [8086:0eb6] type 00 class 0x088000
[    4.688322] pci 0000:3f:10.7: [8086:0eb7] type 00 class 0x088000
[    4.688402] pci 0000:3f:11.0: [8086:0ef8] type 00 class 0x088000
[    4.688540] pci 0000:3f:11.1: [8086:0ef9] type 00 class 0x088000
[    4.688615] pci 0000:3f:11.2: [8086:0efa] type 00 class 0x088000
[    4.688691] pci 0000:3f:11.4: [8086:0efc] type 00 class 0x088000
[    4.688767] pci 0000:3f:11.5: [8086:0efd] type 00 class 0x088000
[    4.688843] pci 0000:3f:13.0: [8086:0e1d] type 00 class 0x088000
[    4.688899] pci 0000:3f:13.1: [8086:0e34] type 00 class 0x110100
[    4.688957] pci 0000:3f:13.4: [8086:0e81] type 00 class 0x088000
[    4.689013] pci 0000:3f:13.5: [8086:0e36] type 00 class 0x110100
[    4.689070] pci 0000:3f:13.6: [8086:0e37] type 00 class 0x110100
[    4.689131] pci 0000:3f:16.0: [8086:0ec8] type 00 class 0x088000
[    4.689200] pci 0000:3f:16.1: [8086:0ec9] type 00 class 0x088000
[    4.689256] pci 0000:3f:16.2: [8086:0eca] type 00 class 0x088000
[    4.689321] pci 0000:3f:18.0: [8086:0e40] type 00 class 0x088000
[    4.689385] pci 0000:3f:18.2: [8086:0e3a] type 00 class 0x110100
[    4.689453] pci 0000:3f:1c.0: [8086:0e60] type 00 class 0x088000
[    4.689514] pci 0000:3f:1c.1: [8086:0e38] type 00 class 0x110100
[    4.689583] pci 0000:3f:1d.0: [8086:0e68] type 00 class 0x088000
[    4.689661] pci 0000:3f:1d.1: [8086:0e79] type 00 class 0x088000
[    4.689739] pci 0000:3f:1d.2: [8086:0e6a] type 00 class 0x088000
[    4.689818] pci 0000:3f:1d.3: [8086:0e6b] type 00 class 0x088000
[    4.689896] pci 0000:3f:1d.4: [8086:0e6c] type 00 class 0x088000
[    4.689973] pci 0000:3f:1d.5: [8086:0e6d] type 00 class 0x088000
[    4.690053] pci 0000:3f:1e.0: [8086:0ef0] type 00 class 0x088000
[    4.690132] pci 0000:3f:1e.1: [8086:0ef1] type 00 class 0x088000
[    4.690209] pci 0000:3f:1e.2: [8086:0ef2] type 00 class 0x088000
[    4.690291] pci 0000:3f:1e.3: [8086:0ef3] type 00 class 0x088000
[    4.690367] pci 0000:3f:1e.4: [8086:0ef4] type 00 class 0x088000
[    4.690441] pci 0000:3f:1e.5: [8086:0ef5] type 00 class 0x088000
[    4.690515] pci 0000:3f:1e.6: [8086:0ef6] type 00 class 0x088000
[    4.690587] pci 0000:3f:1e.7: [8086:0ef7] type 00 class 0x088000
[    4.690662] pci 0000:3f:1f.0: [8086:0ed8] type 00 class 0x088000
[    4.690734] pci 0000:3f:1f.1: [8086:0ed9] type 00 class 0x088000
[    4.690817] pci 0000:3f:1f.4: [8086:0edc] type 00 class 0x088000
[    4.690889] pci 0000:3f:1f.5: [8086:0edd] type 00 class 0x088000
[    4.690964] pci 0000:3f:1f.6: [8086:0ede] type 00 class 0x088000
[    4.691040] pci 0000:3f:1f.7: [8086:0edf] type 00 class 0x088000
[    4.691114] pci_bus 0000:3f: busn_res: [bus 3f-ff] end is updated to 3f
[    4.691116] pci_bus 0000:3f: busn_res: can not insert [bus 3f] under domain [bus 00-ff] (conflicts with (null) [bus 30-3f])
[    4.691129] PCI: pci_cache_line_size set to 64 bytes
[    4.691815] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[    4.691818] e820: reserve RAM buffer [mem 0x77755018-0x77ffffff]
[    4.691819] e820: reserve RAM buffer [mem 0x77787018-0x77ffffff]
[    4.691820] e820: reserve RAM buffer [mem 0x78bff000-0x7bffffff]
[    4.692190] NetLabel: Initializing
[    4.696008] NetLabel:  domain hash size = 128
[    4.700898] NetLabel:  protocols = UNLABELED CIPSOv4
[    4.706496] NetLabel:  unlabeled traffic allowed by default
[    4.712849] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    4.719881] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    4.729035] Switched to clocksource hpet
[    4.745387] pnp: PnP ACPI init
[    4.749433] pnp 00:00: Plug and Play ACPI device, IDs IPI0001 (active)
[    4.749533] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    4.750136] pnp: PnP ACPI: found 2 devices
[    4.756963] pci 0000:01:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    4.768104] pci 0000:03:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[    4.779241] pci 0000:21:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    4.790378] pci 0000:21:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    4.801582] pci 0000:00:02.2: BAR 14: assigned [mem 0x90000000-0x900fffff]
[    4.809305] pci 0000:00:02.0: BAR 13: assigned [io  0x2000-0x2fff]
[    4.816249] pci 0000:01:00.0: BAR 6: assigned [mem 0x90380000-0x903fffff pref]
[    4.824363] pci 0000:01:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[    4.832278] pci 0000:01:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[    4.840586] pci 0000:01:00.0: BAR 2: assigned [io  0x2000-0x201f]
[    4.847433] pci 0000:01:00.1: BAR 2: assigned [io  0x2020-0x203f]
[    4.854279] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[    4.860152] pci 0000:00:02.0:   bridge window [io  0x2000-0x2fff]
[    4.867003] pci 0000:00:02.0:   bridge window [mem 0x90100000-0x903fffff]
[    4.874630] pci 0000:00:02.0:   bridge window [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[    4.883918] pci 0000:03:00.0: BAR 6: assigned [mem 0x90000000-0x9003ffff pref]
[    4.892030] pci 0000:03:00.1: BAR 6: assigned [mem 0x90040000-0x9007ffff pref]
[    4.900141] pci 0000:00:02.2: PCI bridge to [bus 03]
[    4.905719] pci 0000:00:02.2:   bridge window [mem 0x90000000-0x900fffff]
[    4.913344] pci 0000:00:02.2:   bridge window [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[    4.922632] pci 0000:00:03.0: PCI bridge to [bus 04]
[    4.928219] pci 0000:00:11.0: PCI bridge to [bus 05]
[    4.933810] pci 0000:06:00.2: BAR 6: assigned [mem 0x93a90000-0x93a9ffff pref]
[    4.941922] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    4.947500] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    4.954348] pci 0000:00:1c.0:   bridge window [mem 0x92000000-0x93efffff]
[    4.961982] pci_bus 0000:00: resource 4 [io  0x1000-0x3fff window]
[    4.961983] pci_bus 0000:00: resource 5 [io  0x0000-0x0cf7 window]
[    4.961985] pci_bus 0000:00: resource 6 [mem 0x90000000-0x93efffff window]
[    4.961986] pci_bus 0000:00: resource 7 [mem 0x000a0000-0x000bffff window]
[    4.961987] pci_bus 0000:00: resource 8 [mem 0xfed00000-0xfedfffff window]
[    4.961989] pci_bus 0000:00: resource 9 [mem 0xfc000000000-0xfc07fffffff window]
[    4.961990] pci_bus 0000:00: resource 10 [mem 0xfe200000000-0xfe27fffffff window]
[    4.961993] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    4.961994] pci_bus 0000:01: resource 1 [mem 0x90100000-0x903fffff]
[    4.961995] pci_bus 0000:01: resource 2 [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[    4.961998] pci_bus 0000:03: resource 1 [mem 0x90000000-0x900fffff]
[    4.961999] pci_bus 0000:03: resource 2 [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[    4.962001] pci_bus 0000:06: resource 0 [io  0x1000-0x1fff]
[    4.962002] pci_bus 0000:06: resource 1 [mem 0x92000000-0x93efffff]
[    4.962026] pci 0000:10:02.0: PCI bridge to [bus 11]
[    4.967614] pci 0000:10:02.2: PCI bridge to [bus 12]
[    4.973200] pci 0000:10:03.0: PCI bridge to [bus 13]
[    4.978786] pci_bus 0000:10: resource 4 [io  0x4000-0x7fff window]
[    4.978787] pci_bus 0000:10: resource 5 [mem 0x94000000-0x97ff7fff window]
[    4.978789] pci_bus 0000:10: resource 6 [mem 0xfc400000000-0xfc47fffffff window]
[    4.978830] pci 0000:20:02.0: BAR 13: assigned [io  0x8000-0x8fff]
[    4.985772] pci 0000:20:1c.0: BAR 13: assigned [io  0x9000-0x9fff]
[    4.992715] pci 0000:21:00.0: BAR 6: assigned [mem 0x98280000-0x982fffff pref]
[    5.000828] pci 0000:21:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[    5.008747] pci 0000:21:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[    5.017053] pci 0000:21:00.0: BAR 2: assigned [io  0x8000-0x801f]
[    5.023898] pci 0000:21:00.1: BAR 2: assigned [io  0x8020-0x803f]
[    5.030745] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[    5.036613] pci 0000:20:02.0:   bridge window [io  0x8000-0x8fff]
[    5.043461] pci 0000:20:02.0:   bridge window [mem 0x98000000-0x982fffff]
[    5.051088] pci 0000:20:02.0:   bridge window [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[    5.060374] pci 0000:20:02.2: PCI bridge to [bus 23]
[    5.065961] pci 0000:20:03.0: PCI bridge to [bus 24]
[    5.071547] pci 0000:20:11.0: PCI bridge to [bus 25]
[    5.077136] pci 0000:26:00.2: BAR 6: assigned [mem 0x9bd90000-0x9bd9ffff pref]
[    5.085249] pci 0000:26:00.0: BAR 0: assigned [io  0x9000-0x90ff]
[    5.092096] pci 0000:26:00.0: BAR 2: assigned [io  0x9400-0x94ff]
[    5.098943] pci 0000:26:00.2: BAR 0: assigned [io  0x9800-0x98ff]
[    5.105790] pci 0000:20:1c.0: PCI bridge to [bus 26]
[    5.111367] pci 0000:20:1c.0:   bridge window [io  0x9000-0x9fff]
[    5.118214] pci 0000:20:1c.0:   bridge window [mem 0x9bb00000-0x9befffff]
[    5.125847] pci_bus 0000:20: resource 4 [io  0x8000-0xbfff window]
[    5.125848] pci_bus 0000:20: resource 5 [mem 0x98000000-0x9befffff window]
[    5.125849] pci_bus 0000:20: resource 6 [mem 0xf0800000000-0xf087fffffff window]
[    5.125851] pci_bus 0000:21: resource 0 [io  0x8000-0x8fff]
[    5.125852] pci_bus 0000:21: resource 1 [mem 0x98000000-0x982fffff]
[    5.125854] pci_bus 0000:21: resource 2 [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[    5.125856] pci_bus 0000:26: resource 0 [io  0x9000-0x9fff]
[    5.125857] pci_bus 0000:26: resource 1 [mem 0x9bb00000-0x9befffff]
[    5.125877] pci 0000:30:02.0: PCI bridge to [bus 31]
[    5.131465] pci 0000:30:02.2: PCI bridge to [bus 32]
[    5.137049] pci 0000:30:03.0: PCI bridge to [bus 33]
[    5.142633] pci_bus 0000:30: resource 4 [io  0xc000-0xffff window]
[    5.142634] pci_bus 0000:30: resource 5 [mem 0x9c000000-0x9fff7fff window]
[    5.142636] pci_bus 0000:30: resource 6 [mem 0xf0c00000000-0xf0c7fffffff window]
[    5.142645] pci_bus 0000:0f: resource 4 [io  0x0000-0xffff]
[    5.142646] pci_bus 0000:0f: resource 5 [mem 0x00000000-0x3fffffffffff]
[    5.142656] pci_bus 0000:1f: resource 4 [io  0x0000-0xffff]
[    5.142657] pci_bus 0000:1f: resource 5 [mem 0x00000000-0x3fffffffffff]
[    5.142668] pci_bus 0000:2f: resource 4 [io  0x0000-0xffff]
[    5.142669] pci_bus 0000:2f: resource 5 [mem 0x00000000-0x3fffffffffff]
[    5.142679] pci_bus 0000:3f: resource 4 [io  0x0000-0xffff]
[    5.142680] pci_bus 0000:3f: resource 5 [mem 0x00000000-0x3fffffffffff]
[    5.142830] NET: Registered protocol family 2
[    5.149825] TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
[    5.159842] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    5.167714] TCP: Hash tables configured (established 524288 bind 65536)
[    5.175196] TCP: reno registered
[    5.179010] UDP hash table entries: 65536 (order: 9, 2097152 bytes)
[    5.186834] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes)
[    5.195821] NET: Registered protocol family 1
[    5.201140] pci 0000:06:00.1: Video device with shadowed ROM
[    5.201993] PCI: CLS 64 bytes, default 64
[    5.202151] Unpacking initramfs...
[    5.385292] Freeing initrd memory: 11476K (ffff88003f4b3000 - ffff88003ffe8000)
[    5.396627] IOMMU: dmar3 using Queued invalidation
[    5.402014] IOMMU: dmar2 using Queued invalidation
[    5.407398] IOMMU: dmar1 using Queued invalidation
[    5.412784] IOMMU: dmar0 using Queued invalidation
[    5.418180] IOMMU: Setting RMRR:
[    5.421854] IOMMU: Setting identity map for device 0000:20:1d.0 [0x7990e000 - 0x79910fff]
[    5.431144] IOMMU: Setting identity map for device 0000:00:1d.0 [0x79911000 - 0x79913fff]
[    5.440401] IOMMU: Prepare 0-16MiB unity mapping for LPC
[    5.446396] IOMMU: Setting identity map for device 0000:00:1f.0 [0x0 - 0xffffff]
[    5.454788] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[    5.480378] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    5.496177] microcode: CPU0 sig=0x306e7, pf=0x80, revision=0x70e
[    5.502933] microcode: CPU1 sig=0x306e7, pf=0x80, revision=0x70e
[    5.509684] microcode: CPU2 sig=0x306e7, pf=0x80, revision=0x70e
[    5.516435] microcode: CPU3 sig=0x306e7, pf=0x80, revision=0x70e
[    5.523187] microcode: CPU4 sig=0x306e7, pf=0x80, revision=0x70e
[    5.529939] microcode: CPU5 sig=0x306e7, pf=0x80, revision=0x70e
[    5.536691] microcode: CPU6 sig=0x306e7, pf=0x80, revision=0x70e
[    5.543440] microcode: CPU7 sig=0x306e7, pf=0x80, revision=0x70e
[    5.550190] microcode: CPU8 sig=0x306e7, pf=0x80, revision=0x70e
[    5.556941] microcode: CPU9 sig=0x306e7, pf=0x80, revision=0x70e
[    5.563691] microcode: CPU10 sig=0x306e7, pf=0x80, revision=0x70e
[    5.570541] microcode: CPU11 sig=0x306e7, pf=0x80, revision=0x70e
[    5.577388] microcode: CPU12 sig=0x306e7, pf=0x80, revision=0x70e
[    5.584237] microcode: CPU13 sig=0x306e7, pf=0x80, revision=0x70e
[    5.591085] microcode: CPU14 sig=0x306e7, pf=0x80, revision=0x70e
[    5.597952] microcode: CPU15 sig=0x306e7, pf=0x80, revision=0x70e
[    5.604848] microcode: CPU16 sig=0x306e7, pf=0x80, revision=0x70e
[    5.611699] microcode: CPU17 sig=0x306e7, pf=0x80, revision=0x70e
[    5.618549] microcode: CPU18 sig=0x306e7, pf=0x80, revision=0x70e
[    5.625396] microcode: CPU19 sig=0x306e7, pf=0x80, revision=0x70e
[    5.632245] microcode: CPU20 sig=0x306e7, pf=0x80, revision=0x70e
[    5.639092] microcode: CPU21 sig=0x306e7, pf=0x80, revision=0x70e
[    5.645944] microcode: CPU22 sig=0x306e7, pf=0x80, revision=0x70e
[    5.652793] microcode: CPU23 sig=0x306e7, pf=0x80, revision=0x70e
[    5.659640] microcode: CPU24 sig=0x306e7, pf=0x80, revision=0x70e
[    5.666491] microcode: CPU25 sig=0x306e7, pf=0x80, revision=0x70e
[    5.673339] microcode: CPU26 sig=0x306e7, pf=0x80, revision=0x70e
[    5.680186] microcode: CPU27 sig=0x306e7, pf=0x80, revision=0x70e
[    5.687035] microcode: CPU28 sig=0x306e7, pf=0x80, revision=0x70e
[    5.693884] microcode: CPU29 sig=0x306e7, pf=0x80, revision=0x70e
[    5.700782] microcode: CPU30 sig=0x306e7, pf=0x80, revision=0x70e
[    5.707642] microcode: CPU31 sig=0x306e7, pf=0x80, revision=0x70e
[    5.714494] microcode: CPU32 sig=0x306e7, pf=0x80, revision=0x70e
[    5.721347] microcode: CPU33 sig=0x306e7, pf=0x80, revision=0x70e
[    5.728198] microcode: CPU34 sig=0x306e7, pf=0x80, revision=0x70e
[    5.735046] microcode: CPU35 sig=0x306e7, pf=0x80, revision=0x70e
[    5.741896] microcode: CPU36 sig=0x306e7, pf=0x80, revision=0x70e
[    5.748745] microcode: CPU37 sig=0x306e7, pf=0x80, revision=0x70e
[    5.755594] microcode: CPU38 sig=0x306e7, pf=0x80, revision=0x70e
[    5.762441] microcode: CPU39 sig=0x306e7, pf=0x80, revision=0x70e
[    5.769291] microcode: CPU40 sig=0x306e7, pf=0x80, revision=0x70e
[    5.776139] microcode: CPU41 sig=0x306e7, pf=0x80, revision=0x70e
[    5.782989] microcode: CPU42 sig=0x306e7, pf=0x80, revision=0x70e
[    5.789836] microcode: CPU43 sig=0x306e7, pf=0x80, revision=0x70e
[    5.796683] microcode: CPU44 sig=0x306e7, pf=0x80, revision=0x70e
[    5.803550] microcode: CPU45 sig=0x306e7, pf=0x80, revision=0x70e
[    5.810417] microcode: CPU46 sig=0x306e7, pf=0x80, revision=0x70e
[    5.817263] microcode: CPU47 sig=0x306e7, pf=0x80, revision=0x70e
[    5.824111] microcode: CPU48 sig=0x306e7, pf=0x80, revision=0x70e
[    5.830959] microcode: CPU49 sig=0x306e7, pf=0x80, revision=0x70e
[    5.837801] microcode: CPU50 sig=0x306e7, pf=0x80, revision=0x70e
[    5.844652] microcode: CPU51 sig=0x306e7, pf=0x80, revision=0x70e
[    5.851499] microcode: CPU52 sig=0x306e7, pf=0x80, revision=0x70e
[    5.858347] microcode: CPU53 sig=0x306e7, pf=0x80, revision=0x70e
[    5.865193] microcode: CPU54 sig=0x306e7, pf=0x80, revision=0x70e
[    5.872040] microcode: CPU55 sig=0x306e7, pf=0x80, revision=0x70e
[    5.878888] microcode: CPU56 sig=0x306e7, pf=0x80, revision=0x70e
[    5.885735] microcode: CPU57 sig=0x306e7, pf=0x80, revision=0x70e
[    5.892584] microcode: CPU58 sig=0x306e7, pf=0x80, revision=0x70e
[    5.899432] microcode: CPU59 sig=0x306e7, pf=0x80, revision=0x70e
[    5.906282] microcode: CPU60 sig=0x306e7, pf=0x80, revision=0x70e
[    5.913130] microcode: CPU61 sig=0x306e7, pf=0x80, revision=0x70e
[    5.919976] microcode: CPU62 sig=0x306e7, pf=0x80, revision=0x70e
[    5.926822] microcode: CPU63 sig=0x306e7, pf=0x80, revision=0x70e
[    5.933668] microcode: CPU64 sig=0x306e7, pf=0x80, revision=0x70e
[    5.940516] microcode: CPU65 sig=0x306e7, pf=0x80, revision=0x70e
[    5.947361] microcode: CPU66 sig=0x306e7, pf=0x80, revision=0x70e
[    5.954210] microcode: CPU67 sig=0x306e7, pf=0x80, revision=0x70e
[    5.961057] microcode: CPU68 sig=0x306e7, pf=0x80, revision=0x70e
[    5.967903] microcode: CPU69 sig=0x306e7, pf=0x80, revision=0x70e
[    5.974748] microcode: CPU70 sig=0x306e7, pf=0x80, revision=0x70e
[    5.981596] microcode: CPU71 sig=0x306e7, pf=0x80, revision=0x70e
[    5.988441] microcode: CPU72 sig=0x306e7, pf=0x80, revision=0x70e
[    5.995286] microcode: CPU73 sig=0x306e7, pf=0x80, revision=0x70e
[    6.002134] microcode: CPU74 sig=0x306e7, pf=0x80, revision=0x70e
[    6.008984] microcode: CPU75 sig=0x306e7, pf=0x80, revision=0x70e
[    6.015834] microcode: CPU76 sig=0x306e7, pf=0x80, revision=0x70e
[    6.022683] microcode: CPU77 sig=0x306e7, pf=0x80, revision=0x70e
[    6.029528] microcode: CPU78 sig=0x306e7, pf=0x80, revision=0x70e
[    6.036381] microcode: CPU79 sig=0x306e7, pf=0x80, revision=0x70e
[    6.043227] microcode: CPU80 sig=0x306e7, pf=0x80, revision=0x70e
[    6.050075] microcode: CPU81 sig=0x306e7, pf=0x80, revision=0x70e
[    6.056923] microcode: CPU82 sig=0x306e7, pf=0x80, revision=0x70e
[    6.063769] microcode: CPU83 sig=0x306e7, pf=0x80, revision=0x70e
[    6.070616] microcode: CPU84 sig=0x306e7, pf=0x80, revision=0x70e
[    6.077462] microcode: CPU85 sig=0x306e7, pf=0x80, revision=0x70e
[    6.084310] microcode: CPU86 sig=0x306e7, pf=0x80, revision=0x70e
[    6.091157] microcode: CPU87 sig=0x306e7, pf=0x80, revision=0x70e
[    6.098006] microcode: CPU88 sig=0x306e7, pf=0x80, revision=0x70e
[    6.104855] microcode: CPU89 sig=0x306e7, pf=0x80, revision=0x70e
[    6.111709] microcode: CPU90 sig=0x306e7, pf=0x80, revision=0x70e
[    6.118557] microcode: CPU91 sig=0x306e7, pf=0x80, revision=0x70e
[    6.125405] microcode: CPU92 sig=0x306e7, pf=0x80, revision=0x70e
[    6.132252] microcode: CPU93 sig=0x306e7, pf=0x80, revision=0x70e
[    6.139099] microcode: CPU94 sig=0x306e7, pf=0x80, revision=0x70e
[    6.145945] microcode: CPU95 sig=0x306e7, pf=0x80, revision=0x70e
[    6.152793] microcode: CPU96 sig=0x306e7, pf=0x80, revision=0x70e
[    6.159640] microcode: CPU97 sig=0x306e7, pf=0x80, revision=0x70e
[    6.166489] microcode: CPU98 sig=0x306e7, pf=0x80, revision=0x70e
[    6.173335] microcode: CPU99 sig=0x306e7, pf=0x80, revision=0x70e
[    6.180181] microcode: CPU100 sig=0x306e7, pf=0x80, revision=0x70e
[    6.187129] microcode: CPU101 sig=0x306e7, pf=0x80, revision=0x70e
[    6.194073] microcode: CPU102 sig=0x306e7, pf=0x80, revision=0x70e
[    6.201017] microcode: CPU103 sig=0x306e7, pf=0x80, revision=0x70e
[    6.207960] microcode: CPU104 sig=0x306e7, pf=0x80, revision=0x70e
[    6.214904] microcode: CPU105 sig=0x306e7, pf=0x80, revision=0x70e
[    6.221849] microcode: CPU106 sig=0x306e7, pf=0x80, revision=0x70e
[    6.228792] microcode: CPU107 sig=0x306e7, pf=0x80, revision=0x70e
[    6.235734] microcode: CPU108 sig=0x306e7, pf=0x80, revision=0x70e
[    6.242678] microcode: CPU109 sig=0x306e7, pf=0x80, revision=0x70e
[    6.249620] microcode: CPU110 sig=0x306e7, pf=0x80, revision=0x70e
[    6.256564] microcode: CPU111 sig=0x306e7, pf=0x80, revision=0x70e
[    6.263507] microcode: CPU112 sig=0x306e7, pf=0x80, revision=0x70e
[    6.270456] microcode: CPU113 sig=0x306e7, pf=0x80, revision=0x70e
[    6.277400] microcode: CPU114 sig=0x306e7, pf=0x80, revision=0x70e
[    6.284342] microcode: CPU115 sig=0x306e7, pf=0x80, revision=0x70e
[    6.291286] microcode: CPU116 sig=0x306e7, pf=0x80, revision=0x70e
[    6.298232] microcode: CPU117 sig=0x306e7, pf=0x80, revision=0x70e
[    6.305175] microcode: CPU118 sig=0x306e7, pf=0x80, revision=0x70e
[    6.312120] microcode: CPU119 sig=0x306e7, pf=0x80, revision=0x70e
[    6.319173] microcode: Microcode Update Driver: v2.00 <tigran-ppwZ4lME3+KI6QP4U9MhSdBc4/FLrbF6@public.gmane.org>, Peter Oruba
[    6.337619] futex hash table entries: 32768 (order: 9, 2097152 bytes)
[    6.345481] Initialise system trusted keyring
[    6.350461] audit: initializing netlink subsys (disabled)
[    6.356591] audit: type=2000 audit(1428561281.609:1): initialized
[    6.365131] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    6.373672] zpool: loaded
[    6.376617] zbud: loaded
[    6.379862] VFS: Disk quotas dquot_6.5.2
[    6.384384] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    6.392832] Key type big_key registered
[    6.397148] SELinux:  Registering netfilter hooks
[    6.409570] alg: No test for stdrng (krng)
[    6.414219] NET: Registered protocol family 38
[    6.419245] Key type asymmetric registered
[    6.423855] Asymmetric key parser 'x509' registered
[    6.429361] bounce: pool size: 64 pages
[    6.433722] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    6.442953] io scheduler noop registered
[    6.447365] io scheduler deadline registered (default)
[    6.453217] io scheduler cfq registered
[    6.464350] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    6.472180] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    6.479517] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    6.486859] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
[    6.486867] tsc: Refined TSC clocksource calibration: 2793.687 MHz
[    6.493887] pcieport 0000:00:02.2: Signaling PME through PCIe PME interrupt
[    6.501713] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    6.509049] pci 0000:03:00.1: Signaling PME through PCIe PME interrupt
[    6.516389] pcie_pme 0000:00:02.2:pcie01: service driver pcie_pme loaded
[    6.516415] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    6.524248] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[    6.524274] pcieport 0000:00:11.0: Signaling PME through PCIe PME interrupt
[    6.532101] pcie_pme 0000:00:11.0:pcie01: service driver pcie_pme loaded
[    6.532135] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    6.539955] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    6.547293] pci 0000:06:00.1: Signaling PME through PCIe PME interrupt
[    6.554627] pci 0000:06:00.2: Signaling PME through PCIe PME interrupt
[    6.561964] pci 0000:06:00.4: Signaling PME through PCIe PME interrupt
[    6.569302] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    6.569337] pcieport 0000:10:02.0: Signaling PME through PCIe PME interrupt
[    6.577165] pcie_pme 0000:10:02.0:pcie01: service driver pcie_pme loaded
[    6.577198] pcieport 0000:10:02.2: Signaling PME through PCIe PME interrupt
[    6.585021] pcie_pme 0000:10:02.2:pcie01: service driver pcie_pme loaded
[    6.585053] pcieport 0000:10:03.0: Signaling PME through PCIe PME interrupt
[    6.592882] pcie_pme 0000:10:03.0:pcie01: service driver pcie_pme loaded
[    6.592906] pcieport 0000:20:02.0: Signaling PME through PCIe PME interrupt
[    6.600730] pci 0000:21:00.0: Signaling PME through PCIe PME interrupt
[    6.608063] pci 0000:21:00.1: Signaling PME through PCIe PME interrupt
[    6.615400] pcie_pme 0000:20:02.0:pcie01: service driver pcie_pme loaded
[    6.615420] pcieport 0000:20:02.2: Signaling PME through PCIe PME interrupt
[    6.623252] pcie_pme 0000:20:02.2:pcie01: service driver pcie_pme loaded
[    6.623374] pcieport 0000:20:03.0: Signaling PME through PCIe PME interrupt
[    6.631200] pcie_pme 0000:20:03.0:pcie01: service driver pcie_pme loaded
[    6.631221] pcieport 0000:20:11.0: Signaling PME through PCIe PME interrupt
[    6.639045] pcie_pme 0000:20:11.0:pcie01: service driver pcie_pme loaded
[    6.639065] pcieport 0000:20:1c.0: Signaling PME through PCIe PME interrupt
[    6.646889] pci 0000:26:00.0: Signaling PME through PCIe PME interrupt
[    6.654221] pci 0000:26:00.2: Signaling PME through PCIe PME interrupt
[    6.661560] pcie_pme 0000:20:1c.0:pcie01: service driver pcie_pme loaded
[    6.661583] pcieport 0000:30:02.0: Signaling PME through PCIe PME interrupt
[    6.669407] pcie_pme 0000:30:02.0:pcie01: service driver pcie_pme loaded
[    6.669426] pcieport 0000:30:02.2: Signaling PME through PCIe PME interrupt
[    6.677251] pcie_pme 0000:30:02.2:pcie01: service driver pcie_pme loaded
[    6.677269] pcieport 0000:30:03.0: Signaling PME through PCIe PME interrupt
[    6.685096] pcie_pme 0000:30:03.0:pcie01: service driver pcie_pme loaded
[    6.685103] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    6.691387] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    6.698872] efifb: probing for efifb
[    6.702930] efifb: framebuffer at 0x92000000, mapped to 0xffffc90035480000, using 3072k, total 3072k
[    6.713193] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    6.719939] efifb: scrolling: redraw
[    6.723957] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    6.763619] Console: switching to colour frame buffer device 128x48
[    6.803254] fb0: EFI VGA frame buffer device
[    6.808059] intel_idle: MWAIT substates: 0x1120
[    6.808060] intel_idle: v0.4 model 0x3E
[    6.808061] intel_idle: lapic_timer_reliable_states 0xffffffff
[    6.811857] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    6.821248] ACPI: Power Button [PWRB]
[    6.828347] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    6.836769] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    6.864612] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    6.874031] Non-volatile memory driver v1.3
[    6.878768] Linux agpgart interface v0.103
[    6.884098] rdac: device handler registered
[    6.888875] hp_sw: device handler registered
[    6.893676] emc: device handler registered
[    6.898277] alua: device handler registered
[    6.903013] libphy: Fixed MDIO Bus: probed
[    6.907694] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    6.915050] ehci-pci: EHCI PCI platform driver
[    6.920601] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    6.926562] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
[    6.934889] ehci-pci 0000:00:1d.0: debug port 2
[    6.943907] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    6.943925] ehci-pci 0000:00:1d.0: irq 23, io mem 0x90400000
[    6.955672] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    6.962189] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    6.969813] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.977929] usb usb1: Product: EHCI Host Controller
[    6.983407] usb usb1: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[    6.990351] usb usb1: SerialNumber: 0000:00:1d.0
[    6.995664] hub 1-0:1.0: USB hub found
[    6.999884] hub 1-0:1.0: 2 ports detected
[    7.005054] ehci-pci 0000:20:1d.0: EHCI Host Controller
[    7.011050] ehci-pci 0000:20:1d.0: new USB bus registered, assigned bus number 2
[    7.019380] ehci-pci 0000:20:1d.0: debug port 2
[    7.028398] ehci-pci 0000:20:1d.0: cache line size of 64 is not supported
[    7.028429] ehci-pci 0000:20:1d.0: irq 46, io mem 0x98300000
[    7.040775] ehci-pci 0000:20:1d.0: USB 2.0 started, EHCI 1.00
[    7.047307] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    7.054934] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.063048] usb usb2: Product: EHCI Host Controller
[    7.068525] usb usb2: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[    7.075467] usb usb2: SerialNumber: 0000:20:1d.0
[    7.080791] hub 2-0:1.0: USB hub found
[    7.085015] hub 2-0:1.0: 2 ports detected
[    7.089789] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    7.096742] ohci-pci: OHCI PCI platform driver
[    7.101770] uhci_hcd: USB Universal Host Controller Interface driver
[    7.108996] uhci_hcd 0000:06:00.4: UHCI Host Controller
[    7.114939] uhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 3
[    7.123266] uhci_hcd 0000:06:00.4: detected 8 ports
[    7.128746] uhci_hcd 0000:06:00.4: port count misdetected? forcing to 2 ports
[    7.136801] uhci_hcd 0000:06:00.4: irq 16, io base 0x00001500
[    7.143377] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    7.151004] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.159117] usb usb3: Product: UHCI Host Controller
[    7.164595] usb usb3: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[    7.171538] usb usb3: SerialNumber: 0000:06:00.4
[    7.176825] hub 3-0:1.0: USB hub found
[    7.181044] hub 3-0:1.0: 2 ports detected
[    7.185928] usbcore: registered new interface driver usbserial
[    7.192494] usbcore: registered new interface driver usbserial_generic
[    7.199840] usbserial: USB Serial support registered for generic
[    7.206616] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    7.306117] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    7.391227] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    7.430660] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    7.438189] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    7.446446] hub 1-1:1.0: USB hub found
[    7.450803] hub 1-1:1.0: 8 ports detected
[    8.264599] i8042: No controller found
[    8.268916] Switched to clocksource tsc
[    8.268976] mousedev: PS/2 mouse device common for all mice
[    8.269475] rtc_cmos 00:01: RTC can wake from S4
[    8.269723] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    8.269781] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    8.269807] Intel P-state driver initializing.
[    8.280750] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    8.280753] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.281192] hub 2-1:1.0: USB hub found
[    8.281416] hub 2-1:1.0: 8 ports detected
[    8.285050] EFI Variables Facility v0.08 2004-May-17
[    8.306314] hidraw: raw HID events driver (C) Jiri Kosina
[    8.306486] usbcore: registered new interface driver usbhid
[    8.306487] usbhid: USB HID core driver
[    8.306591] drop_monitor: Initializing network drop monitor service
[    8.306991] TCP: cubic registered
[    8.306997] Initializing XFRM netlink socket
[    8.307264] NET: Registered protocol family 10
[    8.309402] NET: Registered protocol family 17
[    8.313579] Loading compiled-in X.509 certificates
[    8.314485] Loaded X.509 cert 'Magrathea: Glacier signing key: 307113a598e2a4626872c8019495ffd1ab8d036a'
[    8.314503] registered taskstats version 1
[    8.319948] Key type trusted registered
[    8.327646] Key type encrypted registered
[    8.327656] ima: No TPM chip found, activating TPM-bypass!
[    8.327731] evm: HMAC attrs: 0x1
[    8.332339] rtc_cmos 00:01: setting system clock to 2015-04-09 06:34:50 UTC (1428561290)
[    8.440072] Freeing unused kernel memory: 1704K (ffffffff81b4d000 - ffffffff81cf7000)
[    8.442684] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[    8.502978] systemd[1]: systemd 208 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    8.519572] systemd[1]: Running in initial RAM disk.
[    8.537224] usb 1-1.3: New USB device found, idVendor=0424, idProduct=2660
[    8.537341] systemd[1]: Set hostname to <dhb5.fcux.usa.hp.com>.
[    8.551640] usb 1-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.551743] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
[    8.552066] hub 1-1.3:1.0: USB hub found
[    8.552150] hub 1-1.3:1.0: 2 ports detected
[    8.577376] random: systemd urandom read with 10 bits of entropy available
[    8.637307] usb 2-1.3: New USB device found, idVendor=0424, idProduct=2660
[    8.645051] usb 2-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.653930] hub 2-1.3:1.0: USB hub found
[    8.658495] hub 2-1.3:1.0: 2 ports detected
[    8.659677] systemd[1]: Expecting device dev-disk-by\x2duuid-227bc7d6\x2d3f21\x2d4e34\x2db43d\x2d7f65c5e3dbcc.device...
[    8.685007] systemd[1]: Starting -.slice.
[    8.694976] systemd[1]: Created slice -.slice.
[    8.700129] systemd[1]: Starting System Slice.
[    8.711982] systemd[1]: Created slice System Slice.
[    8.717566] systemd[1]: Starting Slices.
[    8.727000] systemd[1]: Reached target Slices.
[    8.732101] systemd[1]: Starting Timers.
[    8.741014] systemd[1]: Reached target Timers.
[    8.746119] systemd[1]: Starting Journal Socket.
[    8.758024] systemd[1]: Listening on Journal Socket.
[    8.763863] systemd[1]: Starting dracut cmdline hook...
[    8.775622] systemd[1]: Starting Journal Service...
[    8.793115] systemd[1]: Started Journal Service.
[    8.805320] systemd-journald[955]: Vacuuming done, freed 0 bytes
[    8.894627] device-mapper: uevent: version 1.0.3
[    8.901087] device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised: dm-devel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org
[    8.918129] device-mapper: multipath: version 1.8.0 loaded
[    9.043076] systemd-udevd[1109]: starting version 208
[    9.148278] [drm] Initialized drm 1.1.0 20060810
[    9.154459] qla2xxx [0000:00:00.0]-0005: : QLogic Fibre Channel HBA Driver: 8.07.00.16-k.
[    9.164786] qla2xxx [0000:03:00.0]-011c: : MSI-X vector count: 31.
[    9.173021] qla2xxx [0000:03:00.0]-001d: : Found an ISP2031 irq 47 iobase 0xffffc9003543e000.
[    9.194637] checking generic (92000000 300000) vs hw (92000000 1000000)
[    9.194640] fb: switching to mgag200drmfb from EFI VGA
[    9.201176] Console: switching to colour dummy device 80x25
[    9.218672] [TTM] Zone  kernel: Available graphics memory: 263902940 kiB
[    9.226206] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    9.233545] [TTM] Initializing pool allocator
[    9.240088] [TTM] Initializing DMA pool allocator
[    9.300190] fbcon: mgadrmfb (fb0) is primary device
[    9.501853] Console: switching to colour frame buffer device 128x48
[    9.547921] mgag200 0000:06:00.1: fb0: mgadrmfb frame buffer device
[    9.547922] mgag200 0000:06:00.1: registered panic notifier
[    9.648081] [drm] Initialized mgag200 1.0.0 20110418 for 0000:06:00.1 on minor 0
[   10.754648] scsi host0: qla2xxx
[   10.761537] qla2xxx [0000:03:00.0]-00fb:0: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[   10.770449] qla2xxx [0000:03:00.0]-00fc:0: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.0 hdma+ host#=0 fw=7.03.01 (d0d5).
[   10.782726] qla2xxx [0000:03:00.1]-011c: : MSI-X vector count: 31.
[   10.789672] qla2xxx [0000:03:00.1]-001d: : Found an ISP2031 irq 50 iobase 0xffffc9003543a000.
[   11.542666] qla2xxx [0000:03:00.0]-500a:0: LOOP UP detected (8 Gbps).
[   12.160433] scsi host1: qla2xxx
[   12.167552] qla2xxx [0000:03:00.1]-00fb:1: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[   12.176464] qla2xxx [0000:03:00.1]-00fc:1: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.1 hdma+ host#=1 fw=7.03.01 (d0d5).
[   12.765519] scsi: waiting for bus probes to complete ...
[   17.183350] scsi 0:0:0:0: Enclosure         HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.193517] scsi 0:0:0:0: alua: supports implicit TPGS
[   17.199816] scsi 0:0:0:0: alua: port group 01 rel port 05
[   17.206101] scsi 0:0:0:0: alua: port group 01 state N non-preferred supports tOlusNA
[   17.214817] scsi 0:0:0:0: alua: Attached
[   17.221863] scsi 0:0:0:50: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.231626] scsi 0:0:0:50: alua: supports implicit TPGS
[   17.238186] scsi 0:0:0:50: alua: port group 01 rel port 05
[   17.244511] scsi 0:0:0:50: alua: port group 01 state N non-preferred supports tOlusNA
[   17.253318] scsi 0:0:0:50: alua: Attached
[   17.258817] scsi 0:0:0:51: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.269640] scsi 0:0:0:51: alua: supports implicit TPGS
[   17.276194] sd 0:0:0:51: alua: port group 01 rel port 05
[   17.276228] sd 0:0:0:51: [sdb] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   17.276231] sd 0:0:0:50: [sda] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   17.299908] sd 0:0:0:51: alua: port group 01 state N non-preferred supports tOlusNA
[   17.299923] sd 0:0:0:51: [sdb] Write Protect is off
[   17.299928] sd 0:0:0:50: [sda] Write Protect is off
[   17.299930] sd 0:0:0:51: [sdb] Mode Sense: d7 00 00 08
[   17.299933] sd 0:0:0:50: [sda] Mode Sense: d7 00 00 08
[   17.319574] sd 0:0:0:51: alua: Attached
[   17.319658] sd 0:0:0:51: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.319684] sd 0:0:0:50: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.345785] scsi 0:0:0:52: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.355572] scsi 0:0:0:52: alua: supports implicit TPGS
[   17.361748] scsi 0:0:0:52: alua: port group 01 rel port 05
[   17.368028] scsi 0:0:0:52: alua: port group 01 state N non-preferred supports tOlusNA
[   17.376868] scsi 0:0:0:52: alua: Attached
[   17.382181] sd 0:0:0:52: [sdc] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.391138] scsi 0:0:0:53: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.400828] sd 0:0:0:52: [sdc] Write Protect is off
[   17.406321] sd 0:0:0:52: [sdc] Mode Sense: d7 00 00 08
[   17.406394] scsi 0:0:0:53: alua: supports implicit TPGS
[   17.406453] sd 0:0:0:52: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.409007] sd 0:0:0:52: [sdc] Attached SCSI disk
[   17.428209] scsi 0:0:0:53: alua: port group 01 rel port 05
[   17.435706] scsi 0:0:0:53: alua: port group 01 state N non-preferred supports tOlusNA
[   17.444513] scsi 0:0:0:53: alua: Attached
[   17.449226]  sda: sda1 sda2 sda3 sda4
[   17.449437] sd 0:0:0:53: [sdd] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.449894] sd 0:0:0:53: [sdd] Write Protect is off
[   17.449903] sd 0:0:0:53: [sdd] Mode Sense: d7 00 00 08
[   17.449968] scsi 0:0:0:54: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.450035] sd 0:0:0:53: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.450461] scsi 0:0:0:54: alua: supports implicit TPGS
[   17.450668] scsi 0:0:0:54: alua: port group 01 rel port 05
[   17.450740] scsi 0:0:0:54: alua: port group 01 state N non-preferred supports tOlusNA
[   17.450742] scsi 0:0:0:54: alua: Attached
[   17.451174] sd 0:0:0:54: [sde] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.451582] sd 0:0:0:54: [sde] Write Protect is off
[   17.451584] sd 0:0:0:54: [sde] Mode Sense: d7 00 00 08
[   17.451681] sd 0:0:0:54: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.457124] scsi 0:0:1:0: Enclosure         HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.458471] scsi 0:0:1:0: alua: supports implicit TPGS
[   17.458701] scsi 0:0:1:0: alua: port group 00 rel port 01
[   17.458770] scsi 0:0:1:0: alua: port group 00 state N non-preferred supports tOlusNA
[   17.458771] scsi 0:0:1:0: alua: Attached
[   17.460646] scsi 0:0:1:50: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.461554] scsi 0:0:1:50: alua: supports implicit TPGS
[   17.461781] scsi 0:0:1:50: alua: port group 00 rel port 01
[   17.461850] scsi 0:0:1:50: alua: port group 00 state A preferred supports tOlusNA
[   17.461852] scsi 0:0:1:50: alua: Attached
[   17.462501] sd 0:0:0:54: [sde] Attached SCSI disk
[   17.462547] sd 0:0:0:53: [sdd] Attached SCSI disk
[   17.462651] sd 0:0:1:50: [sdf] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   17.462708] scsi 0:0:1:51: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.463490] scsi 0:0:1:51: alua: supports implicit TPGS
[   17.463491] sd 0:0:1:50: [sdf] Write Protect is off
[   17.463494] sd 0:0:1:50: [sdf] Mode Sense: d7 00 00 08
[   17.463689] scsi 0:0:1:51: alua: port group 00 rel port 01
[   17.463702] sd 0:0:1:50: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.463757] scsi 0:0:1:51: alua: port group 00 state A preferred supports tOlusNA
[   17.463758] scsi 0:0:1:51: alua: Attached
[   17.464039] sd 0:0:1:51: [sdg] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   17.464523]  sdb: sdb1 sdb2 sdb3
[   17.464578] scsi 0:0:1:52: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.464870] sd 0:0:1:51: [sdg] Write Protect is off
[   17.464872] sd 0:0:1:51: [sdg] Mode Sense: d7 00 00 08
[   17.465383] sd 0:0:1:51: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.465616] scsi 0:0:1:52: alua: supports implicit TPGS
[   17.465906] scsi 0:0:1:52: alua: port group 00 rel port 01
[   17.466004] scsi 0:0:1:52: alua: port group 00 state A preferred supports tOlusNA
[   17.466006] scsi 0:0:1:52: alua: Attached
[   17.466291] sd 0:0:1:52: [sdh] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.466852] scsi 0:0:1:53: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.467495] sd 0:0:0:51: [sdb] Attached SCSI disk
[   17.467867] sd 0:0:1:52: [sdh] Write Protect is off
[   17.467870] sd 0:0:1:52: [sdh] Mode Sense: d7 00 00 08
[   17.468188] scsi 0:0:1:53: alua: supports implicit TPGS
[   17.468237] sd 0:0:1:52: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.468624] random: nonblocking pool is initialized
[   17.468672] scsi 0:0:1:53: alua: port group 00 rel port 01
[   17.468776] scsi 0:0:1:53: alua: port group 00 state A preferred supports tOlusNA
[   17.468778] scsi 0:0:1:53: alua: Attached
[   17.469143]  sdf: sdf1 sdf2 sdf3 sdf4
[   17.470241] sd 0:0:1:53: [sdi] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.470279] scsi 0:0:1:54: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.471056] sd 0:0:1:53: [sdi] Write Protect is off
[   17.471059] sd 0:0:1:53: [sdi] Mode Sense: d7 00 00 08
[   17.471068] scsi 0:0:1:54: alua: supports implicit TPGS
[   17.471773] sd 0:0:1:53: [sdi] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.471831] scsi 0:0:1:54: alua: port group 00 rel port 01
[   17.472295] scsi 0:0:1:54: alua: port group 00 state A preferred supports tOlusNA
[   17.472297] scsi 0:0:1:54: alua: Attached
[   17.473091] sd 0:0:1:50: [sdf] Attached SCSI disk
[   17.473244] sd 0:0:1:54: [sdj] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.474096] sd 0:0:1:54: [sdj] Write Protect is off
[   17.474099] sd 0:0:1:54: [sdj] Mode Sense: d7 00 00 08
[   17.474625]  sdg: sdg1 sdg2 sdg3
[   17.474798] sd 0:0:1:54: [sdj] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.476228] sd 0:0:1:52: [sdh] Attached SCSI disk
[   17.477347] sd 0:0:1:51: [sdg] Attached SCSI disk
[   17.479458] sd 0:0:1:53: [sdi] Attached SCSI disk
[   17.481173] sd 0:0:1:54: [sdj] Attached SCSI disk
[   17.781654] device-mapper: multipath service-time: version 0.2.0 loaded
[   17.932605] sd 0:0:0:50: [sda] Attached SCSI disk
[   18.459031] EXT4-fs (dm-10): mounted filesystem with ordered data mode. Opts: (null)
[   18.780230] systemd-journald[955]: Received SIGTERM
[   19.352078] audit: type=1404 audit(1428561301.505:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[   19.456614] SELinux: 2048 avtab hash slots, 99663 rules.
[   19.476653] SELinux: 2048 avtab hash slots, 99663 rules.
[   19.505114] SELinux:  8 users, 86 roles, 4799 types, 280 bools, 1 sens, 1024 cats
[   19.505117] SELinux:  83 classes, 99663 rules
[   19.509631] SELinux:  Permission audit_read in class capability2 not defined in policy.
[   19.518629] SELinux:  Class binder not defined in policy.
[   19.524693] SELinux: the above unknown classes and permissions will be allowed
[   19.532815] SELinux:  Completing initialization.
[   19.532816] SELinux:  Setting up existing superblocks.
[   19.546312] audit: type=1403 audit(1428561301.699:3): policy loaded auid=4294967295 ses=4294967295
[   19.563151] systemd[1]: Successfully loaded SELinux policy in 226.528ms.
[   19.704253] audit: type=1400 audit(1428561301.857:4): avc:  denied  { associate } for  pid=1 comm="systemd" name="/" dev="pstore" ino=14346 scontext=system_u:object_r:sysfs_t:s0 tcontext=system_u:object_r:pstorefs_t:s0 tclass=filesystem permissive=0
[   19.729278] systemd[1]: Unable to fix label of /sys/fs/pstore: Permission denied
[   19.804910] systemd[1]: Relabelled /dev and /run in 67.019ms.
[   20.851270] systemd-journald[1773]: Vacuuming done, freed 0 bytes
[   21.003725] EXT4-fs (dm-10): re-mounted. Opts: (null)
[   21.106532] systemd-udevd[1824]: starting version 208
[   21.165723] RPC: Registered named UNIX socket transport module.
[   21.172382] RPC: Registered udp transport module.
[   21.177674] RPC: Registered tcp transport module.
[   21.182963] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   21.269395] ipmi message handler version 39.2
[   21.294240] IPMI System Interface driver.
[   21.299268] ipmi_si: probing via ACPI
[   21.303419] ipmi_si 00:00: [mem 0xfe262110000-0xfe262110002] regsize 1 spacing 1 irq 20
[   21.312466] ipmi_si: Adding ACPI-specified bt state machine
[   21.318852] ipmi_si: probing via SPMI
[   21.323094] ipmi_si: SPMI: mem 0xfe262110000 regsize 1 spacing 1 irq 20
[   21.330550] ipmi_si: Adding SPMI-specified bt state machine duplicate interface
[   21.336785] ipmi_si: Trying ACPI-specified bt state machine at mem address 0xfe262110000, slave address 0x0, irq 20
[   21.343755] ipmi_si 00:00: Using irq 20
[   21.355256] dca service started, version 1.12.1
[   21.362168] input: PC Speaker as /devices/platform/pcspkr/input/input1
[   21.372082] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   21.372224] EDAC MC: Ver: 3.0.0
[   21.373828] IPMI BT: req2rsp=6 secs retries=16
[   21.398917] ipmi_si 00:00: Found new BMC (man_id: 0x00000b, prod_id: 0x1002, dev_id: 0x40)
[   21.408271] ipmi_si 00:00: IPMI bt interface initialized
[   21.418674] lpc_ich 0000:20:1f.0: I/O space for ACPI uninitialized
[   21.425731] lpc_ich 0000:20:1f.0: No MFD cells added
[   21.433854] ioatdma: Intel(R) QuickData Technology Driver 4.00
[   21.434361] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434384] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434402] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434427] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434445] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434456] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434461] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434467] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434473] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434478] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434480] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434486] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434492] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434501] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434509] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434511] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434517] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434523] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434528] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434533] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434535] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434541] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434547] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434552] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434558] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434560] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434565] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434571] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434576] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434582] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434583] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434589] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434595] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434600] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434606] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434608] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434629] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434635] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434640] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434645] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434647] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434657] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434663] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434668] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434673] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434675] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434682] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434687] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434693] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434698] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434700] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434709] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434716] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434726] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434737] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434739] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434749] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434757] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434763] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434770] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434772] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434796] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434801] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434807] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434812] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434813] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
[   21.434826] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
[   21.434913] Installing knfsd (copyright (C) 1996 okir-pn4DOG8n3UYbFoVRYvo4fw@public.gmane.org).
[   21.435391] EDAC MC0: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#0: DEV 0000:0f:0e.0 (POLLED)
[   21.435591] EDAC MC1: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#1: DEV 0000:1f:0e.0 (POLLED)
[   21.435861] EDAC MC2: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#2: DEV 0000:2f:0e.0 (POLLED)
[   21.437391] EDAC MC3: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#3: DEV 0000:3f:0e.0 (POLLED)
[   21.437392] EDAC sbridge:  Ver: 1.1.0 
[   21.439861] hpwdt 0000:06:00.0: HP Watchdog Timer Driver: NMI decoding initialized, allow kernel dump: ON (default = 1/ON)
[   21.440263] hpwdt 0000:06:00.0: HP Watchdog Timer Driver: 1.3.3, timer margin: 30 seconds (nowayout=0).
[   21.576078] pps_core: LinuxPPS API ver. 1 registered
[   21.581663] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti-k2GhghHVRtY@public.gmane.org>
[   21.618453] ses 0:0:0:0: Attached Enclosure device
[   21.625306] ses 0:0:1:0: Attached Enclosure device
[   21.633067] iTCO_vendor_support: vendor-support=0
[   21.633078] Adding 2047996k swap on /dev/mapper/rhel_dhb5-swap.  Priority:-1 extents:1 across:2047996k FS
[   21.655955] PTP clock support registered
[   21.661130] ipmi device interface
[   21.667317] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   21.675242] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[   21.691156] AVX version of gcm_enc/dec engaged.
[   21.696997] AES CTR mode by8 optimization enabled
[   21.698929] EXT4-fs (dm-9): mounted filesystem with ordered data mode. Opts: (null)
[   21.723041] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[   21.775542] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.0.1-k
[   21.784153] ixgbe: Copyright (c) 1999-2014 Intel Corporation.
[   21.791878] alg: No test for crc32 (crc32-pclmul)
[   21.837656] FAT-fs (dm-8): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[   21.856906] systemd-journald[1773]: Received request to flush runtime journal from PID 1
[   21.875050] audit: type=1305 audit(1428561304.025:5): audit_pid=2540 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1
[   21.884916] ixgbe 0000:01:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[   21.885053] ixgbe 0000:01:00.0: PCI Express bandwidth of 32GT/s available
[   21.885054] ixgbe 0000:01:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[   21.885389] ixgbe 0000:01:00.0: MAC: 2, PHY: 1, PBA No: G33590-000
[   21.885393] ixgbe 0000:01:00.0: e4:11:5b:9a:f4:48
[   21.927966] ixgbe 0000:01:00.0: Intel(R) 10 Gigabit Network Connection
[   22.023465] ixgbe 0000:01:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[   22.033759] ixgbe 0000:01:00.1: PCI Express bandwidth of 32GT/s available
[   22.042805] ixgbe 0000:01:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[   22.052850] ixgbe 0000:01:00.1: MAC: 2, PHY: 1, PBA No: G33590-000
[   22.060917] ixgbe 0000:01:00.1: e4:11:5b:9a:f4:49
[   22.104737] ixgbe 0000:01:00.1: Intel(R) 10 Gigabit Network Connection
[   22.203838] ixgbe 0000:21:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[   22.214138] ixgbe 0000:21:00.0: PCI Express bandwidth of 32GT/s available
[   22.223310] ixgbe 0000:21:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[   22.233092] ixgbe 0000:21:00.0: MAC: 2, PHY: 1, PBA No: G33590-000
[   22.241268] ixgbe 0000:21:00.0: e4:11:5b:9a:ed:84
[   22.248589] ip_tables: (C) 2000-2006 Netfilter Core Team
[   22.257585] ses 0:0:0:0: Attached scsi generic sg0 type 13
[   22.263946] sd 0:0:0:50: Attached scsi generic sg1 type 0
[   22.270142] sd 0:0:0:51: Attached scsi generic sg2 type 0
[   22.276382] sd 0:0:0:52: Attached scsi generic sg3 type 0
[   22.283972] sd 0:0:0:53: Attached scsi generic sg4 type 0
[   22.284504] ixgbe 0000:21:00.0: Intel(R) 10 Gigabit Network Connection
[   22.300523] sd 0:0:0:54: Attached scsi generic sg5 type 0
[   22.307423] ses 0:0:1:0: Attached scsi generic sg6 type 13
[   22.313803] sd 0:0:1:50: Attached scsi generic sg7 type 0
[   22.320115] sd 0:0:1:51: Attached scsi generic sg8 type 0
[   22.326439] sd 0:0:1:52: Attached scsi generic sg9 type 0
[   22.332725] sd 0:0:1:53: Attached scsi generic sg10 type 0
[   22.339114] sd 0:0:1:54: Attached scsi generic sg11 type 0
[   22.379597] ixgbe 0000:21:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[   22.389217] ixgbe 0000:21:00.1: PCI Express bandwidth of 32GT/s available
[   22.396849] ixgbe 0000:21:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[   22.405212] ixgbe 0000:21:00.1: MAC: 2, PHY: 1, PBA No: G33590-000
[   22.412154] ixgbe 0000:21:00.1: e4:11:5b:9a:ed:85
[   22.453746] ixgbe 0000:21:00.1: Intel(R) 10 Gigabit Network Connection
[   22.467412] ixgbe 0000:21:00.1 ens50403203f1: renamed from eth3
[   22.494387] systemd-udevd[1834]: renamed network interface eth3 to ens50403203f1
[   22.518371] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   22.568413] ixgbe 0000:01:00.0 eno32: renamed from eth0
[   22.585591] systemd-udevd[1835]: renamed network interface eth0 to eno32
[   22.617298] Ebtables v2.0 registered
[   22.668266] ixgbe 0000:01:00.1 ens50402691f1: renamed from eth1
[   22.705712] systemd-udevd[1839]: renamed network interface eth1 to ens50402691f1
[   22.705718] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[   22.769151] ixgbe 0000:21:00.0 eno384: renamed from eth2
[   22.790791] systemd-udevd[1840]: renamed network interface eth2 to eno384
[   22.898431] cfg80211: Calling CRDA to update world regulatory domain
[   23.000971] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
[   23.270609] ixgbe 0000:01:00.0: registered PHC device on eno32
[   23.281251] ixgbe 0000:01:00.0 eno32: NIC Link is Up 10 Gbps, Flow Control: None
[   23.597832] ixgbe 0000:01:00.1: registered PHC device on ens50402691f1
[   23.608722] ixgbe 0000:01:00.1 ens50402691f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[   23.908562] ixgbe 0000:21:00.0: registered PHC device on eno384
[   23.918991] ixgbe 0000:21:00.0 eno384: NIC Link is Up 10 Gbps, Flow Control: None
[   24.216920] ixgbe 0000:21:00.1: registered PHC device on ens50403203f1
[   24.227378] ixgbe 0000:21:00.1 ens50403203f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[   33.256689] qla2xxx [0000:03:00.1]-8038:1: Cable is unplugged...
[48319.454576] hpilo 0000:06:00.2: Open could not dequeue a packet
[57716.150688] hpilo 0000:06:00.2: Open could not dequeue a packet
[105365.068430] hpilo 0000:06:00.2: Open could not dequeue a packet
[125704.610472] hpilo 0000:06:00.2: Open could not dequeue a packet
[210189.867789] perf interrupt took too long (2697 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
[312433.072947] hpilo 0000:06:00.2: Open could not dequeue a packet
[319465.196351] hpilo 0000:06:00.2: Open could not dequeue a packet
[454397.519972] perf interrupt took too long (5264 > 5000), lowering kernel.perf_event_max_sample_rate to 25000
[496698.512924] hpilo 0000:06:00.2: Open could not dequeue a packet
[518643.486101] hpilo 0000:06:00.2: Open could not dequeue a packet
[540406.727950] hpilo 0000:06:00.2: Closing, but controller still active
[555461.338496] hpilo 0000:06:00.2: Open could not dequeue a packet
[558403.097119] hpilo 0000:06:00.2: Open could not dequeue a packet

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: superdomex_dump.log --]
[-- Type: text/x-log; name="superdomex_dump.log", Size: 108368 bytes --]

[root@dhb5 ~]# echo c > /proc/sysrq-trigger 
[612372.032509] sysrq: SysRq : Trigger a crash
[612372.037385] BUG: unable to handle kernel NULL pointer dereference at           (null)
[612372.046291] IP: [<ffffffff8141af96>] sysrq_handle_crash+0x16/0x20
[612372.053248] PGD 7f59044067 PUD 7f59045067 PMD 0 
[612372.058554] Oops: 0002 [#1] SMP 
[612372.062290] Modules linked in: ip6t_rpfilter ip6t_REJECT nf_reject_ipv6 nf_conntrack_ipv6 nf_defrag_ipv6 ipt_REJECT nf_reject_ipv4 nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack cfg80211 rfkill ebtable_nat ebtable_broute bridge stp llc ebtable_filter ebtables ip6table_mangle ip6table_security ip6table_raw ip6table_filter ip6_tables iptable_mangle iptable_security iptable_raw iptable_filter sg ip_tables x86_pkg_temp_thermal coretemp kvm_intel kvm vfat crct10dif_pclmul fat crc32_pclmul ixgbe crc32c_intel ghash_clmulni_intel aesni_intel iTCO_wdt ptp lrw ipmi_devintf iTCO_vendor_support gf128mul ses glue_helper pps_core ablk_helper enclosure mdio hpilo hpwdt sb_edac cryptd lpc_ich ioatdma nfsd pcspkr shpchp edac_core dca mfd_core ipmi_si auth_rpcgss ipmi_msghandler nfs_acl lockd grace sunrpc ext4 jbd2 dm_service_time sd_mod mgag200 syscopyarea sysfillrect sysimgblt i2c_algo_bit drm_kms_helper ttm qla2xxx drm i2c_core scsi_transport_fc dm_mirror dm_region_hash dm_log dm_multipath dm_mod
[612372.162142] CPU: 16 PID: 25330 Comm: bash Not tainted 4.0.0-rc7.v10u2 #1
[612372.169764] Hardware name: HP Superdome2 16s x86, BIOS Bundle: 005.073.000 SFW: 015.082.000 08/08/2014
[612372.180310] task: ffff881fc84051c0 ti: ffff881f98990000 task.ti: ffff881f98990000
[612372.188808] RIP: 0010:[<ffffffff8141af96>]  [<ffffffff8141af96>] sysrq_handle_crash+0x16/0x20
[612372.198484] RSP: 0018:ffff881f98993e58  EFLAGS: 00010246
[612372.204541] RAX: 000000000000000f RBX: ffffffff81ad0fa0 RCX: 0000000000000000
[612372.212646] RDX: 0000000000000000 RSI: ffff885f7fa2e6d8 RDI: 0000000000000063
[612372.220752] RBP: ffff881f98993e58 R08: 00000000000000c2 R09: ffff889fffeb3580
[612372.228860] R10: 00000000000008e0 R11: 00000000000008df R12: 0000000000000063
[612372.236965] R13: 0000000000000000 R14: 0000000000000007 R15: 0000000000000000
[612372.245073] FS:  00007fac00982740(0000) GS:ffff885f7fa20000(0000) knlGS:0000000000000000
[612372.254251] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[612372.260795] CR2: 0000000000000000 CR3: 0000007f5e7b7000 CR4: 00000000001407e0
[612372.268903] Stack:
[612372.271256]  ffff881f98993e88 ffffffff8141b817 0000000000000002 00007fac00987000
[612372.279689]  0000000000000002 ffff881f98993f48 ffff881f98993ea8 ffffffff8141bcc3
[612372.288130]  0000000000000001 ffff887f7134b800 ffff881f98993ed8 ffffffff8125dffd
[612372.296562] Call Trace:
[612372.299407]  [<ffffffff8141b817>] __handle_sysrq+0x107/0x170
[612372.305855]  [<ffffffff8141bcc3>] write_sysrq_trigger+0x33/0x40
[612372.312602]  [<ffffffff8125dffd>] proc_reg_write+0x3d/0x80
[612372.318864]  [<ffffffff811f2f37>] vfs_write+0xb7/0x1f0
[612372.324728]  [<ffffffff8102336c>] ? do_audit_syscall_entry+0x6c/0x70
[612372.331958]  [<ffffffff811f3bb5>] SyS_write+0x55/0xd0
[612372.337728]  [<ffffffff816b7ac9>] system_call_fastpath+0x12/0x17
[612372.344566] Code: c1 f7 ff ff eb db 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 0f 1f 44 00 00 55 c7 05 f8 92 60 00 01 00 00 00 48 89 e5 0f ae f8 <c6> 04 25 00 00 00 00 01 5d c3 0f 1f 44 00 00 55 31 c0 48 89 e5 
[612372.366415] RIP  [<ffffffff8141af96>] sysrq_handle_crash+0x16/0x20
[612372.373456]  RSP <ffff881f98993e58>
[612372.377465] CR2: 0000000000000000
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.0.0-rc7.v10u2 (root@dhb5.fcux.usa.hp.com) (gcc version 4.8.2 20140120 (Red Hat 4.8.2-16) (GCC) ) #1 SMP Thu Apr 9 02:19:13 EDT 2015
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on irqpoll nr_cpus=4 reset_devices cgroup_disable=memory mce=off numa=off udev.children-max=2 panic=10 rootflags=nofail acpi_no_memhotplug disable_cpu_apicid=0 memmap=exactmap memmap=564K@4K memmap=523700K@393216K acpi_rsdp=0x7bffe014 elfcorehdr=916916K memmap=36864K#1992700K memmap=2048K#2029564K memmap=4K#4194304K memmap=4K#268435456K
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000100-0x000000000008dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000078bfefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000078bff000-0x00000000799fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000799ff000-0x000000007bdfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007bdff000-0x000000007bffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007bfff000-0x000000007bffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ff1fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000100000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000100001000-0x000000207fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000004000000000-0x0000004000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000004000001000-0x0000009fffffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000fdfe0000000-0x00000fdfffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe060000000-0x00000fe07fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe0e0000000-0x00000fe0ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe160000000-0x00000fe17fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe1e0000000-0x00000fe1ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe260000000-0x00000fe27fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe2e0000000-0x00000fe2ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe360000000-0x00000fe37fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe3e0000000-0x00000fe3ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe460000000-0x00000fe47fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe4e0000000-0x00000fe4ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe560000000-0x00000fe57fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe5e0000000-0x00000fe5ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe660000000-0x00000fe67fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe6e0000000-0x00000fe6ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe760000000-0x00000fe77fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe7e0000000-0x00000fe7ffffffff] reserved
[    0.000000] e820: last_pfn = 0xa000000 max_arch_pfn = 0x400000000
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: user-defined physical RAM map:
[    0.000000] user: [mem 0x0000000000001000-0x000000000008dfff] usable
[    0.000000] user: [mem 0x0000000018000000-0x0000000037f6cfff] usable
[    0.000000] user: [mem 0x00000000799ff000-0x000000007bffefff] ACPI data
[    0.000000] user: [mem 0x0000000100000000-0x0000000100000fff] ACPI data
[    0.000000] user: [mem 0x0000004000000000-0x0000004000000fff] ACPI data
[    0.000000] DMI not present or invalid.
[    0.000000] AGP: No AGP bridge found
[    0.000000] e820: last_pfn = 0x37f6d max_arch_pfn = 0x400000000
[    0.000000] PAT configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- UC  
[    0.000000] x2apic: enabled by BIOS, switching to x2apic ops
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000] init_memory_mapping: [mem 0x37000000-0x371fffff]
[    0.000000] init_memory_mapping: [mem 0x20000000-0x36ffffff]
[    0.000000] init_memory_mapping: [mem 0x18000000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x37200000-0x37f6cfff]
[    0.000000] RAMDISK: [mem 0x37384000-0x37f59fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000007BFFE014 000024 (v02 HP    )
[    0.000000] ACPI: XSDT 0x000000007BFFD0E8 0000AC (v01 HP     03010201 00000002 MSFT 01000013)
[    0.000000] ACPI: FACP 0x000000007BFFB000 00010C (v05 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: DSDT 0x000000007BFF1000 0004A8 (v02 HP     CORE     00000002 HPAG 00020000)
[    0.000000] ACPI: FACS 0x000000007AD00000 000040
[    0.000000] ACPI: MCEJ 0x000000007BFFC000 000130 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: HPET 0x000000007BFFA000 000038 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: MCFG 0x000000007BFF9000 00003C (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SLIT 0x000000007BFF8000 00003C (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: APIC 0x000000007BFF7000 000DA8 (v03 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SRAT 0x000000007BFF6000 000C38 (v02 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SPMI 0x000000007BFF5000 000040 (v05 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SPCR 0x000000007BFF4000 000050 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: DBGP 0x000000007BFF3000 000034 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: RASF 0x000000007BFF2000 000030 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SSDT 0x000000007BFD7000 019FB9 (v02 HP     BLADE000 00000002 HPAG 00020000)
[    0.000000] ACPI: SSDT 0x000000007BFBD000 0196F0 (v02 HP     BLADE001 00000002 HPAG 00020000)
[    0.000000] ACPI: DMAR 0x000000007BFBB000 000368 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: HEST 0x000000007BFBA000 000184 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: BERT 0x000000007BFB9000 000030 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: EINJ 0x000000007BFB8000 000150 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] Setting APIC routing to physical x2apic.
[    0.000000] NUMA turned off
[    0.000000] Faking a node at [mem 0x0000000000000000-0x0000000037f6cfff]
[    0.000000] NODE_DATA(0) allocated [mem 0x3735e000-0x37383fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x0000000037f6cfff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008dfff]
[    0.000000]   node   0: [mem 0x0000000018000000-0x0000000037f6cfff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000037f6cfff]
[    0.000000] ACPI: X2APIC (apic_id[0x00] uid[0x00] enabled)
[    0.000000] APIC: Disabling requested cpu. Processor 0/0x0 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x02] uid[0x02] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x04] uid[0x04] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x06] uid[0x06] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x08] uid[0x08] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 4/0x8 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0a] uid[0x0a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 5/0xa ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0c] uid[0x0c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 6/0xc ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0e] uid[0x0e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 7/0xe ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x10] uid[0x10] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 8/0x10 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x12] uid[0x12] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 9/0x12 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x14] uid[0x14] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 10/0x14 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x16] uid[0x16] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 11/0x16 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x18] uid[0x18] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 12/0x18 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x1a] uid[0x1a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 13/0x1a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x1c] uid[0x1c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 14/0x1c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x20] uid[0x24] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 15/0x20 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x22] uid[0x26] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x24] uid[0x28] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 17/0x24 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x26] uid[0x2a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 18/0x26 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x28] uid[0x2c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 19/0x28 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2a] uid[0x2e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 20/0x2a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2c] uid[0x30] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 21/0x2c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2e] uid[0x32] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 22/0x2e ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x30] uid[0x34] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 23/0x30 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x32] uid[0x36] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 24/0x32 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x34] uid[0x38] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 25/0x34 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x36] uid[0x3a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 26/0x36 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x38] uid[0x3c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 27/0x38 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x3a] uid[0x3e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 28/0x3a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x3c] uid[0x40] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 29/0x3c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x40] uid[0x48] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 30/0x40 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x42] uid[0x4a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 31/0x42 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x44] uid[0x4c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 32/0x44 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x46] uid[0x4e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 33/0x46 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x48] uid[0x50] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 34/0x48 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4a] uid[0x52] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 35/0x4a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4c] uid[0x54] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 36/0x4c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4e] uid[0x56] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 37/0x4e ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x50] uid[0x58] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 38/0x50 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x52] uid[0x5a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 39/0x52 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x54] uid[0x5c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 40/0x54 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x56] uid[0x5e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 41/0x56 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x58] uid[0x60] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 42/0x58 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x5a] uid[0x62] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 43/0x5a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x5c] uid[0x64] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 44/0x5c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x60] uid[0x6c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 45/0x60 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x62] uid[0x6e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 46/0x62 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x64] uid[0x70] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 47/0x64 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x66] uid[0x72] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 48/0x66 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x68] uid[0x74] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 49/0x68 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6a] uid[0x76] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 50/0x6a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6c] uid[0x78] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 51/0x6c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6e] uid[0x7a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 52/0x6e ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x70] uid[0x7c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 53/0x70 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x72] uid[0x7e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 54/0x72 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x74] uid[0x80] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 55/0x74 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x76] uid[0x82] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 56/0x76 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x78] uid[0x84] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 57/0x78 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x7a] uid[0x86] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 58/0x7a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x7c] uid[0x88] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 59/0x7c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x01] uid[0x01] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 60/0x1 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x03] uid[0x03] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 61/0x3 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x05] uid[0x05] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 62/0x5 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x07] uid[0x07] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 63/0x7 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x09] uid[0x09] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 64/0x9 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0b] uid[0x0b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 65/0xb ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0d] uid[0x0d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 66/0xd ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0f] uid[0x0f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 67/0xf ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x11] uid[0x11] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 68/0x11 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x13] uid[0x13] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 69/0x13 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x15] uid[0x15] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 70/0x15 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x17] uid[0x17] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 71/0x17 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x19] uid[0x19] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 72/0x19 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x1b] uid[0x1b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 73/0x1b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x1d] uid[0x1d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 74/0x1d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x21] uid[0x25] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 75/0x21 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x23] uid[0x27] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 76/0x23 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x25] uid[0x29] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 77/0x25 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x27] uid[0x2b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 78/0x27 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x29] uid[0x2d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 79/0x29 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2b] uid[0x2f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 80/0x2b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2d] uid[0x31] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 81/0x2d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2f] uid[0x33] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 82/0x2f ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x31] uid[0x35] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 83/0x31 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x33] uid[0x37] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 84/0x33 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x35] uid[0x39] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 85/0x35 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x37] uid[0x3b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 86/0x37 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x39] uid[0x3d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 87/0x39 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x3b] uid[0x3f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 88/0x3b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x3d] uid[0x41] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 89/0x3d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x41] uid[0x49] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 90/0x41 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x43] uid[0x4b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 91/0x43 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x45] uid[0x4d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 92/0x45 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x47] uid[0x4f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 93/0x47 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x49] uid[0x51] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 94/0x49 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4b] uid[0x53] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 95/0x4b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4d] uid[0x55] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 96/0x4d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4f] uid[0x57] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 97/0x4f ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x51] uid[0x59] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 98/0x51 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x53] uid[0x5b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 99/0x53 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x55] uid[0x5d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 100/0x55 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x57] uid[0x5f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 101/0x57 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x59] uid[0x61] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 102/0x59 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x5b] uid[0x63] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 103/0x5b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x5d] uid[0x65] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 104/0x5d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x61] uid[0x6d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 105/0x61 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x63] uid[0x6f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 106/0x63 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x65] uid[0x71] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 107/0x65 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x67] uid[0x73] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 108/0x67 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x69] uid[0x75] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 109/0x69 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6b] uid[0x77] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 110/0x6b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6d] uid[0x79] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 111/0x6d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6f] uid[0x7b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 112/0x6f ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x71] uid[0x7d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 113/0x71 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x73] uid[0x7f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 114/0x73 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x75] uid[0x81] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 115/0x75 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x77] uid[0x83] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 116/0x77 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x79] uid[0x85] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 117/0x79 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x7b] uid[0x87] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 118/0x7b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x7d] uid[0x89] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 119/0x7d ignored.
[    0.000000] ACPI: X2APIC_NMI (uid[0x00] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x01] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x02] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x03] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x04] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x05] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x06] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x07] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x08] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x09] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x10] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x11] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x12] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x13] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x14] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x15] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x16] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x17] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x18] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x19] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x24] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x25] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x26] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x27] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x28] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x29] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x30] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x31] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x32] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x33] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x34] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x35] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x36] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x37] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x38] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x39] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x40] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x41] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x48] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x49] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x50] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x51] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x52] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x53] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x54] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x55] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x56] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x57] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x58] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x59] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x60] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x61] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x62] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x63] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x64] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x65] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x70] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x71] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x72] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x73] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x74] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x75] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x76] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x77] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x78] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x79] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x80] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x81] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x82] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x83] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x84] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x85] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x86] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x87] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x88] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x89] high level lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x09] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec04000] gsi_base[48])
[    0.000000] IOAPIC[2]: apic_id 10, version 32, address 0xfec04000, GSI 48-71
[    0.000000] ACPI: IOAPIC (id[0x0b] address[0xfec08000] gsi_base[72])
[    0.000000] IOAPIC[3]: apic_id 11, version 32, address 0xfec08000, GSI 72-95
[    0.000000] ACPI: IOAPIC (id[0x0c] address[0xfec09000] gsi_base[96])
[    0.000000] IOAPIC[4]: apic_id 12, version 32, address 0xfec09000, GSI 96-119
[    0.000000] ACPI: IOAPIC (id[0x0d] address[0xfec0c000] gsi_base[120])
[    0.000000] IOAPIC[5]: apic_id 13, version 32, address 0xfec0c000, GSI 120-143
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[    0.000000] smpboot: 120 Processors exceeds NR_CPUS limit of 4
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008e000-0x17ffffff]
[    0.000000] e820: [mem 0x7bfff000-0xffffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 32 pages/cpu @ffff880037000000 s91544 r8192 d31336 u524288
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 128996
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on irqpoll nr_cpus=4 reset_devices cgroup_disable=memory mce=off numa=off udev.children-max=2 panic=10 rootflags=nofail acpi_no_memhotplug disable_cpu_apicid=0 memmap=exactmap memmap=564K@4K memmap=523700K@393216K acpi_rsdp=0x7bffe014 elfcorehdr=916916K memmap=36864K#1992700K memmap=2048K#2029564K memmap=4K#4194304K memmap=4K#268435456K
[    0.000000] Intel-IOMMU: enabled
[    0.000000] Misrouted IRQ fixup and polling support enabled
[    0.000000] This may significantly impact system performance
[    0.000000] Disabling memory control group subsystem
[    0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[    0.000000] AGP: Checking aperture...
[    0.000000] AGP: No AGP bridge found
[    0.000000] Memory: 484896K/524264K available (6899K kernel code, 1427K rwdata, 3228K rodata, 1704K init, 2688K bss, 39368K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS:524544 nr_irqs:1024 16
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-3.
[    0.000000] Spurious LAPIC timer interrupt on cpu 0
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [ttyS0] enabled
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2793.528 MHz processor
[    0.000030] Calibrating delay loop (skipped), value calculated using timer frequency.. 5587.05 BogoMIPS (lpj=2793528)
[    0.011950] pid_max: default: 32768 minimum: 301
[    0.017136] ACPI: Core revision 20150204
[    0.030375] ACPI: All ACPI Tables successfully acquired
[    0.036276] Security Framework initialized
[    0.040879] SELinux:  Initializing.
[    0.044851] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.052761] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.060525] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
[    0.067949] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)
[    0.076007] Initializing cgroup subsys blkio
[    0.080797] Initializing cgroup subsys memory
[    0.085686] Initializing cgroup subsys devices
[    0.090671] Initializing cgroup subsys freezer
[    0.095657] Initializing cgroup subsys net_cls
[    0.100643] Initializing cgroup subsys perf_event
[    0.105921] Initializing cgroup subsys hugetlb
[    0.110936] CPU: Physical Processor ID: 1
[    0.115432] CPU: Processor Core ID: 1
[    0.119547] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.126287] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.134981] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.141135] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    0.148100] Freeing SMP alternatives memory: 28K (ffffffff81cf7000 - ffffffff81cfe000)
[    0.158353] ftrace: allocating 25687 entries in 101 pages
[    0.176442] dmar: Host address width 44
[    0.180746] dmar: DRHD base: 0x00000093ff8000 flags: 0x0
[    0.186712] dmar: IOMMU 0: reg_base_addr 93ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.195794] dmar: DRHD base: 0x00000097ff8000 flags: 0x0
[    0.201756] dmar: IOMMU 1: reg_base_addr 97ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.210838] dmar: DRHD base: 0x0000009bff8000 flags: 0x0
[    0.216803] dmar: IOMMU 2: reg_base_addr 9bff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.225886] dmar: DRHD base: 0x0000009fff8000 flags: 0x0
[    0.231848] dmar: IOMMU 3: reg_base_addr 9fff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.240931] dmar: RMRR base: 0x00000079911000 end: 0x00000079913fff
[    0.247965] dmar: RMRR base: 0x0000007990e000 end: 0x00000079910fff
[    0.254998] dmar: ATSR flags: 0x0
[    0.258715] dmar: ATSR flags: 0x0
[    0.262431] dmar: ATSR flags: 0x0
[    0.266148] dmar: ATSR flags: 0x0
[    0.269863] dmar: RHSA base: 0x00000093ff8000 proximity domain: 0x0
[    0.276896] dmar: RHSA base: 0x00000097ff8000 proximity domain: 0x1
[    0.283929] dmar: RHSA base: 0x0000009bff8000 proximity domain: 0x2
[    0.290960] dmar: RHSA base: 0x0000009fff8000 proximity domain: 0x3
[    0.297994] IOAPIC id 13 under DRHD base  0x9fff8000 IOMMU 3
[    0.304342] IOAPIC id 11 under DRHD base  0x9bff8000 IOMMU 2
[    0.310692] IOAPIC id 12 under DRHD base  0x9bff8000 IOMMU 2
[    0.317041] IOAPIC id 10 under DRHD base  0x97ff8000 IOMMU 1
[    0.323391] IOAPIC id 8 under DRHD base  0x93ff8000 IOMMU 0
[    0.329645] IOAPIC id 9 under DRHD base  0x93ff8000 IOMMU 0
[    0.335897] HPET id 0 under DRHD base 0x93ff8000
[    0.342640] IR is enabled prior to OS.
[    0.346849] IR is enabled prior to OS.
[    0.351056] IR is enabled prior to OS.
[    0.355264] IR is enabled prior to OS.
[    0.359473] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.377636] Enabled IRQ remapping in x2apic mode
[    0.384371] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.401150] smpboot: CPU0: Intel(R) Xeon(R) CPU E7-2890 v2 @ 2.80GHz (fam: 06, model: 3e, stepping: 07)
[    0.411746] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Broken BIOS detected, complain to your hardware vendor.
[    0.427041] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 38d is b0)
[    0.435635] Intel PMU driver.
[    0.438964] ... version:                3
[    0.443461] ... bit width:              48
[    0.448055] ... generic registers:      4
[    0.452554] ... value mask:             0000ffffffffffff
[    0.458515] ... max period:             0000ffffffffffff
[    0.464476] ... fixed-purpose events:   3
[    0.468972] ... event mask:             000000070000000f
[    0.475539] x86: Booting SMP configuration:
[    0.480237] .... node  #0, CPUs:      #1
[    0.578185] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.587491]  #2 #3
[    0.617753] x86: Booted up 1 node, 4 CPUs
[    0.622458] smpboot: Total of 4 processors activated (22360.76 BogoMIPS)
[    0.644450] devtmpfs: initialized
[    0.649952] evm: security.selinux
[    0.653673] evm: security.ima
[    0.657000] evm: security.capability
[    0.661315] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.669287] NET: Registered protocol family 16
[    0.678998] cpuidle: using governor menu
[    0.683500] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.692000] ACPI: bus type PCI registered
[    0.696500] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.703792] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0x80000000-0x83ffffff] (base 0x80000000)
[    0.714244] PCI: not using MMCONFIG
[    0.718158] PCI: Using configuration type 1 for base access
[    0.729404] ACPI: Added _OSI(Module Device)
[    0.734101] ACPI: Added _OSI(Processor Device)
[    0.739088] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.744368] ACPI: Added _OSI(Processor Aggregator Device)
[    0.764920] ACPI: Interpreter enabled
[    0.769033] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
[    0.779425] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
[    0.789805] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20150204/hwxface-580)
[    0.800176] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20150204/hwxface-580)
[    0.810556] ACPI: (supports S0 S5)
[    0.814373] ACPI: Using IOAPIC for interrupt routing
[    0.819978] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0x80000000-0x83ffffff] (base 0x80000000)
[    0.832714] [Firmware Info]: PCI: MMCONFIG at [mem 0x80000000-0x83ffffff] not reserved in ACPI motherboard resources
[    0.844529] PCI: not using MMCONFIG
[    0.848504] HEST: Table parsing has been initialized.
[    0.854174] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.873807] APIC: Disabling requested cpu. Processor 120/0x0 ignored.
[    0.881037] ACPI: Unable to map lapic to logical cpu number
[    0.887322] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 121/0x1 ignored.
[    0.896309] ACPI: Unable to map lapic to logical cpu number
[    0.902618] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 122/0x3 ignored.
[    0.911602] ACPI: Unable to map lapic to logical cpu number
[    0.917911] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 123/0x5 ignored.
[    0.926898] ACPI: Unable to map lapic to logical cpu number
[    0.933205] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 124/0x7 ignored.
[    0.942191] ACPI: Unable to map lapic to logical cpu number
[    0.948487] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 125/0x8 ignored.
[    0.957475] ACPI: Unable to map lapic to logical cpu number
[    0.963753] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 126/0x9 ignored.
[    0.972741] ACPI: Unable to map lapic to logical cpu number
[    0.979037] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 127/0xa ignored.
[    0.988023] ACPI: Unable to map lapic to logical cpu number
[    0.994304] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 128/0xb ignored.
[    1.003290] ACPI: Unable to map lapic to logical cpu number
[    1.009585] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 129/0xc ignored.
[    1.018571] ACPI: Unable to map lapic to logical cpu number
[    1.024853] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 130/0xd ignored.
[    1.033838] ACPI: Unable to map lapic to logical cpu number
[    1.040137] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 131/0xe ignored.
[    1.049123] ACPI: Unable to map lapic to logical cpu number
[    1.055402] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 132/0xf ignored.
[    1.064389] ACPI: Unable to map lapic to logical cpu number
[    1.070684] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 133/0x10 ignored.
[    1.079766] ACPI: Unable to map lapic to logical cpu number
[    1.086047] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 134/0x11 ignored.
[    1.095131] ACPI: Unable to map lapic to logical cpu number
[    1.101426] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 135/0x12 ignored.
[    1.110510] ACPI: Unable to map lapic to logical cpu number
[    1.116789] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 136/0x13 ignored.
[    1.125875] ACPI: Unable to map lapic to logical cpu number
[    1.132170] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 137/0x14 ignored.
[    1.141253] ACPI: Unable to map lapic to logical cpu number
[    1.147533] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 138/0x15 ignored.
[    1.156616] ACPI: Unable to map lapic to logical cpu number
[    1.162912] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 139/0x16 ignored.
[    1.171996] ACPI: Unable to map lapic to logical cpu number
[    1.178277] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 140/0x17 ignored.
[    1.187359] ACPI: Unable to map lapic to logical cpu number
[    1.193655] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 141/0x18 ignored.
[    1.202738] ACPI: Unable to map lapic to logical cpu number
[    1.209018] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 142/0x19 ignored.
[    1.218101] ACPI: Unable to map lapic to logical cpu number
[    1.224397] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 143/0x1a ignored.
[    1.233480] ACPI: Unable to map lapic to logical cpu number
[    1.239759] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 144/0x1b ignored.
[    1.248842] ACPI: Unable to map lapic to logical cpu number
[    1.255138] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 145/0x1c ignored.
[    1.264220] ACPI: Unable to map lapic to logical cpu number
[    1.270499] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 146/0x1d ignored.
[    1.279581] ACPI: Unable to map lapic to logical cpu number
[    1.285890] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 147/0x20 ignored.
[    1.294974] ACPI: Unable to map lapic to logical cpu number
[    1.301254] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 148/0x21 ignored.
[    1.310337] ACPI: Unable to map lapic to logical cpu number
[    1.316644] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 149/0x23 ignored.
[    1.325726] ACPI: Unable to map lapic to logical cpu number
[    1.332023] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 150/0x24 ignored.
[    1.341107] ACPI: Unable to map lapic to logical cpu number
[    1.347387] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 151/0x25 ignored.
[    1.356470] ACPI: Unable to map lapic to logical cpu number
[    1.362765] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 152/0x26 ignored.
[    1.371849] ACPI: Unable to map lapic to logical cpu number
[    1.378128] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 153/0x27 ignored.
[    1.387211] ACPI: Unable to map lapic to logical cpu number
[    1.393507] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 154/0x28 ignored.
[    1.402589] ACPI: Unable to map lapic to logical cpu number
[    1.408869] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 155/0x29 ignored.
[    1.417953] ACPI: Unable to map lapic to logical cpu number
[    1.424248] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 156/0x2a ignored.
[    1.433332] ACPI: Unable to map lapic to logical cpu number
[    1.439612] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 157/0x2b ignored.
[    1.448696] ACPI: Unable to map lapic to logical cpu number
[    1.454991] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 158/0x2c ignored.
[    1.464074] ACPI: Unable to map lapic to logical cpu number
[    1.470354] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 159/0x2d ignored.
[    1.479437] ACPI: Unable to map lapic to logical cpu number
[    1.485732] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 160/0x2e ignored.
[    1.494815] ACPI: Unable to map lapic to logical cpu number
[    1.501093] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 161/0x2f ignored.
[    1.510177] ACPI: Unable to map lapic to logical cpu number
[    1.516472] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 162/0x30 ignored.
[    1.525555] ACPI: Unable to map lapic to logical cpu number
[    1.531834] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 163/0x31 ignored.
[    1.540917] ACPI: Unable to map lapic to logical cpu number
[    1.547214] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 164/0x32 ignored.
[    1.556296] ACPI: Unable to map lapic to logical cpu number
[    1.562579] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 165/0x33 ignored.
[    1.571663] ACPI: Unable to map lapic to logical cpu number
[    1.577957] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 166/0x34 ignored.
[    1.587040] ACPI: Unable to map lapic to logical cpu number
[    1.593320] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 167/0x35 ignored.
[    1.602405] ACPI: Unable to map lapic to logical cpu number
[    1.608701] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 168/0x36 ignored.
[    1.617785] ACPI: Unable to map lapic to logical cpu number
[    1.624064] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 169/0x37 ignored.
[    1.633146] ACPI: Unable to map lapic to logical cpu number
[    1.639441] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 170/0x38 ignored.
[    1.648525] ACPI: Unable to map lapic to logical cpu number
[    1.654803] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 171/0x39 ignored.
[    1.663886] ACPI: Unable to map lapic to logical cpu number
[    1.670181] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 172/0x3a ignored.
[    1.679263] ACPI: Unable to map lapic to logical cpu number
[    1.685542] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 173/0x3b ignored.
[    1.694625] ACPI: Unable to map lapic to logical cpu number
[    1.700923] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 174/0x3c ignored.
[    1.710008] ACPI: Unable to map lapic to logical cpu number
[    1.716288] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 175/0x3d ignored.
[    1.725371] ACPI: Unable to map lapic to logical cpu number
[    1.731651] ACPI: PCI Root Bridge [IO00] (domain 0000 [bus 00-0f])
[    1.738592] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    1.746348] acpi PNP0A08:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.757299] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    1.770239] PCI host bridge to bus 0000:00
[    1.774837] pci_bus 0000:00: root bus resource [bus 00-0f]
[    1.780995] pci_bus 0000:00: root bus resource [io  0x1000-0x3fff window]
[    1.788615] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    1.796235] pci_bus 0000:00: root bus resource [mem 0x90000000-0x93efffff window]
[    1.804635] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    1.813034] pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfedfffff window]
[    1.821434] pci_bus 0000:00: root bus resource [mem 0xfc000000000-0xfc07fffffff window]
[    1.830420] pci_bus 0000:00: root bus resource [mem 0xfe200000000-0xfe27fffffff window]
[    1.841134] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    1.846420] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    1.856959] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[    1.864840] pci 0000:00:02.2: PCI bridge to [bus 03]
[    1.870504] pci 0000:00:03.0: PCI bridge to [bus 04]
[    1.876142] pci 0000:00:11.0: PCI bridge to [bus 05]
[    1.884743] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    1.890494] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.900032] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.909572] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.919111] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.928647] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.938180] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.947713] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.957248] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.966778] ACPI: PCI Root Bridge [IO01] (domain 0000 [bus 10-1f])
[    1.973717] acpi PNP0A08:01: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    1.981466] acpi PNP0A08:01: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.992410] acpi PNP0A08:01: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    2.005330] PCI host bridge to bus 0000:10
[    2.009927] pci_bus 0000:10: root bus resource [bus 10-1f]
[    2.016083] pci_bus 0000:10: root bus resource [io  0x4000-0x7fff window]
[    2.023703] pci_bus 0000:10: root bus resource [mem 0x94000000-0x97ff7fff window]
[    2.032103] pci_bus 0000:10: root bus resource [mem 0xfc400000000-0xfc47fffffff window]
[    2.042477] pci 0000:10:02.0: PCI bridge to [bus 11]
[    2.048106] pci 0000:10:02.2: PCI bridge to [bus 12]
[    2.053764] pci 0000:10:03.0: PCI bridge to [bus 13]
[    2.059452] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 176/0x40 ignored.
[    2.068535] ACPI: Unable to map lapic to logical cpu number
[    2.074821] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 177/0x41 ignored.
[    2.083906] ACPI: Unable to map lapic to logical cpu number
[    2.090203] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 178/0x42 ignored.
[    2.099286] ACPI: Unable to map lapic to logical cpu number
[    2.105569] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 179/0x43 ignored.
[    2.114653] ACPI: Unable to map lapic to logical cpu number
[    2.120951] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 180/0x44 ignored.
[    2.130034] ACPI: Unable to map lapic to logical cpu number
[    2.136315] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 181/0x45 ignored.
[    2.145399] ACPI: Unable to map lapic to logical cpu number
[    2.151696] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 182/0x46 ignored.
[    2.160779] ACPI: Unable to map lapic to logical cpu number
[    2.167061] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 183/0x47 ignored.
[    2.176144] ACPI: Unable to map lapic to logical cpu number
[    2.182441] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 184/0x48 ignored.
[    2.191524] ACPI: Unable to map lapic to logical cpu number
[    2.197803] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 185/0x49 ignored.
[    2.206886] ACPI: Unable to map lapic to logical cpu number
[    2.213185] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 186/0x4a ignored.
[    2.222268] ACPI: Unable to map lapic to logical cpu number
[    2.228550] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 187/0x4b ignored.
[    2.237633] ACPI: Unable to map lapic to logical cpu number
[    2.243930] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 188/0x4c ignored.
[    2.253013] ACPI: Unable to map lapic to logical cpu number
[    2.259295] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 189/0x4d ignored.
[    2.268378] ACPI: Unable to map lapic to logical cpu number
[    2.274674] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 190/0x4e ignored.
[    2.283759] ACPI: Unable to map lapic to logical cpu number
[    2.290040] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 191/0x4f ignored.
[    2.299123] ACPI: Unable to map lapic to logical cpu number
[    2.305421] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 192/0x50 ignored.
[    2.314504] ACPI: Unable to map lapic to logical cpu number
[    2.320785] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 193/0x51 ignored.
[    2.329868] ACPI: Unable to map lapic to logical cpu number
[    2.336165] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 194/0x52 ignored.
[    2.345248] ACPI: Unable to map lapic to logical cpu number
[    2.351527] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 195/0x53 ignored.
[    2.360611] ACPI: Unable to map lapic to logical cpu number
[    2.366906] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 196/0x54 ignored.
[    2.375989] ACPI: Unable to map lapic to logical cpu number
[    2.382273] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 197/0x55 ignored.
[    2.391356] ACPI: Unable to map lapic to logical cpu number
[    2.397652] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 198/0x56 ignored.
[    2.406734] ACPI: Unable to map lapic to logical cpu number
[    2.413016] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 199/0x57 ignored.
[    2.422100] ACPI: Unable to map lapic to logical cpu number
[    2.428397] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 200/0x58 ignored.
[    2.437481] ACPI: Unable to map lapic to logical cpu number
[    2.443760] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 201/0x59 ignored.
[    2.452843] ACPI: Unable to map lapic to logical cpu number
[    2.459141] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 202/0x5a ignored.
[    2.468224] ACPI: Unable to map lapic to logical cpu number
[    2.474506] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 203/0x5b ignored.
[    2.483590] ACPI: Unable to map lapic to logical cpu number
[    2.489887] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 204/0x5c ignored.
[    2.498970] ACPI: Unable to map lapic to logical cpu number
[    2.505252] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 205/0x5d ignored.
[    2.514335] ACPI: Unable to map lapic to logical cpu number
[    2.520642] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 206/0x60 ignored.
[    2.529726] ACPI: Unable to map lapic to logical cpu number
[    2.536007] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 207/0x61 ignored.
[    2.545091] ACPI: Unable to map lapic to logical cpu number
[    2.551388] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 208/0x62 ignored.
[    2.560471] ACPI: Unable to map lapic to logical cpu number
[    2.566752] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 209/0x63 ignored.
[    2.575834] ACPI: Unable to map lapic to logical cpu number
[    2.582133] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 210/0x64 ignored.
[    2.591215] ACPI: Unable to map lapic to logical cpu number
[    2.597498] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 211/0x65 ignored.
[    2.606581] ACPI: Unable to map lapic to logical cpu number
[    2.612877] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 212/0x66 ignored.
[    2.621961] ACPI: Unable to map lapic to logical cpu number
[    2.628242] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 213/0x67 ignored.
[    2.637326] ACPI: Unable to map lapic to logical cpu number
[    2.643624] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 214/0x68 ignored.
[    2.652708] ACPI: Unable to map lapic to logical cpu number
[    2.658991] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 215/0x69 ignored.
[    2.668074] ACPI: Unable to map lapic to logical cpu number
[    2.674370] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 216/0x6a ignored.
[    2.683455] ACPI: Unable to map lapic to logical cpu number
[    2.689736] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 217/0x6b ignored.
[    2.698819] ACPI: Unable to map lapic to logical cpu number
[    2.705114] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 218/0x6c ignored.
[    2.714197] ACPI: Unable to map lapic to logical cpu number
[    2.720478] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 219/0x6d ignored.
[    2.729562] ACPI: Unable to map lapic to logical cpu number
[    2.735860] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 220/0x6e ignored.
[    2.744943] ACPI: Unable to map lapic to logical cpu number
[    2.751224] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 221/0x6f ignored.
[    2.760307] ACPI: Unable to map lapic to logical cpu number
[    2.766601] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 222/0x70 ignored.
[    2.775684] ACPI: Unable to map lapic to logical cpu number
[    2.781965] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 223/0x71 ignored.
[    2.791048] ACPI: Unable to map lapic to logical cpu number
[    2.797346] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 224/0x72 ignored.
[    2.806430] ACPI: Unable to map lapic to logical cpu number
[    2.812712] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 225/0x73 ignored.
[    2.821796] ACPI: Unable to map lapic to logical cpu number
[    2.828092] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 226/0x74 ignored.
[    2.837176] ACPI: Unable to map lapic to logical cpu number
[    2.843455] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 227/0x75 ignored.
[    2.852539] ACPI: Unable to map lapic to logical cpu number
[    2.858838] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 228/0x76 ignored.
[    2.867923] ACPI: Unable to map lapic to logical cpu number
[    2.874204] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 229/0x77 ignored.
[    2.883289] ACPI: Unable to map lapic to logical cpu number
[    2.889586] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 230/0x78 ignored.
[    2.898670] ACPI: Unable to map lapic to logical cpu number
[    2.904952] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 231/0x79 ignored.
[    2.914035] ACPI: Unable to map lapic to logical cpu number
[    2.920330] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 232/0x7a ignored.
[    2.929414] ACPI: Unable to map lapic to logical cpu number
[    2.935698] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 233/0x7b ignored.
[    2.944781] ACPI: Unable to map lapic to logical cpu number
[    2.951077] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 234/0x7c ignored.
[    2.960161] ACPI: Unable to map lapic to logical cpu number
[    2.966442] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 235/0x7d ignored.
[    2.975524] ACPI: Unable to map lapic to logical cpu number
[    2.981801] ACPI: PCI Root Bridge [IO02] (domain 0000 [bus 20-2f])
[    2.988740] acpi PNP0A08:02: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    2.996491] acpi PNP0A08:02: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    3.007434] acpi PNP0A08:02: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    3.020360] PCI host bridge to bus 0000:20
[    3.024956] pci_bus 0000:20: root bus resource [bus 20-2f]
[    3.031114] pci_bus 0000:20: root bus resource [io  0x8000-0xbfff window]
[    3.038734] pci_bus 0000:20: root bus resource [mem 0x98000000-0x9befffff window]
[    3.047133] pci_bus 0000:20: root bus resource [mem 0xf0800000000-0xf087fffffff window]
[    3.057920] pci 0000:20:1c.0: Enabling MPC IRBNCE
[    3.063201] pci 0000:20:1c.0: Intel PCH root port ACS workaround enabled
[    3.072740] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[    3.078706] pci 0000:20:02.2: PCI bridge to [bus 23]
[    3.084370] pci 0000:20:03.0: PCI bridge to [bus 24]
[    3.090011] pci 0000:20:11.0: PCI bridge to [bus 25]
[    3.098606] pci 0000:20:1c.0: PCI bridge to [bus 26]
[    3.104290] ACPI: PCI Root Bridge [IO03] (domain 0000 [bus 30-3f])
[    3.111230] acpi PNP0A08:03: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    3.118981] acpi PNP0A08:03: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    3.129925] acpi PNP0A08:03: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    3.142847] PCI host bridge to bus 0000:30
[    3.147443] pci_bus 0000:30: root bus resource [bus 30-3f]
[    3.153601] pci_bus 0000:30: root bus resource [io  0xc000-0xffff window]
[    3.161221] pci_bus 0000:30: root bus resource [mem 0x9c000000-0x9fff7fff window]
[    3.169621] pci_bus 0000:30: root bus resource [mem 0xf0c00000000-0xf0c7fffffff window]
[    3.180086] pci 0000:30:02.0: PCI bridge to [bus 31]
[    3.185719] pci 0000:30:02.2: PCI bridge to [bus 32]
[    3.191383] pci 0000:30:03.0: PCI bridge to [bus 33]
[    3.197040] ACPI: Enabled 1 GPEs in block 80 to FF
[    3.202563] vgaarb: setting as boot device: PCI:0000:06:00.1
[    3.208913] vgaarb: device added: PCI:0000:06:00.1,decodes=io+mem,owns=io+mem,locks=none
[    3.218001] vgaarb: loaded
[    3.221035] vgaarb: bridge control possible 0000:06:00.1
[    3.227066] SCSI subsystem initialized
[    3.231296] ACPI: bus type USB registered
[    3.235808] usbcore: registered new interface driver usbfs
[    3.241971] usbcore: registered new interface driver hub
[    3.247949] usbcore: registered new device driver usb
[    3.253735] PCI: Using ACPI for IRQ routing
[    3.258692] NetLabel: Initializing
[    3.262509] NetLabel:  domain hash size = 128
[    3.267398] NetLabel:  protocols = UNLABELED CIPSOv4
[    3.272980] NetLabel:  unlabeled traffic allowed by default
[    3.279328] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    3.286341] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    3.294931] Switched to clocksource hpet
[    3.305360] pnp: PnP ACPI init
[    3.309898] pnp: PnP ACPI: found 2 devices
[    3.316115] pci 0000:01:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    3.327253] pci 0000:03:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[    3.338391] pci 0000:21:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    3.349525] pci 0000:21:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    3.360707] pci 0000:01:00.0: BAR 6: assigned [mem 0x90380000-0x903fffff pref]
[    3.368819] pci 0000:01:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[    3.376736] pci 0000:01:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[    3.385046] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[    3.390916] pci 0000:00:02.0:   bridge window [io  0x2000-0x2fff]
[    3.397763] pci 0000:00:02.0:   bridge window [mem 0x90100000-0x903fffff]
[    3.405389] pci 0000:00:02.0:   bridge window [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[    3.414674] pci 0000:03:00.0: BAR 6: assigned [mem 0x90000000-0x9003ffff pref]
[    3.422787] pci 0000:03:00.1: BAR 6: assigned [mem 0x90040000-0x9007ffff pref]
[    3.430896] pci 0000:00:02.2: PCI bridge to [bus 03]
[    3.436473] pci 0000:00:02.2:   bridge window [mem 0x90000000-0x900fffff]
[    3.444098] pci 0000:00:02.2:   bridge window [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[    3.453383] pci 0000:00:03.0: PCI bridge to [bus 04]
[    3.458966] pci 0000:00:11.0: PCI bridge to [bus 05]
[    3.464554] pci 0000:06:00.2: BAR 6: assigned [mem 0x93a90000-0x93a9ffff pref]
[    3.472667] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    3.478243] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    3.485091] pci 0000:00:1c.0:   bridge window [mem 0x92000000-0x93efffff]
[    3.492757] pci 0000:10:02.0: PCI bridge to [bus 11]
[    3.498340] pci 0000:10:02.2: PCI bridge to [bus 12]
[    3.503923] pci 0000:10:03.0: PCI bridge to [bus 13]
[    3.509549] pci 0000:21:00.0: BAR 6: assigned [mem 0x98280000-0x982fffff pref]
[    3.517662] pci 0000:21:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[    3.525578] pci 0000:21:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[    3.533883] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[    3.539752] pci 0000:20:02.0:   bridge window [io  0x8000-0x8fff]
[    3.546597] pci 0000:20:02.0:   bridge window [mem 0x98000000-0x982fffff]
[    3.554222] pci 0000:20:02.0:   bridge window [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[    3.563508] pci 0000:20:02.2: PCI bridge to [bus 23]
[    3.569091] pci 0000:20:03.0: PCI bridge to [bus 24]
[    3.574675] pci 0000:20:11.0: PCI bridge to [bus 25]
[    3.580262] pci 0000:26:00.2: BAR 6: assigned [mem 0x9bd90000-0x9bd9ffff pref]
[    3.588372] pci 0000:20:1c.0: PCI bridge to [bus 26]
[    3.593947] pci 0000:20:1c.0:   bridge window [io  0x9000-0x9fff]
[    3.600795] pci 0000:20:1c.0:   bridge window [mem 0x9bb00000-0x9befffff]
[    3.608456] pci 0000:30:02.0: PCI bridge to [bus 31]
[    3.614039] pci 0000:30:02.2: PCI bridge to [bus 32]
[    3.619623] pci 0000:30:03.0: PCI bridge to [bus 33]
[    3.625237] NET: Registered protocol family 2
[    3.630278] TCP established hash table entries: 4096 (order: 3, 32768 bytes)
[    3.638207] TCP bind hash table entries: 4096 (order: 4, 65536 bytes)
[    3.645452] TCP: Hash tables configured (established 4096 bind 4096)
[    3.652617] TCP: reno registered
[    3.656244] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    3.662798] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    3.669873] NET: Registered protocol family 1
[    3.680606] Unpacking initramfs...
[    3.830067] Freeing initrd memory: 12120K (ffff880037384000 - ffff880037f5a000)
[    3.838765] Translation is enabled prior to OS.
[    3.843855] IOMMU Copying translate tables from panicked kernel
[    3.850546] IOMMU: root_cache:0xffff880034248000 phys:0x009f70d14000
[    3.857810] Translation is enabled prior to OS.
[    3.862896] IOMMU Copying translate tables from panicked kernel
[    3.869591] IOMMU: root_cache:0xffff88003424a000 phys:0x007f71751000
[    3.876772] Translation is enabled prior to OS.
[    3.881858] IOMMU Copying translate tables from panicked kernel
[    3.888531] IOMMU: root_cache:0xffff880031db7000 phys:0x005f71a8f000
[    3.895716] Translation is enabled prior to OS.
[    3.900803] IOMMU Copying translate tables from panicked kernel
[    3.907513] IOMMU: root_cache:0xffff8800342e9000 phys:0x001ff0a69000
[    3.914648] IOMMU: dmar3 using Queued invalidation
[    3.920028] IOMMU: dmar2 using Queued invalidation
[    3.925409] IOMMU: dmar1 using Queued invalidation
[    3.930789] IOMMU: dmar0 using Queued invalidation
[    3.936204] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[    3.945004] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    3.956961] microcode: CPU0 sig=0x306e7, pf=0x80, revision=0x70e
[    3.963708] microcode: CPU1 sig=0x306e7, pf=0x80, revision=0x70e
[    3.970461] microcode: CPU2 sig=0x306e7, pf=0x80, revision=0x70e
[    3.977207] microcode: CPU3 sig=0x306e7, pf=0x80, revision=0x70e
[    3.983993] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    3.994336] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    4.001295] Initialise system trusted keyring
[    4.006206] audit: initializing netlink subsys (disabled)
[    4.012285] audit: type=2000 audit(1429172893.405:1): initialized
[    4.019582] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    4.027738] zpool: loaded
[    4.030683] zbud: loaded
[    4.033659] VFS: Disk quotas dquot_6.5.2
[    4.038098] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.046046] Key type big_key registered
[    4.051223] alg: No test for stdrng (krng)
[    4.055833] NET: Registered protocol family 38
[    4.060830] Key type asymmetric registered
[    4.065431] Asymmetric key parser 'x509' registered
[    4.070928] bounce: pool size: 64 pages
[    4.075265] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    4.083617] io scheduler noop registered
[    4.088027] io scheduler deadline registered (default)
[    4.093826] io scheduler cfq registered
[    4.099640] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    4.105911] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    4.113559] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    4.122941] ACPI: Power Button [PWRB]
[    4.127347] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    4.135717] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
\x034.163465] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    4.172558] Non-volatile memory driver v1.3
[    4.177288] Linux agpgart interface v0.103
[    4.181991] rdac: device handler registered
[    4.186723] hp_sw: device handler registered
[    4.191519] emc: device handler registered
[    4.196118] alua: device handler registered
[    4.200838] libphy: Fixed MDIO Bus: probed
[    4.205483] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    4.212819] ehci-pci: EHCI PCI platform driver
[    4.217909] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    4.223817] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
[    4.232139] ehci-pci 0000:00:1d.0: debug port 2
[    4.241215] ehci-pci 0000:00:1d.0: irq 23, io mem 0x90400000
[    4.253141] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    4.259626] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    4.267250] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.275361] usb usb1: Product: EHCI Host Controller
[    4.280840] usb usb1: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[    4.287780] usb usb1: SerialNumber: 0000:00:1d.0
[    4.293060] hub 1-0:1.0: USB hub found
[    4.297278] hub 1-0:1.0: 2 ports detected
[    4.301946] ehci-pci 0000:20:1d.0: EHCI Host Controller
[    4.307853] ehci-pci 0000:20:1d.0: new USB bus registered, assigned bus number 2
[    4.316174] ehci-pci 0000:20:1d.0: debug port 2
[    4.325245] ehci-pci 0000:20:1d.0: irq 30, io mem 0x98300000
[    4.337246] ehci-pci 0000:20:1d.0: USB 2.0 started, EHCI 1.00
[    4.343728] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    4.351354] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.359463] usb usb2: Product: EHCI Host Controller
[    4.364940] usb usb2: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[    4.371880] usb usb2: SerialNumber: 0000:20:1d.0
[    4.377136] hub 2-0:1.0: USB hub found
[    4.381348] hub 2-0:1.0: 2 ports detected
[    4.385908] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    4.392855] ohci-pci: OHCI PCI platform driver
[    4.397857] uhci_hcd: USB Universal Host Controller Interface driver
[    4.405064] uhci_hcd 0000:06:00.4: UHCI Host Controller
[    4.410967] uhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 3
[    4.419292] uhci_hcd 0000:06:00.4: detected 8 ports
[    4.424767] uhci_hcd 0000:06:00.4: port count misdetected? forcing to 2 ports
[    4.432818] uhci_hcd 0000:06:00.4: irq 16, io base 0x00001500
[    4.439383] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    4.447009] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.455119] usb usb3: Product: UHCI Host Controller
[    4.460596] usb usb3: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[    4.467536] usb usb3: SerialNumber: 0000:06:00.4
[    4.472789] hub 3-0:1.0: USB hub found
[    4.477004] hub 3-0:1.0: 2 ports detected
[    4.481593] usbcore: registered new interface driver usbserial
[    4.488169] usbcore: registered new interface driver usbserial_generic
[    4.495506] usbserial: USB Serial support registered for generic
[    4.502266] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    4.948011] tsc: Refined TSC clocksource calibration: 2793.687 MHz
[    5.529759] i8042: No controller found
[    5.534014] mousedev: PS/2 mouse device common for all mice
[    5.540392] rtc_cmos 00:01: RTC can wake from S4
[    5.545705] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    5.552578] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    5.561190] Intel P-state driver initializing.
[    5.566280] hidraw: raw HID events driver (C) Jiri Kosina
[    5.572436] usbcore: registered new interface driver usbhid
[    5.578696] usbhid: USB HID core driver
[    5.583034] drop_monitor: Initializing network drop monitor service
[    5.590130] TCP: cubic registered
[    5.593854] Initializing XFRM netlink socket
[    5.598720] NET: Registered protocol family 10
[    5.603891] NET: Registered protocol family 17
[    5.608888] mce: Unable to init device /dev/mcelog (rc: -5)
[    5.615368] Loading compiled-in X.509 certificates
[    5.621393] Loaded X.509 cert 'Magrathea: Glacier signing key: 307113a598e2a4626872c8019495ffd1ab8d036a'
[    5.632053] registered taskstats version 1
[    5.635891] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    5.635903] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    5.652714] Key type trusted registered
[    5.659807] Key type encrypted registered
[    5.664317] ima: No TPM chip found, activating TPM-bypass!
[    5.670502] evm: HMAC attrs: 0x1
[    5.675242] rtc_cmos 00:01: setting system clock to 2015-04-16 08:28:19 UTC (1429172899)
[    5.685045] Freeing unused kernel memory: 1704K (ffffffff81b4d000 - ffffffff81cf7000)
[    5.696223] systemd[1]: systemd 208 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    5.710306] systemd[1]: Running in initial RAM disk.

Welcome to ^[[0;34mRed Hat Enterprise Linux Server 7.0 (Maipo) dracut-033-161.el7 (Initramfs)^[[0m!

[    5.727108] systemd[1]: Set hostname to <dhb5.fcux.usa.hp.com>.
[    5.734364] random: systemd urandom read with 3 bits of entropy available
[    5.754384] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    5.761916] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.764178] systemd[1]: Expecting device dev-disk-by\x2duuid-309f5617\x2da658\x2d49d1\x2db464\x2dcc38f471ab07.device...
[    5.782056] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    5.782057] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.782255] hub 1-1:1.0: USB hub found
[    5.782310] hub 2-1:1.0: USB hub found
[    5.782365] hub 1-1:1.0: 8 ports detected
[    5.782420] hub 2-1:1.0: 8 ports detected
         Expecting device dev-disk-by\x2duuid-309f5617\x2da65...1ab07.device...
[    5.824208] systemd[1]: Expecting device dev-mapper-rhel_dhb5\x2dswap.device...
         Expecting device dev-mapper-rhel_dhb5\x2dswap.device...
[    5.840201] systemd[1]: Expecting device dev-disk-by\x2duuid-1C36\x2d187E.device...
         Expecting device dev-disk-by\x2duuid-1C36\x2d187E.device...
[    5.856223] systemd[1]: Expecting device dev-disk-by\x2duuid-227bc7d6\x2d3f21\x2d4e34\x2db43d\x2d7f65c5e3dbcc.device...
         Expecting device dev-disk-by\x2duuid-227bc7d6\x2d3f2...3dbcc.device...
[    5.878249] systemd[1]: Starting -.slice.
[^[[32m  OK  ^[[0m] Created slice -.slice.
[    5.887258] systemd[1]: Created slice -.slice.
[    5.892301] systemd[1]: Starting System Slice.
[^[[32m  OK  ^[[0m] Created slice System Slice.
[    5.902277] systemd[1]: Created slice System Slice.
[    5.907793] systemd[1]: Starting Slices.
[^[[32m  OK  ^[[0m] Reached target Slices.
[    5.917293] systemd[1]: Reached target Slices.
[    5.922319] systemd[1]: Starting Timers.
[^[[32m  OK  ^[[0m] Reached target Timers.
[    5.931310] systemd[1]: Reached target Timers.
[    5.936340] systemd[1]: Starting Journal Socket.
[^[[32m  OK  ^[[0m] Listening on Journal Socket.
[    5.948329] systemd[1]: Listening on Journal Socket.
[    5.953915] Switched to clocksource tsc
[    5.954060] systemd[1]: Starting dracut cmdline hook...
         Starting dracut cmdline hook...
[    5.969628] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[^[[32m  OK  ^[[0m] Started Journa[    5.982669] systemd-journald[120]: Vacuuming done, freed 0 bytes
l Service.
[    5.992388] systemd[1]: Started Journal Service.
[^[[32m  OK  ^[[0m] Reached target Paths.
[^[[32m  OK  ^[[0m] Listening on udev Kernel Socket.
[^[[32m  OK  ^[[0m] Listening on udev Control Socket.
[^[[32m  OK  ^[[0m] Reached target Sockets.
         Starting Apply Kernel Variables...
         Starting Create list of required static device nodes...rrent kernel...
         Starting Device-Mapper Multipath Device Controller...
[^[[32m  OK  ^[[0m] Reached target[    6.059444] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
 Swap.
[    6.067442] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
[    6.075902] device-mapper: uevent: version 1.0.3
[^[[32m  OK  ^[[0m[    6.081236] device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised: dm-devel@redhat.com
] Reached target[    6.093418] device-mapper: multipath: version 1.8.0 loaded
 Local File Systems.
[^[[32m  OK  ^[[0m] Started dracut cmdline hook.
[^[[32m  OK  ^[[0m] Started Apply Kernel Variables.
         Starting dracut pre-udev hook...
[^[[32m  OK  ^[[0m] Started Create list of required static device nodes ...current kernel.
         Starting Create static device nodes in /dev...
[^[[32m  OK  ^[[0m] Started Device-Mapper Multipath Device Controller.
[^[[32m  OK  ^[[0m] Started Create static device nodes in /dev.
[    6.154934] usb 1-1.3: New USB device found, idVendor=0424, idProduct=2660
[    6.162877] usb 1-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.171347] hub 1-1.3:1.0: USB hub found
[    6.175860] hub 1-1.3:1.0: 2 ports detected
[    6.180140] usb 2-1.3: New USB device found, idVendor=0424, idProduct=2660
[    6.187868] usb 2-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[^[[32m  OK  ^[[0m[    6.196308] hub 2-1.3:1.0: USB hub found
] Started dracut[    6.202173] hub 2-1.3:1.0: 2 ports detected
 pre-udev hook.
         Starting udev Kernel Device Manager...
[    6.219086] systemd-udevd[237]: starting version 208
[^[[32m  OK  ^[[0m] Started udev Kernel Device Manager.
         Starting udev Coldplug all Devices...
         Mounting Configuration File System...
[^[[32m  OK  ^[[0m] Started udev Coldplug all Devices.
[^[[32m  OK  ^[[0m] Mounted Configuration File System.
         Starting dracut initqueue hook...
[^[[32m  OK  ^[[0m] Reached target System Initialization.
[^[[32m  OK  ^[[0m] Reached target Basic System.
[    6.285238] qla2xxx [0000:00:00.0]-0005: : QLogic Fibre Channel HBA Driver: 8.07.00.16-k.
[    6.294497] qla2xxx [0000:03:00.0]-011c: : MSI-X vector count: 31.
[    6.301440] qla2xxx [0000:03:00.0]-001d: : Found an ISP2031 irq 31 iobase 0xffffc900002ae000.
         Starting File System Check on /dev/disk/by-uuid/227b...7f65c5e3dbcc...
systemd-fsck[272]: fsck: error 2 (No such file or directory) while executing fsck.ext2 for /dev/disk/by-uuid/227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc
[^[[32m  OK  ^[[0m] Started File System Check on /dev/disk/by-uuid/227bc...d-7f65c5e3dbcc.
[    7.679447] scsi host0: qla2xxx
[    7.683164] qla2xxx [0000:03:00.0]-00fb:0: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[    7.692065] qla2xxx [0000:03:00.0]-00fc:0: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.0 hdma- host#=0 fw=7.03.01 (d0d5).
[    7.704050] qla2xxx [0000:03:00.1]-011c: : MSI-X vector count: 31.
[    7.710995] qla2xxx [0000:03:00.1]-001d: : Found an ISP2031 irq 34 iobase 0xffffc900002b0000.
[    8.466145] qla2xxx [0000:03:00.0]-500a:0: LOOP UP detected (8 Gbps).
[    9.070190] scsi host1: qla2xxx
[    9.076242] qla2xxx [0000:03:00.1]-00fb:1: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[    9.085139] qla2xxx [0000:03:00.1]-00fc:1: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.1 hdma- host#=1 fw=7.03.01 (d0d5).
[    9.691943] scsi: waiting for bus probes to complete ...
[   14.090926] scsi 0:0:0:0: Enclosure         HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.100122] hpwdt 0000:06:00.0: Unable to detect the 64 Bit CRU Service.
[   14.100519] scsi 0:0:0:0: alua: supports implicit TPGS
[   14.101249] scsi 0:0:0:0: alua: port group 01 rel port 05
[   14.101318] scsi 0:0:0:0: alua: port group 01 state N non-preferred supports tOlusNA
[   14.101319] scsi 0:0:0:0: alua: Attached
[   14.104988] scsi 0:0:0:50: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.105601] scsi 0:0:0:50: alua: supports implicit TPGS
[   14.105792] scsi 0:0:0:50: alua: port group 01 rel port 05
[   14.105856] scsi 0:0:0:50: alua: port group 01 state N non-preferred supports tOlusNA
[   14.105857] scsi 0:0:0:50: alua: Attached
[   14.106085] scsi 0:0:0:51: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.106424] scsi 0:0:0:51: alua: supports implicit TPGS
[   14.106782] scsi 0:0:0:51: alua: port group 01 rel port 05
[   14.107115] scsi 0:0:0:51: alua: port group 01 state N non-preferred supports tOlusNA
[   14.107116] scsi 0:0:0:51: alua: Attached
[   14.107348] scsi 0:0:0:52: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.107692] scsi 0:0:0:52: alua: supports implicit TPGS
[   14.107895] scsi 0:0:0:52: alua: port group 01 rel port 05
[   14.107957] scsi 0:0:0:52: alua: port group 01 state N non-preferred supports tOlusNA
[   14.107958] scsi 0:0:0:52: alua: Attached
[   14.108186] scsi 0:0:0:53: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.108670] scsi 0:0:0:53: alua: supports implicit TPGS
[   14.109106] scsi 0:0:0:53: alua: port group 01 rel port 05
[   14.109170] scsi 0:0:0:53: alua: port group 01 state N non-preferred supports tOlusNA
[   14.109171] scsi 0:0:0:53: alua: Attached
[   14.109392] scsi 0:0:0:54: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.109734] scsi 0:0:0:54: alua: supports implicit TPGS
[   14.109924] scsi 0:0:0:54: alua: port group 01 rel port 05
[   14.109988] scsi 0:0:0:54: alua: port group 01 state N non-preferred supports tOlusNA
[   14.109989] scsi 0:0:0:54: alua: Attached
[   14.117043] scsi 0:0:1:0: Enclosure         HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.118896] scsi 0:0:1:0: alua: supports implicit TPGS
[   14.120452] scsi 0:0:1:0: alua: port group 00 rel port 01
[   14.120521] scsi 0:0:1:0: alua: port group 00 state N non-preferred supports tOlusNA
[   14.120522] scsi 0:0:1:0: alua: Attached
[   14.122939] scsi 0:0:1:50: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.123285] scsi 0:0:1:50: alua: supports implicit TPGS
[   14.124576] scsi 0:0:1:50: alua: port group 00 rel port 01
[   14.124641] scsi 0:0:1:50: alua: port group 00 state A preferred supports tOlusNA
[   14.124642] scsi 0:0:1:50: alua: Attached
[   14.124872] scsi 0:0:1:51: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.126323] scsi 0:0:1:51: alua: supports implicit TPGS
[   14.126516] scsi 0:0:1:51: alua: port group 00 rel port 01
[   14.126581] scsi 0:0:1:51: alua: port group 00 state A preferred supports tOlusNA
[   14.126582] scsi 0:0:1:51: alua: Attached
[   14.126806] scsi 0:0:1:52: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.128246] scsi 0:0:1:52: alua: supports implicit TPGS
[   14.128441] scsi 0:0:1:52: alua: port group 00 rel port 01
[   14.128635] scsi 0:0:1:52: alua: port group 00 state A preferred supports tOlusNA
[   14.128636] scsi 0:0:1:52: alua: Attached
[   14.130766] scsi 0:0:1:53: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.132665] scsi 0:0:1:53: alua: supports implicit TPGS
[   14.134478] scsi 0:0:1:53: alua: port group 00 rel port 01
[   14.134677] scsi 0:0:1:53: alua: port group 00 state A preferred supports tOlusNA
[   14.134678] scsi 0:0:1:53: alua: Attached
[   14.136280] scsi 0:0:1:54: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.138042] scsi 0:0:1:54: alua: supports implicit TPGS
[   14.138238] scsi 0:0:1:54: alua: port group 00 rel port 01
[   14.138302] scsi 0:0:1:54: alua: port group 00 state A preferred supports tOlusNA
[   14.138303] scsi 0:0:1:54: alua: Attached
[   14.153850] [drm] Initialized drm 1.1.0 20060810
[   14.523890] [TTM] Zone  kernel: Available graphics memory: 249374 kiB
[   14.531125] [TTM] Initializing pool allocator
[   14.536022] [TTM] Initializing DMA pool allocator
[   14.570544] fbcon: mgadrmfb (fb0) is primary device
[   14.693209] Console: switching to colour frame buffer device 128x48
[   14.737835] mgag200 0000:06:00.1: fb0: mgadrmfb frame buffer device
[   14.744877] mgag200 0000:06:00.1: registered panic notifier
[   14.751428] sd 0:0:0:50: [sda] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   14.760146] sd 0:0:0:51: [sdb] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   14.760148] sd 0:0:0:54: [sde] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.760168] sd 0:0:0:53: [sdd] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.760231] sd 0:0:1:50: [sdf] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   14.760263] sd 0:0:1:51: [sdg] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   14.760664] sd 0:0:1:50: [sdf] Write Protect is off
[   14.760705] sd 0:0:1:51: [sdg] Write Protect is off
[   14.760793] sd 0:0:1:50: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.760828] sd 0:0:1:51: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.761082] sd 0:0:0:52: [sdc] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.761303] sd 0:0:1:52: [sdh] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.761314] sd 0:0:1:53: [sdi] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.761382] sd 0:0:1:54: [sdj] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.761910] sd 0:0:0:54: [sde] Write Protect is off
[   14.761957] sd 0:0:0:50: [sda] Write Protect is off
[   14.761976] sd 0:0:0:53: [sdd] Write Protect is off
[   14.762051] sd 0:0:0:52: [sdc] Write Protect is off
[   14.762071] sd 0:0:0:54: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762077] sd 0:0:0:50: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762134] sd 0:0:0:53: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762197] sd 0:0:0:52: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762655] sd 0:0:1:52: [sdh] Write Protect is off
[   14.762671] sd 0:0:1:53: [sdi] Write Protect is off
[   14.762679] sd 0:0:1:54: [sdj] Write Protect is off
[   14.762799] sd 0:0:1:52: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762942] sd 0:0:1:53: [sdi] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762994] sd 0:0:1:54: [sdj] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.796120] sd 0:0:1:54: [sdj] Attached SCSI disk
[   14.804336] sd 0:0:0:54: [sde] Attached SCSI disk
[   14.807081] sd 0:0:0:53: [sdd] Attached SCSI disk
[   14.808932] random: nonblocking pool is initialized
[   14.809408] sd 0:0:0:52: [sdc] Attached SCSI disk
[   14.809649] sd 0:0:1:52: [sdh] Attached SCSI disk
[   14.809940] sd 0:0:1:53: [sdi] Attached SCSI disk
[   14.826381]  sdg: sdg1 sdg2 sdg3
[   14.836077] sd 0:0:1:51: [sdg] Attached SCSI disk
[   14.839624]  sdf: sdf1 sdf2 sdf3 sdf4
[   14.845076] sd 0:0:1:50: [sdf] Attached SCSI disk
[   14.845605]  sda: sda1 sda2 sda3 sda4
[   14.854284] sd 0:0:0:50: [sda] Attached SCSI disk
[   15.045217] sd 0:0:0:51: [sdb] Write Protect is off
[   15.050811] sd 0:0:0:51: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   15.051679] [drm] Initialized mgag200 1.0.0 20110418 for 0000:06:00.1 on minor 0
[   15.072279]  sdb: sdb1 sdb2 sdb3
[   15.076731] sd 0:0:0:51: [sdb] Attached SCSI disk
[   15.211225] device-mapper: multipath service-time: version 0.2.0 loaded
[^[[32m  OK  ^[[0m] Started dracut initqueue hook.
         Mounting /sysroot...
[^[[32m  OK  ^[[0m] Reached target Initrd Root File System.
         Starting Reload Configuration from the Real Root...
[   16.159937] EXT4-fs (dm-7): INFO: recovery required on readonly filesystem
[   16.167662] EXT4-fs (dm-7): write access will be enabled during recovery
[^[[32m  OK  ^[[0m] Started Reload Configuration from the Real Root.
[^[[32m  OK  ^[[0m] Reached target Initrd File Systems.
[^[[32m  OK  ^[[0m] Reached target Initrd Default Target.
[   16.332695] EXT4-fs (dm-7): orphan cleanup on readonly fs
[   16.364569] EXT4-fs (dm-7): 2 orphan inodes deleted
[   16.370109] EXT4-fs (dm-7): recovery complete
[   16.376741] EXT4-fs (dm-7): mounted filesystem with ordered data mode. Opts: (null)
kdump: dump target is /dev/mappe[   16.426873] EXT4-fs (dm-7): re-mounted. Opts: stripe=256,data=ordered
r/mpatha3
kdump: saving to /sysroot//var/crash/127.0.0.1-2015.04.16-04:28:30/
kdump: saving vmcore-dmesg.txt
Missing the struct log size export
kdump: saving vmcore-dmesg.txt failed
kdump: saving vmcore
\rExcluding unnecessary pages        : [  0.0 %] /\rExcluding unnecessary pages        : [  0.9 %] |\rExcluding unnecessary pages        : [ 61.8 %] \\rExcluding unnecessary pages        : [ 90.1 %] -\rExcluding unnecessary pages        : [100.0 %] /\rExcluding unnecessary pages        : [  0.0 %] |\rExcluding unnecessary pages        : [ 18.9 %] \\rExcluding unnecessary pages        : [ 72.9 %] -\rExcluding unnecessary pages        : [100.0 %] /\rCopying data                       : [  0.0 %] |\rCopying data                       : [  0.4 %] \\rCopying data                       : [  0.8 %] -\rCopying data                       : [  1.2 %] /\rCopying data                       : [  1.7 %] |\rCopying data                       : [  2.2 %] \\rCopying data                       : [  2.6 %] -[   30.166587] qla2xxx [0000:03:00.1]-8038:1: Cable is unplugged...
\rCopying data                       : [  3.1 %] /\rCopying data                       : [  3.6 %] |\rCopying data                       : [  4.1 %] \\rCopying data                       : [  4.5 %] -\rCopying data                       : [  5.0 %] /\rCopying data                       : [  5.5 %] |\rCopying data                       : [  6.0 %] \\rCopying data                       : [  6.4 %] -\rCopying data                       : [  6.9 %] /\rCopying data                       : [  7.4 %] |\rCopying data                       : [  7.9 %] \\rCopying data                       : [  8.4 %] -\rCopying data                       : [  8.8 %] /\rCopying data                       : [  9.3 %] |\rCopying data                       : [  9.8 %] \\rCopying data                       : [ 10.4 %] -\rCopying data                       : [ 11.0 %] /\rCopying data                       : [ 12.1 %] |\rCopying data                       : [ 13.1 %] \\rCopying data                       : [ 13.9 %] -\rCopying data                       : [ 14.7 %] /\rCopying data                       : [ 15.5 %] |\rCopying data                       : [ 16.3 %] \\rCopying data                       : [ 17.1 %] -\rCopying data                       : [ 17.9 %] /\rCopying data                       : [ 18.7 %] |\rCopying data                       : [ 19.5 %] \\rCopying data                       : [ 20.3 %] -\rCopying data                       : [ 21.1 %] /\rCopying data                       : [ 21.9 %] |\rCopying data                       : [ 22.7 %] \\rCopying data                       : [ 23.5 %] -\rCopying data                       : [ 24.3 %] /\rCopying data                       : [ 25.1 %] |\rCopying data                       : [ 26.0 %] \\rCopying data                       : [ 26.8 %] -\rCopying data                       : [ 27.6 %] /\rCopying data                       : [ 28.4 %] |\rCopying data                       : [ 29.2 %] \\rCopying data                       : [ 30.0 %] -\rCopying data                       : [ 30.7 %] /\rCopying data                       : [ 31.0 %] |\rCopying data                       : [ 31.4 %] \\rCopying data                       : [ 32.0 %] -\rCopying data                       : [ 32.7 %] /\rCopying data                       : [ 33.7 %] |\rCopying data                       : [ 34.7 %] \\rCopying data                       : [ 35.5 %] -\rCopying data                       : [ 36.3 %] /\rCopying data                       : [ 37.1 %] |\rCopying data                       : [ 37.9 %] \\rCopying data                       : [ 38.7 %] -\rCopying data                       : [ 39.5 %] /\rCopying data                       : [ 40.3 %] |\rCopying data                       : [ 41.1 %] \\rCopying data                       : [ 41.9 %] -\rCopying data                       : [ 42.7 %] /\rCopying data                       : [ 43.5 %] |\rCopying data                       : [ 44.3 %] \\rCopying data                       : [ 45.1 %] -\rCopying data                       : [ 45.9 %] /\rCopying data                       : [ 46.7 %] |\rCopying data                       : [ 47.5 %] \\rCopying data                       : [ 48.3 %] -\rCopying data                       : [ 49.1 %] /\rCopying data                       : [ 49.9 %] |\rCopying data                       : [ 50.7 %] \\rCopying data                       : [ 51.6 %] -\rCopying data                       : [ 52.3 %] /\rCopying data                       : [ 52.6 %] |\rCopying data                       : [ 53.0 %] \\rCopying data                       : [ 53.5 %] -\rCopying data                       : [ 53.9 %] /\rCopying data                       : [ 55.2 %] |\rCopying data                       : [ 55.7 %] \\rCopying data                       : [ 56.3 %] -\rCopying data                       : [ 57.4 %] /\rCopying data                       : [ 58.4 %] |\rCopying data                       : [ 59.2 %] \\rCopying data                       : [ 59.9 %] -\rCopying data                       : [ 60.7 %] /\rCopying data                       : [ 61.5 %] |\rCopying data                       : [ 62.3 %] \\rCopying data                       : [ 63.1 %] -\rCopying data                       : [ 63.9 %] /\rCopying data                       : [ 64.7 %] |\rCopying data                       : [ 65.4 %] \\rCopying data                       : [ 66.2 %] -\rCopying data                       : [ 67.0 %] /\rCopying data                       : [ 67.8 %] |\rCopying data                       : [ 68.6 %] \\rCopying data                       : [ 69.4 %] -\rCopying data                       : [ 70.2 %] /\rCopying data                       : [ 71.0 %] |\rCopying data                       : [ 71.7 %] \\rCopying data                       : [ 72.5 %] -\rCopying data                       : [ 73.3 %] /\rCopying data                       : [ 74.1 %] |\rCopying data                       : [ 74.9 %] \\rCopying data                       : [ 75.6 %] -\rCopying data                       : [ 76.1 %] /\rCopying data                       : [ 77.6 %] |\rCopying data                       : [ 79.7 %] \\rCopying data                       : [ 80.3 %] -\rCopying data                       : [ 81.3 %] /\rCopying data                       : [ 82.3 %] |\rCopying data                       : [ 83.1 %] \\rCopying data                       : [ 83.9 %] -\rCopying data                       : [ 84.7 %] /\rCopying data                       : [ 85.4 %] |\rCopying data                       : [ 86.2 %] \\rCopying data                       : [ 87.0 %] -\rCopying data                       : [ 87.8 %] /\rCopying data                       : [ 88.6 %] |\rCopying data                       : [ 89.4 %] \\rCopying data                       : [ 90.2 %] -\rCopying data                       : [ 91.0 %] /\rCopying data                       : [ 91.7 %] |\rCopying data                       : [ 92.5 %] \\rCopying data                       : [ 93.3 %] -\rCopying data                       : [ 94.1 %] /\rCopying data                       : [ 94.9 %] |\rCopying data                       : [ 95.7 %] \\rCopying data                       : [ 96.5 %] -\rCopying data                       : [ 97.2 %] /\rCopying data                       : [ 98.0 %] |\rCopying data                       : [ 98.8 %] \\rCopying data                       : [ 99.6 %] -\rCopying data                       : [100.0 %] /
kdump: saving vmcore complete
Rebooting.
[  158.228249] sd 0:0:1:54: [sdj] Synchronizing SCSI cache
[  158.235146] sd 0:0:1:53: [sdi] Synchronizing SCSI cache
[  158.241074] sd 0:0:1:52: [sdh] Synchronizing SCSI cache
[  158.246992] sd 0:0:1:51: [sdg] Synchronizing SCSI cache
[  158.252910] sd 0:0:1:50: [sdf] Synchronizing SCSI cache
[  158.258828] sd 0:0:0:54: [sde] Synchronizing SCSI cache
[  158.264761] sd 0:0:0:53: [sdd] Synchronizing SCSI cache
[  158.270678] sd 0:0:0:52: [sdc] Synchronizing SCSI cache
[  158.276596] sd 0:0:0:51: [sdb] Synchronizing SCSI cache
[  158.282512] sd 0:0:0:50: [sda] Synchronizing SCSI cache
[  158.304155] reboot: Restarting system
[  158.308266] reboot: machine restart

[-- Attachment #4: lspci --]
[-- Type: text/plain, Size: 43434 bytes --]

00:00.0 Host bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DMI2 (rev 07)
00:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
00:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
00:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
00:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
00:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
00:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
00:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
00:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
00:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
00:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
00:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
00:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 06)
00:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 8 (rev b6)
00:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 06)
00:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 06)
01:00.0 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
01:00.1 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
03:00.0 Fibre Channel: QLogic Corp. ISP8324-based 16Gb Fibre Channel to PCI Express Adapter (rev 02)
03:00.1 Fibre Channel: QLogic Corp. ISP8324-based 16Gb Fibre Channel to PCI Express Adapter (rev 02)
06:00.0 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Slave Instrumentation & System Support (rev 06)
06:00.1 VGA compatible controller: Matrox Electronics Systems Ltd. MGA G200EH (rev 01)
06:00.2 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Management Processor Support and Messaging (rev 06)
06:00.4 USB controller: Hewlett-Packard Company Integrated Lights-Out Standard Virtual USB Controller (rev 03)
0f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
0f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
0f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
0f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
0f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
0f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
0f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
0f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
0f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
0f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
0f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
0f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
0f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
0f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
0f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
0f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
0f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
0f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
0f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
0f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
0f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
0f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
0f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
0f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
0f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
0f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
0f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
0f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
0f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
0f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
0f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
0f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
0f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
0f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
0f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
0f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
0f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
0f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
0f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
0f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
0f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
0f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
0f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
0f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
0f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
10:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
10:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
10:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
10:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
10:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
10:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
10:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
10:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
10:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
10:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
10:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
1f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
1f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
1f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
1f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
1f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
1f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
1f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
1f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
1f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
1f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
1f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
1f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
1f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
1f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
1f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
1f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
1f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
1f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
1f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
1f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
1f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
1f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
1f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
1f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
1f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
1f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
1f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
1f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
1f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
1f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
1f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
1f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
1f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
1f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
1f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
1f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
1f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
1f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
1f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
1f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
1f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
1f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
1f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
1f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
1f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
20:00.0 Host bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DMI2 (rev 07)
20:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
20:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
20:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
20:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
20:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
20:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
20:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
20:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
20:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
20:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
20:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
20:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 06)
20:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 8 (rev b6)
20:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 06)
20:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 06)
21:00.0 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
21:00.1 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
26:00.0 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Slave Instrumentation & System Support (rev 06)
26:00.2 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Management Processor Support and Messaging (rev 06)
2f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
2f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
2f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
2f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
2f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
2f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
2f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
2f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
2f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
2f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
2f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
2f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
2f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
2f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
2f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
2f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
2f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
2f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
2f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
2f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
2f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
2f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
2f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
2f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
2f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
2f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
2f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
2f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
2f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
2f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
2f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
2f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
2f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
2f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
2f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
2f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
2f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
2f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
2f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
2f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
2f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
2f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
2f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
2f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
2f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
30:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
30:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
30:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
30:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
30:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
30:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
30:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
30:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
30:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
30:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
30:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
3f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
3f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
3f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
3f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
3f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
3f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
3f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
3f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
3f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
3f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
3f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
3f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
3f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
3f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
3f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
3f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
3f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
3f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
3f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
3f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
3f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
3f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
3f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
3f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
3f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
3f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
3f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
3f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
3f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
3f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
3f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
3f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
3f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
3f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
3f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
3f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
3f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
3f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
3f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
3f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
3f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
3f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
3f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
3f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
3f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)

[-- Attachment #5: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-23  8:35   ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-04-23  8:35 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: alex.williamson, indou.takao, bhe, tom.vaden, rwright, dwmw2,
	joro, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	ddutile, doug.hatch, ishii.hironobu, linux-pci, bhelgaas,
	billsumnerlinux, li.zhang6, dyoung, vgoyal

[-- Attachment #1: Type: text/plain, Size: 8550 bytes --]

Tested on HP Superdome X.
Result: Passed.

PCI list and log are attached.

superdomex_boot.log: Log for first kernel.
superdomex_dump.log: Log for kdump kernel.
lspci: log for command lspci

Thanks
Zhenhua
On 04/10/2015 04:42 PM, Li, Zhen-Hua wrote:
> This patchset is an update of Bill Sumner's patchset, implements a fix for:
> If a kernel boots with intel_iommu=on on a system that supports intel vt-d,
> when a panic happens, the kdump kernel will boot with these faults:
>
>      dmar: DRHD: handling fault status reg 102
>      dmar: DMAR:[DMA Read] Request device [01:00.0] fault addr fff80000
>      DMAR:[fault reason 01] Present bit in root entry is clear
>
>      dmar: DRHD: handling fault status reg 2
>      dmar: INTR-REMAP: Request device [[61:00.0] fault index 42
>      INTR-REMAP:[fault reason 34] Present field in the IRTE entry is clear
>
> On some system, the interrupt remapping fault will also happen even if the
> intel_iommu is not set to on, because the interrupt remapping will be enabled
> when x2apic is needed by the system.
>
> The cause of the DMA fault is described in Bill's original version, and the
> INTR-Remap fault is caused by a similar reason. In short, the initialization
> of vt-d drivers causes the in-flight DMA and interrupt requests get wrong
> response.
>
> To fix this problem, we modifies the behaviors of the intel vt-d in the
> crashdump kernel:
>
> For DMA Remapping:
> 1. To accept the vt-d hardware in an active state,
> 2. Do not disable and re-enable the translation, keep it enabled.
> 3. Use the old root entry table, do not rewrite the RTA register.
> 4. Malloc and use new context entry table, copy data from the old ones that
>     used by the old kernel.
> 5. Keep using the old page tables before driver is loaded.
> 6. After device driver is loaded, when it issues the first dma_map command,
>     free the dmar_domain structure for this device, and generate a new one, so
>     that the device can be assigned a new and empty page table.
> 7. When a new context entry table is generated, we also save its address to
>     the old root entry table.
>
> For Interrupt Remapping:
> 1. To accept the vt-d hardware in an active state,
> 2. Do not disable and re-enable the interrupt remapping, keep it enabled.
> 3. Use the old interrupt remapping table, do not rewrite the IRTA register.
> 4. When ioapic entry is setup, the interrupt remapping table is changed, and
>     the updated data will be stored to the old interrupt remapping table.
>
> Advantages of this approach:
> 1. All manipulation of the IO-device is done by the Linux device-driver
>     for that device.
> 2. This approach behaves in a manner very similar to operation without an
>     active iommu.
> 3. Any activity between the IO-device and its RMRR areas is handled by the
>     device-driver in the same manner as during a non-kdump boot.
> 4. If an IO-device has no driver in the kdump kernel, it is simply left alone.
>     This supports the practice of creating a special kdump kernel without
>     drivers for any devices that are not required for taking a crashdump.
> 5. Minimal code-changes among the existing mainline intel vt-d code.
>
> Summary of changes in this patch set:
> 1. Added some useful function for root entry table in code intel-iommu.c
> 2. Added new members to struct root_entry and struct irte;
> 3. Functions to load old root entry table to iommu->root_entry from the memory
>     of old kernel.
> 4. Functions to malloc new context entry table and copy the data from the old
>     ones to the malloced new ones.
> 5. Functions to enable support for DMA remapping in kdump kernel.
> 6. Functions to load old irte data from the old kernel to the kdump kernel.
> 7. Some code changes that support other behaviours that have been listed.
> 8. In the new functions, use physical address as "unsigned long" type, not
>     pointers.
>
> Original version by Bill Sumner:
>      https://lkml.org/lkml/2014/1/10/518
>      https://lkml.org/lkml/2014/4/15/716
>      https://lkml.org/lkml/2014/4/24/836
>
> Zhenhua's updates:
>      https://lkml.org/lkml/2014/10/21/134
>      https://lkml.org/lkml/2014/12/15/121
>      https://lkml.org/lkml/2014/12/22/53
>      https://lkml.org/lkml/2015/1/6/1166
>      https://lkml.org/lkml/2015/1/12/35
>      https://lkml.org/lkml/2015/3/19/33
>
> Changelog[v10]:
>      1. Do not use CONFIG_CRASH_DUMP and is_kdump_kernel().
>         Use one flag which stores the te and ir status in last kernel:
>             iommu->pre_enabled_trans
>             iommu->pre_enabled_ir
>
> Changelog[v9]:
>      1. Add new function iommu_attach_domain_with_id.
>      2. Do not copy old page tables, keep using the old ones.
>      3. Remove functions:
>             intel_iommu_did_to_domain_values_entry
>             intel_iommu_get_dids_from_old_kernel
>             device_to_domain_id
>             copy_page_addr
>             copy_page_table
>             copy_context_entry
>             copy_context_entry_table
>      4. Add new function device_to_existing_context_entry.
>
> Changelog[v8]:
>      1. Add a missing __iommu_flush_cache in function copy_page_table.
>
> Changelog[v7]:
>      1. Use __iommu_flush_cache to flush the data to hardware.
>
> Changelog[v6]:
>      1. Use "unsigned long" as type of physical address.
>      2. Use new function unmap_device_dma to unmap the old dma.
>      3. Some small incorrect bits order for aw shift.
>
> Changelog[v5]:
>      1. Do not disable and re-enable traslation and interrupt remapping.
>      2. Use old root entry table.
>      3. Use old interrupt remapping table.
>      4. New functions to copy data from old kernel, and save to old kernel mem.
>      5. New functions to save updated root entry table and irte table.
>      6. Use intel_unmap to unmap the old dma;
>      7. Allocate new pages while driver is being loaded.
>
> Changelog[v4]:
>      1. Cut off the patches that move some defines and functions to new files.
>      2. Reduce the numbers of patches to five, make it more easier to read.
>      3. Changed the name of functions, make them consistent with current context
>         get/set functions.
>      4. Add change to function __iommu_attach_domain.
>
> Changelog[v3]:
>      1. Commented-out "#define DEBUG 1" to eliminate debug messages.
>      2. Updated the comments about changes in each version.
>      3. Fixed: one-line added to Copy-Translations patch to initialize the iovad
>            struct as recommended by Baoquan He [bhe@redhat.com]
>            init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
>
> Changelog[v2]:
>      The following series implements a fix for:
>      A kdump problem about DMA that has been discussed for a long time. That is,
>      when a kernel panics and boots into the kdump kernel, DMA started by the
>      panicked kernel is not stopped before the kdump kernel is booted and the
>      kdump kernel disables the IOMMU while this DMA continues.  This causes the
>      IOMMU to stop translating the DMA addresses as IOVAs and begin to treat
>      them as physical memory addresses -- which causes the DMA to either:
>          (1) generate DMAR errors or
>          (2) generate PCI SERR errors or
>          (3) transfer data to or from incorrect areas of memory. Often this
>              causes the dump to fail.
>
> Changelog[v1]:
>      The original version.
>
> Changed in this version:
> 1. Do not disable and re-enable traslation and interrupt remapping.
> 2. Use old root entry table.
> 3. Use old interrupt remapping table.
> 4. Use "unsigned long" as physical address.
> 5. Use intel_unmap to unmap the old dma;
>
> Baoquan He <bhe@redhat.com> helps testing this patchset.
> Takao Indoh <indou.takao@jp.fujitsu.com> gives valuable suggestions.
>
> Li, Zhen-Hua (10):
>    iommu/vt-d: New function to attach domain with id
>    iommu/vt-d: Items required for kdump
>    iommu/vt-d: Function to get old context entry
>    iommu/vt-d: functions to copy data from old mem
>    iommu/vt-d: Add functions to load and save old re
>    iommu/vt-d: datatypes and functions used for kdump
>    iommu/vt-d: enable kdump support in iommu module
>    iommu/vt-d: assign new page table for dma_map
>    iommu/vt-d: Copy functions for irte
>    iommu/vt-d: Use old irte in kdump kernel
>
>   drivers/iommu/intel-iommu.c         | 518 ++++++++++++++++++++++++++++++++++--
>   drivers/iommu/intel_irq_remapping.c |  96 ++++++-
>   include/linux/intel-iommu.h         |  16 ++
>   3 files changed, 605 insertions(+), 25 deletions(-)
>


[-- Attachment #2: superdomex_boot.log --]
[-- Type: text/x-log, Size: 158996 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.0.0-rc7.v10u2 (root@dhb5.fcux.usa.hp.com) (gcc version 4.8.2 20140120 (Red Hat 4.8.2-16) (GCC) ) #1 SMP Thu Apr 9 02:19:13 EDT 2015
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us crashkernel=512M vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000078bfefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000078bff000-0x00000000799fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000799ff000-0x000000007bdfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007bdff000-0x000000007bffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007bfff000-0x000000007bffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ff1fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000100000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000100001000-0x000000207fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000004000000000-0x0000004000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000004000001000-0x0000009fffffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000fdfe0000000-0x00000fdfffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe060000000-0x00000fe07fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe0e0000000-0x00000fe0ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe160000000-0x00000fe17fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe1e0000000-0x00000fe1ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe260000000-0x00000fe27fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe2e0000000-0x00000fe2ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe360000000-0x00000fe37fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe3e0000000-0x00000fe3ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe460000000-0x00000fe47fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe4e0000000-0x00000fe4ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe560000000-0x00000fe57fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe5e0000000-0x00000fe5ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe660000000-0x00000fe67fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe6e0000000-0x00000fe6ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe760000000-0x00000fe77fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe7e0000000-0x00000fe7ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x77787018-0x777fd857] usable ==> usable
[    0.000000] e820: update [mem 0x77755018-0x77786e57] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000077755017] usable
[    0.000000] reserve setup_data: [mem 0x0000000077755018-0x0000000077786e57] usable
[    0.000000] reserve setup_data: [mem 0x0000000077786e58-0x0000000077787017] usable
[    0.000000] reserve setup_data: [mem 0x0000000077787018-0x00000000777fd857] usable
[    0.000000] reserve setup_data: [mem 0x00000000777fd858-0x0000000078bfefff] usable
[    0.000000] reserve setup_data: [mem 0x0000000078bff000-0x00000000799fefff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000799ff000-0x000000007bdfefff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000007bdff000-0x000000007bffefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000007bfff000-0x000000007bffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ff1fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x0000000100000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000100001000-0x000000207fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000004000000000-0x0000004000000fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000004000001000-0x0000009fffffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000fdfe0000000-0x00000fdfffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe060000000-0x00000fe07fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe0e0000000-0x00000fe0ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe160000000-0x00000fe17fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe1e0000000-0x00000fe1ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe260000000-0x00000fe27fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe2e0000000-0x00000fe2ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe360000000-0x00000fe37fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe3e0000000-0x00000fe3ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe460000000-0x00000fe47fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe4e0000000-0x00000fe4ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe560000000-0x00000fe57fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe5e0000000-0x00000fe5ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe660000000-0x00000fe67fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe6e0000000-0x00000fe6ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe760000000-0x00000fe77fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000fe7e0000000-0x00000fe7ffffffff] reserved
[    0.000000] efi: EFI v2.31 by HP
[    0.000000] efi:  ACPI=0x7bffe000  ACPI 2.0=0x7bffe014  SMBIOS=0x799f8000 
[    0.000000] efi: mem00: [Boot Code          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000001000-0x0000000000002000) (0MB)
[    0.000000] efi: mem02: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000002000-0x000000000008e000) (0MB)
[    0.000000] efi: mem03: [Reserved           |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000000008e000-0x0000000000090000) (0MB)
[    0.000000] efi: mem04: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000090000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem05: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000100000-0x0000000001000000) (15MB)
[    0.000000] efi: mem06: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000001000000-0x000000000212d000) (17MB)
[    0.000000] efi: mem07: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000000212d000-0x000000003f4b3000) (979MB)
[    0.000000] efi: mem08: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000003f4b3000-0x000000005c800000) (467MB)
[    0.000000] efi: mem09: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000005c800000-0x000000005ca00000) (2MB)
[    0.000000] efi: mem10: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000005ca00000-0x000000006d038000) (262MB)
[    0.000000] efi: mem11: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000006d038000-0x000000006f3fc000) (35MB)
[    0.000000] efi: mem12: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000006f3fc000-0x00000000738e8000) (68MB)
[    0.000000] efi: mem13: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000738e8000-0x0000000073e21000) (5MB)
[    0.000000] efi: mem14: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073e21000-0x0000000073e3b000) (0MB)
[    0.000000] efi: mem15: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073e3b000-0x0000000073e3e000) (0MB)
[    0.000000] efi: mem16: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073e3e000-0x0000000073e5f000) (0MB)
[    0.000000] efi: mem17: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073e5f000-0x0000000073f68000) (1MB)
[    0.000000] efi: mem18: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073f68000-0x0000000073f69000) (0MB)
[    0.000000] efi: mem19: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000073f69000-0x00000000742b9000) (3MB)
[    0.000000] efi: mem20: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000742b9000-0x00000000742fb000) (0MB)
[    0.000000] efi: mem21: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000742fb000-0x0000000074313000) (0MB)
[    0.000000] efi: mem22: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074313000-0x0000000074333000) (0MB)
[    0.000000] efi: mem23: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074333000-0x0000000074359000) (0MB)
[    0.000000] efi: mem24: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074359000-0x000000007436e000) (0MB)
[    0.000000] efi: mem25: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007436e000-0x0000000074559000) (1MB)
[    0.000000] efi: mem26: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074559000-0x000000007457a000) (0MB)
[    0.000000] efi: mem27: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007457a000-0x0000000074595000) (0MB)
[    0.000000] efi: mem28: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074595000-0x0000000074596000) (0MB)
[    0.000000] efi: mem29: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000074596000-0x00000000746a6000) (1MB)
[    0.000000] efi: mem30: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000746a6000-0x00000000746a8000) (0MB)
[    0.000000] efi: mem31: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000746a8000-0x00000000773ff000) (45MB)
[    0.000000] efi: mem32: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000773ff000-0x0000000077754000) (3MB)
[    0.000000] efi: mem33: [Loader Data        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000077754000-0x00000000777ff000) (0MB)
[    0.000000] efi: mem34: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000777ff000-0x0000000077b16000) (3MB)
[    0.000000] efi: mem35: [Loader Code        |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000077b16000-0x0000000077bff000) (0MB)
[    0.000000] efi: mem36: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000077bff000-0x000000007823e000) (6MB)
[    0.000000] efi: mem37: [Boot Code          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007823e000-0x0000000078bff000) (9MB)
[    0.000000] efi: mem38: [Runtime Data       |RUN|  |  |  |   |WB|WT|WC|UC] range=[0x0000000078bff000-0x00000000790ff000) (5MB)
[    0.000000] efi: mem39: [Runtime Code       |RUN|  |  |  |   |WB|WT|WC|UC] range=[0x00000000790ff000-0x00000000798ff000) (8MB)
[    0.000000] efi: mem40: [Reserved           |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000798ff000-0x00000000799ff000) (1MB)
[    0.000000] efi: mem41: [ACPI Memory NVS    |   |  |  |  |   |WB|WT|WC|UC] range=[0x00000000799ff000-0x000000007bdff000) (36MB)
[    0.000000] efi: mem42: [ACPI Reclaim Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007bdff000-0x000000007bfff000) (2MB)
[    0.000000] efi: mem43: [Boot Data          |   |  |  |  |   |WB|WT|WC|UC] range=[0x000000007bfff000-0x000000007c000000) (0MB)
[    0.000000] efi: mem44: [ACPI Memory NVS    |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000100000000-0x0000000100001000) (0MB)
[    0.000000] efi: mem45: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000000100001000-0x0000002080000000) (129023MB)
[    0.000000] efi: mem46: [ACPI Memory NVS    |   |  |  |  |   |WB|WT|WC|UC] range=[0x0000004000000000-0x0000004000001000) (0MB)
[    0.000000] efi: mem47: [Conventional Memory|   |  |  |  |   |WB|WT|WC|UC] range=[0x0000004000001000-0x000000a000000000) (393215MB)
[    0.000000] efi: mem48: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x0000000080000000-0x0000000090000000) (256MB)
[    0.000000] efi: mem49: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem50: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000000ff000000-0x00000000ff200000) (2MB)
[    0.000000] efi: mem51: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fdfe0000000-0x00000fe000000000) (512MB)
[    0.000000] efi: mem52: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe060000000-0x00000fe080000000) (512MB)
[    0.000000] efi: mem53: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe0e0000000-0x00000fe100000000) (512MB)
[    0.000000] efi: mem54: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe160000000-0x00000fe180000000) (512MB)
[    0.000000] efi: mem55: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe1e0000000-0x00000fe200000000) (512MB)
[    0.000000] efi: mem56: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe260000000-0x00000fe280000000) (512MB)
[    0.000000] efi: mem57: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe2e0000000-0x00000fe300000000) (512MB)
[    0.000000] efi: mem58: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe360000000-0x00000fe380000000) (512MB)
[    0.000000] efi: mem59: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe3e0000000-0x00000fe400000000) (512MB)
[    0.000000] efi: mem60: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe460000000-0x00000fe480000000) (512MB)
[    0.000000] efi: mem61: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe4e0000000-0x00000fe500000000) (512MB)
[    0.000000] efi: mem62: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe560000000-0x00000fe580000000) (512MB)
[    0.000000] efi: mem63: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe5e0000000-0x00000fe600000000) (512MB)
[    0.000000] efi: mem64: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe660000000-0x00000fe680000000) (512MB)
[    0.000000] efi: mem65: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe6e0000000-0x00000fe700000000) (512MB)
[    0.000000] efi: mem66: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe760000000-0x00000fe780000000) (512MB)
[    0.000000] efi: mem67: [Memory Mapped I/O  |RUN|  |  |  |   |  |  |  |UC] range=[0x00000fe7e0000000-0x00000fe800000000) (512MB)
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: HP Superdome2 16s x86, BIOS Bundle: 005.073.000 SFW: 015.082.000 08/08/2014
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] AGP: No AGP bridge found
[    0.000000] e820: last_pfn = 0xa000000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: write-back
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-DFFFF write-protect
[    0.000000]   E0000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000080000000 mask 3FFF80000000 uncachable
[    0.000000]   1 base 0F0000000000 mask 3F8000000000 uncachable
[    0.000000]   2 base 0F8000000000 mask 3FC000000000 uncachable
[    0.000000]   3 base 0FC000000000 mask 3FE000000000 uncachable
[    0.000000]   4 base 0FE000000000 mask 3FF000000000 uncachable
[    0.000000]   5 base 0000FF000000 mask 3FFFFFE00000 uncachable
[    0.000000]   6 base 0FDF80000000 mask 3FFF80000000 uncachable
[    0.000000]   7 base 0FE000000000 mask 3FF800000000 uncachable
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] PAT configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- UC  
[    0.000000] x2apic: enabled by BIOS, switching to x2apic ops
[    0.000000] e820: last_pfn = 0x7c000 max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01fa1000, 0x01fa1fff] PGTABLE
[    0.000000] BRK [0x01fa2000, 0x01fa2fff] PGTABLE
[    0.000000] BRK [0x01fa3000, 0x01fa3fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x9fffe00000-0x9fffffffff]
[    0.000000]  [mem 0x9fffe00000-0x9fffffffff] page 1G
[    0.000000] BRK [0x01fa4000, 0x01fa4fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x9fe0000000-0x9fffdfffff]
[    0.000000]  [mem 0x9fe0000000-0x9fffdfffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x8000000000-0x9fdfffffff]
[    0.000000]  [mem 0x8000000000-0x9fdfffffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x00100000-0x78bfefff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x789fffff] page 2M
[    0.000000]  [mem 0x78a00000-0x78bfefff] page 4k
[    0.000000] init_memory_mapping: [mem 0x7bfff000-0x7bffffff]
[    0.000000]  [mem 0x7bfff000-0x7bffffff] page 4k
[    0.000000] BRK [0x01fa5000, 0x01fa5fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x100001000-0x207fffffff]
[    0.000000]  [mem 0x100001000-0x1001fffff] page 4k
[    0.000000]  [mem 0x100200000-0x13fffffff] page 2M
[    0.000000]  [mem 0x140000000-0x207fffffff] page 1G
[    0.000000] BRK [0x01fa6000, 0x01fa6fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x4000001000-0x7fffffffff]
[    0.000000]  [mem 0x4000001000-0x40001fffff] page 4k
[    0.000000]  [mem 0x4000200000-0x403fffffff] page 2M
[    0.000000]  [mem 0x4040000000-0x7fffffffff] page 1G
[    0.000000] RAMDISK: [mem 0x3f4b3000-0x3ffe7fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000007BFFE014 000024 (v02 HP    )
[    0.000000] ACPI: XSDT 0x000000007BFFD0E8 0000AC (v01 HP     03010201 00000002 MSFT 01000013)
[    0.000000] ACPI: FACP 0x000000007BFFB000 00010C (v05 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: DSDT 0x000000007BFF1000 0004A8 (v02 HP     CORE     00000002 HPAG 00020000)
[    0.000000] ACPI: FACS 0x000000007AD00000 000040
[    0.000000] ACPI: MCEJ 0x000000007BFFC000 000130 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: HPET 0x000000007BFFA000 000038 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: MCFG 0x000000007BFF9000 00003C (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SLIT 0x000000007BFF8000 00003C (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: APIC 0x000000007BFF7000 000DA8 (v03 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SRAT 0x000000007BFF6000 000C38 (v02 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SPMI 0x000000007BFF5000 000040 (v05 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SPCR 0x000000007BFF4000 000050 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: DBGP 0x000000007BFF3000 000034 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: RASF 0x000000007BFF2000 000030 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SSDT 0x000000007BFD7000 019FB9 (v02 HP     BLADE000 00000002 HPAG 00020000)
[    0.000000] ACPI: SSDT 0x000000007BFBD000 0196F0 (v02 HP     BLADE001 00000002 HPAG 00020000)
[    0.000000] ACPI: DMAR 0x000000007BFBB000 000368 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: HEST 0x000000007BFBA000 000184 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: BERT 0x000000007BFB9000 000030 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: EINJ 0x000000007BFB8000 000150 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] System requires x2apic physical mode
[    0.000000] Setting APIC routing to physical x2apic.
[    0.000000] SRAT: PXM 0 -> APIC 0x0000 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0001 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0002 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0003 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0004 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0005 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0006 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0007 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0008 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0009 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000b -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000d -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x000f -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0010 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0011 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0012 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0013 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0014 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0015 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0016 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0017 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0018 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0019 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x001a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x001b -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x001c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x001d -> Node 0
[    0.000000] SRAT: PXM 1 -> APIC 0x0020 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0021 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0022 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0023 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0024 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0025 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0026 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0027 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0028 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0029 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002a -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002b -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002c -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002d -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002e -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x002f -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0030 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0031 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0032 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0033 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0034 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0035 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0036 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0037 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0038 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x0039 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x003a -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x003b -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x003c -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x003d -> Node 1
[    0.000000] SRAT: PXM 2 -> APIC 0x0040 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0041 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0042 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0043 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0044 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0045 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0046 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0047 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0048 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0049 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004a -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004b -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004c -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004d -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004e -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x004f -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0050 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0051 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0052 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0053 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0054 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0055 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0056 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0057 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0058 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x0059 -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x005a -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x005b -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x005c -> Node 2
[    0.000000] SRAT: PXM 2 -> APIC 0x005d -> Node 2
[    0.000000] SRAT: PXM 3 -> APIC 0x0060 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0061 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0062 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0063 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0064 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0065 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0066 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0067 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0068 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0069 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006a -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006b -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006c -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006d -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006e -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x006f -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0070 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0071 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0072 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0073 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0074 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0075 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0076 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0077 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0078 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x0079 -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x007a -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x007b -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x007c -> Node 3
[    0.000000] SRAT: PXM 3 -> APIC 0x007d -> Node 3
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.000000] SRAT: Node 1 PXM 1 [mem 0x4000000000-0x5fffffffff]
[    0.000000] SRAT: Node 2 PXM 2 [mem 0x6000000000-0x7fffffffff]
[    0.000000] SRAT: Node 3 PXM 3 [mem 0x8000000000-0x9fffffffff]
[    0.000000] NUMA: Initialized distance table, cnt=4
[    0.000000] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00000000-0x207fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x207ffda000-0x207fffffff]
[    0.000000] NODE_DATA(1) allocated [mem 0x5ffffda000-0x5fffffffff]
[    0.000000] NODE_DATA(2) allocated [mem 0x7ffffda000-0x7fffffffff]
[    0.000000] NODE_DATA(3) allocated [mem 0x9ffffd4000-0x9fffff9fff]
[    0.000000] Reserving 512MB of memory at 384MB for crashkernel (System RAM: 524171MB)
[    0.000000]  [ffffea0000000000-ffffea0081ffffff] PMD -> [ffff881fffe00000-ffff88207fdfffff] on node 0
[    0.000000]  [ffffea0100000000-ffffea017fffffff] PMD -> [ffff885f7fe00000-ffff885fffdfffff] on node 1
[    0.000000]  [ffffea0180000000-ffffea01ffffffff] PMD -> [ffff887f7fe00000-ffff887fffdfffff] on node 2
[    0.000000]  [ffffea0200000000-ffffea027fffffff] PMD -> [ffff889f7f600000-ffff889fff5fffff] on node 3
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x0000009fffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008dfff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000078bfefff]
[    0.000000]   node   0: [mem 0x000000007bfff000-0x000000007bffffff]
[    0.000000]   node   0: [mem 0x0000000100001000-0x000000207fffffff]
[    0.000000]   node   1: [mem 0x0000004000001000-0x0000005fffffffff]
[    0.000000]   node   2: [mem 0x0000006000000000-0x0000007fffffffff]
[    0.000000]   node   3: [mem 0x0000008000000000-0x0000009fffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fffffff]
[    0.000000] On node 0 totalpages: 33524636
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 22 pages reserved
[    0.000000]   DMA zone: 3997 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 7664 pages used for memmap
[    0.000000]   DMA32 zone: 490496 pages, LIFO batch:31
[    0.000000]   Normal zone: 516096 pages used for memmap
[    0.000000]   Normal zone: 33030143 pages, LIFO batch:31
[    0.000000] Initmem setup node 1 [mem 0x0000004000001000-0x0000005fffffffff]
[    0.000000] On node 1 totalpages: 33554431
[    0.000000]   Normal zone: 524288 pages used for memmap
[    0.000000]   Normal zone: 33554431 pages, LIFO batch:31
[    0.000000] Initmem setup node 2 [mem 0x0000006000000000-0x0000007fffffffff]
[    0.000000] On node 2 totalpages: 33554432
[    0.000000]   Normal zone: 524288 pages used for memmap
[    0.000000]   Normal zone: 33554432 pages, LIFO batch:31
[    0.000000] Initmem setup node 3 [mem 0x0000008000000000-0x0000009fffffffff]
[    0.000000] On node 3 totalpages: 33554432
[    0.000000]   Normal zone: 524288 pages used for memmap
[    0.000000]   Normal zone: 33554432 pages, LIFO batch:31
[    0.000000] tboot: non-0 tboot_addr but it is not of type E820_RESERVED
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] System requires x2apic physical mode
[    0.000000] ACPI: X2APIC (apic_id[0x00] uid[0x00] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x02] uid[0x02] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x04] uid[0x04] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x06] uid[0x06] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x08] uid[0x08] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0a] uid[0x0a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0c] uid[0x0c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0e] uid[0x0e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x10] uid[0x10] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x12] uid[0x12] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x14] uid[0x14] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x16] uid[0x16] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x18] uid[0x18] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x1a] uid[0x1a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x1c] uid[0x1c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x20] uid[0x24] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x22] uid[0x26] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x24] uid[0x28] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x26] uid[0x2a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x28] uid[0x2c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2a] uid[0x2e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2c] uid[0x30] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2e] uid[0x32] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x30] uid[0x34] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x32] uid[0x36] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x34] uid[0x38] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x36] uid[0x3a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x38] uid[0x3c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x3a] uid[0x3e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x3c] uid[0x40] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x40] uid[0x48] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x42] uid[0x4a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x44] uid[0x4c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x46] uid[0x4e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x48] uid[0x50] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4a] uid[0x52] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4c] uid[0x54] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4e] uid[0x56] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x50] uid[0x58] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x52] uid[0x5a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x54] uid[0x5c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x56] uid[0x5e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x58] uid[0x60] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x5a] uid[0x62] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x5c] uid[0x64] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x60] uid[0x6c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x62] uid[0x6e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x64] uid[0x70] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x66] uid[0x72] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x68] uid[0x74] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6a] uid[0x76] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6c] uid[0x78] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6e] uid[0x7a] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x70] uid[0x7c] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x72] uid[0x7e] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x74] uid[0x80] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x76] uid[0x82] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x78] uid[0x84] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x7a] uid[0x86] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x7c] uid[0x88] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x01] uid[0x01] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x03] uid[0x03] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x05] uid[0x05] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x07] uid[0x07] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x09] uid[0x09] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0b] uid[0x0b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0d] uid[0x0d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x0f] uid[0x0f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x11] uid[0x11] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x13] uid[0x13] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x15] uid[0x15] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x17] uid[0x17] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x19] uid[0x19] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x1b] uid[0x1b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x1d] uid[0x1d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x21] uid[0x25] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x23] uid[0x27] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x25] uid[0x29] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x27] uid[0x2b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x29] uid[0x2d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2b] uid[0x2f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2d] uid[0x31] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x2f] uid[0x33] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x31] uid[0x35] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x33] uid[0x37] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x35] uid[0x39] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x37] uid[0x3b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x39] uid[0x3d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x3b] uid[0x3f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x3d] uid[0x41] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x41] uid[0x49] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x43] uid[0x4b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x45] uid[0x4d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x47] uid[0x4f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x49] uid[0x51] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4b] uid[0x53] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4d] uid[0x55] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x4f] uid[0x57] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x51] uid[0x59] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x53] uid[0x5b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x55] uid[0x5d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x57] uid[0x5f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x59] uid[0x61] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x5b] uid[0x63] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x5d] uid[0x65] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x61] uid[0x6d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x63] uid[0x6f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x65] uid[0x71] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x67] uid[0x73] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x69] uid[0x75] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6b] uid[0x77] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6d] uid[0x79] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x6f] uid[0x7b] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x71] uid[0x7d] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x73] uid[0x7f] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x75] uid[0x81] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x77] uid[0x83] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x79] uid[0x85] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x7b] uid[0x87] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x7d] uid[0x89] enabled)
[    0.000000] ACPI: X2APIC_NMI (uid[0x00] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x01] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x02] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x03] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x04] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x05] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x06] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x07] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x08] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x09] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x10] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x11] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x12] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x13] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x14] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x15] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x16] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x17] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x18] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x19] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x24] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x25] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x26] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x27] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x28] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x29] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x30] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x31] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x32] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x33] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x34] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x35] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x36] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x37] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x38] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x39] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x40] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x41] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x48] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x49] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x50] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x51] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x52] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x53] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x54] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x55] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x56] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x57] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x58] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x59] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x60] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x61] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x62] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x63] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x64] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x65] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x70] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x71] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x72] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x73] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x74] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x75] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x76] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x77] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x78] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x79] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x80] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x81] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x82] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x83] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x84] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x85] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x86] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x87] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x88] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x89] high level lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x09] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec04000] gsi_base[48])
[    0.000000] IOAPIC[2]: apic_id 10, version 32, address 0xfec04000, GSI 48-71
[    0.000000] ACPI: IOAPIC (id[0x0b] address[0xfec08000] gsi_base[72])
[    0.000000] IOAPIC[3]: apic_id 11, version 32, address 0xfec08000, GSI 72-95
[    0.000000] ACPI: IOAPIC (id[0x0c] address[0xfec09000] gsi_base[96])
[    0.000000] IOAPIC[4]: apic_id 12, version 32, address 0xfec09000, GSI 96-119
[    0.000000] ACPI: IOAPIC (id[0x0d] address[0xfec0c000] gsi_base[120])
[    0.000000] IOAPIC[5]: apic_id 13, version 32, address 0xfec0c000, GSI 120-143
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[    0.000000] smpboot: Allowing 120 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008e000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x77755000-0x77755fff]
[    0.000000] PM: Registered nosave memory: [mem 0x77786000-0x77786fff]
[    0.000000] PM: Registered nosave memory: [mem 0x77787000-0x77787fff]
[    0.000000] PM: Registered nosave memory: [mem 0x777fd000-0x777fdfff]
[    0.000000] PM: Registered nosave memory: [mem 0x78bff000-0x799fefff]
[    0.000000] PM: Registered nosave memory: [mem 0x799ff000-0x7bdfefff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bdff000-0x7bffefff]
[    0.000000] PM: Registered nosave memory: [mem 0x7c000000-0x7fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x80000000-0x8fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x90000000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xff1fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff200000-0xffffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x100000000-0x100000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x2080000000-0x3fffffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x4000000000-0x4000000fff]
[    0.000000] e820: [mem 0x90000000-0xfed1bfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:120 nr_cpu_ids:120 nr_node_ids:4
[    0.000000] PERCPU: Embedded 32 pages/cpu @ffff881fffa00000 s91544 r8192 d31336 u131072
[    0.000000] pcpu-alloc: s91544 r8192 d31336 u131072 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 000 001 002 003 004 005 006 007 008 009 010 011 012 013 014 060 
[    0.000000] pcpu-alloc: [0] 061 062 063 064 065 066 067 068 069 070 071 072 073 074 --- --- 
[    0.000000] pcpu-alloc: [1] 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 075 
[    0.000000] pcpu-alloc: [1] 076 077 078 079 080 081 082 083 084 085 086 087 088 089 --- --- 
[    0.000000] pcpu-alloc: [2] 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 090 
[    0.000000] pcpu-alloc: [2] 091 092 093 094 095 096 097 098 099 100 101 102 103 104 --- --- 
[    0.000000] pcpu-alloc: [3] 045 046 047 048 049 050 051 052 053 054 055 056 057 058 059 105 
[    0.000000] pcpu-alloc: [3] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 --- --- 
[    0.000000] Built 4 zonelists in Node order, mobility grouping on.  Total pages: 132091221
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us crashkernel=512M vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on
[    0.000000] Intel-IOMMU: enabled
[    0.000000] log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] log_buf_len total cpu_extra contributions: 487424 bytes
[    0.000000] log_buf_len min size: 524288 bytes
[    0.000000] log_buf_len: 1048576 bytes
[    0.000000] early log buf free: 472608(90%)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[    0.000000] AGP: Checking aperture...
[    0.000000] AGP: No AGP bridge found
[    0.000000] Memory: 527618408K/536751724K available (6899K kernel code, 1427K rwdata, 3228K rodata, 1704K init, 2688K bss, 9133316K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=120, Nodes=4
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=120.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=120
[    0.000000] NR_IRQS:524544 nr_irqs:3424 16
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-119.
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [ttyS0] enabled
[    0.000000] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2793.819 MHz processor
[    0.000164] Calibrating delay loop (skipped), value calculated using timer frequency.. 5587.63 BogoMIPS (lpj=2793819)
[    0.012102] pid_max: default: 122880 minimum: 960
[    0.017404] ACPI: Core revision 20150204
[    0.032570] ACPI: All ACPI Tables successfully acquired
[    0.040156] Security Framework initialized
[    0.044803] SELinux:  Initializing.
[    0.048752] SELinux:  Starting in permissive mode
[    0.087385] Dentry cache hash table entries: 67108864 (order: 17, 536870912 bytes)
[    0.304007] Inode-cache hash table entries: 33554432 (order: 16, 268435456 bytes)
[    0.404609] Mount-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.413456] Mountpoint-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.428585] Initializing cgroup subsys blkio
[    0.433429] Initializing cgroup subsys memory
[    0.438423] Initializing cgroup subsys devices
[    0.443417] Initializing cgroup subsys freezer
[    0.448412] Initializing cgroup subsys net_cls
[    0.453419] Initializing cgroup subsys perf_event
[    0.458793] Initializing cgroup subsys hugetlb
[    0.464032] CPU: Physical Processor ID: 0
[    0.468538] CPU: Processor Core ID: 0
[    0.473527] mce: CPU supports 32 MCE banks
[    0.478203] CPU0: Thermal monitoring enabled (TM1)
[    0.483632] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.489794] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    0.496876] Freeing SMP alternatives memory: 28K (ffffffff81cf7000 - ffffffff81cfe000)
[    0.510186] ftrace: allocating 25687 entries in 101 pages
[    0.529790] dmar: Host address width 44
[    0.534104] dmar: DRHD base: 0x00000093ff8000 flags: 0x0
[    0.540095] dmar: IOMMU 0: reg_base_addr 93ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.549188] dmar: DRHD base: 0x00000097ff8000 flags: 0x0
[    0.555163] dmar: IOMMU 1: reg_base_addr 97ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.564252] dmar: DRHD base: 0x0000009bff8000 flags: 0x0
[    0.570234] dmar: IOMMU 2: reg_base_addr 9bff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.579330] dmar: DRHD base: 0x0000009fff8000 flags: 0x0
[    0.585304] dmar: IOMMU 3: reg_base_addr 9fff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.594395] dmar: RMRR base: 0x00000079911000 end: 0x00000079913fff
[    0.601438] dmar: RMRR base: 0x0000007990e000 end: 0x00000079910fff
[    0.608481] dmar: ATSR flags: 0x0
[    0.612208] dmar: ATSR flags: 0x0
[    0.615934] dmar: ATSR flags: 0x0
[    0.619659] dmar: ATSR flags: 0x0
[    0.623383] dmar: RHSA base: 0x00000093ff8000 proximity domain: 0x0
[    0.630426] dmar: RHSA base: 0x00000097ff8000 proximity domain: 0x1
[    0.637467] dmar: RHSA base: 0x0000009bff8000 proximity domain: 0x2
[    0.644507] dmar: RHSA base: 0x0000009fff8000 proximity domain: 0x3
[    0.651551] IOAPIC id 13 under DRHD base  0x9fff8000 IOMMU 3
[    0.657909] IOAPIC id 11 under DRHD base  0x9bff8000 IOMMU 2
[    0.664268] IOAPIC id 12 under DRHD base  0x9bff8000 IOMMU 2
[    0.670626] IOAPIC id 10 under DRHD base  0x97ff8000 IOMMU 1
[    0.676986] IOAPIC id 8 under DRHD base  0x93ff8000 IOMMU 0
[    0.683249] IOAPIC id 9 under DRHD base  0x93ff8000 IOMMU 0
[    0.689512] HPET id 0 under DRHD base 0x93ff8000
[    0.698379] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.707215] Enabled IRQ remapping in x2apic mode
[    0.712419] System requires x2apic physical mode
[    0.714163] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.730927] TSC deadline timer enabled
[    0.730952] smpboot: CPU0: Intel(R) Xeon(R) CPU E7-2890 v2 @ 2.80GHz (fam: 06, model: 3e, stepping: 07)
[    0.741559] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
[    0.753143] ... version:                3
[    0.757642] ... bit width:              48
[    0.762236] ... generic registers:      4
[    0.766735] ... value mask:             0000ffffffffffff
[    0.772696] ... max period:             0000ffffffffffff
[    0.778656] ... fixed-purpose events:   3
[    0.783152] ... event mask:             000000070000000f
[    0.792461] x86: Booting SMP configuration:
[    0.797159] .... node  #0, CPUs:          #1
[    0.827714] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.837122]    #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14
[    1.037843] .... node  #1, CPUs:    #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29
[    1.376996] .... node  #2, CPUs:    #30  #31  #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44
[    1.717647] .... node  #3, CPUs:    #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59
[    2.058125] .... node  #0, CPUs:    #60  #61  #62  #63  #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74
[    2.291256] .... node  #1, CPUs:    #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89
[    2.559283] .... node  #2, CPUs:    #90  #91  #92  #93  #94  #95  #96  #97  #98  #99 #100 #101 #102 #103 #104
[    2.828440] .... node  #3, CPUs:   #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119
[    3.097277] x86: Booted up 4 nodes, 120 CPUs
[    3.102294] smpboot: Total of 120 processors activated (671389.98 BogoMIPS)
[    3.661767] devtmpfs: initialized
[    3.665566] Using 2GB memory block size for large-memory system
[    3.676425] evm: security.selinux
[    3.680146] evm: security.ima
[    3.683477] evm: security.capability
[    3.687659] PM: Registering ACPI NVS region [mem 0x799ff000-0x7bdfefff] (37748736 bytes)
[    3.697231] PM: Registering ACPI NVS region [mem 0x100000000-0x100000fff] (4096 bytes)
[    3.706124] PM: Registering ACPI NVS region [mem 0x4000000000-0x4000000fff] (4096 bytes)
[    3.717159] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    3.726459] NET: Registered protocol family 16
[    3.736709] cpuidle: using governor menu
[    3.741258] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    3.749760] ACPI: bus type PCI registered
[    3.754262] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    3.761690] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0x80000000-0x83ffffff] (base 0x80000000)
[    3.772145] PCI: MMCONFIG at [mem 0x80000000-0x83ffffff] reserved in E820
[    3.779869] PCI: Using configuration type 1 for base access
[    3.796823] ACPI: Added _OSI(Module Device)
[    3.801521] ACPI: Added _OSI(Processor Device)
[    3.806509] ACPI: Added _OSI(3.0 _SCP Extensions)
[    3.811790] ACPI: Added _OSI(Processor Aggregator Device)
[    3.840014] ACPI: Interpreter enabled
[    3.844129] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
[    3.854508] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
[    3.864887] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20150204/hwxface-580)
[    3.875264] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20150204/hwxface-580)
[    3.885642] ACPI: (supports S0 S5)
[    3.889460] ACPI: Using IOAPIC for interrupt routing
[    3.895095] HEST: Table parsing has been initialized.
[    3.900769] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    3.923282] ACPI: PCI Root Bridge [IO00] (domain 0000 [bus 00-0f])
[    3.930227] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    3.939453] acpi PNP0A08:00: PCIe AER handled by firmware
[    3.945582] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    3.954258] PCI host bridge to bus 0000:00
[    3.958859] pci_bus 0000:00: root bus resource [bus 00-0f]
[    3.965020] pci_bus 0000:00: root bus resource [io  0x1000-0x3fff window]
[    3.972645] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    3.980268] pci_bus 0000:00: root bus resource [mem 0x90000000-0x93efffff window]
[    3.988674] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    3.997080] pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfedfffff window]
[    4.005483] pci_bus 0000:00: root bus resource [mem 0xfc000000000-0xfc07fffffff window]
[    4.014472] pci_bus 0000:00: root bus resource [mem 0xfe200000000-0xfe27fffffff window]
[    4.023472] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[    4.023552] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    4.023636] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[    4.023728] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    4.023806] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[    4.023897] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    4.023974] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[    4.024067] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    4.024138] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000
[    4.024156] pci 0000:00:04.0: reg 0x10: [mem 0xfc07ff1c000-0xfc07ff1ffff 64bit]
[    4.024291] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000
[    4.024308] pci 0000:00:04.1: reg 0x10: [mem 0xfc07ff18000-0xfc07ff1bfff 64bit]
[    4.024435] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000
[    4.024451] pci 0000:00:04.2: reg 0x10: [mem 0xfc07ff14000-0xfc07ff17fff 64bit]
[    4.024583] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000
[    4.024600] pci 0000:00:04.3: reg 0x10: [mem 0xfc07ff10000-0xfc07ff13fff 64bit]
[    4.024724] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000
[    4.024741] pci 0000:00:04.4: reg 0x10: [mem 0xfc07ff0c000-0xfc07ff0ffff 64bit]
[    4.024866] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000
[    4.024883] pci 0000:00:04.5: reg 0x10: [mem 0xfc07ff08000-0xfc07ff0bfff 64bit]
[    4.025011] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000
[    4.025029] pci 0000:00:04.6: reg 0x10: [mem 0xfc07ff04000-0xfc07ff07fff 64bit]
[    4.025152] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000
[    4.025169] pci 0000:00:04.7: reg 0x10: [mem 0xfc07ff00000-0xfc07ff03fff 64bit]
[    4.025300] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[    4.025409] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    4.025489] pci 0000:00:1c.0: [8086:1d1e] type 01 class 0x060400
[    4.025584] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    4.025610] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    4.030891] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    4.038481] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[    4.038505] pci 0000:00:1d.0: reg 0x10: [mem 0x90400000-0x904003ff]
[    4.038609] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    4.038669] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[    4.038933] pci 0000:01:00.0: [8086:10f8] type 00 class 0x020000
[    4.038944] pci 0000:01:00.0: reg 0x10: [mem 0x90200000-0x902fffff]
[    4.038958] pci 0000:01:00.0: reg 0x18: [io  0x0000-0x001f]
[    4.038965] pci 0000:01:00.0: reg 0x1c: [mem 0x90304000-0x90307fff]
[    4.038983] pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0007ffff pref]
[    4.039029] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    4.039060] pci 0000:01:00.0: reg 0x184: [mem 0xfc07fb00000-0xfc07fb03fff 64bit pref]
[    4.039074] pci 0000:01:00.0: reg 0x190: [mem 0xfc07fa00000-0xfc07fa03fff 64bit pref]
[    4.039138] pci 0000:01:00.1: [8086:10f8] type 00 class 0x020000
[    4.039148] pci 0000:01:00.1: reg 0x10: [mem 0x90100000-0x901fffff]
[    4.039161] pci 0000:01:00.1: reg 0x18: [io  0x0000-0x001f]
[    4.039169] pci 0000:01:00.1: reg 0x1c: [mem 0x90300000-0x90303fff]
[    4.039187] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.039232] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    4.039259] pci 0000:01:00.1: reg 0x184: [mem 0xfc07f900000-0xfc07f903fff 64bit pref]
[    4.039273] pci 0000:01:00.1: reg 0x190: [mem 0xfc07f800000-0xfc07f803fff 64bit pref]
[    4.040483] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[    4.046355] pci 0000:00:02.0:   bridge window [mem 0x90100000-0x903fffff]
[    4.046360] pci 0000:00:02.0:   bridge window [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[    4.046466] pci 0000:03:00.0: [1077:2031] type 00 class 0x0c0400
[    4.046481] pci 0000:03:00.0: reg 0x10: [mem 0xfc07fe0a000-0xfc07fe0bfff 64bit pref]
[    4.046492] pci 0000:03:00.0: reg 0x18: [mem 0xfc07fe04000-0xfc07fe07fff 64bit pref]
[    4.046503] pci 0000:03:00.0: reg 0x20: [mem 0xfc07fd00000-0xfc07fdfffff 64bit pref]
[    4.046511] pci 0000:03:00.0: reg 0x30: [mem 0x00000000-0x0003ffff pref]
[    4.046556] pci 0000:03:00.0: PME# supported from D3cold
[    4.046629] pci 0000:03:00.1: [1077:2031] type 00 class 0x0c0400
[    4.046643] pci 0000:03:00.1: reg 0x10: [mem 0xfc07fe08000-0xfc07fe09fff 64bit pref]
[    4.046654] pci 0000:03:00.1: reg 0x18: [mem 0xfc07fe00000-0xfc07fe03fff 64bit pref]
[    4.046666] pci 0000:03:00.1: reg 0x20: [mem 0xfc07fc00000-0xfc07fcfffff 64bit pref]
[    4.046674] pci 0000:03:00.1: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
[    4.046717] pci 0000:03:00.1: PME# supported from D3cold
[    4.048385] pci 0000:00:02.2: PCI bridge to [bus 03]
[    4.053971] pci 0000:00:02.2:   bridge window [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[    4.054067] pci 0000:00:03.0: PCI bridge to [bus 04]
[    4.059719] pci 0000:00:11.0: PCI bridge to [bus 05]
[    4.065385] pci 0000:06:00.0: [103c:3306] type 00 class 0x088000
[    4.065412] pci 0000:06:00.0: reg 0x10: [io  0x1400-0x14ff]
[    4.065429] pci 0000:06:00.0: reg 0x14: [mem 0x93a8c000-0x93a8c1ff]
[    4.065445] pci 0000:06:00.0: reg 0x18: [io  0x1200-0x12ff]
[    4.065664] pci 0000:06:00.1: [102b:0533] type 00 class 0x030000
[    4.065690] pci 0000:06:00.1: reg 0x10: [mem 0x92000000-0x92ffffff pref]
[    4.065706] pci 0000:06:00.1: reg 0x14: [mem 0x93a88000-0x93a8bfff]
[    4.065723] pci 0000:06:00.1: reg 0x18: [mem 0x93000000-0x937fffff]
[    4.065938] pci 0000:06:00.2: [103c:3307] type 00 class 0x088000
[    4.065964] pci 0000:06:00.2: reg 0x10: [io  0x1000-0x10ff]
[    4.065980] pci 0000:06:00.2: reg 0x14: [mem 0x93a8c400-0x93a8c4ff]
[    4.065997] pci 0000:06:00.2: reg 0x18: [mem 0x93800000-0x938fffff]
[    4.066013] pci 0000:06:00.2: reg 0x1c: [mem 0x93a00000-0x93a7ffff]
[    4.066029] pci 0000:06:00.2: reg 0x20: [mem 0x93a80000-0x93a87fff]
[    4.066045] pci 0000:06:00.2: reg 0x24: [mem 0x93900000-0x939fffff]
[    4.066061] pci 0000:06:00.2: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    4.066145] pci 0000:06:00.2: PME# supported from D0 D3hot D3cold
[    4.066229] pci 0000:06:00.4: [103c:3300] type 00 class 0x0c0300
[    4.066319] pci 0000:06:00.4: reg 0x20: [io  0x1500-0x151f]
[    4.068355] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    4.073933] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    4.073937] pci 0000:00:1c.0:   bridge window [mem 0x92000000-0x93efffff]
[    4.073943] pci 0000:00:1c.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    4.074000] pci_bus 0000:00: on NUMA node 0
[    4.074002] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
[    4.082250] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.091799] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.101348] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.110905] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.120458] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.130007] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.139558] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.149109] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    4.158651] ACPI: PCI Root Bridge [IO01] (domain 0000 [bus 10-1f])
[    4.165591] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    4.174813] acpi PNP0A08:01: PCIe AER handled by firmware
[    4.180941] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    4.189587] PCI host bridge to bus 0000:10
[    4.194188] pci_bus 0000:10: root bus resource [bus 10-1f]
[    4.200350] pci_bus 0000:10: root bus resource [io  0x4000-0x7fff window]
[    4.207973] pci_bus 0000:10: root bus resource [mem 0x94000000-0x97ff7fff window]
[    4.216379] pci_bus 0000:10: root bus resource [mem 0xfc400000000-0xfc47fffffff window]
[    4.225385] pci 0000:10:02.0: [8086:0e04] type 01 class 0x060400
[    4.225482] pci 0000:10:02.0: PME# supported from D0 D3hot D3cold
[    4.225558] pci 0000:10:02.2: [8086:0e06] type 01 class 0x060400
[    4.225653] pci 0000:10:02.2: PME# supported from D0 D3hot D3cold
[    4.225722] pci 0000:10:03.0: [8086:0e08] type 01 class 0x060400
[    4.225819] pci 0000:10:03.0: PME# supported from D0 D3hot D3cold
[    4.225886] pci 0000:10:04.0: [8086:0e20] type 00 class 0x088000
[    4.225904] pci 0000:10:04.0: reg 0x10: [mem 0xfc47ff1c000-0xfc47ff1ffff 64bit]
[    4.226031] pci 0000:10:04.1: [8086:0e21] type 00 class 0x088000
[    4.226048] pci 0000:10:04.1: reg 0x10: [mem 0xfc47ff18000-0xfc47ff1bfff 64bit]
[    4.226171] pci 0000:10:04.2: [8086:0e22] type 00 class 0x088000
[    4.226189] pci 0000:10:04.2: reg 0x10: [mem 0xfc47ff14000-0xfc47ff17fff 64bit]
[    4.226316] pci 0000:10:04.3: [8086:0e23] type 00 class 0x088000
[    4.226334] pci 0000:10:04.3: reg 0x10: [mem 0xfc47ff10000-0xfc47ff13fff 64bit]
[    4.226464] pci 0000:10:04.4: [8086:0e24] type 00 class 0x088000
[    4.226481] pci 0000:10:04.4: reg 0x10: [mem 0xfc47ff0c000-0xfc47ff0ffff 64bit]
[    4.226605] pci 0000:10:04.5: [8086:0e25] type 00 class 0x088000
[    4.226623] pci 0000:10:04.5: reg 0x10: [mem 0xfc47ff08000-0xfc47ff0bfff 64bit]
[    4.226749] pci 0000:10:04.6: [8086:0e26] type 00 class 0x088000
[    4.226767] pci 0000:10:04.6: reg 0x10: [mem 0xfc47ff04000-0xfc47ff07fff 64bit]
[    4.226891] pci 0000:10:04.7: [8086:0e27] type 00 class 0x088000
[    4.226908] pci 0000:10:04.7: reg 0x10: [mem 0xfc47ff00000-0xfc47ff03fff 64bit]
[    4.227137] pci 0000:10:02.0: PCI bridge to [bus 11]
[    4.232777] pci 0000:10:02.2: PCI bridge to [bus 12]
[    4.238455] pci 0000:10:03.0: PCI bridge to [bus 13]
[    4.244063] pci_bus 0000:10: on NUMA node 1
[    4.244065] acpi PNP0A08:01: Disabling ASPM (FADT indicates it is unsupported)
[    4.253864] ACPI: PCI Root Bridge [IO02] (domain 0000 [bus 20-2f])
[    4.260807] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    4.270030] acpi PNP0A08:02: PCIe AER handled by firmware
[    4.276159] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    4.284822] PCI host bridge to bus 0000:20
[    4.289420] pci_bus 0000:20: root bus resource [bus 20-2f]
[    4.295581] pci_bus 0000:20: root bus resource [io  0x8000-0xbfff window]
[    4.303204] pci_bus 0000:20: root bus resource [mem 0x98000000-0x9befffff window]
[    4.311609] pci_bus 0000:20: root bus resource [mem 0xf0800000000-0xf087fffffff window]
[    4.320610] pci 0000:20:00.0: [8086:0e00] type 00 class 0x060000
[    4.320692] pci 0000:20:00.0: PME# supported from D0 D3hot D3cold
[    4.320768] pci 0000:20:02.0: [8086:0e04] type 01 class 0x060400
[    4.320872] pci 0000:20:02.0: PME# supported from D0 D3hot D3cold
[    4.320949] pci 0000:20:02.2: [8086:0e06] type 01 class 0x060400
[    4.321053] pci 0000:20:02.2: PME# supported from D0 D3hot D3cold
[    4.321136] pci 0000:20:03.0: [8086:0e08] type 01 class 0x060400
[    4.321241] pci 0000:20:03.0: PME# supported from D0 D3hot D3cold
[    4.321315] pci 0000:20:04.0: [8086:0e20] type 00 class 0x088000
[    4.321334] pci 0000:20:04.0: reg 0x10: [mem 0xf087ff1c000-0xf087ff1ffff 64bit]
[    4.321475] pci 0000:20:04.1: [8086:0e21] type 00 class 0x088000
[    4.321494] pci 0000:20:04.1: reg 0x10: [mem 0xf087ff18000-0xf087ff1bfff 64bit]
[    4.321634] pci 0000:20:04.2: [8086:0e22] type 00 class 0x088000
[    4.321653] pci 0000:20:04.2: reg 0x10: [mem 0xf087ff14000-0xf087ff17fff 64bit]
[    4.321795] pci 0000:20:04.3: [8086:0e23] type 00 class 0x088000
[    4.321815] pci 0000:20:04.3: reg 0x10: [mem 0xf087ff10000-0xf087ff13fff 64bit]
[    4.321952] pci 0000:20:04.4: [8086:0e24] type 00 class 0x088000
[    4.321971] pci 0000:20:04.4: reg 0x10: [mem 0xf087ff0c000-0xf087ff0ffff 64bit]
[    4.322106] pci 0000:20:04.5: [8086:0e25] type 00 class 0x088000
[    4.322125] pci 0000:20:04.5: reg 0x10: [mem 0xf087ff08000-0xf087ff0bfff 64bit]
[    4.322260] pci 0000:20:04.6: [8086:0e26] type 00 class 0x088000
[    4.322280] pci 0000:20:04.6: reg 0x10: [mem 0xf087ff04000-0xf087ff07fff 64bit]
[    4.322415] pci 0000:20:04.7: [8086:0e27] type 00 class 0x088000
[    4.322434] pci 0000:20:04.7: reg 0x10: [mem 0xf087ff00000-0xf087ff03fff 64bit]
[    4.322579] pci 0000:20:11.0: [8086:1d3e] type 01 class 0x060400
[    4.322699] pci 0000:20:11.0: PME# supported from D0 D3hot D3cold
[    4.322786] pci 0000:20:1c.0: [8086:1d1e] type 01 class 0x060400
[    4.322890] pci 0000:20:1c.0: PME# supported from D0 D3hot D3cold
[    4.322917] pci 0000:20:1c.0: Enabling MPC IRBNCE
[    4.328201] pci 0000:20:1c.0: Intel PCH root port ACS workaround enabled
[    4.335791] pci 0000:20:1d.0: [8086:1d26] type 00 class 0x0c0320
[    4.335816] pci 0000:20:1d.0: reg 0x10: [mem 0x98300000-0x983003ff]
[    4.335928] pci 0000:20:1d.0: PME# supported from D0 D3hot D3cold
[    4.335991] pci 0000:20:1f.0: [8086:1d41] type 00 class 0x060100
[    4.336274] pci 0000:21:00.0: [8086:10f8] type 00 class 0x020000
[    4.336286] pci 0000:21:00.0: reg 0x10: [mem 0x98100000-0x981fffff]
[    4.336301] pci 0000:21:00.0: reg 0x18: [io  0x0000-0x001f]
[    4.336308] pci 0000:21:00.0: reg 0x1c: [mem 0x98204000-0x98207fff]
[    4.336329] pci 0000:21:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.336380] pci 0000:21:00.0: PME# supported from D0 D3hot D3cold
[    4.336416] pci 0000:21:00.0: reg 0x184: [mem 0xf087fe00000-0xf087fe03fff 64bit pref]
[    4.336430] pci 0000:21:00.0: reg 0x190: [mem 0xf087fd00000-0xf087fd03fff 64bit pref]
[    4.336500] pci 0000:21:00.1: [8086:10f8] type 00 class 0x020000
[    4.336512] pci 0000:21:00.1: reg 0x10: [mem 0x98000000-0x980fffff]
[    4.336526] pci 0000:21:00.1: reg 0x18: [io  0x0000-0x001f]
[    4.336534] pci 0000:21:00.1: reg 0x1c: [mem 0x98200000-0x98203fff]
[    4.336553] pci 0000:21:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.336605] pci 0000:21:00.1: PME# supported from D0 D3hot D3cold
[    4.336635] pci 0000:21:00.1: reg 0x184: [mem 0xf087fc00000-0xf087fc03fff 64bit pref]
[    4.336650] pci 0000:21:00.1: reg 0x190: [mem 0xf087fb00000-0xf087fb03fff 64bit pref]
[    4.337755] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[    4.343628] pci 0000:20:02.0:   bridge window [mem 0x98000000-0x982fffff]
[    4.343634] pci 0000:20:02.0:   bridge window [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[    4.343741] pci 0000:20:02.2: PCI bridge to [bus 23]
[    4.349426] pci 0000:20:03.0: PCI bridge to [bus 24]
[    4.355083] pci 0000:20:11.0: PCI bridge to [bus 25]
[    4.360761] pci 0000:26:00.0: [103c:3306] type 00 class 0x088000
[    4.360788] pci 0000:26:00.0: reg 0x10: [io  0x0000-0x00ff]
[    4.360806] pci 0000:26:00.0: reg 0x14: [mem 0x9bd88000-0x9bd881ff]
[    4.360824] pci 0000:26:00.0: reg 0x18: [io  0x0000-0x00ff]
[    4.361055] pci 0000:26:00.2: [103c:3307] type 00 class 0x088000
[    4.361083] pci 0000:26:00.2: reg 0x10: [io  0x0000-0x00ff]
[    4.361099] pci 0000:26:00.2: reg 0x14: [mem 0x9bd88400-0x9bd884ff]
[    4.361116] pci 0000:26:00.2: reg 0x18: [mem 0x9bb00000-0x9bbfffff]
[    4.361134] pci 0000:26:00.2: reg 0x1c: [mem 0x9bd00000-0x9bd7ffff]
[    4.361152] pci 0000:26:00.2: reg 0x20: [mem 0x9bd80000-0x9bd87fff]
[    4.361168] pci 0000:26:00.2: reg 0x24: [mem 0x9bc00000-0x9bcfffff]
[    4.361185] pci 0000:26:00.2: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    4.361274] pci 0000:26:00.2: PME# supported from D0 D3hot D3cold
[    4.362695] pci 0000:20:1c.0: PCI bridge to [bus 26]
[    4.368292] pci 0000:20:1c.0:   bridge window [mem 0x9bb00000-0x9befffff]
[    4.368299] pci 0000:20:1c.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    4.368350] pci_bus 0000:20: on NUMA node 2
[    4.368351] acpi PNP0A08:02: Disabling ASPM (FADT indicates it is unsupported)
[    4.376526] ACPI: PCI Root Bridge [IO03] (domain 0000 [bus 30-3f])
[    4.383471] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    4.392697] acpi PNP0A08:03: PCIe AER handled by firmware
[    4.398825] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    4.407473] PCI host bridge to bus 0000:30
[    4.412072] pci_bus 0000:30: root bus resource [bus 30-3f]
[    4.418232] pci_bus 0000:30: root bus resource [io  0xc000-0xffff window]
[    4.425856] pci_bus 0000:30: root bus resource [mem 0x9c000000-0x9fff7fff window]
[    4.434259] pci_bus 0000:30: root bus resource [mem 0xf0c00000000-0xf0c7fffffff window]
[    4.443263] pci 0000:30:02.0: [8086:0e04] type 01 class 0x060400
[    4.443369] pci 0000:30:02.0: PME# supported from D0 D3hot D3cold
[    4.443445] pci 0000:30:02.2: [8086:0e06] type 01 class 0x060400
[    4.443547] pci 0000:30:02.2: PME# supported from D0 D3hot D3cold
[    4.443621] pci 0000:30:03.0: [8086:0e08] type 01 class 0x060400
[    4.443726] pci 0000:30:03.0: PME# supported from D0 D3hot D3cold
[    4.443795] pci 0000:30:04.0: [8086:0e20] type 00 class 0x088000
[    4.443814] pci 0000:30:04.0: reg 0x10: [mem 0xf0c7ff1c000-0xf0c7ff1ffff 64bit]
[    4.443949] pci 0000:30:04.1: [8086:0e21] type 00 class 0x088000
[    4.443967] pci 0000:30:04.1: reg 0x10: [mem 0xf0c7ff18000-0xf0c7ff1bfff 64bit]
[    4.444100] pci 0000:30:04.2: [8086:0e22] type 00 class 0x088000
[    4.444119] pci 0000:30:04.2: reg 0x10: [mem 0xf0c7ff14000-0xf0c7ff17fff 64bit]
[    4.444254] pci 0000:30:04.3: [8086:0e23] type 00 class 0x088000
[    4.444273] pci 0000:30:04.3: reg 0x10: [mem 0xf0c7ff10000-0xf0c7ff13fff 64bit]
[    4.444407] pci 0000:30:04.4: [8086:0e24] type 00 class 0x088000
[    4.444427] pci 0000:30:04.4: reg 0x10: [mem 0xf0c7ff0c000-0xf0c7ff0ffff 64bit]
[    4.444557] pci 0000:30:04.5: [8086:0e25] type 00 class 0x088000
[    4.444576] pci 0000:30:04.5: reg 0x10: [mem 0xf0c7ff08000-0xf0c7ff0bfff 64bit]
[    4.444708] pci 0000:30:04.6: [8086:0e26] type 00 class 0x088000
[    4.444726] pci 0000:30:04.6: reg 0x10: [mem 0xf0c7ff04000-0xf0c7ff07fff 64bit]
[    4.444856] pci 0000:30:04.7: [8086:0e27] type 00 class 0x088000
[    4.444875] pci 0000:30:04.7: reg 0x10: [mem 0xf0c7ff00000-0xf0c7ff03fff 64bit]
[    4.445117] pci 0000:30:02.0: PCI bridge to [bus 31]
[    4.450763] pci 0000:30:02.2: PCI bridge to [bus 32]
[    4.456450] pci 0000:30:03.0: PCI bridge to [bus 33]
[    4.462059] pci_bus 0000:30: on NUMA node 3
[    4.462060] acpi PNP0A08:03: Disabling ASPM (FADT indicates it is unsupported)
[    4.470231] ACPI: Enabled 1 GPEs in block 80 to FF
[    4.475943] vgaarb: setting as boot device: PCI:0000:06:00.1
[    4.482310] vgaarb: device added: PCI:0000:06:00.1,decodes=io+mem,owns=io+mem,locks=none
[    4.491443] vgaarb: loaded
[    4.494481] vgaarb: bridge control possible 0000:06:00.1
[    4.500811] SCSI subsystem initialized
[    4.505074] ACPI: bus type USB registered
[    4.509613] usbcore: registered new interface driver usbfs
[    4.515782] usbcore: registered new interface driver hub
[    4.522745] usbcore: registered new device driver usb
[    4.530014] PCI: Using ACPI for IRQ routing
[    4.535053] PCI: Discovered peer bus 0f
[    4.539361] PCI: root bus 0f: using default resources
[    4.539364] PCI: Probing PCI hardware (bus 0f)
[    4.539424] PCI host bridge to bus 0000:0f
[    4.544073] pci_bus 0000:0f: root bus resource [io  0x0000-0xffff]
[    4.551027] pci_bus 0000:0f: root bus resource [mem 0x00000000-0x3fffffffffff]
[    4.559136] pci_bus 0000:0f: No busn resource found for root bus, will use [bus 0f-ff]
[    4.568031] pci_bus 0000:0f: busn_res: can not insert [bus 0f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-0f])
[    4.568053] pci 0000:0f:08.0: [8086:0e80] type 00 class 0x088000
[    4.568204] pci 0000:0f:08.2: [8086:0e32] type 00 class 0x110100
[    4.568278] pci 0000:0f:09.0: [8086:0e90] type 00 class 0x088000
[    4.568346] pci 0000:0f:09.2: [8086:0e33] type 00 class 0x110100
[    4.568416] pci 0000:0f:0a.0: [8086:0ec0] type 00 class 0x088000
[    4.568479] pci 0000:0f:0a.1: [8086:0ec1] type 00 class 0x088000
[    4.568548] pci 0000:0f:0a.2: [8086:0ec2] type 00 class 0x088000
[    4.568612] pci 0000:0f:0a.3: [8086:0ec3] type 00 class 0x088000
[    4.568679] pci 0000:0f:0b.0: [8086:0e1e] type 00 class 0x088000
[    4.568745] pci 0000:0f:0b.3: [8086:0e1f] type 00 class 0x088000
[    4.568810] pci 0000:0f:0c.0: [8086:0ee0] type 00 class 0x088000
[    4.568885] pci 0000:0f:0c.1: [8086:0ee2] type 00 class 0x088000
[    4.568947] pci 0000:0f:0c.2: [8086:0ee4] type 00 class 0x088000
[    4.569012] pci 0000:0f:0c.3: [8086:0ee6] type 00 class 0x088000
[    4.569084] pci 0000:0f:0c.4: [8086:0ee8] type 00 class 0x088000
[    4.569148] pci 0000:0f:0c.5: [8086:0eea] type 00 class 0x088000
[    4.569211] pci 0000:0f:0c.6: [8086:0eec] type 00 class 0x088000
[    4.569274] pci 0000:0f:0c.7: [8086:0eee] type 00 class 0x088000
[    4.569371] pci 0000:0f:0d.0: [8086:0ee1] type 00 class 0x088000
[    4.569433] pci 0000:0f:0d.1: [8086:0ee3] type 00 class 0x088000
[    4.569497] pci 0000:0f:0d.2: [8086:0ee5] type 00 class 0x088000
[    4.569562] pci 0000:0f:0d.3: [8086:0ee7] type 00 class 0x088000
[    4.569626] pci 0000:0f:0d.4: [8086:0ee9] type 00 class 0x088000
[    4.569689] pci 0000:0f:0d.5: [8086:0eeb] type 00 class 0x088000
[    4.569752] pci 0000:0f:0d.6: [8086:0eed] type 00 class 0x088000
[    4.569816] pci 0000:0f:0e.0: [8086:0ea0] type 00 class 0x088000
[    4.569883] pci 0000:0f:0e.1: [8086:0e30] type 00 class 0x110100
[    4.569961] pci 0000:0f:0f.0: [8086:0ea8] type 00 class 0x088000
[    4.570055] pci 0000:0f:0f.1: [8086:0e71] type 00 class 0x088000
[    4.570140] pci 0000:0f:0f.2: [8086:0eaa] type 00 class 0x088000
[    4.570233] pci 0000:0f:0f.3: [8086:0eab] type 00 class 0x088000
[    4.570320] pci 0000:0f:0f.4: [8086:0eac] type 00 class 0x088000
[    4.570406] pci 0000:0f:0f.5: [8086:0ead] type 00 class 0x088000
[    4.570491] pci 0000:0f:10.0: [8086:0eb0] type 00 class 0x088000
[    4.570578] pci 0000:0f:10.1: [8086:0eb1] type 00 class 0x088000
[    4.570665] pci 0000:0f:10.2: [8086:0eb2] type 00 class 0x088000
[    4.570749] pci 0000:0f:10.3: [8086:0eb3] type 00 class 0x088000
[    4.570836] pci 0000:0f:10.4: [8086:0eb4] type 00 class 0x088000
[    4.570926] pci 0000:0f:10.5: [8086:0eb5] type 00 class 0x088000
[    4.571014] pci 0000:0f:10.6: [8086:0eb6] type 00 class 0x088000
[    4.571105] pci 0000:0f:10.7: [8086:0eb7] type 00 class 0x088000
[    4.571193] pci 0000:0f:11.0: [8086:0ef8] type 00 class 0x088000
[    4.571279] pci 0000:0f:11.1: [8086:0ef9] type 00 class 0x088000
[    4.571367] pci 0000:0f:11.2: [8086:0efa] type 00 class 0x088000
[    4.571455] pci 0000:0f:11.4: [8086:0efc] type 00 class 0x088000
[    4.571543] pci 0000:0f:11.5: [8086:0efd] type 00 class 0x088000
[    4.571634] pci 0000:0f:13.0: [8086:0e1d] type 00 class 0x088000
[    4.571699] pci 0000:0f:13.1: [8086:0e34] type 00 class 0x110100
[    4.571766] pci 0000:0f:13.4: [8086:0e81] type 00 class 0x088000
[    4.571835] pci 0000:0f:13.5: [8086:0e36] type 00 class 0x110100
[    4.571900] pci 0000:0f:13.6: [8086:0e37] type 00 class 0x110100
[    4.571969] pci 0000:0f:16.0: [8086:0ec8] type 00 class 0x088000
[    4.572035] pci 0000:0f:16.1: [8086:0ec9] type 00 class 0x088000
[    4.572103] pci 0000:0f:16.2: [8086:0eca] type 00 class 0x088000
[    4.572176] pci 0000:0f:18.0: [8086:0e40] type 00 class 0x088000
[    4.572247] pci 0000:0f:18.2: [8086:0e3a] type 00 class 0x110100
[    4.572332] pci 0000:0f:1c.0: [8086:0e60] type 00 class 0x088000
[    4.572434] pci 0000:0f:1c.1: [8086:0e38] type 00 class 0x110100
[    4.572516] pci 0000:0f:1d.0: [8086:0e68] type 00 class 0x088000
[    4.572611] pci 0000:0f:1d.1: [8086:0e79] type 00 class 0x088000
[    4.572703] pci 0000:0f:1d.2: [8086:0e6a] type 00 class 0x088000
[    4.572792] pci 0000:0f:1d.3: [8086:0e6b] type 00 class 0x088000
[    4.572883] pci 0000:0f:1d.4: [8086:0e6c] type 00 class 0x088000
[    4.572972] pci 0000:0f:1d.5: [8086:0e6d] type 00 class 0x088000
[    4.573064] pci 0000:0f:1e.0: [8086:0ef0] type 00 class 0x088000
[    4.573155] pci 0000:0f:1e.1: [8086:0ef1] type 00 class 0x088000
[    4.573247] pci 0000:0f:1e.2: [8086:0ef2] type 00 class 0x088000
[    4.573337] pci 0000:0f:1e.3: [8086:0ef3] type 00 class 0x088000
[    4.573428] pci 0000:0f:1e.4: [8086:0ef4] type 00 class 0x088000
[    4.573526] pci 0000:0f:1e.5: [8086:0ef5] type 00 class 0x088000
[    4.573617] pci 0000:0f:1e.6: [8086:0ef6] type 00 class 0x088000
[    4.573707] pci 0000:0f:1e.7: [8086:0ef7] type 00 class 0x088000
[    4.573797] pci 0000:0f:1f.0: [8086:0ed8] type 00 class 0x088000
[    4.573888] pci 0000:0f:1f.1: [8086:0ed9] type 00 class 0x088000
[    4.573979] pci 0000:0f:1f.4: [8086:0edc] type 00 class 0x088000
[    4.574067] pci 0000:0f:1f.5: [8086:0edd] type 00 class 0x088000
[    4.574157] pci 0000:0f:1f.6: [8086:0ede] type 00 class 0x088000
[    4.574242] pci 0000:0f:1f.7: [8086:0edf] type 00 class 0x088000
[    4.574332] pci_bus 0000:0f: busn_res: [bus 0f-ff] end is updated to 0f
[    4.574334] pci_bus 0000:0f: busn_res: can not insert [bus 0f] under domain [bus 00-ff] (conflicts with (null) [bus 00-0f])
[    4.574564] PCI: Discovered peer bus 1f
[    4.578866] PCI: root bus 1f: using default resources
[    4.578867] PCI: Probing PCI hardware (bus 1f)
[    4.578891] PCI host bridge to bus 0000:1f
[    4.583490] pci_bus 0000:1f: root bus resource [io  0x0000-0xffff]
[    4.590431] pci_bus 0000:1f: root bus resource [mem 0x00000000-0x3fffffffffff]
[    4.598543] pci_bus 0000:1f: No busn resource found for root bus, will use [bus 1f-ff]
[    4.607436] pci_bus 0000:1f: busn_res: can not insert [bus 1f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 10-1f])
[    4.607447] pci 0000:1f:08.0: [8086:0e80] type 00 class 0x088000
[    4.607522] pci 0000:1f:08.2: [8086:0e32] type 00 class 0x110100
[    4.607590] pci 0000:1f:09.0: [8086:0e90] type 00 class 0x088000
[    4.607663] pci 0000:1f:09.2: [8086:0e33] type 00 class 0x110100
[    4.607735] pci 0000:1f:0a.0: [8086:0ec0] type 00 class 0x088000
[    4.607798] pci 0000:1f:0a.1: [8086:0ec1] type 00 class 0x088000
[    4.607862] pci 0000:1f:0a.2: [8086:0ec2] type 00 class 0x088000
[    4.607928] pci 0000:1f:0a.3: [8086:0ec3] type 00 class 0x088000
[    4.607997] pci 0000:1f:0b.0: [8086:0e1e] type 00 class 0x088000
[    4.608062] pci 0000:1f:0b.3: [8086:0e1f] type 00 class 0x088000
[    4.608122] pci 0000:1f:0c.0: [8086:0ee0] type 00 class 0x088000
[    4.608185] pci 0000:1f:0c.1: [8086:0ee2] type 00 class 0x088000
[    4.608248] pci 0000:1f:0c.2: [8086:0ee4] type 00 class 0x088000
[    4.608317] pci 0000:1f:0c.3: [8086:0ee6] type 00 class 0x088000
[    4.608385] pci 0000:1f:0c.4: [8086:0ee8] type 00 class 0x088000
[    4.608454] pci 0000:1f:0c.5: [8086:0eea] type 00 class 0x088000
[    4.608519] pci 0000:1f:0c.6: [8086:0eec] type 00 class 0x088000
[    4.608582] pci 0000:1f:0c.7: [8086:0eee] type 00 class 0x088000
[    4.608643] pci 0000:1f:0d.0: [8086:0ee1] type 00 class 0x088000
[    4.608709] pci 0000:1f:0d.1: [8086:0ee3] type 00 class 0x088000
[    4.608771] pci 0000:1f:0d.2: [8086:0ee5] type 00 class 0x088000
[    4.608835] pci 0000:1f:0d.3: [8086:0ee7] type 00 class 0x088000
[    4.608898] pci 0000:1f:0d.4: [8086:0ee9] type 00 class 0x088000
[    4.608965] pci 0000:1f:0d.5: [8086:0eeb] type 00 class 0x088000
[    4.609030] pci 0000:1f:0d.6: [8086:0eed] type 00 class 0x088000
[    4.609094] pci 0000:1f:0e.0: [8086:0ea0] type 00 class 0x088000
[    4.609164] pci 0000:1f:0e.1: [8086:0e30] type 00 class 0x110100
[    4.609239] pci 0000:1f:0f.0: [8086:0ea8] type 00 class 0x088000
[    4.609330] pci 0000:1f:0f.1: [8086:0e71] type 00 class 0x088000
[    4.609418] pci 0000:1f:0f.2: [8086:0eaa] type 00 class 0x088000
[    4.609511] pci 0000:1f:0f.3: [8086:0eab] type 00 class 0x088000
[    4.609598] pci 0000:1f:0f.4: [8086:0eac] type 00 class 0x088000
[    4.609688] pci 0000:1f:0f.5: [8086:0ead] type 00 class 0x088000
[    4.609778] pci 0000:1f:10.0: [8086:0eb0] type 00 class 0x088000
[    4.609868] pci 0000:1f:10.1: [8086:0eb1] type 00 class 0x088000
[    4.609957] pci 0000:1f:10.2: [8086:0eb2] type 00 class 0x088000
[    4.610044] pci 0000:1f:10.3: [8086:0eb3] type 00 class 0x088000
[    4.610133] pci 0000:1f:10.4: [8086:0eb4] type 00 class 0x088000
[    4.610220] pci 0000:1f:10.5: [8086:0eb5] type 00 class 0x088000
[    4.610307] pci 0000:1f:10.6: [8086:0eb6] type 00 class 0x088000
[    4.610397] pci 0000:1f:10.7: [8086:0eb7] type 00 class 0x088000
[    4.610487] pci 0000:1f:11.0: [8086:0ef8] type 00 class 0x088000
[    4.610575] pci 0000:1f:11.1: [8086:0ef9] type 00 class 0x088000
[    4.610661] pci 0000:1f:11.2: [8086:0efa] type 00 class 0x088000
[    4.610749] pci 0000:1f:11.4: [8086:0efc] type 00 class 0x088000
[    4.610836] pci 0000:1f:11.5: [8086:0efd] type 00 class 0x088000
[    4.610922] pci 0000:1f:13.0: [8086:0e1d] type 00 class 0x088000
[    4.610988] pci 0000:1f:13.1: [8086:0e34] type 00 class 0x110100
[    4.611058] pci 0000:1f:13.4: [8086:0e81] type 00 class 0x088000
[    4.611123] pci 0000:1f:13.5: [8086:0e36] type 00 class 0x110100
[    4.611192] pci 0000:1f:13.6: [8086:0e37] type 00 class 0x110100
[    4.611263] pci 0000:1f:16.0: [8086:0ec8] type 00 class 0x088000
[    4.611331] pci 0000:1f:16.1: [8086:0ec9] type 00 class 0x088000
[    4.611398] pci 0000:1f:16.2: [8086:0eca] type 00 class 0x088000
[    4.611479] pci 0000:1f:18.0: [8086:0e40] type 00 class 0x088000
[    4.611593] pci 0000:1f:18.2: [8086:0e3a] type 00 class 0x110100
[    4.611687] pci 0000:1f:1c.0: [8086:0e60] type 00 class 0x088000
[    4.611761] pci 0000:1f:1c.1: [8086:0e38] type 00 class 0x110100
[    4.611843] pci 0000:1f:1d.0: [8086:0e68] type 00 class 0x088000
[    4.611934] pci 0000:1f:1d.1: [8086:0e79] type 00 class 0x088000
[    4.612023] pci 0000:1f:1d.2: [8086:0e6a] type 00 class 0x088000
[    4.612110] pci 0000:1f:1d.3: [8086:0e6b] type 00 class 0x088000
[    4.612198] pci 0000:1f:1d.4: [8086:0e6c] type 00 class 0x088000
[    4.612287] pci 0000:1f:1d.5: [8086:0e6d] type 00 class 0x088000
[    4.612381] pci 0000:1f:1e.0: [8086:0ef0] type 00 class 0x088000
[    4.612476] pci 0000:1f:1e.1: [8086:0ef1] type 00 class 0x088000
[    4.612568] pci 0000:1f:1e.2: [8086:0ef2] type 00 class 0x088000
[    4.612663] pci 0000:1f:1e.3: [8086:0ef3] type 00 class 0x088000
[    4.612753] pci 0000:1f:1e.4: [8086:0ef4] type 00 class 0x088000
[    4.612843] pci 0000:1f:1e.5: [8086:0ef5] type 00 class 0x088000
[    4.612934] pci 0000:1f:1e.6: [8086:0ef6] type 00 class 0x088000
[    4.613024] pci 0000:1f:1e.7: [8086:0ef7] type 00 class 0x088000
[    4.613115] pci 0000:1f:1f.0: [8086:0ed8] type 00 class 0x088000
[    4.613204] pci 0000:1f:1f.1: [8086:0ed9] type 00 class 0x088000
[    4.613296] pci 0000:1f:1f.4: [8086:0edc] type 00 class 0x088000
[    4.613383] pci 0000:1f:1f.5: [8086:0edd] type 00 class 0x088000
[    4.613474] pci 0000:1f:1f.6: [8086:0ede] type 00 class 0x088000
[    4.613562] pci 0000:1f:1f.7: [8086:0edf] type 00 class 0x088000
[    4.613648] pci_bus 0000:1f: busn_res: [bus 1f-ff] end is updated to 1f
[    4.613650] pci_bus 0000:1f: busn_res: can not insert [bus 1f] under domain [bus 00-ff] (conflicts with (null) [bus 10-1f])
[    4.613945] PCI: Discovered peer bus 2f
[    4.618249] PCI: root bus 2f: using default resources
[    4.618250] PCI: Probing PCI hardware (bus 2f)
[    4.618271] PCI host bridge to bus 0000:2f
[    4.622871] pci_bus 0000:2f: root bus resource [io  0x0000-0xffff]
[    4.629813] pci_bus 0000:2f: root bus resource [mem 0x00000000-0x3fffffffffff]
[    4.637923] pci_bus 0000:2f: No busn resource found for root bus, will use [bus 2f-ff]
[    4.646817] pci_bus 0000:2f: busn_res: can not insert [bus 2f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 20-2f])
[    4.646828] pci 0000:2f:08.0: [8086:0e80] type 00 class 0x088000
[    4.646897] pci 0000:2f:08.2: [8086:0e32] type 00 class 0x110100
[    4.646965] pci 0000:2f:09.0: [8086:0e90] type 00 class 0x088000
[    4.647029] pci 0000:2f:09.2: [8086:0e33] type 00 class 0x110100
[    4.647104] pci 0000:2f:0a.0: [8086:0ec0] type 00 class 0x088000
[    4.647166] pci 0000:2f:0a.1: [8086:0ec1] type 00 class 0x088000
[    4.647225] pci 0000:2f:0a.2: [8086:0ec2] type 00 class 0x088000
[    4.647292] pci 0000:2f:0a.3: [8086:0ec3] type 00 class 0x088000
[    4.647353] pci 0000:2f:0b.0: [8086:0e1e] type 00 class 0x088000
[    4.647412] pci 0000:2f:0b.3: [8086:0e1f] type 00 class 0x088000
[    4.647478] pci 0000:2f:0c.0: [8086:0ee0] type 00 class 0x088000
[    4.647538] pci 0000:2f:0c.1: [8086:0ee2] type 00 class 0x088000
[    4.647598] pci 0000:2f:0c.2: [8086:0ee4] type 00 class 0x088000
[    4.647657] pci 0000:2f:0c.3: [8086:0ee6] type 00 class 0x088000
[    4.647719] pci 0000:2f:0c.4: [8086:0ee8] type 00 class 0x088000
[    4.647776] pci 0000:2f:0c.5: [8086:0eea] type 00 class 0x088000
[    4.647839] pci 0000:2f:0c.6: [8086:0eec] type 00 class 0x088000
[    4.647899] pci 0000:2f:0c.7: [8086:0eee] type 00 class 0x088000
[    4.647961] pci 0000:2f:0d.0: [8086:0ee1] type 00 class 0x088000
[    4.648023] pci 0000:2f:0d.1: [8086:0ee3] type 00 class 0x088000
[    4.648083] pci 0000:2f:0d.2: [8086:0ee5] type 00 class 0x088000
[    4.648145] pci 0000:2f:0d.3: [8086:0ee7] type 00 class 0x088000
[    4.648206] pci 0000:2f:0d.4: [8086:0ee9] type 00 class 0x088000
[    4.648264] pci 0000:2f:0d.5: [8086:0eeb] type 00 class 0x088000
[    4.648323] pci 0000:2f:0d.6: [8086:0eed] type 00 class 0x088000
[    4.648381] pci 0000:2f:0e.0: [8086:0ea0] type 00 class 0x088000
[    4.648447] pci 0000:2f:0e.1: [8086:0e30] type 00 class 0x110100
[    4.648519] pci 0000:2f:0f.0: [8086:0ea8] type 00 class 0x088000
[    4.648597] pci 0000:2f:0f.1: [8086:0e71] type 00 class 0x088000
[    4.648676] pci 0000:2f:0f.2: [8086:0eaa] type 00 class 0x088000
[    4.648753] pci 0000:2f:0f.3: [8086:0eab] type 00 class 0x088000
[    4.648840] pci 0000:2f:0f.4: [8086:0eac] type 00 class 0x088000
[    4.648924] pci 0000:2f:0f.5: [8086:0ead] type 00 class 0x088000
[    4.649004] pci 0000:2f:10.0: [8086:0eb0] type 00 class 0x088000
[    4.649089] pci 0000:2f:10.1: [8086:0eb1] type 00 class 0x088000
[    4.649174] pci 0000:2f:10.2: [8086:0eb2] type 00 class 0x088000
[    4.649255] pci 0000:2f:10.3: [8086:0eb3] type 00 class 0x088000
[    4.649337] pci 0000:2f:10.4: [8086:0eb4] type 00 class 0x088000
[    4.649420] pci 0000:2f:10.5: [8086:0eb5] type 00 class 0x088000
[    4.649503] pci 0000:2f:10.6: [8086:0eb6] type 00 class 0x088000
[    4.649583] pci 0000:2f:10.7: [8086:0eb7] type 00 class 0x088000
[    4.649664] pci 0000:2f:11.0: [8086:0ef8] type 00 class 0x088000
[    4.649753] pci 0000:2f:11.1: [8086:0ef9] type 00 class 0x088000
[    4.649838] pci 0000:2f:11.2: [8086:0efa] type 00 class 0x088000
[    4.649921] pci 0000:2f:11.4: [8086:0efc] type 00 class 0x088000
[    4.650001] pci 0000:2f:11.5: [8086:0efd] type 00 class 0x088000
[    4.650088] pci 0000:2f:13.0: [8086:0e1d] type 00 class 0x088000
[    4.650150] pci 0000:2f:13.1: [8086:0e34] type 00 class 0x110100
[    4.650213] pci 0000:2f:13.4: [8086:0e81] type 00 class 0x088000
[    4.650275] pci 0000:2f:13.5: [8086:0e36] type 00 class 0x110100
[    4.650419] pci 0000:2f:13.6: [8086:0e37] type 00 class 0x110100
[    4.650486] pci 0000:2f:16.0: [8086:0ec8] type 00 class 0x088000
[    4.650549] pci 0000:2f:16.1: [8086:0ec9] type 00 class 0x088000
[    4.650612] pci 0000:2f:16.2: [8086:0eca] type 00 class 0x088000
[    4.650684] pci 0000:2f:18.0: [8086:0e40] type 00 class 0x088000
[    4.650751] pci 0000:2f:18.2: [8086:0e3a] type 00 class 0x110100
[    4.650827] pci 0000:2f:1c.0: [8086:0e60] type 00 class 0x088000
[    4.650902] pci 0000:2f:1c.1: [8086:0e38] type 00 class 0x110100
[    4.650982] pci 0000:2f:1d.0: [8086:0e68] type 00 class 0x088000
[    4.651067] pci 0000:2f:1d.1: [8086:0e79] type 00 class 0x088000
[    4.651152] pci 0000:2f:1d.2: [8086:0e6a] type 00 class 0x088000
[    4.651235] pci 0000:2f:1d.3: [8086:0e6b] type 00 class 0x088000
[    4.651320] pci 0000:2f:1d.4: [8086:0e6c] type 00 class 0x088000
[    4.651401] pci 0000:2f:1d.5: [8086:0e6d] type 00 class 0x088000
[    4.651486] pci 0000:2f:1e.0: [8086:0ef0] type 00 class 0x088000
[    4.651570] pci 0000:2f:1e.1: [8086:0ef1] type 00 class 0x088000
[    4.651654] pci 0000:2f:1e.2: [8086:0ef2] type 00 class 0x088000
[    4.651739] pci 0000:2f:1e.3: [8086:0ef3] type 00 class 0x088000
[    4.651824] pci 0000:2f:1e.4: [8086:0ef4] type 00 class 0x088000
[    4.651915] pci 0000:2f:1e.5: [8086:0ef5] type 00 class 0x088000
[    4.651999] pci 0000:2f:1e.6: [8086:0ef6] type 00 class 0x088000
[    4.652083] pci 0000:2f:1e.7: [8086:0ef7] type 00 class 0x088000
[    4.652167] pci 0000:2f:1f.0: [8086:0ed8] type 00 class 0x088000
[    4.652251] pci 0000:2f:1f.1: [8086:0ed9] type 00 class 0x088000
[    4.652365] pci 0000:2f:1f.4: [8086:0edc] type 00 class 0x088000
[    4.652448] pci 0000:2f:1f.5: [8086:0edd] type 00 class 0x088000
[    4.652531] pci 0000:2f:1f.6: [8086:0ede] type 00 class 0x088000
[    4.652612] pci 0000:2f:1f.7: [8086:0edf] type 00 class 0x088000
[    4.652694] pci_bus 0000:2f: busn_res: [bus 2f-ff] end is updated to 2f
[    4.652696] pci_bus 0000:2f: busn_res: can not insert [bus 2f] under domain [bus 00-ff] (conflicts with (null) [bus 20-2f])
[    4.652886] PCI: Discovered peer bus 3f
[    4.657189] PCI: root bus 3f: using default resources
[    4.657190] PCI: Probing PCI hardware (bus 3f)
[    4.657214] PCI host bridge to bus 0000:3f
[    4.661811] pci_bus 0000:3f: root bus resource [io  0x0000-0xffff]
[    4.668749] pci_bus 0000:3f: root bus resource [mem 0x00000000-0x3fffffffffff]
[    4.676861] pci_bus 0000:3f: No busn resource found for root bus, will use [bus 3f-ff]
[    4.685753] pci_bus 0000:3f: busn_res: can not insert [bus 3f-ff] under domain [bus 00-ff] (conflicts with (null) [bus 30-3f])
[    4.685763] pci 0000:3f:08.0: [8086:0e80] type 00 class 0x088000
[    4.685831] pci 0000:3f:08.2: [8086:0e32] type 00 class 0x110100
[    4.685895] pci 0000:3f:09.0: [8086:0e90] type 00 class 0x088000
[    4.685955] pci 0000:3f:09.2: [8086:0e33] type 00 class 0x110100
[    4.686023] pci 0000:3f:0a.0: [8086:0ec0] type 00 class 0x088000
[    4.686081] pci 0000:3f:0a.1: [8086:0ec1] type 00 class 0x088000
[    4.686139] pci 0000:3f:0a.2: [8086:0ec2] type 00 class 0x088000
[    4.686195] pci 0000:3f:0a.3: [8086:0ec3] type 00 class 0x088000
[    4.686257] pci 0000:3f:0b.0: [8086:0e1e] type 00 class 0x088000
[    4.686313] pci 0000:3f:0b.3: [8086:0e1f] type 00 class 0x088000
[    4.686368] pci 0000:3f:0c.0: [8086:0ee0] type 00 class 0x088000
[    4.686426] pci 0000:3f:0c.1: [8086:0ee2] type 00 class 0x088000
[    4.686481] pci 0000:3f:0c.2: [8086:0ee4] type 00 class 0x088000
[    4.686534] pci 0000:3f:0c.3: [8086:0ee6] type 00 class 0x088000
[    4.686586] pci 0000:3f:0c.4: [8086:0ee8] type 00 class 0x088000
[    4.686639] pci 0000:3f:0c.5: [8086:0eea] type 00 class 0x088000
[    4.686691] pci 0000:3f:0c.6: [8086:0eec] type 00 class 0x088000
[    4.686745] pci 0000:3f:0c.7: [8086:0eee] type 00 class 0x088000
[    4.686801] pci 0000:3f:0d.0: [8086:0ee1] type 00 class 0x088000
[    4.686854] pci 0000:3f:0d.1: [8086:0ee3] type 00 class 0x088000
[    4.686914] pci 0000:3f:0d.2: [8086:0ee5] type 00 class 0x088000
[    4.686971] pci 0000:3f:0d.3: [8086:0ee7] type 00 class 0x088000
[    4.687027] pci 0000:3f:0d.4: [8086:0ee9] type 00 class 0x088000
[    4.687082] pci 0000:3f:0d.5: [8086:0eeb] type 00 class 0x088000
[    4.687138] pci 0000:3f:0d.6: [8086:0eed] type 00 class 0x088000
[    4.687194] pci 0000:3f:0e.0: [8086:0ea0] type 00 class 0x088000
[    4.687254] pci 0000:3f:0e.1: [8086:0e30] type 00 class 0x110100
[    4.687320] pci 0000:3f:0f.0: [8086:0ea8] type 00 class 0x088000
[    4.687398] pci 0000:3f:0f.1: [8086:0e71] type 00 class 0x088000
[    4.687472] pci 0000:3f:0f.2: [8086:0eaa] type 00 class 0x088000
[    4.687547] pci 0000:3f:0f.3: [8086:0eab] type 00 class 0x088000
[    4.687621] pci 0000:3f:0f.4: [8086:0eac] type 00 class 0x088000
[    4.687696] pci 0000:3f:0f.5: [8086:0ead] type 00 class 0x088000
[    4.687777] pci 0000:3f:10.0: [8086:0eb0] type 00 class 0x088000
[    4.687854] pci 0000:3f:10.1: [8086:0eb1] type 00 class 0x088000
[    4.687928] pci 0000:3f:10.2: [8086:0eb2] type 00 class 0x088000
[    4.688009] pci 0000:3f:10.3: [8086:0eb3] type 00 class 0x088000
[    4.688087] pci 0000:3f:10.4: [8086:0eb4] type 00 class 0x088000
[    4.688164] pci 0000:3f:10.5: [8086:0eb5] type 00 class 0x088000
[    4.688242] pci 0000:3f:10.6: [8086:0eb6] type 00 class 0x088000
[    4.688322] pci 0000:3f:10.7: [8086:0eb7] type 00 class 0x088000
[    4.688402] pci 0000:3f:11.0: [8086:0ef8] type 00 class 0x088000
[    4.688540] pci 0000:3f:11.1: [8086:0ef9] type 00 class 0x088000
[    4.688615] pci 0000:3f:11.2: [8086:0efa] type 00 class 0x088000
[    4.688691] pci 0000:3f:11.4: [8086:0efc] type 00 class 0x088000
[    4.688767] pci 0000:3f:11.5: [8086:0efd] type 00 class 0x088000
[    4.688843] pci 0000:3f:13.0: [8086:0e1d] type 00 class 0x088000
[    4.688899] pci 0000:3f:13.1: [8086:0e34] type 00 class 0x110100
[    4.688957] pci 0000:3f:13.4: [8086:0e81] type 00 class 0x088000
[    4.689013] pci 0000:3f:13.5: [8086:0e36] type 00 class 0x110100
[    4.689070] pci 0000:3f:13.6: [8086:0e37] type 00 class 0x110100
[    4.689131] pci 0000:3f:16.0: [8086:0ec8] type 00 class 0x088000
[    4.689200] pci 0000:3f:16.1: [8086:0ec9] type 00 class 0x088000
[    4.689256] pci 0000:3f:16.2: [8086:0eca] type 00 class 0x088000
[    4.689321] pci 0000:3f:18.0: [8086:0e40] type 00 class 0x088000
[    4.689385] pci 0000:3f:18.2: [8086:0e3a] type 00 class 0x110100
[    4.689453] pci 0000:3f:1c.0: [8086:0e60] type 00 class 0x088000
[    4.689514] pci 0000:3f:1c.1: [8086:0e38] type 00 class 0x110100
[    4.689583] pci 0000:3f:1d.0: [8086:0e68] type 00 class 0x088000
[    4.689661] pci 0000:3f:1d.1: [8086:0e79] type 00 class 0x088000
[    4.689739] pci 0000:3f:1d.2: [8086:0e6a] type 00 class 0x088000
[    4.689818] pci 0000:3f:1d.3: [8086:0e6b] type 00 class 0x088000
[    4.689896] pci 0000:3f:1d.4: [8086:0e6c] type 00 class 0x088000
[    4.689973] pci 0000:3f:1d.5: [8086:0e6d] type 00 class 0x088000
[    4.690053] pci 0000:3f:1e.0: [8086:0ef0] type 00 class 0x088000
[    4.690132] pci 0000:3f:1e.1: [8086:0ef1] type 00 class 0x088000
[    4.690209] pci 0000:3f:1e.2: [8086:0ef2] type 00 class 0x088000
[    4.690291] pci 0000:3f:1e.3: [8086:0ef3] type 00 class 0x088000
[    4.690367] pci 0000:3f:1e.4: [8086:0ef4] type 00 class 0x088000
[    4.690441] pci 0000:3f:1e.5: [8086:0ef5] type 00 class 0x088000
[    4.690515] pci 0000:3f:1e.6: [8086:0ef6] type 00 class 0x088000
[    4.690587] pci 0000:3f:1e.7: [8086:0ef7] type 00 class 0x088000
[    4.690662] pci 0000:3f:1f.0: [8086:0ed8] type 00 class 0x088000
[    4.690734] pci 0000:3f:1f.1: [8086:0ed9] type 00 class 0x088000
[    4.690817] pci 0000:3f:1f.4: [8086:0edc] type 00 class 0x088000
[    4.690889] pci 0000:3f:1f.5: [8086:0edd] type 00 class 0x088000
[    4.690964] pci 0000:3f:1f.6: [8086:0ede] type 00 class 0x088000
[    4.691040] pci 0000:3f:1f.7: [8086:0edf] type 00 class 0x088000
[    4.691114] pci_bus 0000:3f: busn_res: [bus 3f-ff] end is updated to 3f
[    4.691116] pci_bus 0000:3f: busn_res: can not insert [bus 3f] under domain [bus 00-ff] (conflicts with (null) [bus 30-3f])
[    4.691129] PCI: pci_cache_line_size set to 64 bytes
[    4.691815] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[    4.691818] e820: reserve RAM buffer [mem 0x77755018-0x77ffffff]
[    4.691819] e820: reserve RAM buffer [mem 0x77787018-0x77ffffff]
[    4.691820] e820: reserve RAM buffer [mem 0x78bff000-0x7bffffff]
[    4.692190] NetLabel: Initializing
[    4.696008] NetLabel:  domain hash size = 128
[    4.700898] NetLabel:  protocols = UNLABELED CIPSOv4
[    4.706496] NetLabel:  unlabeled traffic allowed by default
[    4.712849] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    4.719881] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    4.729035] Switched to clocksource hpet
[    4.745387] pnp: PnP ACPI init
[    4.749433] pnp 00:00: Plug and Play ACPI device, IDs IPI0001 (active)
[    4.749533] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    4.750136] pnp: PnP ACPI: found 2 devices
[    4.756963] pci 0000:01:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    4.768104] pci 0000:03:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[    4.779241] pci 0000:21:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    4.790378] pci 0000:21:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    4.801582] pci 0000:00:02.2: BAR 14: assigned [mem 0x90000000-0x900fffff]
[    4.809305] pci 0000:00:02.0: BAR 13: assigned [io  0x2000-0x2fff]
[    4.816249] pci 0000:01:00.0: BAR 6: assigned [mem 0x90380000-0x903fffff pref]
[    4.824363] pci 0000:01:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[    4.832278] pci 0000:01:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[    4.840586] pci 0000:01:00.0: BAR 2: assigned [io  0x2000-0x201f]
[    4.847433] pci 0000:01:00.1: BAR 2: assigned [io  0x2020-0x203f]
[    4.854279] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[    4.860152] pci 0000:00:02.0:   bridge window [io  0x2000-0x2fff]
[    4.867003] pci 0000:00:02.0:   bridge window [mem 0x90100000-0x903fffff]
[    4.874630] pci 0000:00:02.0:   bridge window [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[    4.883918] pci 0000:03:00.0: BAR 6: assigned [mem 0x90000000-0x9003ffff pref]
[    4.892030] pci 0000:03:00.1: BAR 6: assigned [mem 0x90040000-0x9007ffff pref]
[    4.900141] pci 0000:00:02.2: PCI bridge to [bus 03]
[    4.905719] pci 0000:00:02.2:   bridge window [mem 0x90000000-0x900fffff]
[    4.913344] pci 0000:00:02.2:   bridge window [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[    4.922632] pci 0000:00:03.0: PCI bridge to [bus 04]
[    4.928219] pci 0000:00:11.0: PCI bridge to [bus 05]
[    4.933810] pci 0000:06:00.2: BAR 6: assigned [mem 0x93a90000-0x93a9ffff pref]
[    4.941922] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    4.947500] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    4.954348] pci 0000:00:1c.0:   bridge window [mem 0x92000000-0x93efffff]
[    4.961982] pci_bus 0000:00: resource 4 [io  0x1000-0x3fff window]
[    4.961983] pci_bus 0000:00: resource 5 [io  0x0000-0x0cf7 window]
[    4.961985] pci_bus 0000:00: resource 6 [mem 0x90000000-0x93efffff window]
[    4.961986] pci_bus 0000:00: resource 7 [mem 0x000a0000-0x000bffff window]
[    4.961987] pci_bus 0000:00: resource 8 [mem 0xfed00000-0xfedfffff window]
[    4.961989] pci_bus 0000:00: resource 9 [mem 0xfc000000000-0xfc07fffffff window]
[    4.961990] pci_bus 0000:00: resource 10 [mem 0xfe200000000-0xfe27fffffff window]
[    4.961993] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    4.961994] pci_bus 0000:01: resource 1 [mem 0x90100000-0x903fffff]
[    4.961995] pci_bus 0000:01: resource 2 [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[    4.961998] pci_bus 0000:03: resource 1 [mem 0x90000000-0x900fffff]
[    4.961999] pci_bus 0000:03: resource 2 [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[    4.962001] pci_bus 0000:06: resource 0 [io  0x1000-0x1fff]
[    4.962002] pci_bus 0000:06: resource 1 [mem 0x92000000-0x93efffff]
[    4.962026] pci 0000:10:02.0: PCI bridge to [bus 11]
[    4.967614] pci 0000:10:02.2: PCI bridge to [bus 12]
[    4.973200] pci 0000:10:03.0: PCI bridge to [bus 13]
[    4.978786] pci_bus 0000:10: resource 4 [io  0x4000-0x7fff window]
[    4.978787] pci_bus 0000:10: resource 5 [mem 0x94000000-0x97ff7fff window]
[    4.978789] pci_bus 0000:10: resource 6 [mem 0xfc400000000-0xfc47fffffff window]
[    4.978830] pci 0000:20:02.0: BAR 13: assigned [io  0x8000-0x8fff]
[    4.985772] pci 0000:20:1c.0: BAR 13: assigned [io  0x9000-0x9fff]
[    4.992715] pci 0000:21:00.0: BAR 6: assigned [mem 0x98280000-0x982fffff pref]
[    5.000828] pci 0000:21:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[    5.008747] pci 0000:21:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[    5.017053] pci 0000:21:00.0: BAR 2: assigned [io  0x8000-0x801f]
[    5.023898] pci 0000:21:00.1: BAR 2: assigned [io  0x8020-0x803f]
[    5.030745] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[    5.036613] pci 0000:20:02.0:   bridge window [io  0x8000-0x8fff]
[    5.043461] pci 0000:20:02.0:   bridge window [mem 0x98000000-0x982fffff]
[    5.051088] pci 0000:20:02.0:   bridge window [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[    5.060374] pci 0000:20:02.2: PCI bridge to [bus 23]
[    5.065961] pci 0000:20:03.0: PCI bridge to [bus 24]
[    5.071547] pci 0000:20:11.0: PCI bridge to [bus 25]
[    5.077136] pci 0000:26:00.2: BAR 6: assigned [mem 0x9bd90000-0x9bd9ffff pref]
[    5.085249] pci 0000:26:00.0: BAR 0: assigned [io  0x9000-0x90ff]
[    5.092096] pci 0000:26:00.0: BAR 2: assigned [io  0x9400-0x94ff]
[    5.098943] pci 0000:26:00.2: BAR 0: assigned [io  0x9800-0x98ff]
[    5.105790] pci 0000:20:1c.0: PCI bridge to [bus 26]
[    5.111367] pci 0000:20:1c.0:   bridge window [io  0x9000-0x9fff]
[    5.118214] pci 0000:20:1c.0:   bridge window [mem 0x9bb00000-0x9befffff]
[    5.125847] pci_bus 0000:20: resource 4 [io  0x8000-0xbfff window]
[    5.125848] pci_bus 0000:20: resource 5 [mem 0x98000000-0x9befffff window]
[    5.125849] pci_bus 0000:20: resource 6 [mem 0xf0800000000-0xf087fffffff window]
[    5.125851] pci_bus 0000:21: resource 0 [io  0x8000-0x8fff]
[    5.125852] pci_bus 0000:21: resource 1 [mem 0x98000000-0x982fffff]
[    5.125854] pci_bus 0000:21: resource 2 [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[    5.125856] pci_bus 0000:26: resource 0 [io  0x9000-0x9fff]
[    5.125857] pci_bus 0000:26: resource 1 [mem 0x9bb00000-0x9befffff]
[    5.125877] pci 0000:30:02.0: PCI bridge to [bus 31]
[    5.131465] pci 0000:30:02.2: PCI bridge to [bus 32]
[    5.137049] pci 0000:30:03.0: PCI bridge to [bus 33]
[    5.142633] pci_bus 0000:30: resource 4 [io  0xc000-0xffff window]
[    5.142634] pci_bus 0000:30: resource 5 [mem 0x9c000000-0x9fff7fff window]
[    5.142636] pci_bus 0000:30: resource 6 [mem 0xf0c00000000-0xf0c7fffffff window]
[    5.142645] pci_bus 0000:0f: resource 4 [io  0x0000-0xffff]
[    5.142646] pci_bus 0000:0f: resource 5 [mem 0x00000000-0x3fffffffffff]
[    5.142656] pci_bus 0000:1f: resource 4 [io  0x0000-0xffff]
[    5.142657] pci_bus 0000:1f: resource 5 [mem 0x00000000-0x3fffffffffff]
[    5.142668] pci_bus 0000:2f: resource 4 [io  0x0000-0xffff]
[    5.142669] pci_bus 0000:2f: resource 5 [mem 0x00000000-0x3fffffffffff]
[    5.142679] pci_bus 0000:3f: resource 4 [io  0x0000-0xffff]
[    5.142680] pci_bus 0000:3f: resource 5 [mem 0x00000000-0x3fffffffffff]
[    5.142830] NET: Registered protocol family 2
[    5.149825] TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
[    5.159842] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    5.167714] TCP: Hash tables configured (established 524288 bind 65536)
[    5.175196] TCP: reno registered
[    5.179010] UDP hash table entries: 65536 (order: 9, 2097152 bytes)
[    5.186834] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes)
[    5.195821] NET: Registered protocol family 1
[    5.201140] pci 0000:06:00.1: Video device with shadowed ROM
[    5.201993] PCI: CLS 64 bytes, default 64
[    5.202151] Unpacking initramfs...
[    5.385292] Freeing initrd memory: 11476K (ffff88003f4b3000 - ffff88003ffe8000)
[    5.396627] IOMMU: dmar3 using Queued invalidation
[    5.402014] IOMMU: dmar2 using Queued invalidation
[    5.407398] IOMMU: dmar1 using Queued invalidation
[    5.412784] IOMMU: dmar0 using Queued invalidation
[    5.418180] IOMMU: Setting RMRR:
[    5.421854] IOMMU: Setting identity map for device 0000:20:1d.0 [0x7990e000 - 0x79910fff]
[    5.431144] IOMMU: Setting identity map for device 0000:00:1d.0 [0x79911000 - 0x79913fff]
[    5.440401] IOMMU: Prepare 0-16MiB unity mapping for LPC
[    5.446396] IOMMU: Setting identity map for device 0000:00:1f.0 [0x0 - 0xffffff]
[    5.454788] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[    5.480378] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    5.496177] microcode: CPU0 sig=0x306e7, pf=0x80, revision=0x70e
[    5.502933] microcode: CPU1 sig=0x306e7, pf=0x80, revision=0x70e
[    5.509684] microcode: CPU2 sig=0x306e7, pf=0x80, revision=0x70e
[    5.516435] microcode: CPU3 sig=0x306e7, pf=0x80, revision=0x70e
[    5.523187] microcode: CPU4 sig=0x306e7, pf=0x80, revision=0x70e
[    5.529939] microcode: CPU5 sig=0x306e7, pf=0x80, revision=0x70e
[    5.536691] microcode: CPU6 sig=0x306e7, pf=0x80, revision=0x70e
[    5.543440] microcode: CPU7 sig=0x306e7, pf=0x80, revision=0x70e
[    5.550190] microcode: CPU8 sig=0x306e7, pf=0x80, revision=0x70e
[    5.556941] microcode: CPU9 sig=0x306e7, pf=0x80, revision=0x70e
[    5.563691] microcode: CPU10 sig=0x306e7, pf=0x80, revision=0x70e
[    5.570541] microcode: CPU11 sig=0x306e7, pf=0x80, revision=0x70e
[    5.577388] microcode: CPU12 sig=0x306e7, pf=0x80, revision=0x70e
[    5.584237] microcode: CPU13 sig=0x306e7, pf=0x80, revision=0x70e
[    5.591085] microcode: CPU14 sig=0x306e7, pf=0x80, revision=0x70e
[    5.597952] microcode: CPU15 sig=0x306e7, pf=0x80, revision=0x70e
[    5.604848] microcode: CPU16 sig=0x306e7, pf=0x80, revision=0x70e
[    5.611699] microcode: CPU17 sig=0x306e7, pf=0x80, revision=0x70e
[    5.618549] microcode: CPU18 sig=0x306e7, pf=0x80, revision=0x70e
[    5.625396] microcode: CPU19 sig=0x306e7, pf=0x80, revision=0x70e
[    5.632245] microcode: CPU20 sig=0x306e7, pf=0x80, revision=0x70e
[    5.639092] microcode: CPU21 sig=0x306e7, pf=0x80, revision=0x70e
[    5.645944] microcode: CPU22 sig=0x306e7, pf=0x80, revision=0x70e
[    5.652793] microcode: CPU23 sig=0x306e7, pf=0x80, revision=0x70e
[    5.659640] microcode: CPU24 sig=0x306e7, pf=0x80, revision=0x70e
[    5.666491] microcode: CPU25 sig=0x306e7, pf=0x80, revision=0x70e
[    5.673339] microcode: CPU26 sig=0x306e7, pf=0x80, revision=0x70e
[    5.680186] microcode: CPU27 sig=0x306e7, pf=0x80, revision=0x70e
[    5.687035] microcode: CPU28 sig=0x306e7, pf=0x80, revision=0x70e
[    5.693884] microcode: CPU29 sig=0x306e7, pf=0x80, revision=0x70e
[    5.700782] microcode: CPU30 sig=0x306e7, pf=0x80, revision=0x70e
[    5.707642] microcode: CPU31 sig=0x306e7, pf=0x80, revision=0x70e
[    5.714494] microcode: CPU32 sig=0x306e7, pf=0x80, revision=0x70e
[    5.721347] microcode: CPU33 sig=0x306e7, pf=0x80, revision=0x70e
[    5.728198] microcode: CPU34 sig=0x306e7, pf=0x80, revision=0x70e
[    5.735046] microcode: CPU35 sig=0x306e7, pf=0x80, revision=0x70e
[    5.741896] microcode: CPU36 sig=0x306e7, pf=0x80, revision=0x70e
[    5.748745] microcode: CPU37 sig=0x306e7, pf=0x80, revision=0x70e
[    5.755594] microcode: CPU38 sig=0x306e7, pf=0x80, revision=0x70e
[    5.762441] microcode: CPU39 sig=0x306e7, pf=0x80, revision=0x70e
[    5.769291] microcode: CPU40 sig=0x306e7, pf=0x80, revision=0x70e
[    5.776139] microcode: CPU41 sig=0x306e7, pf=0x80, revision=0x70e
[    5.782989] microcode: CPU42 sig=0x306e7, pf=0x80, revision=0x70e
[    5.789836] microcode: CPU43 sig=0x306e7, pf=0x80, revision=0x70e
[    5.796683] microcode: CPU44 sig=0x306e7, pf=0x80, revision=0x70e
[    5.803550] microcode: CPU45 sig=0x306e7, pf=0x80, revision=0x70e
[    5.810417] microcode: CPU46 sig=0x306e7, pf=0x80, revision=0x70e
[    5.817263] microcode: CPU47 sig=0x306e7, pf=0x80, revision=0x70e
[    5.824111] microcode: CPU48 sig=0x306e7, pf=0x80, revision=0x70e
[    5.830959] microcode: CPU49 sig=0x306e7, pf=0x80, revision=0x70e
[    5.837801] microcode: CPU50 sig=0x306e7, pf=0x80, revision=0x70e
[    5.844652] microcode: CPU51 sig=0x306e7, pf=0x80, revision=0x70e
[    5.851499] microcode: CPU52 sig=0x306e7, pf=0x80, revision=0x70e
[    5.858347] microcode: CPU53 sig=0x306e7, pf=0x80, revision=0x70e
[    5.865193] microcode: CPU54 sig=0x306e7, pf=0x80, revision=0x70e
[    5.872040] microcode: CPU55 sig=0x306e7, pf=0x80, revision=0x70e
[    5.878888] microcode: CPU56 sig=0x306e7, pf=0x80, revision=0x70e
[    5.885735] microcode: CPU57 sig=0x306e7, pf=0x80, revision=0x70e
[    5.892584] microcode: CPU58 sig=0x306e7, pf=0x80, revision=0x70e
[    5.899432] microcode: CPU59 sig=0x306e7, pf=0x80, revision=0x70e
[    5.906282] microcode: CPU60 sig=0x306e7, pf=0x80, revision=0x70e
[    5.913130] microcode: CPU61 sig=0x306e7, pf=0x80, revision=0x70e
[    5.919976] microcode: CPU62 sig=0x306e7, pf=0x80, revision=0x70e
[    5.926822] microcode: CPU63 sig=0x306e7, pf=0x80, revision=0x70e
[    5.933668] microcode: CPU64 sig=0x306e7, pf=0x80, revision=0x70e
[    5.940516] microcode: CPU65 sig=0x306e7, pf=0x80, revision=0x70e
[    5.947361] microcode: CPU66 sig=0x306e7, pf=0x80, revision=0x70e
[    5.954210] microcode: CPU67 sig=0x306e7, pf=0x80, revision=0x70e
[    5.961057] microcode: CPU68 sig=0x306e7, pf=0x80, revision=0x70e
[    5.967903] microcode: CPU69 sig=0x306e7, pf=0x80, revision=0x70e
[    5.974748] microcode: CPU70 sig=0x306e7, pf=0x80, revision=0x70e
[    5.981596] microcode: CPU71 sig=0x306e7, pf=0x80, revision=0x70e
[    5.988441] microcode: CPU72 sig=0x306e7, pf=0x80, revision=0x70e
[    5.995286] microcode: CPU73 sig=0x306e7, pf=0x80, revision=0x70e
[    6.002134] microcode: CPU74 sig=0x306e7, pf=0x80, revision=0x70e
[    6.008984] microcode: CPU75 sig=0x306e7, pf=0x80, revision=0x70e
[    6.015834] microcode: CPU76 sig=0x306e7, pf=0x80, revision=0x70e
[    6.022683] microcode: CPU77 sig=0x306e7, pf=0x80, revision=0x70e
[    6.029528] microcode: CPU78 sig=0x306e7, pf=0x80, revision=0x70e
[    6.036381] microcode: CPU79 sig=0x306e7, pf=0x80, revision=0x70e
[    6.043227] microcode: CPU80 sig=0x306e7, pf=0x80, revision=0x70e
[    6.050075] microcode: CPU81 sig=0x306e7, pf=0x80, revision=0x70e
[    6.056923] microcode: CPU82 sig=0x306e7, pf=0x80, revision=0x70e
[    6.063769] microcode: CPU83 sig=0x306e7, pf=0x80, revision=0x70e
[    6.070616] microcode: CPU84 sig=0x306e7, pf=0x80, revision=0x70e
[    6.077462] microcode: CPU85 sig=0x306e7, pf=0x80, revision=0x70e
[    6.084310] microcode: CPU86 sig=0x306e7, pf=0x80, revision=0x70e
[    6.091157] microcode: CPU87 sig=0x306e7, pf=0x80, revision=0x70e
[    6.098006] microcode: CPU88 sig=0x306e7, pf=0x80, revision=0x70e
[    6.104855] microcode: CPU89 sig=0x306e7, pf=0x80, revision=0x70e
[    6.111709] microcode: CPU90 sig=0x306e7, pf=0x80, revision=0x70e
[    6.118557] microcode: CPU91 sig=0x306e7, pf=0x80, revision=0x70e
[    6.125405] microcode: CPU92 sig=0x306e7, pf=0x80, revision=0x70e
[    6.132252] microcode: CPU93 sig=0x306e7, pf=0x80, revision=0x70e
[    6.139099] microcode: CPU94 sig=0x306e7, pf=0x80, revision=0x70e
[    6.145945] microcode: CPU95 sig=0x306e7, pf=0x80, revision=0x70e
[    6.152793] microcode: CPU96 sig=0x306e7, pf=0x80, revision=0x70e
[    6.159640] microcode: CPU97 sig=0x306e7, pf=0x80, revision=0x70e
[    6.166489] microcode: CPU98 sig=0x306e7, pf=0x80, revision=0x70e
[    6.173335] microcode: CPU99 sig=0x306e7, pf=0x80, revision=0x70e
[    6.180181] microcode: CPU100 sig=0x306e7, pf=0x80, revision=0x70e
[    6.187129] microcode: CPU101 sig=0x306e7, pf=0x80, revision=0x70e
[    6.194073] microcode: CPU102 sig=0x306e7, pf=0x80, revision=0x70e
[    6.201017] microcode: CPU103 sig=0x306e7, pf=0x80, revision=0x70e
[    6.207960] microcode: CPU104 sig=0x306e7, pf=0x80, revision=0x70e
[    6.214904] microcode: CPU105 sig=0x306e7, pf=0x80, revision=0x70e
[    6.221849] microcode: CPU106 sig=0x306e7, pf=0x80, revision=0x70e
[    6.228792] microcode: CPU107 sig=0x306e7, pf=0x80, revision=0x70e
[    6.235734] microcode: CPU108 sig=0x306e7, pf=0x80, revision=0x70e
[    6.242678] microcode: CPU109 sig=0x306e7, pf=0x80, revision=0x70e
[    6.249620] microcode: CPU110 sig=0x306e7, pf=0x80, revision=0x70e
[    6.256564] microcode: CPU111 sig=0x306e7, pf=0x80, revision=0x70e
[    6.263507] microcode: CPU112 sig=0x306e7, pf=0x80, revision=0x70e
[    6.270456] microcode: CPU113 sig=0x306e7, pf=0x80, revision=0x70e
[    6.277400] microcode: CPU114 sig=0x306e7, pf=0x80, revision=0x70e
[    6.284342] microcode: CPU115 sig=0x306e7, pf=0x80, revision=0x70e
[    6.291286] microcode: CPU116 sig=0x306e7, pf=0x80, revision=0x70e
[    6.298232] microcode: CPU117 sig=0x306e7, pf=0x80, revision=0x70e
[    6.305175] microcode: CPU118 sig=0x306e7, pf=0x80, revision=0x70e
[    6.312120] microcode: CPU119 sig=0x306e7, pf=0x80, revision=0x70e
[    6.319173] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    6.337619] futex hash table entries: 32768 (order: 9, 2097152 bytes)
[    6.345481] Initialise system trusted keyring
[    6.350461] audit: initializing netlink subsys (disabled)
[    6.356591] audit: type=2000 audit(1428561281.609:1): initialized
[    6.365131] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    6.373672] zpool: loaded
[    6.376617] zbud: loaded
[    6.379862] VFS: Disk quotas dquot_6.5.2
[    6.384384] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    6.392832] Key type big_key registered
[    6.397148] SELinux:  Registering netfilter hooks
[    6.409570] alg: No test for stdrng (krng)
[    6.414219] NET: Registered protocol family 38
[    6.419245] Key type asymmetric registered
[    6.423855] Asymmetric key parser 'x509' registered
[    6.429361] bounce: pool size: 64 pages
[    6.433722] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    6.442953] io scheduler noop registered
[    6.447365] io scheduler deadline registered (default)
[    6.453217] io scheduler cfq registered
[    6.464350] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    6.472180] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    6.479517] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    6.486859] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
[    6.486867] tsc: Refined TSC clocksource calibration: 2793.687 MHz
[    6.493887] pcieport 0000:00:02.2: Signaling PME through PCIe PME interrupt
[    6.501713] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    6.509049] pci 0000:03:00.1: Signaling PME through PCIe PME interrupt
[    6.516389] pcie_pme 0000:00:02.2:pcie01: service driver pcie_pme loaded
[    6.516415] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    6.524248] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[    6.524274] pcieport 0000:00:11.0: Signaling PME through PCIe PME interrupt
[    6.532101] pcie_pme 0000:00:11.0:pcie01: service driver pcie_pme loaded
[    6.532135] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    6.539955] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    6.547293] pci 0000:06:00.1: Signaling PME through PCIe PME interrupt
[    6.554627] pci 0000:06:00.2: Signaling PME through PCIe PME interrupt
[    6.561964] pci 0000:06:00.4: Signaling PME through PCIe PME interrupt
[    6.569302] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    6.569337] pcieport 0000:10:02.0: Signaling PME through PCIe PME interrupt
[    6.577165] pcie_pme 0000:10:02.0:pcie01: service driver pcie_pme loaded
[    6.577198] pcieport 0000:10:02.2: Signaling PME through PCIe PME interrupt
[    6.585021] pcie_pme 0000:10:02.2:pcie01: service driver pcie_pme loaded
[    6.585053] pcieport 0000:10:03.0: Signaling PME through PCIe PME interrupt
[    6.592882] pcie_pme 0000:10:03.0:pcie01: service driver pcie_pme loaded
[    6.592906] pcieport 0000:20:02.0: Signaling PME through PCIe PME interrupt
[    6.600730] pci 0000:21:00.0: Signaling PME through PCIe PME interrupt
[    6.608063] pci 0000:21:00.1: Signaling PME through PCIe PME interrupt
[    6.615400] pcie_pme 0000:20:02.0:pcie01: service driver pcie_pme loaded
[    6.615420] pcieport 0000:20:02.2: Signaling PME through PCIe PME interrupt
[    6.623252] pcie_pme 0000:20:02.2:pcie01: service driver pcie_pme loaded
[    6.623374] pcieport 0000:20:03.0: Signaling PME through PCIe PME interrupt
[    6.631200] pcie_pme 0000:20:03.0:pcie01: service driver pcie_pme loaded
[    6.631221] pcieport 0000:20:11.0: Signaling PME through PCIe PME interrupt
[    6.639045] pcie_pme 0000:20:11.0:pcie01: service driver pcie_pme loaded
[    6.639065] pcieport 0000:20:1c.0: Signaling PME through PCIe PME interrupt
[    6.646889] pci 0000:26:00.0: Signaling PME through PCIe PME interrupt
[    6.654221] pci 0000:26:00.2: Signaling PME through PCIe PME interrupt
[    6.661560] pcie_pme 0000:20:1c.0:pcie01: service driver pcie_pme loaded
[    6.661583] pcieport 0000:30:02.0: Signaling PME through PCIe PME interrupt
[    6.669407] pcie_pme 0000:30:02.0:pcie01: service driver pcie_pme loaded
[    6.669426] pcieport 0000:30:02.2: Signaling PME through PCIe PME interrupt
[    6.677251] pcie_pme 0000:30:02.2:pcie01: service driver pcie_pme loaded
[    6.677269] pcieport 0000:30:03.0: Signaling PME through PCIe PME interrupt
[    6.685096] pcie_pme 0000:30:03.0:pcie01: service driver pcie_pme loaded
[    6.685103] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    6.691387] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    6.698872] efifb: probing for efifb
[    6.702930] efifb: framebuffer at 0x92000000, mapped to 0xffffc90035480000, using 3072k, total 3072k
[    6.713193] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    6.719939] efifb: scrolling: redraw
[    6.723957] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    6.763619] Console: switching to colour frame buffer device 128x48
[    6.803254] fb0: EFI VGA frame buffer device
[    6.808059] intel_idle: MWAIT substates: 0x1120
[    6.808060] intel_idle: v0.4 model 0x3E
[    6.808061] intel_idle: lapic_timer_reliable_states 0xffffffff
[    6.811857] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    6.821248] ACPI: Power Button [PWRB]
[    6.828347] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    6.836769] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    6.864612] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    6.874031] Non-volatile memory driver v1.3
[    6.878768] Linux agpgart interface v0.103
[    6.884098] rdac: device handler registered
[    6.888875] hp_sw: device handler registered
[    6.893676] emc: device handler registered
[    6.898277] alua: device handler registered
[    6.903013] libphy: Fixed MDIO Bus: probed
[    6.907694] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    6.915050] ehci-pci: EHCI PCI platform driver
[    6.920601] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    6.926562] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
[    6.934889] ehci-pci 0000:00:1d.0: debug port 2
[    6.943907] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    6.943925] ehci-pci 0000:00:1d.0: irq 23, io mem 0x90400000
[    6.955672] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    6.962189] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    6.969813] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.977929] usb usb1: Product: EHCI Host Controller
[    6.983407] usb usb1: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[    6.990351] usb usb1: SerialNumber: 0000:00:1d.0
[    6.995664] hub 1-0:1.0: USB hub found
[    6.999884] hub 1-0:1.0: 2 ports detected
[    7.005054] ehci-pci 0000:20:1d.0: EHCI Host Controller
[    7.011050] ehci-pci 0000:20:1d.0: new USB bus registered, assigned bus number 2
[    7.019380] ehci-pci 0000:20:1d.0: debug port 2
[    7.028398] ehci-pci 0000:20:1d.0: cache line size of 64 is not supported
[    7.028429] ehci-pci 0000:20:1d.0: irq 46, io mem 0x98300000
[    7.040775] ehci-pci 0000:20:1d.0: USB 2.0 started, EHCI 1.00
[    7.047307] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    7.054934] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.063048] usb usb2: Product: EHCI Host Controller
[    7.068525] usb usb2: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[    7.075467] usb usb2: SerialNumber: 0000:20:1d.0
[    7.080791] hub 2-0:1.0: USB hub found
[    7.085015] hub 2-0:1.0: 2 ports detected
[    7.089789] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    7.096742] ohci-pci: OHCI PCI platform driver
[    7.101770] uhci_hcd: USB Universal Host Controller Interface driver
[    7.108996] uhci_hcd 0000:06:00.4: UHCI Host Controller
[    7.114939] uhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 3
[    7.123266] uhci_hcd 0000:06:00.4: detected 8 ports
[    7.128746] uhci_hcd 0000:06:00.4: port count misdetected? forcing to 2 ports
[    7.136801] uhci_hcd 0000:06:00.4: irq 16, io base 0x00001500
[    7.143377] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    7.151004] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.159117] usb usb3: Product: UHCI Host Controller
[    7.164595] usb usb3: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[    7.171538] usb usb3: SerialNumber: 0000:06:00.4
[    7.176825] hub 3-0:1.0: USB hub found
[    7.181044] hub 3-0:1.0: 2 ports detected
[    7.185928] usbcore: registered new interface driver usbserial
[    7.192494] usbcore: registered new interface driver usbserial_generic
[    7.199840] usbserial: USB Serial support registered for generic
[    7.206616] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    7.306117] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    7.391227] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    7.430660] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    7.438189] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    7.446446] hub 1-1:1.0: USB hub found
[    7.450803] hub 1-1:1.0: 8 ports detected
[    8.264599] i8042: No controller found
[    8.268916] Switched to clocksource tsc
[    8.268976] mousedev: PS/2 mouse device common for all mice
[    8.269475] rtc_cmos 00:01: RTC can wake from S4
[    8.269723] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    8.269781] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    8.269807] Intel P-state driver initializing.
[    8.280750] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    8.280753] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.281192] hub 2-1:1.0: USB hub found
[    8.281416] hub 2-1:1.0: 8 ports detected
[    8.285050] EFI Variables Facility v0.08 2004-May-17
[    8.306314] hidraw: raw HID events driver (C) Jiri Kosina
[    8.306486] usbcore: registered new interface driver usbhid
[    8.306487] usbhid: USB HID core driver
[    8.306591] drop_monitor: Initializing network drop monitor service
[    8.306991] TCP: cubic registered
[    8.306997] Initializing XFRM netlink socket
[    8.307264] NET: Registered protocol family 10
[    8.309402] NET: Registered protocol family 17
[    8.313579] Loading compiled-in X.509 certificates
[    8.314485] Loaded X.509 cert 'Magrathea: Glacier signing key: 307113a598e2a4626872c8019495ffd1ab8d036a'
[    8.314503] registered taskstats version 1
[    8.319948] Key type trusted registered
[    8.327646] Key type encrypted registered
[    8.327656] ima: No TPM chip found, activating TPM-bypass!
[    8.327731] evm: HMAC attrs: 0x1
[    8.332339] rtc_cmos 00:01: setting system clock to 2015-04-09 06:34:50 UTC (1428561290)
[    8.440072] Freeing unused kernel memory: 1704K (ffffffff81b4d000 - ffffffff81cf7000)
[    8.442684] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[    8.502978] systemd[1]: systemd 208 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    8.519572] systemd[1]: Running in initial RAM disk.
[    8.537224] usb 1-1.3: New USB device found, idVendor=0424, idProduct=2660
[    8.537341] systemd[1]: Set hostname to <dhb5.fcux.usa.hp.com>.
[    8.551640] usb 1-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.551743] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
[    8.552066] hub 1-1.3:1.0: USB hub found
[    8.552150] hub 1-1.3:1.0: 2 ports detected
[    8.577376] random: systemd urandom read with 10 bits of entropy available
[    8.637307] usb 2-1.3: New USB device found, idVendor=0424, idProduct=2660
[    8.645051] usb 2-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.653930] hub 2-1.3:1.0: USB hub found
[    8.658495] hub 2-1.3:1.0: 2 ports detected
[    8.659677] systemd[1]: Expecting device dev-disk-by\x2duuid-227bc7d6\x2d3f21\x2d4e34\x2db43d\x2d7f65c5e3dbcc.device...
[    8.685007] systemd[1]: Starting -.slice.
[    8.694976] systemd[1]: Created slice -.slice.
[    8.700129] systemd[1]: Starting System Slice.
[    8.711982] systemd[1]: Created slice System Slice.
[    8.717566] systemd[1]: Starting Slices.
[    8.727000] systemd[1]: Reached target Slices.
[    8.732101] systemd[1]: Starting Timers.
[    8.741014] systemd[1]: Reached target Timers.
[    8.746119] systemd[1]: Starting Journal Socket.
[    8.758024] systemd[1]: Listening on Journal Socket.
[    8.763863] systemd[1]: Starting dracut cmdline hook...
[    8.775622] systemd[1]: Starting Journal Service...
[    8.793115] systemd[1]: Started Journal Service.
[    8.805320] systemd-journald[955]: Vacuuming done, freed 0 bytes
[    8.894627] device-mapper: uevent: version 1.0.3
[    8.901087] device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised: dm-devel@redhat.com
[    8.918129] device-mapper: multipath: version 1.8.0 loaded
[    9.043076] systemd-udevd[1109]: starting version 208
[    9.148278] [drm] Initialized drm 1.1.0 20060810
[    9.154459] qla2xxx [0000:00:00.0]-0005: : QLogic Fibre Channel HBA Driver: 8.07.00.16-k.
[    9.164786] qla2xxx [0000:03:00.0]-011c: : MSI-X vector count: 31.
[    9.173021] qla2xxx [0000:03:00.0]-001d: : Found an ISP2031 irq 47 iobase 0xffffc9003543e000.
[    9.194637] checking generic (92000000 300000) vs hw (92000000 1000000)
[    9.194640] fb: switching to mgag200drmfb from EFI VGA
[    9.201176] Console: switching to colour dummy device 80x25
[    9.218672] [TTM] Zone  kernel: Available graphics memory: 263902940 kiB
[    9.226206] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    9.233545] [TTM] Initializing pool allocator
[    9.240088] [TTM] Initializing DMA pool allocator
[    9.300190] fbcon: mgadrmfb (fb0) is primary device
[    9.501853] Console: switching to colour frame buffer device 128x48
[    9.547921] mgag200 0000:06:00.1: fb0: mgadrmfb frame buffer device
[    9.547922] mgag200 0000:06:00.1: registered panic notifier
[    9.648081] [drm] Initialized mgag200 1.0.0 20110418 for 0000:06:00.1 on minor 0
[   10.754648] scsi host0: qla2xxx
[   10.761537] qla2xxx [0000:03:00.0]-00fb:0: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[   10.770449] qla2xxx [0000:03:00.0]-00fc:0: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.0 hdma+ host#=0 fw=7.03.01 (d0d5).
[   10.782726] qla2xxx [0000:03:00.1]-011c: : MSI-X vector count: 31.
[   10.789672] qla2xxx [0000:03:00.1]-001d: : Found an ISP2031 irq 50 iobase 0xffffc9003543a000.
[   11.542666] qla2xxx [0000:03:00.0]-500a:0: LOOP UP detected (8 Gbps).
[   12.160433] scsi host1: qla2xxx
[   12.167552] qla2xxx [0000:03:00.1]-00fb:1: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[   12.176464] qla2xxx [0000:03:00.1]-00fc:1: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.1 hdma+ host#=1 fw=7.03.01 (d0d5).
[   12.765519] scsi: waiting for bus probes to complete ...
[   17.183350] scsi 0:0:0:0: Enclosure         HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.193517] scsi 0:0:0:0: alua: supports implicit TPGS
[   17.199816] scsi 0:0:0:0: alua: port group 01 rel port 05
[   17.206101] scsi 0:0:0:0: alua: port group 01 state N non-preferred supports tOlusNA
[   17.214817] scsi 0:0:0:0: alua: Attached
[   17.221863] scsi 0:0:0:50: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.231626] scsi 0:0:0:50: alua: supports implicit TPGS
[   17.238186] scsi 0:0:0:50: alua: port group 01 rel port 05
[   17.244511] scsi 0:0:0:50: alua: port group 01 state N non-preferred supports tOlusNA
[   17.253318] scsi 0:0:0:50: alua: Attached
[   17.258817] scsi 0:0:0:51: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.269640] scsi 0:0:0:51: alua: supports implicit TPGS
[   17.276194] sd 0:0:0:51: alua: port group 01 rel port 05
[   17.276228] sd 0:0:0:51: [sdb] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   17.276231] sd 0:0:0:50: [sda] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   17.299908] sd 0:0:0:51: alua: port group 01 state N non-preferred supports tOlusNA
[   17.299923] sd 0:0:0:51: [sdb] Write Protect is off
[   17.299928] sd 0:0:0:50: [sda] Write Protect is off
[   17.299930] sd 0:0:0:51: [sdb] Mode Sense: d7 00 00 08
[   17.299933] sd 0:0:0:50: [sda] Mode Sense: d7 00 00 08
[   17.319574] sd 0:0:0:51: alua: Attached
[   17.319658] sd 0:0:0:51: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.319684] sd 0:0:0:50: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.345785] scsi 0:0:0:52: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.355572] scsi 0:0:0:52: alua: supports implicit TPGS
[   17.361748] scsi 0:0:0:52: alua: port group 01 rel port 05
[   17.368028] scsi 0:0:0:52: alua: port group 01 state N non-preferred supports tOlusNA
[   17.376868] scsi 0:0:0:52: alua: Attached
[   17.382181] sd 0:0:0:52: [sdc] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.391138] scsi 0:0:0:53: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.400828] sd 0:0:0:52: [sdc] Write Protect is off
[   17.406321] sd 0:0:0:52: [sdc] Mode Sense: d7 00 00 08
[   17.406394] scsi 0:0:0:53: alua: supports implicit TPGS
[   17.406453] sd 0:0:0:52: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.409007] sd 0:0:0:52: [sdc] Attached SCSI disk
[   17.428209] scsi 0:0:0:53: alua: port group 01 rel port 05
[   17.435706] scsi 0:0:0:53: alua: port group 01 state N non-preferred supports tOlusNA
[   17.444513] scsi 0:0:0:53: alua: Attached
[   17.449226]  sda: sda1 sda2 sda3 sda4
[   17.449437] sd 0:0:0:53: [sdd] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.449894] sd 0:0:0:53: [sdd] Write Protect is off
[   17.449903] sd 0:0:0:53: [sdd] Mode Sense: d7 00 00 08
[   17.449968] scsi 0:0:0:54: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.450035] sd 0:0:0:53: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.450461] scsi 0:0:0:54: alua: supports implicit TPGS
[   17.450668] scsi 0:0:0:54: alua: port group 01 rel port 05
[   17.450740] scsi 0:0:0:54: alua: port group 01 state N non-preferred supports tOlusNA
[   17.450742] scsi 0:0:0:54: alua: Attached
[   17.451174] sd 0:0:0:54: [sde] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.451582] sd 0:0:0:54: [sde] Write Protect is off
[   17.451584] sd 0:0:0:54: [sde] Mode Sense: d7 00 00 08
[   17.451681] sd 0:0:0:54: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.457124] scsi 0:0:1:0: Enclosure         HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.458471] scsi 0:0:1:0: alua: supports implicit TPGS
[   17.458701] scsi 0:0:1:0: alua: port group 00 rel port 01
[   17.458770] scsi 0:0:1:0: alua: port group 00 state N non-preferred supports tOlusNA
[   17.458771] scsi 0:0:1:0: alua: Attached
[   17.460646] scsi 0:0:1:50: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.461554] scsi 0:0:1:50: alua: supports implicit TPGS
[   17.461781] scsi 0:0:1:50: alua: port group 00 rel port 01
[   17.461850] scsi 0:0:1:50: alua: port group 00 state A preferred supports tOlusNA
[   17.461852] scsi 0:0:1:50: alua: Attached
[   17.462501] sd 0:0:0:54: [sde] Attached SCSI disk
[   17.462547] sd 0:0:0:53: [sdd] Attached SCSI disk
[   17.462651] sd 0:0:1:50: [sdf] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   17.462708] scsi 0:0:1:51: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.463490] scsi 0:0:1:51: alua: supports implicit TPGS
[   17.463491] sd 0:0:1:50: [sdf] Write Protect is off
[   17.463494] sd 0:0:1:50: [sdf] Mode Sense: d7 00 00 08
[   17.463689] scsi 0:0:1:51: alua: port group 00 rel port 01
[   17.463702] sd 0:0:1:50: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.463757] scsi 0:0:1:51: alua: port group 00 state A preferred supports tOlusNA
[   17.463758] scsi 0:0:1:51: alua: Attached
[   17.464039] sd 0:0:1:51: [sdg] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   17.464523]  sdb: sdb1 sdb2 sdb3
[   17.464578] scsi 0:0:1:52: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.464870] sd 0:0:1:51: [sdg] Write Protect is off
[   17.464872] sd 0:0:1:51: [sdg] Mode Sense: d7 00 00 08
[   17.465383] sd 0:0:1:51: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.465616] scsi 0:0:1:52: alua: supports implicit TPGS
[   17.465906] scsi 0:0:1:52: alua: port group 00 rel port 01
[   17.466004] scsi 0:0:1:52: alua: port group 00 state A preferred supports tOlusNA
[   17.466006] scsi 0:0:1:52: alua: Attached
[   17.466291] sd 0:0:1:52: [sdh] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.466852] scsi 0:0:1:53: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.467495] sd 0:0:0:51: [sdb] Attached SCSI disk
[   17.467867] sd 0:0:1:52: [sdh] Write Protect is off
[   17.467870] sd 0:0:1:52: [sdh] Mode Sense: d7 00 00 08
[   17.468188] scsi 0:0:1:53: alua: supports implicit TPGS
[   17.468237] sd 0:0:1:52: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.468624] random: nonblocking pool is initialized
[   17.468672] scsi 0:0:1:53: alua: port group 00 rel port 01
[   17.468776] scsi 0:0:1:53: alua: port group 00 state A preferred supports tOlusNA
[   17.468778] scsi 0:0:1:53: alua: Attached
[   17.469143]  sdf: sdf1 sdf2 sdf3 sdf4
[   17.470241] sd 0:0:1:53: [sdi] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.470279] scsi 0:0:1:54: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   17.471056] sd 0:0:1:53: [sdi] Write Protect is off
[   17.471059] sd 0:0:1:53: [sdi] Mode Sense: d7 00 00 08
[   17.471068] scsi 0:0:1:54: alua: supports implicit TPGS
[   17.471773] sd 0:0:1:53: [sdi] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.471831] scsi 0:0:1:54: alua: port group 00 rel port 01
[   17.472295] scsi 0:0:1:54: alua: port group 00 state A preferred supports tOlusNA
[   17.472297] scsi 0:0:1:54: alua: Attached
[   17.473091] sd 0:0:1:50: [sdf] Attached SCSI disk
[   17.473244] sd 0:0:1:54: [sdj] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   17.474096] sd 0:0:1:54: [sdj] Write Protect is off
[   17.474099] sd 0:0:1:54: [sdj] Mode Sense: d7 00 00 08
[   17.474625]  sdg: sdg1 sdg2 sdg3
[   17.474798] sd 0:0:1:54: [sdj] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.476228] sd 0:0:1:52: [sdh] Attached SCSI disk
[   17.477347] sd 0:0:1:51: [sdg] Attached SCSI disk
[   17.479458] sd 0:0:1:53: [sdi] Attached SCSI disk
[   17.481173] sd 0:0:1:54: [sdj] Attached SCSI disk
[   17.781654] device-mapper: multipath service-time: version 0.2.0 loaded
[   17.932605] sd 0:0:0:50: [sda] Attached SCSI disk
[   18.459031] EXT4-fs (dm-10): mounted filesystem with ordered data mode. Opts: (null)
[   18.780230] systemd-journald[955]: Received SIGTERM
[   19.352078] audit: type=1404 audit(1428561301.505:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[   19.456614] SELinux: 2048 avtab hash slots, 99663 rules.
[   19.476653] SELinux: 2048 avtab hash slots, 99663 rules.
[   19.505114] SELinux:  8 users, 86 roles, 4799 types, 280 bools, 1 sens, 1024 cats
[   19.505117] SELinux:  83 classes, 99663 rules
[   19.509631] SELinux:  Permission audit_read in class capability2 not defined in policy.
[   19.518629] SELinux:  Class binder not defined in policy.
[   19.524693] SELinux: the above unknown classes and permissions will be allowed
[   19.532815] SELinux:  Completing initialization.
[   19.532816] SELinux:  Setting up existing superblocks.
[   19.546312] audit: type=1403 audit(1428561301.699:3): policy loaded auid=4294967295 ses=4294967295
[   19.563151] systemd[1]: Successfully loaded SELinux policy in 226.528ms.
[   19.704253] audit: type=1400 audit(1428561301.857:4): avc:  denied  { associate } for  pid=1 comm="systemd" name="/" dev="pstore" ino=14346 scontext=system_u:object_r:sysfs_t:s0 tcontext=system_u:object_r:pstorefs_t:s0 tclass=filesystem permissive=0
[   19.729278] systemd[1]: Unable to fix label of /sys/fs/pstore: Permission denied
[   19.804910] systemd[1]: Relabelled /dev and /run in 67.019ms.
[   20.851270] systemd-journald[1773]: Vacuuming done, freed 0 bytes
[   21.003725] EXT4-fs (dm-10): re-mounted. Opts: (null)
[   21.106532] systemd-udevd[1824]: starting version 208
[   21.165723] RPC: Registered named UNIX socket transport module.
[   21.172382] RPC: Registered udp transport module.
[   21.177674] RPC: Registered tcp transport module.
[   21.182963] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   21.269395] ipmi message handler version 39.2
[   21.294240] IPMI System Interface driver.
[   21.299268] ipmi_si: probing via ACPI
[   21.303419] ipmi_si 00:00: [mem 0xfe262110000-0xfe262110002] regsize 1 spacing 1 irq 20
[   21.312466] ipmi_si: Adding ACPI-specified bt state machine
[   21.318852] ipmi_si: probing via SPMI
[   21.323094] ipmi_si: SPMI: mem 0xfe262110000 regsize 1 spacing 1 irq 20
[   21.330550] ipmi_si: Adding SPMI-specified bt state machine duplicate interface
[   21.336785] ipmi_si: Trying ACPI-specified bt state machine at mem address 0xfe262110000, slave address 0x0, irq 20
[   21.343755] ipmi_si 00:00: Using irq 20
[   21.355256] dca service started, version 1.12.1
[   21.362168] input: PC Speaker as /devices/platform/pcspkr/input/input1
[   21.372082] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   21.372224] EDAC MC: Ver: 3.0.0
[   21.373828] IPMI BT: req2rsp=6 secs retries=16
[   21.398917] ipmi_si 00:00: Found new BMC (man_id: 0x00000b, prod_id: 0x1002, dev_id: 0x40)
[   21.408271] ipmi_si 00:00: IPMI bt interface initialized
[   21.418674] lpc_ich 0000:20:1f.0: I/O space for ACPI uninitialized
[   21.425731] lpc_ich 0000:20:1f.0: No MFD cells added
[   21.433854] ioatdma: Intel(R) QuickData Technology Driver 4.00
[   21.434361] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434384] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434402] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434427] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434445] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   21.434456] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434461] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434467] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434473] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434478] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   21.434480] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434486] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434492] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434501] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434509] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   21.434511] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434517] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434523] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434528] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434533] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   21.434535] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434541] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434547] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434552] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434558] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   21.434560] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434565] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434571] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434576] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434582] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   21.434583] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434589] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434595] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434600] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434606] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   21.434608] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434629] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434635] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434640] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434645] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   21.434647] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434657] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434663] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434668] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434673] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   21.434675] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434682] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434687] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434693] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434698] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   21.434700] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434709] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434716] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434726] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434737] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   21.434739] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434749] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434757] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434763] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434770] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   21.434772] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434796] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434801] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434807] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434812] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   21.434813] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
[   21.434826] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
[   21.434913] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[   21.435391] EDAC MC0: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#0: DEV 0000:0f:0e.0 (POLLED)
[   21.435591] EDAC MC1: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#1: DEV 0000:1f:0e.0 (POLLED)
[   21.435861] EDAC MC2: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#2: DEV 0000:2f:0e.0 (POLLED)
[   21.437391] EDAC MC3: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#3: DEV 0000:3f:0e.0 (POLLED)
[   21.437392] EDAC sbridge:  Ver: 1.1.0 
[   21.439861] hpwdt 0000:06:00.0: HP Watchdog Timer Driver: NMI decoding initialized, allow kernel dump: ON (default = 1/ON)
[   21.440263] hpwdt 0000:06:00.0: HP Watchdog Timer Driver: 1.3.3, timer margin: 30 seconds (nowayout=0).
[   21.576078] pps_core: LinuxPPS API ver. 1 registered
[   21.581663] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[   21.618453] ses 0:0:0:0: Attached Enclosure device
[   21.625306] ses 0:0:1:0: Attached Enclosure device
[   21.633067] iTCO_vendor_support: vendor-support=0
[   21.633078] Adding 2047996k swap on /dev/mapper/rhel_dhb5-swap.  Priority:-1 extents:1 across:2047996k FS
[   21.655955] PTP clock support registered
[   21.661130] ipmi device interface
[   21.667317] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   21.675242] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[   21.691156] AVX version of gcm_enc/dec engaged.
[   21.696997] AES CTR mode by8 optimization enabled
[   21.698929] EXT4-fs (dm-9): mounted filesystem with ordered data mode. Opts: (null)
[   21.723041] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[   21.775542] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.0.1-k
[   21.784153] ixgbe: Copyright (c) 1999-2014 Intel Corporation.
[   21.791878] alg: No test for crc32 (crc32-pclmul)
[   21.837656] FAT-fs (dm-8): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[   21.856906] systemd-journald[1773]: Received request to flush runtime journal from PID 1
[   21.875050] audit: type=1305 audit(1428561304.025:5): audit_pid=2540 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1
[   21.884916] ixgbe 0000:01:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[   21.885053] ixgbe 0000:01:00.0: PCI Express bandwidth of 32GT/s available
[   21.885054] ixgbe 0000:01:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[   21.885389] ixgbe 0000:01:00.0: MAC: 2, PHY: 1, PBA No: G33590-000
[   21.885393] ixgbe 0000:01:00.0: e4:11:5b:9a:f4:48
[   21.927966] ixgbe 0000:01:00.0: Intel(R) 10 Gigabit Network Connection
[   22.023465] ixgbe 0000:01:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[   22.033759] ixgbe 0000:01:00.1: PCI Express bandwidth of 32GT/s available
[   22.042805] ixgbe 0000:01:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[   22.052850] ixgbe 0000:01:00.1: MAC: 2, PHY: 1, PBA No: G33590-000
[   22.060917] ixgbe 0000:01:00.1: e4:11:5b:9a:f4:49
[   22.104737] ixgbe 0000:01:00.1: Intel(R) 10 Gigabit Network Connection
[   22.203838] ixgbe 0000:21:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[   22.214138] ixgbe 0000:21:00.0: PCI Express bandwidth of 32GT/s available
[   22.223310] ixgbe 0000:21:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[   22.233092] ixgbe 0000:21:00.0: MAC: 2, PHY: 1, PBA No: G33590-000
[   22.241268] ixgbe 0000:21:00.0: e4:11:5b:9a:ed:84
[   22.248589] ip_tables: (C) 2000-2006 Netfilter Core Team
[   22.257585] ses 0:0:0:0: Attached scsi generic sg0 type 13
[   22.263946] sd 0:0:0:50: Attached scsi generic sg1 type 0
[   22.270142] sd 0:0:0:51: Attached scsi generic sg2 type 0
[   22.276382] sd 0:0:0:52: Attached scsi generic sg3 type 0
[   22.283972] sd 0:0:0:53: Attached scsi generic sg4 type 0
[   22.284504] ixgbe 0000:21:00.0: Intel(R) 10 Gigabit Network Connection
[   22.300523] sd 0:0:0:54: Attached scsi generic sg5 type 0
[   22.307423] ses 0:0:1:0: Attached scsi generic sg6 type 13
[   22.313803] sd 0:0:1:50: Attached scsi generic sg7 type 0
[   22.320115] sd 0:0:1:51: Attached scsi generic sg8 type 0
[   22.326439] sd 0:0:1:52: Attached scsi generic sg9 type 0
[   22.332725] sd 0:0:1:53: Attached scsi generic sg10 type 0
[   22.339114] sd 0:0:1:54: Attached scsi generic sg11 type 0
[   22.379597] ixgbe 0000:21:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63
[   22.389217] ixgbe 0000:21:00.1: PCI Express bandwidth of 32GT/s available
[   22.396849] ixgbe 0000:21:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[   22.405212] ixgbe 0000:21:00.1: MAC: 2, PHY: 1, PBA No: G33590-000
[   22.412154] ixgbe 0000:21:00.1: e4:11:5b:9a:ed:85
[   22.453746] ixgbe 0000:21:00.1: Intel(R) 10 Gigabit Network Connection
[   22.467412] ixgbe 0000:21:00.1 ens50403203f1: renamed from eth3
[   22.494387] systemd-udevd[1834]: renamed network interface eth3 to ens50403203f1
[   22.518371] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   22.568413] ixgbe 0000:01:00.0 eno32: renamed from eth0
[   22.585591] systemd-udevd[1835]: renamed network interface eth0 to eno32
[   22.617298] Ebtables v2.0 registered
[   22.668266] ixgbe 0000:01:00.1 ens50402691f1: renamed from eth1
[   22.705712] systemd-udevd[1839]: renamed network interface eth1 to ens50402691f1
[   22.705718] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[   22.769151] ixgbe 0000:21:00.0 eno384: renamed from eth2
[   22.790791] systemd-udevd[1840]: renamed network interface eth2 to eno384
[   22.898431] cfg80211: Calling CRDA to update world regulatory domain
[   23.000971] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
[   23.270609] ixgbe 0000:01:00.0: registered PHC device on eno32
[   23.281251] ixgbe 0000:01:00.0 eno32: NIC Link is Up 10 Gbps, Flow Control: None
[   23.597832] ixgbe 0000:01:00.1: registered PHC device on ens50402691f1
[   23.608722] ixgbe 0000:01:00.1 ens50402691f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[   23.908562] ixgbe 0000:21:00.0: registered PHC device on eno384
[   23.918991] ixgbe 0000:21:00.0 eno384: NIC Link is Up 10 Gbps, Flow Control: None
[   24.216920] ixgbe 0000:21:00.1: registered PHC device on ens50403203f1
[   24.227378] ixgbe 0000:21:00.1 ens50403203f1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[   33.256689] qla2xxx [0000:03:00.1]-8038:1: Cable is unplugged...
[48319.454576] hpilo 0000:06:00.2: Open could not dequeue a packet
[57716.150688] hpilo 0000:06:00.2: Open could not dequeue a packet
[105365.068430] hpilo 0000:06:00.2: Open could not dequeue a packet
[125704.610472] hpilo 0000:06:00.2: Open could not dequeue a packet
[210189.867789] perf interrupt took too long (2697 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
[312433.072947] hpilo 0000:06:00.2: Open could not dequeue a packet
[319465.196351] hpilo 0000:06:00.2: Open could not dequeue a packet
[454397.519972] perf interrupt took too long (5264 > 5000), lowering kernel.perf_event_max_sample_rate to 25000
[496698.512924] hpilo 0000:06:00.2: Open could not dequeue a packet
[518643.486101] hpilo 0000:06:00.2: Open could not dequeue a packet
[540406.727950] hpilo 0000:06:00.2: Closing, but controller still active
[555461.338496] hpilo 0000:06:00.2: Open could not dequeue a packet
[558403.097119] hpilo 0000:06:00.2: Open could not dequeue a packet

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: superdomex_dump.log --]
[-- Type: text/x-log; name="superdomex_dump.log", Size: 108368 bytes --]

[root@dhb5 ~]# echo c > /proc/sysrq-trigger 
[612372.032509] sysrq: SysRq : Trigger a crash
[612372.037385] BUG: unable to handle kernel NULL pointer dereference at           (null)
[612372.046291] IP: [<ffffffff8141af96>] sysrq_handle_crash+0x16/0x20
[612372.053248] PGD 7f59044067 PUD 7f59045067 PMD 0 
[612372.058554] Oops: 0002 [#1] SMP 
[612372.062290] Modules linked in: ip6t_rpfilter ip6t_REJECT nf_reject_ipv6 nf_conntrack_ipv6 nf_defrag_ipv6 ipt_REJECT nf_reject_ipv4 nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack cfg80211 rfkill ebtable_nat ebtable_broute bridge stp llc ebtable_filter ebtables ip6table_mangle ip6table_security ip6table_raw ip6table_filter ip6_tables iptable_mangle iptable_security iptable_raw iptable_filter sg ip_tables x86_pkg_temp_thermal coretemp kvm_intel kvm vfat crct10dif_pclmul fat crc32_pclmul ixgbe crc32c_intel ghash_clmulni_intel aesni_intel iTCO_wdt ptp lrw ipmi_devintf iTCO_vendor_support gf128mul ses glue_helper pps_core ablk_helper enclosure mdio hpilo hpwdt sb_edac cryptd lpc_ich ioatdma nfsd pcspkr shpchp edac_core dca mfd_core ipmi_si auth_rpcgss ipmi_msghandler nfs_acl lockd grace sunrpc ext4 jbd2 dm_service_time sd_mod mgag200 syscopyarea sysfillrect sysimgblt i2c_algo_bit drm_kms_helper ttm qla2xxx drm i2c_core scsi_transport_fc dm_mirror dm_region_hash dm_log dm_multipath dm_mod
[612372.162142] CPU: 16 PID: 25330 Comm: bash Not tainted 4.0.0-rc7.v10u2 #1
[612372.169764] Hardware name: HP Superdome2 16s x86, BIOS Bundle: 005.073.000 SFW: 015.082.000 08/08/2014
[612372.180310] task: ffff881fc84051c0 ti: ffff881f98990000 task.ti: ffff881f98990000
[612372.188808] RIP: 0010:[<ffffffff8141af96>]  [<ffffffff8141af96>] sysrq_handle_crash+0x16/0x20
[612372.198484] RSP: 0018:ffff881f98993e58  EFLAGS: 00010246
[612372.204541] RAX: 000000000000000f RBX: ffffffff81ad0fa0 RCX: 0000000000000000
[612372.212646] RDX: 0000000000000000 RSI: ffff885f7fa2e6d8 RDI: 0000000000000063
[612372.220752] RBP: ffff881f98993e58 R08: 00000000000000c2 R09: ffff889fffeb3580
[612372.228860] R10: 00000000000008e0 R11: 00000000000008df R12: 0000000000000063
[612372.236965] R13: 0000000000000000 R14: 0000000000000007 R15: 0000000000000000
[612372.245073] FS:  00007fac00982740(0000) GS:ffff885f7fa20000(0000) knlGS:0000000000000000
[612372.254251] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[612372.260795] CR2: 0000000000000000 CR3: 0000007f5e7b7000 CR4: 00000000001407e0
[612372.268903] Stack:
[612372.271256]  ffff881f98993e88 ffffffff8141b817 0000000000000002 00007fac00987000
[612372.279689]  0000000000000002 ffff881f98993f48 ffff881f98993ea8 ffffffff8141bcc3
[612372.288130]  0000000000000001 ffff887f7134b800 ffff881f98993ed8 ffffffff8125dffd
[612372.296562] Call Trace:
[612372.299407]  [<ffffffff8141b817>] __handle_sysrq+0x107/0x170
[612372.305855]  [<ffffffff8141bcc3>] write_sysrq_trigger+0x33/0x40
[612372.312602]  [<ffffffff8125dffd>] proc_reg_write+0x3d/0x80
[612372.318864]  [<ffffffff811f2f37>] vfs_write+0xb7/0x1f0
[612372.324728]  [<ffffffff8102336c>] ? do_audit_syscall_entry+0x6c/0x70
[612372.331958]  [<ffffffff811f3bb5>] SyS_write+0x55/0xd0
[612372.337728]  [<ffffffff816b7ac9>] system_call_fastpath+0x12/0x17
[612372.344566] Code: c1 f7 ff ff eb db 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 0f 1f 44 00 00 55 c7 05 f8 92 60 00 01 00 00 00 48 89 e5 0f ae f8 <c6> 04 25 00 00 00 00 01 5d c3 0f 1f 44 00 00 55 31 c0 48 89 e5 
[612372.366415] RIP  [<ffffffff8141af96>] sysrq_handle_crash+0x16/0x20
[612372.373456]  RSP <ffff881f98993e58>
[612372.377465] CR2: 0000000000000000
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.0.0-rc7.v10u2 (root@dhb5.fcux.usa.hp.com) (gcc version 4.8.2 20140120 (Red Hat 4.8.2-16) (GCC) ) #1 SMP Thu Apr 9 02:19:13 EDT 2015
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on irqpoll nr_cpus=4 reset_devices cgroup_disable=memory mce=off numa=off udev.children-max=2 panic=10 rootflags=nofail acpi_no_memhotplug disable_cpu_apicid=0 memmap=exactmap memmap=564K@4K memmap=523700K@393216K acpi_rsdp=0x7bffe014 elfcorehdr=916916K memmap=36864K#1992700K memmap=2048K#2029564K memmap=4K#4194304K memmap=4K#268435456K
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000100-0x000000000008dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000078bfefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000078bff000-0x00000000799fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000799ff000-0x000000007bdfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007bdff000-0x000000007bffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007bfff000-0x000000007bffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ff1fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000100000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000100001000-0x000000207fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000004000000000-0x0000004000000fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000004000001000-0x0000009fffffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000fdfe0000000-0x00000fdfffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe060000000-0x00000fe07fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe0e0000000-0x00000fe0ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe160000000-0x00000fe17fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe1e0000000-0x00000fe1ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe260000000-0x00000fe27fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe2e0000000-0x00000fe2ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe360000000-0x00000fe37fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe3e0000000-0x00000fe3ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe460000000-0x00000fe47fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe4e0000000-0x00000fe4ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe560000000-0x00000fe57fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe5e0000000-0x00000fe5ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe660000000-0x00000fe67fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe6e0000000-0x00000fe6ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe760000000-0x00000fe77fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000fe7e0000000-0x00000fe7ffffffff] reserved
[    0.000000] e820: last_pfn = 0xa000000 max_arch_pfn = 0x400000000
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: user-defined physical RAM map:
[    0.000000] user: [mem 0x0000000000001000-0x000000000008dfff] usable
[    0.000000] user: [mem 0x0000000018000000-0x0000000037f6cfff] usable
[    0.000000] user: [mem 0x00000000799ff000-0x000000007bffefff] ACPI data
[    0.000000] user: [mem 0x0000000100000000-0x0000000100000fff] ACPI data
[    0.000000] user: [mem 0x0000004000000000-0x0000004000000fff] ACPI data
[    0.000000] DMI not present or invalid.
[    0.000000] AGP: No AGP bridge found
[    0.000000] e820: last_pfn = 0x37f6d max_arch_pfn = 0x400000000
[    0.000000] PAT configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- UC  
[    0.000000] x2apic: enabled by BIOS, switching to x2apic ops
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000] init_memory_mapping: [mem 0x37000000-0x371fffff]
[    0.000000] init_memory_mapping: [mem 0x20000000-0x36ffffff]
[    0.000000] init_memory_mapping: [mem 0x18000000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x37200000-0x37f6cfff]
[    0.000000] RAMDISK: [mem 0x37384000-0x37f59fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000007BFFE014 000024 (v02 HP    )
[    0.000000] ACPI: XSDT 0x000000007BFFD0E8 0000AC (v01 HP     03010201 00000002 MSFT 01000013)
[    0.000000] ACPI: FACP 0x000000007BFFB000 00010C (v05 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: DSDT 0x000000007BFF1000 0004A8 (v02 HP     CORE     00000002 HPAG 00020000)
[    0.000000] ACPI: FACS 0x000000007AD00000 000040
[    0.000000] ACPI: MCEJ 0x000000007BFFC000 000130 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: HPET 0x000000007BFFA000 000038 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: MCFG 0x000000007BFF9000 00003C (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SLIT 0x000000007BFF8000 00003C (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: APIC 0x000000007BFF7000 000DA8 (v03 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SRAT 0x000000007BFF6000 000C38 (v02 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SPMI 0x000000007BFF5000 000040 (v05 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SPCR 0x000000007BFF4000 000050 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: DBGP 0x000000007BFF3000 000034 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: RASF 0x000000007BFF2000 000030 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: SSDT 0x000000007BFD7000 019FB9 (v02 HP     BLADE000 00000002 HPAG 00020000)
[    0.000000] ACPI: SSDT 0x000000007BFBD000 0196F0 (v02 HP     BLADE001 00000002 HPAG 00020000)
[    0.000000] ACPI: DMAR 0x000000007BFBB000 000368 (v01 HP     03010201 00000002 HPAG 00020000)
[    0.000000] ACPI: HEST 0x000000007BFBA000 000184 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: BERT 0x000000007BFB9000 000030 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] ACPI: EINJ 0x000000007BFB8000 000150 (v01 INTEL           00000001 INTL 00000001)
[    0.000000] Setting APIC routing to physical x2apic.
[    0.000000] NUMA turned off
[    0.000000] Faking a node at [mem 0x0000000000000000-0x0000000037f6cfff]
[    0.000000] NODE_DATA(0) allocated [mem 0x3735e000-0x37383fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x0000000037f6cfff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008dfff]
[    0.000000]   node   0: [mem 0x0000000018000000-0x0000000037f6cfff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000037f6cfff]
[    0.000000] ACPI: X2APIC (apic_id[0x00] uid[0x00] enabled)
[    0.000000] APIC: Disabling requested cpu. Processor 0/0x0 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x02] uid[0x02] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x04] uid[0x04] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x06] uid[0x06] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x08] uid[0x08] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 4/0x8 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0a] uid[0x0a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 5/0xa ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0c] uid[0x0c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 6/0xc ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0e] uid[0x0e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 7/0xe ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x10] uid[0x10] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 8/0x10 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x12] uid[0x12] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 9/0x12 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x14] uid[0x14] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 10/0x14 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x16] uid[0x16] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 11/0x16 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x18] uid[0x18] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 12/0x18 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x1a] uid[0x1a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 13/0x1a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x1c] uid[0x1c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 14/0x1c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x20] uid[0x24] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 almost reached. Keeping one slot for boot cpu.  Processor 15/0x20 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x22] uid[0x26] enabled)
[    0.000000] ACPI: X2APIC (apic_id[0x24] uid[0x28] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 17/0x24 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x26] uid[0x2a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 18/0x26 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x28] uid[0x2c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 19/0x28 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2a] uid[0x2e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 20/0x2a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2c] uid[0x30] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 21/0x2c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2e] uid[0x32] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 22/0x2e ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x30] uid[0x34] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 23/0x30 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x32] uid[0x36] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 24/0x32 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x34] uid[0x38] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 25/0x34 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x36] uid[0x3a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 26/0x36 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x38] uid[0x3c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 27/0x38 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x3a] uid[0x3e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 28/0x3a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x3c] uid[0x40] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 29/0x3c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x40] uid[0x48] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 30/0x40 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x42] uid[0x4a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 31/0x42 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x44] uid[0x4c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 32/0x44 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x46] uid[0x4e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 33/0x46 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x48] uid[0x50] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 34/0x48 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4a] uid[0x52] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 35/0x4a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4c] uid[0x54] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 36/0x4c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4e] uid[0x56] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 37/0x4e ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x50] uid[0x58] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 38/0x50 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x52] uid[0x5a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 39/0x52 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x54] uid[0x5c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 40/0x54 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x56] uid[0x5e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 41/0x56 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x58] uid[0x60] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 42/0x58 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x5a] uid[0x62] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 43/0x5a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x5c] uid[0x64] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 44/0x5c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x60] uid[0x6c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 45/0x60 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x62] uid[0x6e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 46/0x62 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x64] uid[0x70] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 47/0x64 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x66] uid[0x72] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 48/0x66 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x68] uid[0x74] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 49/0x68 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6a] uid[0x76] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 50/0x6a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6c] uid[0x78] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 51/0x6c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6e] uid[0x7a] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 52/0x6e ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x70] uid[0x7c] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 53/0x70 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x72] uid[0x7e] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 54/0x72 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x74] uid[0x80] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 55/0x74 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x76] uid[0x82] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 56/0x76 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x78] uid[0x84] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 57/0x78 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x7a] uid[0x86] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 58/0x7a ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x7c] uid[0x88] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 59/0x7c ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x01] uid[0x01] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 60/0x1 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x03] uid[0x03] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 61/0x3 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x05] uid[0x05] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 62/0x5 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x07] uid[0x07] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 63/0x7 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x09] uid[0x09] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 64/0x9 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0b] uid[0x0b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 65/0xb ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0d] uid[0x0d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 66/0xd ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x0f] uid[0x0f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 67/0xf ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x11] uid[0x11] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 68/0x11 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x13] uid[0x13] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 69/0x13 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x15] uid[0x15] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 70/0x15 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x17] uid[0x17] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 71/0x17 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x19] uid[0x19] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 72/0x19 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x1b] uid[0x1b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 73/0x1b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x1d] uid[0x1d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 74/0x1d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x21] uid[0x25] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 75/0x21 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x23] uid[0x27] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 76/0x23 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x25] uid[0x29] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 77/0x25 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x27] uid[0x2b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 78/0x27 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x29] uid[0x2d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 79/0x29 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2b] uid[0x2f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 80/0x2b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2d] uid[0x31] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 81/0x2d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x2f] uid[0x33] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 82/0x2f ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x31] uid[0x35] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 83/0x31 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x33] uid[0x37] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 84/0x33 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x35] uid[0x39] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 85/0x35 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x37] uid[0x3b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 86/0x37 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x39] uid[0x3d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 87/0x39 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x3b] uid[0x3f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 88/0x3b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x3d] uid[0x41] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 89/0x3d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x41] uid[0x49] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 90/0x41 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x43] uid[0x4b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 91/0x43 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x45] uid[0x4d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 92/0x45 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x47] uid[0x4f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 93/0x47 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x49] uid[0x51] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 94/0x49 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4b] uid[0x53] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 95/0x4b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4d] uid[0x55] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 96/0x4d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x4f] uid[0x57] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 97/0x4f ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x51] uid[0x59] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 98/0x51 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x53] uid[0x5b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 99/0x53 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x55] uid[0x5d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 100/0x55 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x57] uid[0x5f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 101/0x57 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x59] uid[0x61] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 102/0x59 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x5b] uid[0x63] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 103/0x5b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x5d] uid[0x65] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 104/0x5d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x61] uid[0x6d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 105/0x61 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x63] uid[0x6f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 106/0x63 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x65] uid[0x71] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 107/0x65 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x67] uid[0x73] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 108/0x67 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x69] uid[0x75] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 109/0x69 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6b] uid[0x77] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 110/0x6b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6d] uid[0x79] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 111/0x6d ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x6f] uid[0x7b] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 112/0x6f ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x71] uid[0x7d] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 113/0x71 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x73] uid[0x7f] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 114/0x73 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x75] uid[0x81] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 115/0x75 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x77] uid[0x83] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 116/0x77 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x79] uid[0x85] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 117/0x79 ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x7b] uid[0x87] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 118/0x7b ignored.
[    0.000000] ACPI: X2APIC (apic_id[0x7d] uid[0x89] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 119/0x7d ignored.
[    0.000000] ACPI: X2APIC_NMI (uid[0x00] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x01] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x02] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x03] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x04] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x05] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x06] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x07] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x08] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x09] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x0f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x10] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x11] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x12] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x13] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x14] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x15] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x16] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x17] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x18] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x19] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x1d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x24] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x25] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x26] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x27] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x28] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x29] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x2f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x30] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x31] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x32] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x33] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x34] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x35] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x36] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x37] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x38] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x39] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x3f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x40] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x41] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x48] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x49] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x4f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x50] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x51] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x52] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x53] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x54] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x55] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x56] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x57] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x58] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x59] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x5f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x60] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x61] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x62] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x63] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x64] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x65] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x6f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x70] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x71] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x72] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x73] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x74] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x75] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x76] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x77] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x78] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x79] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7a] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7b] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7c] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7d] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7e] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x7f] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x80] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x81] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x82] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x83] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x84] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x85] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x86] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x87] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x88] high level lint[0x1])
[    0.000000] ACPI: X2APIC_NMI (uid[0x89] high level lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x09] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec04000] gsi_base[48])
[    0.000000] IOAPIC[2]: apic_id 10, version 32, address 0xfec04000, GSI 48-71
[    0.000000] ACPI: IOAPIC (id[0x0b] address[0xfec08000] gsi_base[72])
[    0.000000] IOAPIC[3]: apic_id 11, version 32, address 0xfec08000, GSI 72-95
[    0.000000] ACPI: IOAPIC (id[0x0c] address[0xfec09000] gsi_base[96])
[    0.000000] IOAPIC[4]: apic_id 12, version 32, address 0xfec09000, GSI 96-119
[    0.000000] ACPI: IOAPIC (id[0x0d] address[0xfec0c000] gsi_base[120])
[    0.000000] IOAPIC[5]: apic_id 13, version 32, address 0xfec0c000, GSI 120-143
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[    0.000000] smpboot: 120 Processors exceeds NR_CPUS limit of 4
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008e000-0x17ffffff]
[    0.000000] e820: [mem 0x7bfff000-0xffffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 32 pages/cpu @ffff880037000000 s91544 r8192 d31336 u524288
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 128996
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.0.0-rc7.v10u2 root=UUID=227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc ro console=ttyS0,115200 rd.lvm.lv=rhel_dhb5/swap vconsole.keymap=us vconsole.font=latarcyrheb-sun16 LANG=en_US.UTF-8 intel_iommu=on irqpoll nr_cpus=4 reset_devices cgroup_disable=memory mce=off numa=off udev.children-max=2 panic=10 rootflags=nofail acpi_no_memhotplug disable_cpu_apicid=0 memmap=exactmap memmap=564K@4K memmap=523700K@393216K acpi_rsdp=0x7bffe014 elfcorehdr=916916K memmap=36864K#1992700K memmap=2048K#2029564K memmap=4K#4194304K memmap=4K#268435456K
[    0.000000] Intel-IOMMU: enabled
[    0.000000] Misrouted IRQ fixup and polling support enabled
[    0.000000] This may significantly impact system performance
[    0.000000] Disabling memory control group subsystem
[    0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[    0.000000] AGP: Checking aperture...
[    0.000000] AGP: No AGP bridge found
[    0.000000] Memory: 484896K/524264K available (6899K kernel code, 1427K rwdata, 3228K rodata, 1704K init, 2688K bss, 39368K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS:524544 nr_irqs:1024 16
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-3.
[    0.000000] Spurious LAPIC timer interrupt on cpu 0
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [ttyS0] enabled
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2793.528 MHz processor
[    0.000030] Calibrating delay loop (skipped), value calculated using timer frequency.. 5587.05 BogoMIPS (lpj=2793528)
[    0.011950] pid_max: default: 32768 minimum: 301
[    0.017136] ACPI: Core revision 20150204
[    0.030375] ACPI: All ACPI Tables successfully acquired
[    0.036276] Security Framework initialized
[    0.040879] SELinux:  Initializing.
[    0.044851] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.052761] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.060525] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
[    0.067949] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)
[    0.076007] Initializing cgroup subsys blkio
[    0.080797] Initializing cgroup subsys memory
[    0.085686] Initializing cgroup subsys devices
[    0.090671] Initializing cgroup subsys freezer
[    0.095657] Initializing cgroup subsys net_cls
[    0.100643] Initializing cgroup subsys perf_event
[    0.105921] Initializing cgroup subsys hugetlb
[    0.110936] CPU: Physical Processor ID: 1
[    0.115432] CPU: Processor Core ID: 1
[    0.119547] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.126287] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.134981] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.141135] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    0.148100] Freeing SMP alternatives memory: 28K (ffffffff81cf7000 - ffffffff81cfe000)
[    0.158353] ftrace: allocating 25687 entries in 101 pages
[    0.176442] dmar: Host address width 44
[    0.180746] dmar: DRHD base: 0x00000093ff8000 flags: 0x0
[    0.186712] dmar: IOMMU 0: reg_base_addr 93ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.195794] dmar: DRHD base: 0x00000097ff8000 flags: 0x0
[    0.201756] dmar: IOMMU 1: reg_base_addr 97ff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.210838] dmar: DRHD base: 0x0000009bff8000 flags: 0x0
[    0.216803] dmar: IOMMU 2: reg_base_addr 9bff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.225886] dmar: DRHD base: 0x0000009fff8000 flags: 0x0
[    0.231848] dmar: IOMMU 3: reg_base_addr 9fff8000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.240931] dmar: RMRR base: 0x00000079911000 end: 0x00000079913fff
[    0.247965] dmar: RMRR base: 0x0000007990e000 end: 0x00000079910fff
[    0.254998] dmar: ATSR flags: 0x0
[    0.258715] dmar: ATSR flags: 0x0
[    0.262431] dmar: ATSR flags: 0x0
[    0.266148] dmar: ATSR flags: 0x0
[    0.269863] dmar: RHSA base: 0x00000093ff8000 proximity domain: 0x0
[    0.276896] dmar: RHSA base: 0x00000097ff8000 proximity domain: 0x1
[    0.283929] dmar: RHSA base: 0x0000009bff8000 proximity domain: 0x2
[    0.290960] dmar: RHSA base: 0x0000009fff8000 proximity domain: 0x3
[    0.297994] IOAPIC id 13 under DRHD base  0x9fff8000 IOMMU 3
[    0.304342] IOAPIC id 11 under DRHD base  0x9bff8000 IOMMU 2
[    0.310692] IOAPIC id 12 under DRHD base  0x9bff8000 IOMMU 2
[    0.317041] IOAPIC id 10 under DRHD base  0x97ff8000 IOMMU 1
[    0.323391] IOAPIC id 8 under DRHD base  0x93ff8000 IOMMU 0
[    0.329645] IOAPIC id 9 under DRHD base  0x93ff8000 IOMMU 0
[    0.335897] HPET id 0 under DRHD base 0x93ff8000
[    0.342640] IR is enabled prior to OS.
[    0.346849] IR is enabled prior to OS.
[    0.351056] IR is enabled prior to OS.
[    0.355264] IR is enabled prior to OS.
[    0.359473] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.377636] Enabled IRQ remapping in x2apic mode
[    0.384371] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.401150] smpboot: CPU0: Intel(R) Xeon(R) CPU E7-2890 v2 @ 2.80GHz (fam: 06, model: 3e, stepping: 07)
[    0.411746] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Broken BIOS detected, complain to your hardware vendor.
[    0.427041] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 38d is b0)
[    0.435635] Intel PMU driver.
[    0.438964] ... version:                3
[    0.443461] ... bit width:              48
[    0.448055] ... generic registers:      4
[    0.452554] ... value mask:             0000ffffffffffff
[    0.458515] ... max period:             0000ffffffffffff
[    0.464476] ... fixed-purpose events:   3
[    0.468972] ... event mask:             000000070000000f
[    0.475539] x86: Booting SMP configuration:
[    0.480237] .... node  #0, CPUs:      #1
[    0.578185] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.587491]  #2 #3
[    0.617753] x86: Booted up 1 node, 4 CPUs
[    0.622458] smpboot: Total of 4 processors activated (22360.76 BogoMIPS)
[    0.644450] devtmpfs: initialized
[    0.649952] evm: security.selinux
[    0.653673] evm: security.ima
[    0.657000] evm: security.capability
[    0.661315] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.669287] NET: Registered protocol family 16
[    0.678998] cpuidle: using governor menu
[    0.683500] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.692000] ACPI: bus type PCI registered
[    0.696500] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.703792] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0x80000000-0x83ffffff] (base 0x80000000)
[    0.714244] PCI: not using MMCONFIG
[    0.718158] PCI: Using configuration type 1 for base access
[    0.729404] ACPI: Added _OSI(Module Device)
[    0.734101] ACPI: Added _OSI(Processor Device)
[    0.739088] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.744368] ACPI: Added _OSI(Processor Aggregator Device)
[    0.764920] ACPI: Interpreter enabled
[    0.769033] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
[    0.779425] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
[    0.789805] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20150204/hwxface-580)
[    0.800176] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20150204/hwxface-580)
[    0.810556] ACPI: (supports S0 S5)
[    0.814373] ACPI: Using IOAPIC for interrupt routing
[    0.819978] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0x80000000-0x83ffffff] (base 0x80000000)
[    0.832714] [Firmware Info]: PCI: MMCONFIG at [mem 0x80000000-0x83ffffff] not reserved in ACPI motherboard resources
[    0.844529] PCI: not using MMCONFIG
[    0.848504] HEST: Table parsing has been initialized.
[    0.854174] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.873807] APIC: Disabling requested cpu. Processor 120/0x0 ignored.
[    0.881037] ACPI: Unable to map lapic to logical cpu number
[    0.887322] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 121/0x1 ignored.
[    0.896309] ACPI: Unable to map lapic to logical cpu number
[    0.902618] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 122/0x3 ignored.
[    0.911602] ACPI: Unable to map lapic to logical cpu number
[    0.917911] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 123/0x5 ignored.
[    0.926898] ACPI: Unable to map lapic to logical cpu number
[    0.933205] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 124/0x7 ignored.
[    0.942191] ACPI: Unable to map lapic to logical cpu number
[    0.948487] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 125/0x8 ignored.
[    0.957475] ACPI: Unable to map lapic to logical cpu number
[    0.963753] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 126/0x9 ignored.
[    0.972741] ACPI: Unable to map lapic to logical cpu number
[    0.979037] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 127/0xa ignored.
[    0.988023] ACPI: Unable to map lapic to logical cpu number
[    0.994304] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 128/0xb ignored.
[    1.003290] ACPI: Unable to map lapic to logical cpu number
[    1.009585] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 129/0xc ignored.
[    1.018571] ACPI: Unable to map lapic to logical cpu number
[    1.024853] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 130/0xd ignored.
[    1.033838] ACPI: Unable to map lapic to logical cpu number
[    1.040137] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 131/0xe ignored.
[    1.049123] ACPI: Unable to map lapic to logical cpu number
[    1.055402] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 132/0xf ignored.
[    1.064389] ACPI: Unable to map lapic to logical cpu number
[    1.070684] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 133/0x10 ignored.
[    1.079766] ACPI: Unable to map lapic to logical cpu number
[    1.086047] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 134/0x11 ignored.
[    1.095131] ACPI: Unable to map lapic to logical cpu number
[    1.101426] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 135/0x12 ignored.
[    1.110510] ACPI: Unable to map lapic to logical cpu number
[    1.116789] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 136/0x13 ignored.
[    1.125875] ACPI: Unable to map lapic to logical cpu number
[    1.132170] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 137/0x14 ignored.
[    1.141253] ACPI: Unable to map lapic to logical cpu number
[    1.147533] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 138/0x15 ignored.
[    1.156616] ACPI: Unable to map lapic to logical cpu number
[    1.162912] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 139/0x16 ignored.
[    1.171996] ACPI: Unable to map lapic to logical cpu number
[    1.178277] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 140/0x17 ignored.
[    1.187359] ACPI: Unable to map lapic to logical cpu number
[    1.193655] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 141/0x18 ignored.
[    1.202738] ACPI: Unable to map lapic to logical cpu number
[    1.209018] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 142/0x19 ignored.
[    1.218101] ACPI: Unable to map lapic to logical cpu number
[    1.224397] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 143/0x1a ignored.
[    1.233480] ACPI: Unable to map lapic to logical cpu number
[    1.239759] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 144/0x1b ignored.
[    1.248842] ACPI: Unable to map lapic to logical cpu number
[    1.255138] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 145/0x1c ignored.
[    1.264220] ACPI: Unable to map lapic to logical cpu number
[    1.270499] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 146/0x1d ignored.
[    1.279581] ACPI: Unable to map lapic to logical cpu number
[    1.285890] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 147/0x20 ignored.
[    1.294974] ACPI: Unable to map lapic to logical cpu number
[    1.301254] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 148/0x21 ignored.
[    1.310337] ACPI: Unable to map lapic to logical cpu number
[    1.316644] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 149/0x23 ignored.
[    1.325726] ACPI: Unable to map lapic to logical cpu number
[    1.332023] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 150/0x24 ignored.
[    1.341107] ACPI: Unable to map lapic to logical cpu number
[    1.347387] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 151/0x25 ignored.
[    1.356470] ACPI: Unable to map lapic to logical cpu number
[    1.362765] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 152/0x26 ignored.
[    1.371849] ACPI: Unable to map lapic to logical cpu number
[    1.378128] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 153/0x27 ignored.
[    1.387211] ACPI: Unable to map lapic to logical cpu number
[    1.393507] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 154/0x28 ignored.
[    1.402589] ACPI: Unable to map lapic to logical cpu number
[    1.408869] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 155/0x29 ignored.
[    1.417953] ACPI: Unable to map lapic to logical cpu number
[    1.424248] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 156/0x2a ignored.
[    1.433332] ACPI: Unable to map lapic to logical cpu number
[    1.439612] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 157/0x2b ignored.
[    1.448696] ACPI: Unable to map lapic to logical cpu number
[    1.454991] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 158/0x2c ignored.
[    1.464074] ACPI: Unable to map lapic to logical cpu number
[    1.470354] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 159/0x2d ignored.
[    1.479437] ACPI: Unable to map lapic to logical cpu number
[    1.485732] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 160/0x2e ignored.
[    1.494815] ACPI: Unable to map lapic to logical cpu number
[    1.501093] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 161/0x2f ignored.
[    1.510177] ACPI: Unable to map lapic to logical cpu number
[    1.516472] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 162/0x30 ignored.
[    1.525555] ACPI: Unable to map lapic to logical cpu number
[    1.531834] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 163/0x31 ignored.
[    1.540917] ACPI: Unable to map lapic to logical cpu number
[    1.547214] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 164/0x32 ignored.
[    1.556296] ACPI: Unable to map lapic to logical cpu number
[    1.562579] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 165/0x33 ignored.
[    1.571663] ACPI: Unable to map lapic to logical cpu number
[    1.577957] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 166/0x34 ignored.
[    1.587040] ACPI: Unable to map lapic to logical cpu number
[    1.593320] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 167/0x35 ignored.
[    1.602405] ACPI: Unable to map lapic to logical cpu number
[    1.608701] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 168/0x36 ignored.
[    1.617785] ACPI: Unable to map lapic to logical cpu number
[    1.624064] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 169/0x37 ignored.
[    1.633146] ACPI: Unable to map lapic to logical cpu number
[    1.639441] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 170/0x38 ignored.
[    1.648525] ACPI: Unable to map lapic to logical cpu number
[    1.654803] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 171/0x39 ignored.
[    1.663886] ACPI: Unable to map lapic to logical cpu number
[    1.670181] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 172/0x3a ignored.
[    1.679263] ACPI: Unable to map lapic to logical cpu number
[    1.685542] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 173/0x3b ignored.
[    1.694625] ACPI: Unable to map lapic to logical cpu number
[    1.700923] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 174/0x3c ignored.
[    1.710008] ACPI: Unable to map lapic to logical cpu number
[    1.716288] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 175/0x3d ignored.
[    1.725371] ACPI: Unable to map lapic to logical cpu number
[    1.731651] ACPI: PCI Root Bridge [IO00] (domain 0000 [bus 00-0f])
[    1.738592] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    1.746348] acpi PNP0A08:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.757299] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    1.770239] PCI host bridge to bus 0000:00
[    1.774837] pci_bus 0000:00: root bus resource [bus 00-0f]
[    1.780995] pci_bus 0000:00: root bus resource [io  0x1000-0x3fff window]
[    1.788615] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    1.796235] pci_bus 0000:00: root bus resource [mem 0x90000000-0x93efffff window]
[    1.804635] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    1.813034] pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfedfffff window]
[    1.821434] pci_bus 0000:00: root bus resource [mem 0xfc000000000-0xfc07fffffff window]
[    1.830420] pci_bus 0000:00: root bus resource [mem 0xfe200000000-0xfe27fffffff window]
[    1.841134] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    1.846420] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    1.856959] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[    1.864840] pci 0000:00:02.2: PCI bridge to [bus 03]
[    1.870504] pci 0000:00:03.0: PCI bridge to [bus 04]
[    1.876142] pci 0000:00:11.0: PCI bridge to [bus 05]
[    1.884743] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    1.890494] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.900032] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.909572] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.919111] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.928647] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.938180] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.947713] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.957248] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    1.966778] ACPI: PCI Root Bridge [IO01] (domain 0000 [bus 10-1f])
[    1.973717] acpi PNP0A08:01: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    1.981466] acpi PNP0A08:01: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.992410] acpi PNP0A08:01: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    2.005330] PCI host bridge to bus 0000:10
[    2.009927] pci_bus 0000:10: root bus resource [bus 10-1f]
[    2.016083] pci_bus 0000:10: root bus resource [io  0x4000-0x7fff window]
[    2.023703] pci_bus 0000:10: root bus resource [mem 0x94000000-0x97ff7fff window]
[    2.032103] pci_bus 0000:10: root bus resource [mem 0xfc400000000-0xfc47fffffff window]
[    2.042477] pci 0000:10:02.0: PCI bridge to [bus 11]
[    2.048106] pci 0000:10:02.2: PCI bridge to [bus 12]
[    2.053764] pci 0000:10:03.0: PCI bridge to [bus 13]
[    2.059452] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 176/0x40 ignored.
[    2.068535] ACPI: Unable to map lapic to logical cpu number
[    2.074821] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 177/0x41 ignored.
[    2.083906] ACPI: Unable to map lapic to logical cpu number
[    2.090203] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 178/0x42 ignored.
[    2.099286] ACPI: Unable to map lapic to logical cpu number
[    2.105569] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 179/0x43 ignored.
[    2.114653] ACPI: Unable to map lapic to logical cpu number
[    2.120951] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 180/0x44 ignored.
[    2.130034] ACPI: Unable to map lapic to logical cpu number
[    2.136315] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 181/0x45 ignored.
[    2.145399] ACPI: Unable to map lapic to logical cpu number
[    2.151696] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 182/0x46 ignored.
[    2.160779] ACPI: Unable to map lapic to logical cpu number
[    2.167061] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 183/0x47 ignored.
[    2.176144] ACPI: Unable to map lapic to logical cpu number
[    2.182441] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 184/0x48 ignored.
[    2.191524] ACPI: Unable to map lapic to logical cpu number
[    2.197803] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 185/0x49 ignored.
[    2.206886] ACPI: Unable to map lapic to logical cpu number
[    2.213185] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 186/0x4a ignored.
[    2.222268] ACPI: Unable to map lapic to logical cpu number
[    2.228550] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 187/0x4b ignored.
[    2.237633] ACPI: Unable to map lapic to logical cpu number
[    2.243930] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 188/0x4c ignored.
[    2.253013] ACPI: Unable to map lapic to logical cpu number
[    2.259295] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 189/0x4d ignored.
[    2.268378] ACPI: Unable to map lapic to logical cpu number
[    2.274674] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 190/0x4e ignored.
[    2.283759] ACPI: Unable to map lapic to logical cpu number
[    2.290040] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 191/0x4f ignored.
[    2.299123] ACPI: Unable to map lapic to logical cpu number
[    2.305421] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 192/0x50 ignored.
[    2.314504] ACPI: Unable to map lapic to logical cpu number
[    2.320785] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 193/0x51 ignored.
[    2.329868] ACPI: Unable to map lapic to logical cpu number
[    2.336165] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 194/0x52 ignored.
[    2.345248] ACPI: Unable to map lapic to logical cpu number
[    2.351527] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 195/0x53 ignored.
[    2.360611] ACPI: Unable to map lapic to logical cpu number
[    2.366906] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 196/0x54 ignored.
[    2.375989] ACPI: Unable to map lapic to logical cpu number
[    2.382273] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 197/0x55 ignored.
[    2.391356] ACPI: Unable to map lapic to logical cpu number
[    2.397652] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 198/0x56 ignored.
[    2.406734] ACPI: Unable to map lapic to logical cpu number
[    2.413016] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 199/0x57 ignored.
[    2.422100] ACPI: Unable to map lapic to logical cpu number
[    2.428397] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 200/0x58 ignored.
[    2.437481] ACPI: Unable to map lapic to logical cpu number
[    2.443760] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 201/0x59 ignored.
[    2.452843] ACPI: Unable to map lapic to logical cpu number
[    2.459141] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 202/0x5a ignored.
[    2.468224] ACPI: Unable to map lapic to logical cpu number
[    2.474506] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 203/0x5b ignored.
[    2.483590] ACPI: Unable to map lapic to logical cpu number
[    2.489887] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 204/0x5c ignored.
[    2.498970] ACPI: Unable to map lapic to logical cpu number
[    2.505252] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 205/0x5d ignored.
[    2.514335] ACPI: Unable to map lapic to logical cpu number
[    2.520642] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 206/0x60 ignored.
[    2.529726] ACPI: Unable to map lapic to logical cpu number
[    2.536007] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 207/0x61 ignored.
[    2.545091] ACPI: Unable to map lapic to logical cpu number
[    2.551388] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 208/0x62 ignored.
[    2.560471] ACPI: Unable to map lapic to logical cpu number
[    2.566752] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 209/0x63 ignored.
[    2.575834] ACPI: Unable to map lapic to logical cpu number
[    2.582133] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 210/0x64 ignored.
[    2.591215] ACPI: Unable to map lapic to logical cpu number
[    2.597498] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 211/0x65 ignored.
[    2.606581] ACPI: Unable to map lapic to logical cpu number
[    2.612877] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 212/0x66 ignored.
[    2.621961] ACPI: Unable to map lapic to logical cpu number
[    2.628242] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 213/0x67 ignored.
[    2.637326] ACPI: Unable to map lapic to logical cpu number
[    2.643624] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 214/0x68 ignored.
[    2.652708] ACPI: Unable to map lapic to logical cpu number
[    2.658991] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 215/0x69 ignored.
[    2.668074] ACPI: Unable to map lapic to logical cpu number
[    2.674370] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 216/0x6a ignored.
[    2.683455] ACPI: Unable to map lapic to logical cpu number
[    2.689736] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 217/0x6b ignored.
[    2.698819] ACPI: Unable to map lapic to logical cpu number
[    2.705114] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 218/0x6c ignored.
[    2.714197] ACPI: Unable to map lapic to logical cpu number
[    2.720478] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 219/0x6d ignored.
[    2.729562] ACPI: Unable to map lapic to logical cpu number
[    2.735860] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 220/0x6e ignored.
[    2.744943] ACPI: Unable to map lapic to logical cpu number
[    2.751224] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 221/0x6f ignored.
[    2.760307] ACPI: Unable to map lapic to logical cpu number
[    2.766601] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 222/0x70 ignored.
[    2.775684] ACPI: Unable to map lapic to logical cpu number
[    2.781965] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 223/0x71 ignored.
[    2.791048] ACPI: Unable to map lapic to logical cpu number
[    2.797346] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 224/0x72 ignored.
[    2.806430] ACPI: Unable to map lapic to logical cpu number
[    2.812712] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 225/0x73 ignored.
[    2.821796] ACPI: Unable to map lapic to logical cpu number
[    2.828092] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 226/0x74 ignored.
[    2.837176] ACPI: Unable to map lapic to logical cpu number
[    2.843455] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 227/0x75 ignored.
[    2.852539] ACPI: Unable to map lapic to logical cpu number
[    2.858838] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 228/0x76 ignored.
[    2.867923] ACPI: Unable to map lapic to logical cpu number
[    2.874204] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 229/0x77 ignored.
[    2.883289] ACPI: Unable to map lapic to logical cpu number
[    2.889586] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 230/0x78 ignored.
[    2.898670] ACPI: Unable to map lapic to logical cpu number
[    2.904952] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 231/0x79 ignored.
[    2.914035] ACPI: Unable to map lapic to logical cpu number
[    2.920330] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 232/0x7a ignored.
[    2.929414] ACPI: Unable to map lapic to logical cpu number
[    2.935698] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 233/0x7b ignored.
[    2.944781] ACPI: Unable to map lapic to logical cpu number
[    2.951077] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 234/0x7c ignored.
[    2.960161] ACPI: Unable to map lapic to logical cpu number
[    2.966442] ACPI: NR_CPUS/possible_cpus limit of 4 reached.  Processor 235/0x7d ignored.
[    2.975524] ACPI: Unable to map lapic to logical cpu number
[    2.981801] ACPI: PCI Root Bridge [IO02] (domain 0000 [bus 20-2f])
[    2.988740] acpi PNP0A08:02: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    2.996491] acpi PNP0A08:02: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    3.007434] acpi PNP0A08:02: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    3.020360] PCI host bridge to bus 0000:20
[    3.024956] pci_bus 0000:20: root bus resource [bus 20-2f]
[    3.031114] pci_bus 0000:20: root bus resource [io  0x8000-0xbfff window]
[    3.038734] pci_bus 0000:20: root bus resource [mem 0x98000000-0x9befffff window]
[    3.047133] pci_bus 0000:20: root bus resource [mem 0xf0800000000-0xf087fffffff window]
[    3.057920] pci 0000:20:1c.0: Enabling MPC IRBNCE
[    3.063201] pci 0000:20:1c.0: Intel PCH root port ACS workaround enabled
[    3.072740] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[    3.078706] pci 0000:20:02.2: PCI bridge to [bus 23]
[    3.084370] pci 0000:20:03.0: PCI bridge to [bus 24]
[    3.090011] pci 0000:20:11.0: PCI bridge to [bus 25]
[    3.098606] pci 0000:20:1c.0: PCI bridge to [bus 26]
[    3.104290] ACPI: PCI Root Bridge [IO03] (domain 0000 [bus 30-3f])
[    3.111230] acpi PNP0A08:03: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    3.118981] acpi PNP0A08:03: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    3.129925] acpi PNP0A08:03: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    3.142847] PCI host bridge to bus 0000:30
[    3.147443] pci_bus 0000:30: root bus resource [bus 30-3f]
[    3.153601] pci_bus 0000:30: root bus resource [io  0xc000-0xffff window]
[    3.161221] pci_bus 0000:30: root bus resource [mem 0x9c000000-0x9fff7fff window]
[    3.169621] pci_bus 0000:30: root bus resource [mem 0xf0c00000000-0xf0c7fffffff window]
[    3.180086] pci 0000:30:02.0: PCI bridge to [bus 31]
[    3.185719] pci 0000:30:02.2: PCI bridge to [bus 32]
[    3.191383] pci 0000:30:03.0: PCI bridge to [bus 33]
[    3.197040] ACPI: Enabled 1 GPEs in block 80 to FF
[    3.202563] vgaarb: setting as boot device: PCI:0000:06:00.1
[    3.208913] vgaarb: device added: PCI:0000:06:00.1,decodes=io+mem,owns=io+mem,locks=none
[    3.218001] vgaarb: loaded
[    3.221035] vgaarb: bridge control possible 0000:06:00.1
[    3.227066] SCSI subsystem initialized
[    3.231296] ACPI: bus type USB registered
[    3.235808] usbcore: registered new interface driver usbfs
[    3.241971] usbcore: registered new interface driver hub
[    3.247949] usbcore: registered new device driver usb
[    3.253735] PCI: Using ACPI for IRQ routing
[    3.258692] NetLabel: Initializing
[    3.262509] NetLabel:  domain hash size = 128
[    3.267398] NetLabel:  protocols = UNLABELED CIPSOv4
[    3.272980] NetLabel:  unlabeled traffic allowed by default
[    3.279328] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    3.286341] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    3.294931] Switched to clocksource hpet
[    3.305360] pnp: PnP ACPI init
[    3.309898] pnp: PnP ACPI: found 2 devices
[    3.316115] pci 0000:01:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    3.327253] pci 0000:03:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[    3.338391] pci 0000:21:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    3.349525] pci 0000:21:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    3.360707] pci 0000:01:00.0: BAR 6: assigned [mem 0x90380000-0x903fffff pref]
[    3.368819] pci 0000:01:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[    3.376736] pci 0000:01:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[    3.385046] pci 0000:00:02.0: PCI bridge to [bus 01-02]
[    3.390916] pci 0000:00:02.0:   bridge window [io  0x2000-0x2fff]
[    3.397763] pci 0000:00:02.0:   bridge window [mem 0x90100000-0x903fffff]
[    3.405389] pci 0000:00:02.0:   bridge window [mem 0xfc07f800000-0xfc07fbfffff 64bit pref]
[    3.414674] pci 0000:03:00.0: BAR 6: assigned [mem 0x90000000-0x9003ffff pref]
[    3.422787] pci 0000:03:00.1: BAR 6: assigned [mem 0x90040000-0x9007ffff pref]
[    3.430896] pci 0000:00:02.2: PCI bridge to [bus 03]
[    3.436473] pci 0000:00:02.2:   bridge window [mem 0x90000000-0x900fffff]
[    3.444098] pci 0000:00:02.2:   bridge window [mem 0xfc07fc00000-0xfc07fefffff 64bit pref]
[    3.453383] pci 0000:00:03.0: PCI bridge to [bus 04]
[    3.458966] pci 0000:00:11.0: PCI bridge to [bus 05]
[    3.464554] pci 0000:06:00.2: BAR 6: assigned [mem 0x93a90000-0x93a9ffff pref]
[    3.472667] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    3.478243] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    3.485091] pci 0000:00:1c.0:   bridge window [mem 0x92000000-0x93efffff]
[    3.492757] pci 0000:10:02.0: PCI bridge to [bus 11]
[    3.498340] pci 0000:10:02.2: PCI bridge to [bus 12]
[    3.503923] pci 0000:10:03.0: PCI bridge to [bus 13]
[    3.509549] pci 0000:21:00.0: BAR 6: assigned [mem 0x98280000-0x982fffff pref]
[    3.517662] pci 0000:21:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[    3.525578] pci 0000:21:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[    3.533883] pci 0000:20:02.0: PCI bridge to [bus 21-22]
[    3.539752] pci 0000:20:02.0:   bridge window [io  0x8000-0x8fff]
[    3.546597] pci 0000:20:02.0:   bridge window [mem 0x98000000-0x982fffff]
[    3.554222] pci 0000:20:02.0:   bridge window [mem 0xf087fb00000-0xf087fefffff 64bit pref]
[    3.563508] pci 0000:20:02.2: PCI bridge to [bus 23]
[    3.569091] pci 0000:20:03.0: PCI bridge to [bus 24]
[    3.574675] pci 0000:20:11.0: PCI bridge to [bus 25]
[    3.580262] pci 0000:26:00.2: BAR 6: assigned [mem 0x9bd90000-0x9bd9ffff pref]
[    3.588372] pci 0000:20:1c.0: PCI bridge to [bus 26]
[    3.593947] pci 0000:20:1c.0:   bridge window [io  0x9000-0x9fff]
[    3.600795] pci 0000:20:1c.0:   bridge window [mem 0x9bb00000-0x9befffff]
[    3.608456] pci 0000:30:02.0: PCI bridge to [bus 31]
[    3.614039] pci 0000:30:02.2: PCI bridge to [bus 32]
[    3.619623] pci 0000:30:03.0: PCI bridge to [bus 33]
[    3.625237] NET: Registered protocol family 2
[    3.630278] TCP established hash table entries: 4096 (order: 3, 32768 bytes)
[    3.638207] TCP bind hash table entries: 4096 (order: 4, 65536 bytes)
[    3.645452] TCP: Hash tables configured (established 4096 bind 4096)
[    3.652617] TCP: reno registered
[    3.656244] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    3.662798] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    3.669873] NET: Registered protocol family 1
[    3.680606] Unpacking initramfs...
[    3.830067] Freeing initrd memory: 12120K (ffff880037384000 - ffff880037f5a000)
[    3.838765] Translation is enabled prior to OS.
[    3.843855] IOMMU Copying translate tables from panicked kernel
[    3.850546] IOMMU: root_cache:0xffff880034248000 phys:0x009f70d14000
[    3.857810] Translation is enabled prior to OS.
[    3.862896] IOMMU Copying translate tables from panicked kernel
[    3.869591] IOMMU: root_cache:0xffff88003424a000 phys:0x007f71751000
[    3.876772] Translation is enabled prior to OS.
[    3.881858] IOMMU Copying translate tables from panicked kernel
[    3.888531] IOMMU: root_cache:0xffff880031db7000 phys:0x005f71a8f000
[    3.895716] Translation is enabled prior to OS.
[    3.900803] IOMMU Copying translate tables from panicked kernel
[    3.907513] IOMMU: root_cache:0xffff8800342e9000 phys:0x001ff0a69000
[    3.914648] IOMMU: dmar3 using Queued invalidation
[    3.920028] IOMMU: dmar2 using Queued invalidation
[    3.925409] IOMMU: dmar1 using Queued invalidation
[    3.930789] IOMMU: dmar0 using Queued invalidation
[    3.936204] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[    3.945004] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    3.956961] microcode: CPU0 sig=0x306e7, pf=0x80, revision=0x70e
[    3.963708] microcode: CPU1 sig=0x306e7, pf=0x80, revision=0x70e
[    3.970461] microcode: CPU2 sig=0x306e7, pf=0x80, revision=0x70e
[    3.977207] microcode: CPU3 sig=0x306e7, pf=0x80, revision=0x70e
[    3.983993] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    3.994336] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    4.001295] Initialise system trusted keyring
[    4.006206] audit: initializing netlink subsys (disabled)
[    4.012285] audit: type=2000 audit(1429172893.405:1): initialized
[    4.019582] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    4.027738] zpool: loaded
[    4.030683] zbud: loaded
[    4.033659] VFS: Disk quotas dquot_6.5.2
[    4.038098] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.046046] Key type big_key registered
[    4.051223] alg: No test for stdrng (krng)
[    4.055833] NET: Registered protocol family 38
[    4.060830] Key type asymmetric registered
[    4.065431] Asymmetric key parser 'x509' registered
[    4.070928] bounce: pool size: 64 pages
[    4.075265] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    4.083617] io scheduler noop registered
[    4.088027] io scheduler deadline registered (default)
[    4.093826] io scheduler cfq registered
[    4.099640] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    4.105911] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    4.113559] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    4.122941] ACPI: Power Button [PWRB]
[    4.127347] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    4.135717] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
\x034.163465] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    4.172558] Non-volatile memory driver v1.3
[    4.177288] Linux agpgart interface v0.103
[    4.181991] rdac: device handler registered
[    4.186723] hp_sw: device handler registered
[    4.191519] emc: device handler registered
[    4.196118] alua: device handler registered
[    4.200838] libphy: Fixed MDIO Bus: probed
[    4.205483] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    4.212819] ehci-pci: EHCI PCI platform driver
[    4.217909] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    4.223817] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
[    4.232139] ehci-pci 0000:00:1d.0: debug port 2
[    4.241215] ehci-pci 0000:00:1d.0: irq 23, io mem 0x90400000
[    4.253141] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    4.259626] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    4.267250] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.275361] usb usb1: Product: EHCI Host Controller
[    4.280840] usb usb1: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[    4.287780] usb usb1: SerialNumber: 0000:00:1d.0
[    4.293060] hub 1-0:1.0: USB hub found
[    4.297278] hub 1-0:1.0: 2 ports detected
[    4.301946] ehci-pci 0000:20:1d.0: EHCI Host Controller
[    4.307853] ehci-pci 0000:20:1d.0: new USB bus registered, assigned bus number 2
[    4.316174] ehci-pci 0000:20:1d.0: debug port 2
[    4.325245] ehci-pci 0000:20:1d.0: irq 30, io mem 0x98300000
[    4.337246] ehci-pci 0000:20:1d.0: USB 2.0 started, EHCI 1.00
[    4.343728] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    4.351354] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.359463] usb usb2: Product: EHCI Host Controller
[    4.364940] usb usb2: Manufacturer: Linux 4.0.0-rc7.v10u2 ehci_hcd
[    4.371880] usb usb2: SerialNumber: 0000:20:1d.0
[    4.377136] hub 2-0:1.0: USB hub found
[    4.381348] hub 2-0:1.0: 2 ports detected
[    4.385908] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    4.392855] ohci-pci: OHCI PCI platform driver
[    4.397857] uhci_hcd: USB Universal Host Controller Interface driver
[    4.405064] uhci_hcd 0000:06:00.4: UHCI Host Controller
[    4.410967] uhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 3
[    4.419292] uhci_hcd 0000:06:00.4: detected 8 ports
[    4.424767] uhci_hcd 0000:06:00.4: port count misdetected? forcing to 2 ports
[    4.432818] uhci_hcd 0000:06:00.4: irq 16, io base 0x00001500
[    4.439383] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    4.447009] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.455119] usb usb3: Product: UHCI Host Controller
[    4.460596] usb usb3: Manufacturer: Linux 4.0.0-rc7.v10u2 uhci_hcd
[    4.467536] usb usb3: SerialNumber: 0000:06:00.4
[    4.472789] hub 3-0:1.0: USB hub found
[    4.477004] hub 3-0:1.0: 2 ports detected
[    4.481593] usbcore: registered new interface driver usbserial
[    4.488169] usbcore: registered new interface driver usbserial_generic
[    4.495506] usbserial: USB Serial support registered for generic
[    4.502266] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    4.948011] tsc: Refined TSC clocksource calibration: 2793.687 MHz
[    5.529759] i8042: No controller found
[    5.534014] mousedev: PS/2 mouse device common for all mice
[    5.540392] rtc_cmos 00:01: RTC can wake from S4
[    5.545705] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    5.552578] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    5.561190] Intel P-state driver initializing.
[    5.566280] hidraw: raw HID events driver (C) Jiri Kosina
[    5.572436] usbcore: registered new interface driver usbhid
[    5.578696] usbhid: USB HID core driver
[    5.583034] drop_monitor: Initializing network drop monitor service
[    5.590130] TCP: cubic registered
[    5.593854] Initializing XFRM netlink socket
[    5.598720] NET: Registered protocol family 10
[    5.603891] NET: Registered protocol family 17
[    5.608888] mce: Unable to init device /dev/mcelog (rc: -5)
[    5.615368] Loading compiled-in X.509 certificates
[    5.621393] Loaded X.509 cert 'Magrathea: Glacier signing key: 307113a598e2a4626872c8019495ffd1ab8d036a'
[    5.632053] registered taskstats version 1
[    5.635891] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    5.635903] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    5.652714] Key type trusted registered
[    5.659807] Key type encrypted registered
[    5.664317] ima: No TPM chip found, activating TPM-bypass!
[    5.670502] evm: HMAC attrs: 0x1
[    5.675242] rtc_cmos 00:01: setting system clock to 2015-04-16 08:28:19 UTC (1429172899)
[    5.685045] Freeing unused kernel memory: 1704K (ffffffff81b4d000 - ffffffff81cf7000)
[    5.696223] systemd[1]: systemd 208 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    5.710306] systemd[1]: Running in initial RAM disk.

Welcome to ^[[0;34mRed Hat Enterprise Linux Server 7.0 (Maipo) dracut-033-161.el7 (Initramfs)^[[0m!

[    5.727108] systemd[1]: Set hostname to <dhb5.fcux.usa.hp.com>.
[    5.734364] random: systemd urandom read with 3 bits of entropy available
[    5.754384] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    5.761916] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.764178] systemd[1]: Expecting device dev-disk-by\x2duuid-309f5617\x2da658\x2d49d1\x2db464\x2dcc38f471ab07.device...
[    5.782056] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    5.782057] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.782255] hub 1-1:1.0: USB hub found
[    5.782310] hub 2-1:1.0: USB hub found
[    5.782365] hub 1-1:1.0: 8 ports detected
[    5.782420] hub 2-1:1.0: 8 ports detected
         Expecting device dev-disk-by\x2duuid-309f5617\x2da65...1ab07.device...
[    5.824208] systemd[1]: Expecting device dev-mapper-rhel_dhb5\x2dswap.device...
         Expecting device dev-mapper-rhel_dhb5\x2dswap.device...
[    5.840201] systemd[1]: Expecting device dev-disk-by\x2duuid-1C36\x2d187E.device...
         Expecting device dev-disk-by\x2duuid-1C36\x2d187E.device...
[    5.856223] systemd[1]: Expecting device dev-disk-by\x2duuid-227bc7d6\x2d3f21\x2d4e34\x2db43d\x2d7f65c5e3dbcc.device...
         Expecting device dev-disk-by\x2duuid-227bc7d6\x2d3f2...3dbcc.device...
[    5.878249] systemd[1]: Starting -.slice.
[^[[32m  OK  ^[[0m] Created slice -.slice.
[    5.887258] systemd[1]: Created slice -.slice.
[    5.892301] systemd[1]: Starting System Slice.
[^[[32m  OK  ^[[0m] Created slice System Slice.
[    5.902277] systemd[1]: Created slice System Slice.
[    5.907793] systemd[1]: Starting Slices.
[^[[32m  OK  ^[[0m] Reached target Slices.
[    5.917293] systemd[1]: Reached target Slices.
[    5.922319] systemd[1]: Starting Timers.
[^[[32m  OK  ^[[0m] Reached target Timers.
[    5.931310] systemd[1]: Reached target Timers.
[    5.936340] systemd[1]: Starting Journal Socket.
[^[[32m  OK  ^[[0m] Listening on Journal Socket.
[    5.948329] systemd[1]: Listening on Journal Socket.
[    5.953915] Switched to clocksource tsc
[    5.954060] systemd[1]: Starting dracut cmdline hook...
         Starting dracut cmdline hook...
[    5.969628] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[^[[32m  OK  ^[[0m] Started Journa[    5.982669] systemd-journald[120]: Vacuuming done, freed 0 bytes
l Service.
[    5.992388] systemd[1]: Started Journal Service.
[^[[32m  OK  ^[[0m] Reached target Paths.
[^[[32m  OK  ^[[0m] Listening on udev Kernel Socket.
[^[[32m  OK  ^[[0m] Listening on udev Control Socket.
[^[[32m  OK  ^[[0m] Reached target Sockets.
         Starting Apply Kernel Variables...
         Starting Create list of required static device nodes...rrent kernel...
         Starting Device-Mapper Multipath Device Controller...
[^[[32m  OK  ^[[0m] Reached target[    6.059444] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
 Swap.
[    6.067442] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
[    6.075902] device-mapper: uevent: version 1.0.3
[^[[32m  OK  ^[[0m[    6.081236] device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised: dm-devel@redhat.com
] Reached target[    6.093418] device-mapper: multipath: version 1.8.0 loaded
 Local File Systems.
[^[[32m  OK  ^[[0m] Started dracut cmdline hook.
[^[[32m  OK  ^[[0m] Started Apply Kernel Variables.
         Starting dracut pre-udev hook...
[^[[32m  OK  ^[[0m] Started Create list of required static device nodes ...current kernel.
         Starting Create static device nodes in /dev...
[^[[32m  OK  ^[[0m] Started Device-Mapper Multipath Device Controller.
[^[[32m  OK  ^[[0m] Started Create static device nodes in /dev.
[    6.154934] usb 1-1.3: New USB device found, idVendor=0424, idProduct=2660
[    6.162877] usb 1-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.171347] hub 1-1.3:1.0: USB hub found
[    6.175860] hub 1-1.3:1.0: 2 ports detected
[    6.180140] usb 2-1.3: New USB device found, idVendor=0424, idProduct=2660
[    6.187868] usb 2-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[^[[32m  OK  ^[[0m[    6.196308] hub 2-1.3:1.0: USB hub found
] Started dracut[    6.202173] hub 2-1.3:1.0: 2 ports detected
 pre-udev hook.
         Starting udev Kernel Device Manager...
[    6.219086] systemd-udevd[237]: starting version 208
[^[[32m  OK  ^[[0m] Started udev Kernel Device Manager.
         Starting udev Coldplug all Devices...
         Mounting Configuration File System...
[^[[32m  OK  ^[[0m] Started udev Coldplug all Devices.
[^[[32m  OK  ^[[0m] Mounted Configuration File System.
         Starting dracut initqueue hook...
[^[[32m  OK  ^[[0m] Reached target System Initialization.
[^[[32m  OK  ^[[0m] Reached target Basic System.
[    6.285238] qla2xxx [0000:00:00.0]-0005: : QLogic Fibre Channel HBA Driver: 8.07.00.16-k.
[    6.294497] qla2xxx [0000:03:00.0]-011c: : MSI-X vector count: 31.
[    6.301440] qla2xxx [0000:03:00.0]-001d: : Found an ISP2031 irq 31 iobase 0xffffc900002ae000.
         Starting File System Check on /dev/disk/by-uuid/227b...7f65c5e3dbcc...
systemd-fsck[272]: fsck: error 2 (No such file or directory) while executing fsck.ext2 for /dev/disk/by-uuid/227bc7d6-3f21-4e34-b43d-7f65c5e3dbcc
[^[[32m  OK  ^[[0m] Started File System Check on /dev/disk/by-uuid/227bc...d-7f65c5e3dbcc.
[    7.679447] scsi host0: qla2xxx
[    7.683164] qla2xxx [0000:03:00.0]-00fb:0: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[    7.692065] qla2xxx [0000:03:00.0]-00fc:0: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.0 hdma- host#=0 fw=7.03.01 (d0d5).
[    7.704050] qla2xxx [0000:03:00.1]-011c: : MSI-X vector count: 31.
[    7.710995] qla2xxx [0000:03:00.1]-001d: : Found an ISP2031 irq 34 iobase 0xffffc900002b0000.
[    8.466145] qla2xxx [0000:03:00.0]-500a:0: LOOP UP detected (8 Gbps).
[    9.070190] scsi host1: qla2xxx
[    9.076242] qla2xxx [0000:03:00.1]-00fb:1: QLogic QMH2672 - HP QMH2672 16Gb 2P FC HBA.
[    9.085139] qla2xxx [0000:03:00.1]-00fc:1: ISP2031: PCIe (8.0GT/s x8) @ 0000:03:00.1 hdma- host#=1 fw=7.03.01 (d0d5).
[    9.691943] scsi: waiting for bus probes to complete ...
[   14.090926] scsi 0:0:0:0: Enclosure         HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.100122] hpwdt 0000:06:00.0: Unable to detect the 64 Bit CRU Service.
[   14.100519] scsi 0:0:0:0: alua: supports implicit TPGS
[   14.101249] scsi 0:0:0:0: alua: port group 01 rel port 05
[   14.101318] scsi 0:0:0:0: alua: port group 01 state N non-preferred supports tOlusNA
[   14.101319] scsi 0:0:0:0: alua: Attached
[   14.104988] scsi 0:0:0:50: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.105601] scsi 0:0:0:50: alua: supports implicit TPGS
[   14.105792] scsi 0:0:0:50: alua: port group 01 rel port 05
[   14.105856] scsi 0:0:0:50: alua: port group 01 state N non-preferred supports tOlusNA
[   14.105857] scsi 0:0:0:50: alua: Attached
[   14.106085] scsi 0:0:0:51: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.106424] scsi 0:0:0:51: alua: supports implicit TPGS
[   14.106782] scsi 0:0:0:51: alua: port group 01 rel port 05
[   14.107115] scsi 0:0:0:51: alua: port group 01 state N non-preferred supports tOlusNA
[   14.107116] scsi 0:0:0:51: alua: Attached
[   14.107348] scsi 0:0:0:52: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.107692] scsi 0:0:0:52: alua: supports implicit TPGS
[   14.107895] scsi 0:0:0:52: alua: port group 01 rel port 05
[   14.107957] scsi 0:0:0:52: alua: port group 01 state N non-preferred supports tOlusNA
[   14.107958] scsi 0:0:0:52: alua: Attached
[   14.108186] scsi 0:0:0:53: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.108670] scsi 0:0:0:53: alua: supports implicit TPGS
[   14.109106] scsi 0:0:0:53: alua: port group 01 rel port 05
[   14.109170] scsi 0:0:0:53: alua: port group 01 state N non-preferred supports tOlusNA
[   14.109171] scsi 0:0:0:53: alua: Attached
[   14.109392] scsi 0:0:0:54: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.109734] scsi 0:0:0:54: alua: supports implicit TPGS
[   14.109924] scsi 0:0:0:54: alua: port group 01 rel port 05
[   14.109988] scsi 0:0:0:54: alua: port group 01 state N non-preferred supports tOlusNA
[   14.109989] scsi 0:0:0:54: alua: Attached
[   14.117043] scsi 0:0:1:0: Enclosure         HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.118896] scsi 0:0:1:0: alua: supports implicit TPGS
[   14.120452] scsi 0:0:1:0: alua: port group 00 rel port 01
[   14.120521] scsi 0:0:1:0: alua: port group 00 state N non-preferred supports tOlusNA
[   14.120522] scsi 0:0:1:0: alua: Attached
[   14.122939] scsi 0:0:1:50: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.123285] scsi 0:0:1:50: alua: supports implicit TPGS
[   14.124576] scsi 0:0:1:50: alua: port group 00 rel port 01
[   14.124641] scsi 0:0:1:50: alua: port group 00 state A preferred supports tOlusNA
[   14.124642] scsi 0:0:1:50: alua: Attached
[   14.124872] scsi 0:0:1:51: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.126323] scsi 0:0:1:51: alua: supports implicit TPGS
[   14.126516] scsi 0:0:1:51: alua: port group 00 rel port 01
[   14.126581] scsi 0:0:1:51: alua: port group 00 state A preferred supports tOlusNA
[   14.126582] scsi 0:0:1:51: alua: Attached
[   14.126806] scsi 0:0:1:52: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.128246] scsi 0:0:1:52: alua: supports implicit TPGS
[   14.128441] scsi 0:0:1:52: alua: port group 00 rel port 01
[   14.128635] scsi 0:0:1:52: alua: port group 00 state A preferred supports tOlusNA
[   14.128636] scsi 0:0:1:52: alua: Attached
[   14.130766] scsi 0:0:1:53: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.132665] scsi 0:0:1:53: alua: supports implicit TPGS
[   14.134478] scsi 0:0:1:53: alua: port group 00 rel port 01
[   14.134677] scsi 0:0:1:53: alua: port group 00 state A preferred supports tOlusNA
[   14.134678] scsi 0:0:1:53: alua: Attached
[   14.136280] scsi 0:0:1:54: Direct-Access     HP       P2000 G3 FC      T251 PQ: 0 ANSI: 5
[   14.138042] scsi 0:0:1:54: alua: supports implicit TPGS
[   14.138238] scsi 0:0:1:54: alua: port group 00 rel port 01
[   14.138302] scsi 0:0:1:54: alua: port group 00 state A preferred supports tOlusNA
[   14.138303] scsi 0:0:1:54: alua: Attached
[   14.153850] [drm] Initialized drm 1.1.0 20060810
[   14.523890] [TTM] Zone  kernel: Available graphics memory: 249374 kiB
[   14.531125] [TTM] Initializing pool allocator
[   14.536022] [TTM] Initializing DMA pool allocator
[   14.570544] fbcon: mgadrmfb (fb0) is primary device
[   14.693209] Console: switching to colour frame buffer device 128x48
[   14.737835] mgag200 0000:06:00.1: fb0: mgadrmfb frame buffer device
[   14.744877] mgag200 0000:06:00.1: registered panic notifier
[   14.751428] sd 0:0:0:50: [sda] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   14.760146] sd 0:0:0:51: [sdb] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   14.760148] sd 0:0:0:54: [sde] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.760168] sd 0:0:0:53: [sdd] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.760231] sd 0:0:1:50: [sdf] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   14.760263] sd 0:0:1:51: [sdg] 126953088 512-byte logical blocks: (64.9 GB/60.5 GiB)
[   14.760664] sd 0:0:1:50: [sdf] Write Protect is off
[   14.760705] sd 0:0:1:51: [sdg] Write Protect is off
[   14.760793] sd 0:0:1:50: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.760828] sd 0:0:1:51: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.761082] sd 0:0:0:52: [sdc] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.761303] sd 0:0:1:52: [sdh] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.761314] sd 0:0:1:53: [sdi] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.761382] sd 0:0:1:54: [sdj] 144531200 512-byte logical blocks: (73.9 GB/68.9 GiB)
[   14.761910] sd 0:0:0:54: [sde] Write Protect is off
[   14.761957] sd 0:0:0:50: [sda] Write Protect is off
[   14.761976] sd 0:0:0:53: [sdd] Write Protect is off
[   14.762051] sd 0:0:0:52: [sdc] Write Protect is off
[   14.762071] sd 0:0:0:54: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762077] sd 0:0:0:50: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762134] sd 0:0:0:53: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762197] sd 0:0:0:52: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762655] sd 0:0:1:52: [sdh] Write Protect is off
[   14.762671] sd 0:0:1:53: [sdi] Write Protect is off
[   14.762679] sd 0:0:1:54: [sdj] Write Protect is off
[   14.762799] sd 0:0:1:52: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762942] sd 0:0:1:53: [sdi] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.762994] sd 0:0:1:54: [sdj] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.796120] sd 0:0:1:54: [sdj] Attached SCSI disk
[   14.804336] sd 0:0:0:54: [sde] Attached SCSI disk
[   14.807081] sd 0:0:0:53: [sdd] Attached SCSI disk
[   14.808932] random: nonblocking pool is initialized
[   14.809408] sd 0:0:0:52: [sdc] Attached SCSI disk
[   14.809649] sd 0:0:1:52: [sdh] Attached SCSI disk
[   14.809940] sd 0:0:1:53: [sdi] Attached SCSI disk
[   14.826381]  sdg: sdg1 sdg2 sdg3
[   14.836077] sd 0:0:1:51: [sdg] Attached SCSI disk
[   14.839624]  sdf: sdf1 sdf2 sdf3 sdf4
[   14.845076] sd 0:0:1:50: [sdf] Attached SCSI disk
[   14.845605]  sda: sda1 sda2 sda3 sda4
[   14.854284] sd 0:0:0:50: [sda] Attached SCSI disk
[   15.045217] sd 0:0:0:51: [sdb] Write Protect is off
[   15.050811] sd 0:0:0:51: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   15.051679] [drm] Initialized mgag200 1.0.0 20110418 for 0000:06:00.1 on minor 0
[   15.072279]  sdb: sdb1 sdb2 sdb3
[   15.076731] sd 0:0:0:51: [sdb] Attached SCSI disk
[   15.211225] device-mapper: multipath service-time: version 0.2.0 loaded
[^[[32m  OK  ^[[0m] Started dracut initqueue hook.
         Mounting /sysroot...
[^[[32m  OK  ^[[0m] Reached target Initrd Root File System.
         Starting Reload Configuration from the Real Root...
[   16.159937] EXT4-fs (dm-7): INFO: recovery required on readonly filesystem
[   16.167662] EXT4-fs (dm-7): write access will be enabled during recovery
[^[[32m  OK  ^[[0m] Started Reload Configuration from the Real Root.
[^[[32m  OK  ^[[0m] Reached target Initrd File Systems.
[^[[32m  OK  ^[[0m] Reached target Initrd Default Target.
[   16.332695] EXT4-fs (dm-7): orphan cleanup on readonly fs
[   16.364569] EXT4-fs (dm-7): 2 orphan inodes deleted
[   16.370109] EXT4-fs (dm-7): recovery complete
[   16.376741] EXT4-fs (dm-7): mounted filesystem with ordered data mode. Opts: (null)
kdump: dump target is /dev/mappe[   16.426873] EXT4-fs (dm-7): re-mounted. Opts: stripe=256,data=ordered
r/mpatha3
kdump: saving to /sysroot//var/crash/127.0.0.1-2015.04.16-04:28:30/
kdump: saving vmcore-dmesg.txt
Missing the struct log size export
kdump: saving vmcore-dmesg.txt failed
kdump: saving vmcore
\rExcluding unnecessary pages        : [  0.0 %] /\rExcluding unnecessary pages        : [  0.9 %] |\rExcluding unnecessary pages        : [ 61.8 %] \\rExcluding unnecessary pages        : [ 90.1 %] -\rExcluding unnecessary pages        : [100.0 %] /\rExcluding unnecessary pages        : [  0.0 %] |\rExcluding unnecessary pages        : [ 18.9 %] \\rExcluding unnecessary pages        : [ 72.9 %] -\rExcluding unnecessary pages        : [100.0 %] /\rCopying data                       : [  0.0 %] |\rCopying data                       : [  0.4 %] \\rCopying data                       : [  0.8 %] -\rCopying data                       : [  1.2 %] /\rCopying data                       : [  1.7 %] |\rCopying data                       : [  2.2 %] \\rCopying data                       : [  2.6 %] -[   30.166587] qla2xxx [0000:03:00.1]-8038:1: Cable is unplugged...
\rCopying data                       : [  3.1 %] /\rCopying data                       : [  3.6 %] |\rCopying data                       : [  4.1 %] \\rCopying data                       : [  4.5 %] -\rCopying data                       : [  5.0 %] /\rCopying data                       : [  5.5 %] |\rCopying data                       : [  6.0 %] \\rCopying data                       : [  6.4 %] -\rCopying data                       : [  6.9 %] /\rCopying data                       : [  7.4 %] |\rCopying data                       : [  7.9 %] \\rCopying data                       : [  8.4 %] -\rCopying data                       : [  8.8 %] /\rCopying data                       : [  9.3 %] |\rCopying data                       : [  9.8 %] \\rCopying data                       : [ 10.4 %] -\rCopying data                       : [ 11.0 %] /\rCopying data                       : [ 12.1 %] |\rCopying data                       : [ 13.1 %] \\rCopying data                       : [ 13.9 %] -\rCopying data                       : [ 14.7 %] /\rCopying data                       : [ 15.5 %] |\rCopying data                       : [ 16.3 %] \\rCopying data                       : [ 17.1 %] -\rCopying data                       : [ 17.9 %] /\rCopying data                       : [ 18.7 %] |\rCopying data                       : [ 19.5 %] \\rCopying data                       : [ 20.3 %] -\rCopying data                       : [ 21.1 %] /\rCopying data                       : [ 21.9 %] |\rCopying data                       : [ 22.7 %] \\rCopying data                       : [ 23.5 %] -\rCopying data                       : [ 24.3 %] /\rCopying data                       : [ 25.1 %] |\rCopying data                       : [ 26.0 %] \\rCopying data                       : [ 26.8 %] -\rCopying data                       : [ 27.6 %] /\rCopying data                       : [ 28.4 %] |\rCopying data                       : [ 29.2 %] \\rCopying data                       : [ 30.0 %] -\rCopying data                       : [ 30.7 %] /\rCopying data                       : [ 31.0 %] |\rCopying data                       : [ 31.4 %] \\rCopying data                       : [ 32.0 %] -\rCopying data                       : [ 32.7 %] /\rCopying data                       : [ 33.7 %] |\rCopying data                       : [ 34.7 %] \\rCopying data                       : [ 35.5 %] -\rCopying data                       : [ 36.3 %] /\rCopying data                       : [ 37.1 %] |\rCopying data                       : [ 37.9 %] \\rCopying data                       : [ 38.7 %] -\rCopying data                       : [ 39.5 %] /\rCopying data                       : [ 40.3 %] |\rCopying data                       : [ 41.1 %] \\rCopying data                       : [ 41.9 %] -\rCopying data                       : [ 42.7 %] /\rCopying data                       : [ 43.5 %] |\rCopying data                       : [ 44.3 %] \\rCopying data                       : [ 45.1 %] -\rCopying data                       : [ 45.9 %] /\rCopying data                       : [ 46.7 %] |\rCopying data                       : [ 47.5 %] \\rCopying data                       : [ 48.3 %] -\rCopying data                       : [ 49.1 %] /\rCopying data                       : [ 49.9 %] |\rCopying data                       : [ 50.7 %] \\rCopying data                       : [ 51.6 %] -\rCopying data                       : [ 52.3 %] /\rCopying data                       : [ 52.6 %] |\rCopying data                       : [ 53.0 %] \\rCopying data                       : [ 53.5 %] -\rCopying data                       : [ 53.9 %] /\rCopying data                       : [ 55.2 %] |\rCopying data                       : [ 55.7 %] \\rCopying data                       : [ 56.3 %] -\rCopying data                       : [ 57.4 %] /\rCopying data                       : [ 58.4 %] |\rCopying data                       : [ 59.2 %] \\rCopying data                       : [ 59.9 %] -\rCopying data                       : [ 60.7 %] /\rCopying data                       : [ 61.5 %] |\rCopying data                       : [ 62.3 %] \\rCopying data                       : [ 63.1 %] -\rCopying data                       : [ 63.9 %] /\rCopying data                       : [ 64.7 %] |\rCopying data                       : [ 65.4 %] \\rCopying data                       : [ 66.2 %] -\rCopying data                       : [ 67.0 %] /\rCopying data                       : [ 67.8 %] |\rCopying data                       : [ 68.6 %] \\rCopying data                       : [ 69.4 %] -\rCopying data                       : [ 70.2 %] /\rCopying data                       : [ 71.0 %] |\rCopying data                       : [ 71.7 %] \\rCopying data                       : [ 72.5 %] -\rCopying data                       : [ 73.3 %] /\rCopying data                       : [ 74.1 %] |\rCopying data                       : [ 74.9 %] \\rCopying data                       : [ 75.6 %] -\rCopying data                       : [ 76.1 %] /\rCopying data                       : [ 77.6 %] |\rCopying data                       : [ 79.7 %] \\rCopying data                       : [ 80.3 %] -\rCopying data                       : [ 81.3 %] /\rCopying data                       : [ 82.3 %] |\rCopying data                       : [ 83.1 %] \\rCopying data                       : [ 83.9 %] -\rCopying data                       : [ 84.7 %] /\rCopying data                       : [ 85.4 %] |\rCopying data                       : [ 86.2 %] \\rCopying data                       : [ 87.0 %] -\rCopying data                       : [ 87.8 %] /\rCopying data                       : [ 88.6 %] |\rCopying data                       : [ 89.4 %] \\rCopying data                       : [ 90.2 %] -\rCopying data                       : [ 91.0 %] /\rCopying data                       : [ 91.7 %] |\rCopying data                       : [ 92.5 %] \\rCopying data                       : [ 93.3 %] -\rCopying data                       : [ 94.1 %] /\rCopying data                       : [ 94.9 %] |\rCopying data                       : [ 95.7 %] \\rCopying data                       : [ 96.5 %] -\rCopying data                       : [ 97.2 %] /\rCopying data                       : [ 98.0 %] |\rCopying data                       : [ 98.8 %] \\rCopying data                       : [ 99.6 %] -\rCopying data                       : [100.0 %] /
kdump: saving vmcore complete
Rebooting.
[  158.228249] sd 0:0:1:54: [sdj] Synchronizing SCSI cache
[  158.235146] sd 0:0:1:53: [sdi] Synchronizing SCSI cache
[  158.241074] sd 0:0:1:52: [sdh] Synchronizing SCSI cache
[  158.246992] sd 0:0:1:51: [sdg] Synchronizing SCSI cache
[  158.252910] sd 0:0:1:50: [sdf] Synchronizing SCSI cache
[  158.258828] sd 0:0:0:54: [sde] Synchronizing SCSI cache
[  158.264761] sd 0:0:0:53: [sdd] Synchronizing SCSI cache
[  158.270678] sd 0:0:0:52: [sdc] Synchronizing SCSI cache
[  158.276596] sd 0:0:0:51: [sdb] Synchronizing SCSI cache
[  158.282512] sd 0:0:0:50: [sda] Synchronizing SCSI cache
[  158.304155] reboot: Restarting system
[  158.308266] reboot: machine restart

[-- Attachment #4: lspci --]
[-- Type: text/plain, Size: 43434 bytes --]

00:00.0 Host bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DMI2 (rev 07)
00:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
00:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
00:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
00:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
00:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
00:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
00:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
00:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
00:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
00:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
00:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
00:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 06)
00:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 8 (rev b6)
00:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 06)
00:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 06)
01:00.0 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
01:00.1 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
03:00.0 Fibre Channel: QLogic Corp. ISP8324-based 16Gb Fibre Channel to PCI Express Adapter (rev 02)
03:00.1 Fibre Channel: QLogic Corp. ISP8324-based 16Gb Fibre Channel to PCI Express Adapter (rev 02)
06:00.0 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Slave Instrumentation & System Support (rev 06)
06:00.1 VGA compatible controller: Matrox Electronics Systems Ltd. MGA G200EH (rev 01)
06:00.2 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Management Processor Support and Messaging (rev 06)
06:00.4 USB controller: Hewlett-Packard Company Integrated Lights-Out Standard Virtual USB Controller (rev 03)
0f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
0f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
0f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
0f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
0f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
0f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
0f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
0f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
0f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
0f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
0f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
0f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
0f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
0f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
0f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
0f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
0f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
0f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
0f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
0f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
0f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
0f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
0f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
0f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
0f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
0f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
0f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
0f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
0f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
0f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
0f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
0f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
0f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
0f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
0f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
0f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
0f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
0f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
0f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
0f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
0f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
0f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
0f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
0f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
0f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
0f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
0f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
0f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
0f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
10:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
10:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
10:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
10:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
10:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
10:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
10:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
10:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
10:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
10:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
10:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
1f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
1f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
1f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
1f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
1f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
1f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
1f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
1f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
1f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
1f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
1f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
1f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
1f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
1f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
1f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
1f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
1f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
1f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
1f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
1f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
1f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
1f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
1f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
1f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
1f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
1f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
1f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
1f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
1f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
1f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
1f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
1f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
1f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
1f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
1f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
1f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
1f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
1f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
1f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
1f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
1f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
1f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
1f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
1f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
1f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
1f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
1f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
1f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
1f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
20:00.0 Host bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DMI2 (rev 07)
20:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
20:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
20:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
20:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
20:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
20:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
20:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
20:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
20:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
20:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
20:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
20:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 06)
20:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 8 (rev b6)
20:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 06)
20:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 06)
21:00.0 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
21:00.1 Ethernet controller: Intel Corporation 82599 10 Gigabit Dual Port Backplane Connection (rev 01)
26:00.0 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Slave Instrumentation & System Support (rev 06)
26:00.2 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Management Processor Support and Messaging (rev 06)
2f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
2f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
2f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
2f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
2f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
2f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
2f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
2f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
2f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
2f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
2f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
2f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
2f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
2f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
2f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
2f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
2f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
2f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
2f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
2f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
2f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
2f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
2f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
2f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
2f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
2f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
2f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
2f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
2f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
2f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
2f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
2f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
2f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
2f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
2f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
2f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
2f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
2f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
2f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
2f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
2f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
2f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
2f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
2f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
2f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
2f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
2f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
2f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
2f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
30:02.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a (rev 07)
30:02.2 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c (rev 07)
30:03.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a (rev 07)
30:04.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 (rev 07)
30:04.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 (rev 07)
30:04.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 (rev 07)
30:04.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 (rev 07)
30:04.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 (rev 07)
30:04.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 (rev 07)
30:04.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 (rev 07)
30:04.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 (rev 07)
3f:08.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
3f:08.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 (rev 07)
3f:09.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
3f:09.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 (rev 07)
3f:0a.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 (rev 07)
3f:0a.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 (rev 07)
3f:0a.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 (rev 07)
3f:0a.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 (rev 07)
3f:0b.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
3f:0b.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers (rev 07)
3f:0c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0c.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0d.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers (rev 07)
3f:0e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
3f:0e.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 (rev 07)
3f:0f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers (rev 07)
3f:0f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers (rev 07)
3f:0f.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:0f.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:0f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:0f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers (rev 07)
3f:10.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 (rev 07)
3f:10.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 (rev 07)
3f:10.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 (rev 07)
3f:10.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 (rev 07)
3f:10.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 (rev 07)
3f:10.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 (rev 07)
3f:10.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 (rev 07)
3f:10.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 (rev 07)
3f:11.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:11.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:13.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
3f:13.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe (rev 07)
3f:13.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers (rev 07)
3f:13.5 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
3f:13.6 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring (rev 07)
3f:16.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder (rev 07)
3f:16.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
3f:16.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers (rev 07)
3f:18.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
3f:18.2 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 (rev 07)
3f:1c.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
3f:1c.1 Performance counters: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 (rev 07)
3f:1d.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers (rev 07)
3f:1d.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers (rev 07)
3f:1d.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1d.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1d.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1d.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers (rev 07)
3f:1e.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 (rev 07)
3f:1e.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 (rev 07)
3f:1e.2 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 (rev 07)
3f:1e.3 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 (rev 07)
3f:1e.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 (rev 07)
3f:1e.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 (rev 07)
3f:1e.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 (rev 07)
3f:1e.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 (rev 07)
3f:1f.0 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.1 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.4 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.5 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.6 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)
3f:1f.7 System peripheral: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO (rev 07)

[-- Attachment #5: Type: text/plain, Size: 143 bytes --]

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-23  8:38     ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-04-23  8:38 UTC (permalink / raw)
  To: Li, ZhenHua
  Cc: dwmw2, indou.takao, bhe, joro, vgoyal, dyoung, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright

[-- Attachment #1: Type: text/plain, Size: 9078 bytes --]

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@redhat.com]
>>            init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
>>
>> Changelog[v2]:
>>      The following series implements a fix for:
>>      A kdump problem about DMA that has been discussed for a long
>> time. That is,
>>      when a kernel panics and boots into the kdump kernel, DMA started
>> by the
>>      panicked kernel is not stopped before the kdump kernel is booted
>> and the
>>      kdump kernel disables the IOMMU while this DMA continues.  This
>> causes the
>>      IOMMU to stop translating the DMA addresses as IOVAs and begin to
>> treat
>>      them as physical memory addresses -- which causes the DMA to either:
>>          (1) generate DMAR errors or
>>          (2) generate PCI SERR errors or
>>          (3) transfer data to or from incorrect areas of memory. Often
>> this
>>              causes the dump to fail.
>>
>> Changelog[v1]:
>>      The original version.
>>
>> Changed in this version:
>> 1. Do not disable and re-enable traslation and interrupt remapping.
>> 2. Use old root entry table.
>> 3. Use old interrupt remapping table.
>> 4. Use "unsigned long" as physical address.
>> 5. Use intel_unmap to unmap the old dma;
>>
>> Baoquan He <bhe@redhat.com> helps testing this patchset.
>> Takao Indoh <indou.takao@jp.fujitsu.com> gives valuable suggestions.
>>
>> Li, Zhen-Hua (10):
>>    iommu/vt-d: New function to attach domain with id
>>    iommu/vt-d: Items required for kdump
>>    iommu/vt-d: Function to get old context entry
>>    iommu/vt-d: functions to copy data from old mem
>>    iommu/vt-d: Add functions to load and save old re
>>    iommu/vt-d: datatypes and functions used for kdump
>>    iommu/vt-d: enable kdump support in iommu module
>>    iommu/vt-d: assign new page table for dma_map
>>    iommu/vt-d: Copy functions for irte
>>    iommu/vt-d: Use old irte in kdump kernel
>>
>>   drivers/iommu/intel-iommu.c         | 518
>> ++++++++++++++++++++++++++++++++++--
>>   drivers/iommu/intel_irq_remapping.c |  96 ++++++-
>>   include/linux/intel-iommu.h         |  16 ++
>>   3 files changed, 605 insertions(+), 25 deletions(-)
>>
>


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: dl980_boot.log --]
[-- Type: text/x-log; name="dl980_boot.log", Size: 99170 bytes --]

^[[7l^[[0m^[[2J^[[01;01H^[[02;01H[    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@localhost.localdomain) (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\r  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@aivazian.fsnet.co.uk>, 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 ^[[0;34mRed Hat Enterprise Linux Server 7.1 (Maipo) dracut-033-240.el7 (Initramfs)^[[0m!

[    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.
[^[[32m  OK  ^[[0m] Created slice -.slice.
[   10.158755] systemd[1]: Created slice -.slice.
[   10.161164] systemd[1]: Starting System Slice.
[^[[32m  OK  ^[[0m] Created slice System Slice.
[   10.165748] systemd[1]: Created slice System Slice.
[   10.168370] systemd[1]: Starting Slices.
[^[[32m  OK  ^[[0m] Reached target Slices.
[   10.172801] systemd[1]: Reached target Slices.
[   10.175169] systemd[1]: Starting Timers.
[^[[32m  OK  ^[[0m] Reached target Timers.
[   10.179792] systemd[1]: Reached target Timers.
[   10.182204] systemd[1]: Starting Journal Socket.
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started Journal Service.
[   10.217553] systemd[1]: Started Journal Service.
[^[[32m  OK  ^[[0m] Listening on udev Kernel Socket.
[^[[32m  OK  ^[[0m] Listening on udev Control Socket.
[^[[32m  OK  ^[[0m] Reached target Sockets.
         Starting Create list of required static device nodes...rrent kernel...
         Starting Apply Kernel Variables...
[^[[32m  OK  ^[[0m] Reached target Swap.
[^[[32m  OK  ^[[0m] Reached target Local File Systems.
[^[[32m  OK  ^[[0m] Started dracut cmdline hook.
[^[[32m  OK  ^[[0m] Started Setup Virtual Console.
[^[[32m  OK  ^[[0m] Started Apply Kernel Variables.
         Starting dracut pre-udev hook...
[^[[32m  OK  ^[[0m] Started Create list of required static device nodes ...current kernel.
         Starting Create static device nodes in /dev...
[^[[32m  OK  ^[[0m] Started Create static device nodes in /dev.
[^[[32m  OK  ^[[0m] Started dracut pre-udev hook.
         Starting udev Kernel Device Manager...
[   10.498102] systemd-udevd[1189]: starting version 208
[^[[32m  OK  ^[[0m] Started udev Kernel Device Manager.
         Starting udev Coldplug all Devices...
         Mounting Configuration File System...
[^[[32m  OK  ^[[0m] Mounted Configuration File System.
[^[[32m  OK  ^[[0m] Started udev Coldplug all Devices.
         Starting dracut initqueue hook...
[^[[32m  OK  ^[[0m] Reached target System Initialization.
         Starting Show Plymouth Boot Screen...
[^[[32m  OK  ^[[0m] Started Show Plymouth Boot Screen.
[^[[32m  OK  ^[[0m] Reached target Paths.
[^[[32m  OK  ^[[0m] 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 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¨´\x1aâ  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
[^[[32m  OK  ^[[0m] Found device P2000_G3_FC.
         Starting File System Check on /dev/disk/by-uuid/ff4d...cbe023625110...
[^[[32m  OK  ^[[0m] Started dracut initqueue hook.
[^[[32m  OK  ^[[0m] Reached target Remote File Systems (Pre).
[^[[32m  OK  ^[[0m] Reached target Remote File Systems.
systemd-fsck[1307]: /sbin/fsck.xfs: XFS file system.
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Mounted /sysroot.
[^[[32m  OK  ^[[0m] Reached target Initrd Root File System.
         Starting Reload Configuration from the Real Root...
[^[[32m  OK  ^[[0m] Started Reload Configuration from the Real Root.
[^[[32m  OK  ^[[0m] Reached target Initrd File Systems.
[^[[32m  OK  ^[[0m] Reached target Initrd Default Target.
[   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 ^[[0;31mRed Hat Enterprise Linux Server 7.1 (Maipo)^[[0m!

[^[[32m  OK  ^[[0m] Stopped Switch Root.
[^[[32m  OK  ^[[0m] Stopped target Switch Root.
[^[[32m  OK  ^[[0m] Stopped target Initrd File Systems.
         Stopping File System Check on /dev/disk/by-uuid/ff4d...cbe023625110...
[^[[32m  OK  ^[[0m] Stopped File System Check on /dev/disk/by-uuid/ff4df...6-cbe023625110.
[^[[32m  OK  ^[[0m] Stopped target Initrd Root File System.
         Starting Collect Read-Ahead Data...
         Starting Replay Read-Ahead Data...
[^[[32m  OK  ^[[0m] Created slice User and Session Slice.
[^[[32m  OK  ^[[0m] Created slice system-serial\x2dgetty.slice.
         Expecting device dev-ttyS1.device...
[^[[32m  OK  ^[[0m] Created slice system-getty.slice.
[^[[32m  OK  ^[[0m] Reached target Slices.
[^[[32m  OK  ^[[0m] Listening on Delayed Shutdown Socket.
[^[[32m  OK  ^[[0m] 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.
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Listening on LVM2 metadata daemon socket.
[^[[32m  OK  ^[[0m] Listening on Device-mapper event daemon FIFOs.
         Starting Monitoring of LVM2 mirrors, snapshots etc. ...ress polling...
[^[[32m  OK  ^[[0m] Listening on udev Kernel Socket.
[^[[32m  OK  ^[[0m] Listening on udev Control Socket.
         Starting udev Coldplug all Devices...
         Expecting device dev-disk-by\x2duuid-d1b01ec1\x2d03e...c8a99.device...
[^[[32m  OK  ^[[0m] Mounted Debug File System.
[^[[32m  OK  ^[[0m] Mounted POSIX Message Queue File System.
[^[[32m  OK  ^[[0m] Mounted Huge Pages File System.
[^[[32m  OK  ^[[0m] Stopped Trigger Flushing of Journal to Persistent Storage.
         Stopping Journal Service...
[^[[32m  OK  ^[[0m] Stopped Journal Service.
         Starting Journal Service...
[^[[32m  OK  ^[[0m] Started Journal Service.
[^[[32m  OK  ^[[0m] Started Collect Read-Ahead Data.
[^[[32m  OK  ^[[0m] Started Replay Read-Ahead Data.
         Starting Load legacy module configuration...
         Starting Apply Kernel Variables...
         Starting Remount Root and Kernel File Systems...
[^[[32m  OK  ^[[0m] Started Create list of required static device nodes ...current kernel.
         Starting Create static device nodes in /dev...
         Starting LVM2 metadata daemon...
[^[[32m  OK  ^[[0m] Started LVM2 metadata daemon.
[^[[32m  OK  ^[[0m] Started Apply Kernel Variables.
[^[[32m  OK  ^[[0m] Started Remount Root and Kernel File Systems.
         Starting Configure read-only root support...
         Starting Load/Save Random Seed...
[^[[32m  OK  ^[[0m] Started Load/Save Random Seed.
[^[[32m  OK  ^[[0m] Started Create static device nodes in /dev.
         Starting udev Kernel Device Manager...
[^[[32m  OK  ^[[0m] Reached target Local File Systems (Pre).
[^[[32m  OK  ^[[0m] Started Configure read-only root support.
[^[[32m  OK  ^[[0m] Started Load legacy module configuration.
[   73.995796] systemd-udevd[1445]: starting version 208
[^[[32m  OK  ^[[0m] Started udev Kernel Device Manager.
[^[[32m  OK  ^[[0m] Started udev Coldplug all Devices.
         Starting udev Wait for Complete Device Initialization...
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Activated swap /dev/disk/by-uuid/d1b01ec1-03e9-4d8b-b63d-68d75d9c8a99.
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] 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@redhat.com
[   78.066602] floppy0: no floppy controllers found
[^[[32m  OK  ^[[0m] Started Activation of DM RAID sets.
[^[[32m  OK  ^[[0m] Reached target Local File Systems.
         Starting Import network configuration from initramfs...
         Starting Tell Plymouth To Write Out Runtime Data...
[^[[32m  OK  ^[[0m] Reached target Encrypted Volumes.
[^[[32m  OK  ^[[0m] Started Tell Plymouth To Write Out Runtime Data.
[^[[32m  OK  ^[[0m] Started Import network configuration from initramfs.
         Starting Create Volatile Files and Directories...
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Started Security Auditing Service.
         Starting Update UTMP about System Reboot/Shutdown...
[^[[32m  OK  ^[[0m] Started Update UTMP about System Reboot/Shutdown.
[^[[32m  OK  ^[[0m] Reached target System Initialization.
[^[[32m  OK  ^[[0m] Reached target Timers.
         Starting Manage Sound Card State (restore and store)...
[^[[32m  OK  ^[[0m] Started Manage Sound Card State (restore and store).
[^[[32m  OK  ^[[0m] Listening on Open-iSCSI iscsiuio Socket.
[^[[32m  OK  ^[[0m] Listening on Open-iSCSI iscsid Socket.
[^[[32m  OK  ^[[0m] Listening on RPCbind Server Activation Socket.
[^[[32m  OK  ^[[0m] Listening on CUPS Printing Service Sockets.
[^[[32m  OK  ^[[0m] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[^[[32m  OK  ^[[0m] Reached target Paths.
[^[[32m  OK  ^[[0m] Listening on D-Bus System Message Bus Socket.
[^[[32m  OK  ^[[0m] Reached target Sockets.
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started ABRT Automated Bug Reporting Tool.
         Starting ABRT kernel log watcher...
[^[[32m  OK  ^[[0m] Started ABRT kernel log watcher.
         Starting Install ABRT coredump hook...
         Starting ABRT Xorg log watcher...
[^[[32m  OK  ^[[0m] Started ABRT Xorg log watcher.
         Starting libstoragemgmt plug-in server daemon...
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started irqbalance daemon.
         Starting Self Monitoring and Reporting Technology (SMART) Daemon...
[^[[32m  OK  ^[[0m] Started Self Monitoring and Reporting Technology (SMART) Daemon.
         Starting Hardware RNG Entropy Gatherer Daemon...
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started D-Bus System Message Bus.
[^[[32m  OK  ^[[0m] Started Load CPU microcode update.
[^[[32m  OK  ^[[0m] Started Dump dmesg to /var/log/dmesg.
[^[[32m  OK  ^[[0m] Started Install ABRT coredump hook.
[^[[32m  OK  ^[[0m] Started Kernel Samepage Merging.
[^[[32m  OK  ^[[0m] Started Resets System Activity Logs.
         Starting Kernel Samepage Merging (KSM) Tuning Daemon...
[^[[32m  OK  ^[[0m] Started System Logging Service.
[^[[32m  OK  ^[[0m] Started NTP client/server.
         Starting Authorization Manager...
[^[[32m  OK  ^[[0m] Started Avahi mDNS/DNS-SD Stack.
[^[[32m  OK  ^[[0m] Started Modem Manager.
[^[[32m  OK  ^[[0m] Started RealtimeKit Scheduling Policy Service.
[^[[32m  OK  ^[[0m] Started Login Service.
[^[[32m  OK  ^[[0m] Started Kernel Samepage Merging (KSM) Tuning Daemon.
[^[[32m  OK  ^[[0m] Started Authorization Manager.
[^[[32m  OK  ^[[0m] Started Accounts Service.
[   78.884276] ip_tables: (C) 2000-2006 Netfilter Core Team
[^[[32m  OK  ^[[0m] 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.
[^[[32m  OK  ^[[0m] Started firewalld - dynamic firewall daemon.
         Starting Network Manager...
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started Network Manager Script Dispatcher Service.
[^[[32m  OK  ^[[0m] Started LSB: Bring up/down networking.
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started OpenSSH server daemon.
[^[[32m  OK  ^[[0m] Started Logout off all iSCSI sessions on shutdown.
[^[[32m  OK  ^[[0m] Started Enable periodic update of entitlement certificates..
[^[[32m  OK  ^[[0m] Reached target Remote File Systems (Pre).
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Started Trigger Flushing of Journal to Persistent Storage.
[^[[1;31mFAILED^[[0m] Failed to start LSB: Starts the Spacewalk Daemon.
See 'systemctl status rhnsd.service' for details.
         Starting Permit User Sessions...
[^[[32m  OK  ^[[0m] Started Virtualization daemon.
[^[[32m  OK  ^[[0m] Started Permit User Sessions.
         Starting Command Scheduler...
[^[[32m  OK  ^[[0m] Started Command Scheduler.
         Starting Job spooling tools...
[^[[32m  OK  ^[[0m] Started Job spooling tools.
         Starting Wait for Plymouth Boot Screen to Quit...
         Starting GNOME Display Manager...
[^[[32m  OK  ^[[0m] Started GNOME Display Manager.
[^[[32m  OK  ^[[0m] 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 ~]# 

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: dl980_dump.log --]
[-- Type: text/x-log; name="dl980_dump.log", Size: 94879 bytes --]

[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@localhost.localdomain) (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)\r  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@aivazian.fsnet.co.uk>, 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 ^[[0;34mRed Hat Enterprise Linux Server 7.1 (Maipo) dracut-033-240.el7 (Initramfs)^[[0m!

[    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.
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Created slice System Slice.
[    6.332735] systemd[1]: Created slice System Slice.
[    6.335483] systemd[1]: Starting Slices.
[^[[32m  OK  ^[[0m] Reached target Slices.
[    6.339730] systemd[1]: Reached target Slices.
[    6.342241] systemd[1]: Starting Timers.
[^[[32m  OK  ^[[0m] 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.
[^[[32m  OK  ^[[0m] Reached target Paths.
[    6.359718] systemd[1]: Reached target Paths.
[    6.362113] systemd[1]: Starting Journal Socket.
[^[[32m  OK  ^[[0m] 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 
[^[[32m  OK  ^[[0m] Started Journal Service.
[    6.618618] systemd[1]: Started Journal Service.
[^[[32m  OK  ^[[0m] Listening on udev Kernel Socket.
[^[[32m  OK  ^[[0m] Listening on udev Control Socket.
[^[[32m  OK  ^[[0m] Reached target Sockets.
         Starting Create list of required static device nodes...rrent kernel...
[^[[32m  OK  ^[[0m] Reached target Swap.
[^[[32m  OK  ^[[0m] Reached target Local File Systems.
[^[[32m  OK  ^[[0m] Started dracut cmdline hook.
         Starting dracut pre-udev hook...
[^[[32m  OK  ^[[0m] Started Create list of required static device nodes ...current kernel.
         Starting Create static device nodes in /dev...
[^[[32m  OK  ^[[0m] Started Create static device nodes in /dev.
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Started udev Kernel Device Manager.
         Starting udev Coldplug all Devices...
[^[[32m  OK  ^[[0m] Started udev Coldplug all Devices.
         Starting dracut initqueue hook...
[^[[32m  OK  ^[[0m] Reached target System Initialization.
[^[[32m  OK  ^[[0m] Reached target Basic System.
         Mounting Configuration File System...
[^[[32m  OK  ^[[0m] 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 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ\x10\f 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
[^[[32m  OK  ^[[0m] Found device P2000_G3_FC.
[^[[32m  OK  ^[[0m] Found device P2000_G3_FC.
         Starting File System Check on /dev/disk/by-uuid/ff4d...cbe023625110...
[^[[32m  OK  ^[[0m] Started dracut initqueue hook.
[^[[32m  OK  ^[[0m] Reached target Initrd Root File System.
         Starting Reload Configuration from the Real Root...
[^[[32m  OK  ^[[0m] Reached target Remote File Systems (Pre).
[^[[32m  OK  ^[[0m] Reached target Remote File Systems.
systemd-fsck[234]: /sbin/fsck.xfs: XFS file system.
[^[[32m  OK  ^[[0m] Started File System Check on /dev/disk/by-uuid/ff4df...6-cbe023625110.
         Mounting /sysroot...
[^[[32m  OK  ^[[0m] Started Reload Configuration from the Real Root.
[^[[32m  OK  ^[[0m] Reached target Initrd File Systems.
[^[[32m  OK  ^[[0m] Reached target Initrd Default Target.
[   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
\rExcluding unnecessary pages        : [  0.0 %] /\rExcluding unnecessary pages        : [100.0 %] |\rExcluding unnecessary pages        : [100.0 %] \\rExcluding unnecessary pages        : [100.0 %] -\rExcluding unnecessary pages        : [100.0 %] /\rExcluding unnecessary pages        : [100.0 %] |\rExcluding unnecessary pages        : [  0.0 %] \\rExcluding unnecessary pages        : [100.0 %] -\rExcluding unnecessary pages        : [100.0 %] /[   77.225989] random: nonblocking pool is initialized
\rCopying data                       : [  9.7 %] |\rCopying data                       : [ 29.1 %] \\rExcluding unnecessary pages        : [100.0 %] -\rCopying data                       : [ 40.2 %] /\rExcluding unnecessary pages        : [100.0 %] |\rCopying data                       : [ 50.4 %] \\rExcluding unnecessary pages        : [100.0 %] -\rExcluding unnecessary pages        : [ 79.4 %] /\rExcluding unnecessary pages        : [100.0 %] |\rCopying data                       : [ 70.8 %] \\rExcluding unnecessary pages        : [100.0 %] -\rCopying data                       : [ 79.8 %] /\rCopying data                       : [100.0 %] |\rCopying data                       : [100.0 %] \
kdump: saving vmcore complete
         Stopping Kdump Vmcore Save Service...
[^[[32m  OK  ^[[0m] Stopped Kdump Vmcore Save Service.
         Stopping dracut pre-pivot and cleanup hook...
[^[[32m  OK  ^[[0m] Stopped dracut pre-pivot and cleanup hook.
[^[[32m  OK  ^[[0m] Stopped target Remote File Systems.
[^[[32m  OK  ^[[0m] Stopped target Remote File Systems (Pre).
         Unmounting /sysroot...
[^[[32m  OK  ^[[0m] Stopped target Initrd Default Target.
[^[[32m  OK  ^[[0m] Stopped target Basic System.
[^[[32m  OK  ^[[0m] Stopped target Slices.
[^[[32m  OK  ^[[0m] Removed slice -.slice.
[^[[32m  OK  ^[[0m] Stopped target Paths.
[^[[32m  OK  ^[[0m] 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.\r[   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

[-- Attachment #4: lspci --]
[-- Type: text/plain, Size: 3253 bytes --]

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)

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-23  8:38     ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-04-23  8:38 UTC (permalink / raw)
  To: Li, ZhenHua
  Cc: bhe-H+wXaHxf7aLQT0dZR+AlfA, tom.vaden-VXdhtT5mjnY,
	rwright-VXdhtT5mjnY, dwmw2-wEGCiKHe2LqWVfeAwA7xHQ,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dyoung-H+wXaHxf7aLQT0dZR+AlfA, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

[-- Attachment #1: Type: text/plain, Size: 9161 bytes --]

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-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org]
>>            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-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> helps testing this patchset.
>> Takao Indoh <indou.takao-+CUm20s59erQFUHtdCDX3A@public.gmane.org> 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(-)
>>
>


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: dl980_boot.log --]
[-- Type: text/x-log; name="dl980_boot.log", Size: 99170 bytes --]

^[[7l^[[0m^[[2J^[[01;01H^[[02;01H[    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@localhost.localdomain) (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\r  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@aivazian.fsnet.co.uk>, 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 ^[[0;34mRed Hat Enterprise Linux Server 7.1 (Maipo) dracut-033-240.el7 (Initramfs)^[[0m!

[    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.
[^[[32m  OK  ^[[0m] Created slice -.slice.
[   10.158755] systemd[1]: Created slice -.slice.
[   10.161164] systemd[1]: Starting System Slice.
[^[[32m  OK  ^[[0m] Created slice System Slice.
[   10.165748] systemd[1]: Created slice System Slice.
[   10.168370] systemd[1]: Starting Slices.
[^[[32m  OK  ^[[0m] Reached target Slices.
[   10.172801] systemd[1]: Reached target Slices.
[   10.175169] systemd[1]: Starting Timers.
[^[[32m  OK  ^[[0m] Reached target Timers.
[   10.179792] systemd[1]: Reached target Timers.
[   10.182204] systemd[1]: Starting Journal Socket.
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started Journal Service.
[   10.217553] systemd[1]: Started Journal Service.
[^[[32m  OK  ^[[0m] Listening on udev Kernel Socket.
[^[[32m  OK  ^[[0m] Listening on udev Control Socket.
[^[[32m  OK  ^[[0m] Reached target Sockets.
         Starting Create list of required static device nodes...rrent kernel...
         Starting Apply Kernel Variables...
[^[[32m  OK  ^[[0m] Reached target Swap.
[^[[32m  OK  ^[[0m] Reached target Local File Systems.
[^[[32m  OK  ^[[0m] Started dracut cmdline hook.
[^[[32m  OK  ^[[0m] Started Setup Virtual Console.
[^[[32m  OK  ^[[0m] Started Apply Kernel Variables.
         Starting dracut pre-udev hook...
[^[[32m  OK  ^[[0m] Started Create list of required static device nodes ...current kernel.
         Starting Create static device nodes in /dev...
[^[[32m  OK  ^[[0m] Started Create static device nodes in /dev.
[^[[32m  OK  ^[[0m] Started dracut pre-udev hook.
         Starting udev Kernel Device Manager...
[   10.498102] systemd-udevd[1189]: starting version 208
[^[[32m  OK  ^[[0m] Started udev Kernel Device Manager.
         Starting udev Coldplug all Devices...
         Mounting Configuration File System...
[^[[32m  OK  ^[[0m] Mounted Configuration File System.
[^[[32m  OK  ^[[0m] Started udev Coldplug all Devices.
         Starting dracut initqueue hook...
[^[[32m  OK  ^[[0m] Reached target System Initialization.
         Starting Show Plymouth Boot Screen...
[^[[32m  OK  ^[[0m] Started Show Plymouth Boot Screen.
[^[[32m  OK  ^[[0m] Reached target Paths.
[^[[32m  OK  ^[[0m] 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 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¨´\x1aâ  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
[^[[32m  OK  ^[[0m] Found device P2000_G3_FC.
         Starting File System Check on /dev/disk/by-uuid/ff4d...cbe023625110...
[^[[32m  OK  ^[[0m] Started dracut initqueue hook.
[^[[32m  OK  ^[[0m] Reached target Remote File Systems (Pre).
[^[[32m  OK  ^[[0m] Reached target Remote File Systems.
systemd-fsck[1307]: /sbin/fsck.xfs: XFS file system.
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Mounted /sysroot.
[^[[32m  OK  ^[[0m] Reached target Initrd Root File System.
         Starting Reload Configuration from the Real Root...
[^[[32m  OK  ^[[0m] Started Reload Configuration from the Real Root.
[^[[32m  OK  ^[[0m] Reached target Initrd File Systems.
[^[[32m  OK  ^[[0m] Reached target Initrd Default Target.
[   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 ^[[0;31mRed Hat Enterprise Linux Server 7.1 (Maipo)^[[0m!

[^[[32m  OK  ^[[0m] Stopped Switch Root.
[^[[32m  OK  ^[[0m] Stopped target Switch Root.
[^[[32m  OK  ^[[0m] Stopped target Initrd File Systems.
         Stopping File System Check on /dev/disk/by-uuid/ff4d...cbe023625110...
[^[[32m  OK  ^[[0m] Stopped File System Check on /dev/disk/by-uuid/ff4df...6-cbe023625110.
[^[[32m  OK  ^[[0m] Stopped target Initrd Root File System.
         Starting Collect Read-Ahead Data...
         Starting Replay Read-Ahead Data...
[^[[32m  OK  ^[[0m] Created slice User and Session Slice.
[^[[32m  OK  ^[[0m] Created slice system-serial\x2dgetty.slice.
         Expecting device dev-ttyS1.device...
[^[[32m  OK  ^[[0m] Created slice system-getty.slice.
[^[[32m  OK  ^[[0m] Reached target Slices.
[^[[32m  OK  ^[[0m] Listening on Delayed Shutdown Socket.
[^[[32m  OK  ^[[0m] 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.
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Listening on LVM2 metadata daemon socket.
[^[[32m  OK  ^[[0m] Listening on Device-mapper event daemon FIFOs.
         Starting Monitoring of LVM2 mirrors, snapshots etc. ...ress polling...
[^[[32m  OK  ^[[0m] Listening on udev Kernel Socket.
[^[[32m  OK  ^[[0m] Listening on udev Control Socket.
         Starting udev Coldplug all Devices...
         Expecting device dev-disk-by\x2duuid-d1b01ec1\x2d03e...c8a99.device...
[^[[32m  OK  ^[[0m] Mounted Debug File System.
[^[[32m  OK  ^[[0m] Mounted POSIX Message Queue File System.
[^[[32m  OK  ^[[0m] Mounted Huge Pages File System.
[^[[32m  OK  ^[[0m] Stopped Trigger Flushing of Journal to Persistent Storage.
         Stopping Journal Service...
[^[[32m  OK  ^[[0m] Stopped Journal Service.
         Starting Journal Service...
[^[[32m  OK  ^[[0m] Started Journal Service.
[^[[32m  OK  ^[[0m] Started Collect Read-Ahead Data.
[^[[32m  OK  ^[[0m] Started Replay Read-Ahead Data.
         Starting Load legacy module configuration...
         Starting Apply Kernel Variables...
         Starting Remount Root and Kernel File Systems...
[^[[32m  OK  ^[[0m] Started Create list of required static device nodes ...current kernel.
         Starting Create static device nodes in /dev...
         Starting LVM2 metadata daemon...
[^[[32m  OK  ^[[0m] Started LVM2 metadata daemon.
[^[[32m  OK  ^[[0m] Started Apply Kernel Variables.
[^[[32m  OK  ^[[0m] Started Remount Root and Kernel File Systems.
         Starting Configure read-only root support...
         Starting Load/Save Random Seed...
[^[[32m  OK  ^[[0m] Started Load/Save Random Seed.
[^[[32m  OK  ^[[0m] Started Create static device nodes in /dev.
         Starting udev Kernel Device Manager...
[^[[32m  OK  ^[[0m] Reached target Local File Systems (Pre).
[^[[32m  OK  ^[[0m] Started Configure read-only root support.
[^[[32m  OK  ^[[0m] Started Load legacy module configuration.
[   73.995796] systemd-udevd[1445]: starting version 208
[^[[32m  OK  ^[[0m] Started udev Kernel Device Manager.
[^[[32m  OK  ^[[0m] Started udev Coldplug all Devices.
         Starting udev Wait for Complete Device Initialization...
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Activated swap /dev/disk/by-uuid/d1b01ec1-03e9-4d8b-b63d-68d75d9c8a99.
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] 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@redhat.com
[   78.066602] floppy0: no floppy controllers found
[^[[32m  OK  ^[[0m] Started Activation of DM RAID sets.
[^[[32m  OK  ^[[0m] Reached target Local File Systems.
         Starting Import network configuration from initramfs...
         Starting Tell Plymouth To Write Out Runtime Data...
[^[[32m  OK  ^[[0m] Reached target Encrypted Volumes.
[^[[32m  OK  ^[[0m] Started Tell Plymouth To Write Out Runtime Data.
[^[[32m  OK  ^[[0m] Started Import network configuration from initramfs.
         Starting Create Volatile Files and Directories...
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Started Security Auditing Service.
         Starting Update UTMP about System Reboot/Shutdown...
[^[[32m  OK  ^[[0m] Started Update UTMP about System Reboot/Shutdown.
[^[[32m  OK  ^[[0m] Reached target System Initialization.
[^[[32m  OK  ^[[0m] Reached target Timers.
         Starting Manage Sound Card State (restore and store)...
[^[[32m  OK  ^[[0m] Started Manage Sound Card State (restore and store).
[^[[32m  OK  ^[[0m] Listening on Open-iSCSI iscsiuio Socket.
[^[[32m  OK  ^[[0m] Listening on Open-iSCSI iscsid Socket.
[^[[32m  OK  ^[[0m] Listening on RPCbind Server Activation Socket.
[^[[32m  OK  ^[[0m] Listening on CUPS Printing Service Sockets.
[^[[32m  OK  ^[[0m] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[^[[32m  OK  ^[[0m] Reached target Paths.
[^[[32m  OK  ^[[0m] Listening on D-Bus System Message Bus Socket.
[^[[32m  OK  ^[[0m] Reached target Sockets.
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started ABRT Automated Bug Reporting Tool.
         Starting ABRT kernel log watcher...
[^[[32m  OK  ^[[0m] Started ABRT kernel log watcher.
         Starting Install ABRT coredump hook...
         Starting ABRT Xorg log watcher...
[^[[32m  OK  ^[[0m] Started ABRT Xorg log watcher.
         Starting libstoragemgmt plug-in server daemon...
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started irqbalance daemon.
         Starting Self Monitoring and Reporting Technology (SMART) Daemon...
[^[[32m  OK  ^[[0m] Started Self Monitoring and Reporting Technology (SMART) Daemon.
         Starting Hardware RNG Entropy Gatherer Daemon...
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started D-Bus System Message Bus.
[^[[32m  OK  ^[[0m] Started Load CPU microcode update.
[^[[32m  OK  ^[[0m] Started Dump dmesg to /var/log/dmesg.
[^[[32m  OK  ^[[0m] Started Install ABRT coredump hook.
[^[[32m  OK  ^[[0m] Started Kernel Samepage Merging.
[^[[32m  OK  ^[[0m] Started Resets System Activity Logs.
         Starting Kernel Samepage Merging (KSM) Tuning Daemon...
[^[[32m  OK  ^[[0m] Started System Logging Service.
[^[[32m  OK  ^[[0m] Started NTP client/server.
         Starting Authorization Manager...
[^[[32m  OK  ^[[0m] Started Avahi mDNS/DNS-SD Stack.
[^[[32m  OK  ^[[0m] Started Modem Manager.
[^[[32m  OK  ^[[0m] Started RealtimeKit Scheduling Policy Service.
[^[[32m  OK  ^[[0m] Started Login Service.
[^[[32m  OK  ^[[0m] Started Kernel Samepage Merging (KSM) Tuning Daemon.
[^[[32m  OK  ^[[0m] Started Authorization Manager.
[^[[32m  OK  ^[[0m] Started Accounts Service.
[   78.884276] ip_tables: (C) 2000-2006 Netfilter Core Team
[^[[32m  OK  ^[[0m] 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.
[^[[32m  OK  ^[[0m] Started firewalld - dynamic firewall daemon.
         Starting Network Manager...
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started Network Manager Script Dispatcher Service.
[^[[32m  OK  ^[[0m] Started LSB: Bring up/down networking.
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started OpenSSH server daemon.
[^[[32m  OK  ^[[0m] Started Logout off all iSCSI sessions on shutdown.
[^[[32m  OK  ^[[0m] Started Enable periodic update of entitlement certificates..
[^[[32m  OK  ^[[0m] Reached target Remote File Systems (Pre).
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Started Trigger Flushing of Journal to Persistent Storage.
[^[[1;31mFAILED^[[0m] Failed to start LSB: Starts the Spacewalk Daemon.
See 'systemctl status rhnsd.service' for details.
         Starting Permit User Sessions...
[^[[32m  OK  ^[[0m] Started Virtualization daemon.
[^[[32m  OK  ^[[0m] Started Permit User Sessions.
         Starting Command Scheduler...
[^[[32m  OK  ^[[0m] Started Command Scheduler.
         Starting Job spooling tools...
[^[[32m  OK  ^[[0m] Started Job spooling tools.
         Starting Wait for Plymouth Boot Screen to Quit...
         Starting GNOME Display Manager...
[^[[32m  OK  ^[[0m] Started GNOME Display Manager.
[^[[32m  OK  ^[[0m] 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 ~]# 

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: dl980_dump.log --]
[-- Type: text/x-log; name="dl980_dump.log", Size: 94879 bytes --]

[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@localhost.localdomain) (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)\r  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@aivazian.fsnet.co.uk>, 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 ^[[0;34mRed Hat Enterprise Linux Server 7.1 (Maipo) dracut-033-240.el7 (Initramfs)^[[0m!

[    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.
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Created slice System Slice.
[    6.332735] systemd[1]: Created slice System Slice.
[    6.335483] systemd[1]: Starting Slices.
[^[[32m  OK  ^[[0m] Reached target Slices.
[    6.339730] systemd[1]: Reached target Slices.
[    6.342241] systemd[1]: Starting Timers.
[^[[32m  OK  ^[[0m] 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.
[^[[32m  OK  ^[[0m] Reached target Paths.
[    6.359718] systemd[1]: Reached target Paths.
[    6.362113] systemd[1]: Starting Journal Socket.
[^[[32m  OK  ^[[0m] 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 
[^[[32m  OK  ^[[0m] Started Journal Service.
[    6.618618] systemd[1]: Started Journal Service.
[^[[32m  OK  ^[[0m] Listening on udev Kernel Socket.
[^[[32m  OK  ^[[0m] Listening on udev Control Socket.
[^[[32m  OK  ^[[0m] Reached target Sockets.
         Starting Create list of required static device nodes...rrent kernel...
[^[[32m  OK  ^[[0m] Reached target Swap.
[^[[32m  OK  ^[[0m] Reached target Local File Systems.
[^[[32m  OK  ^[[0m] Started dracut cmdline hook.
         Starting dracut pre-udev hook...
[^[[32m  OK  ^[[0m] Started Create list of required static device nodes ...current kernel.
         Starting Create static device nodes in /dev...
[^[[32m  OK  ^[[0m] Started Create static device nodes in /dev.
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Started udev Kernel Device Manager.
         Starting udev Coldplug all Devices...
[^[[32m  OK  ^[[0m] Started udev Coldplug all Devices.
         Starting dracut initqueue hook...
[^[[32m  OK  ^[[0m] Reached target System Initialization.
[^[[32m  OK  ^[[0m] Reached target Basic System.
         Mounting Configuration File System...
[^[[32m  OK  ^[[0m] 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 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ\x10\f 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
[^[[32m  OK  ^[[0m] Found device P2000_G3_FC.
[^[[32m  OK  ^[[0m] Found device P2000_G3_FC.
         Starting File System Check on /dev/disk/by-uuid/ff4d...cbe023625110...
[^[[32m  OK  ^[[0m] Started dracut initqueue hook.
[^[[32m  OK  ^[[0m] Reached target Initrd Root File System.
         Starting Reload Configuration from the Real Root...
[^[[32m  OK  ^[[0m] Reached target Remote File Systems (Pre).
[^[[32m  OK  ^[[0m] Reached target Remote File Systems.
systemd-fsck[234]: /sbin/fsck.xfs: XFS file system.
[^[[32m  OK  ^[[0m] Started File System Check on /dev/disk/by-uuid/ff4df...6-cbe023625110.
         Mounting /sysroot...
[^[[32m  OK  ^[[0m] Started Reload Configuration from the Real Root.
[^[[32m  OK  ^[[0m] Reached target Initrd File Systems.
[^[[32m  OK  ^[[0m] Reached target Initrd Default Target.
[   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
\rExcluding unnecessary pages        : [  0.0 %] /\rExcluding unnecessary pages        : [100.0 %] |\rExcluding unnecessary pages        : [100.0 %] \\rExcluding unnecessary pages        : [100.0 %] -\rExcluding unnecessary pages        : [100.0 %] /\rExcluding unnecessary pages        : [100.0 %] |\rExcluding unnecessary pages        : [  0.0 %] \\rExcluding unnecessary pages        : [100.0 %] -\rExcluding unnecessary pages        : [100.0 %] /[   77.225989] random: nonblocking pool is initialized
\rCopying data                       : [  9.7 %] |\rCopying data                       : [ 29.1 %] \\rExcluding unnecessary pages        : [100.0 %] -\rCopying data                       : [ 40.2 %] /\rExcluding unnecessary pages        : [100.0 %] |\rCopying data                       : [ 50.4 %] \\rExcluding unnecessary pages        : [100.0 %] -\rExcluding unnecessary pages        : [ 79.4 %] /\rExcluding unnecessary pages        : [100.0 %] |\rCopying data                       : [ 70.8 %] \\rExcluding unnecessary pages        : [100.0 %] -\rCopying data                       : [ 79.8 %] /\rCopying data                       : [100.0 %] |\rCopying data                       : [100.0 %] \
kdump: saving vmcore complete
         Stopping Kdump Vmcore Save Service...
[^[[32m  OK  ^[[0m] Stopped Kdump Vmcore Save Service.
         Stopping dracut pre-pivot and cleanup hook...
[^[[32m  OK  ^[[0m] Stopped dracut pre-pivot and cleanup hook.
[^[[32m  OK  ^[[0m] Stopped target Remote File Systems.
[^[[32m  OK  ^[[0m] Stopped target Remote File Systems (Pre).
         Unmounting /sysroot...
[^[[32m  OK  ^[[0m] Stopped target Initrd Default Target.
[^[[32m  OK  ^[[0m] Stopped target Basic System.
[^[[32m  OK  ^[[0m] Stopped target Slices.
[^[[32m  OK  ^[[0m] Removed slice -.slice.
[^[[32m  OK  ^[[0m] Stopped target Paths.
[^[[32m  OK  ^[[0m] 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.\r[   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

[-- Attachment #4: lspci --]
[-- Type: text/plain, Size: 3253 bytes --]

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)

[-- Attachment #5: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-23  8:38     ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-04-23  8:38 UTC (permalink / raw)
  To: Li, ZhenHua
  Cc: alex.williamson, indou.takao, bhe, tom.vaden, rwright, dwmw2,
	joro, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	ddutile, doug.hatch, ishii.hironobu, linux-pci, bhelgaas,
	billsumnerlinux, li.zhang6, dyoung, vgoyal

[-- Attachment #1: Type: text/plain, Size: 9078 bytes --]

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@redhat.com]
>>            init_iova_domain(&domain->iovad, DMA_32BIT_PFN);
>>
>> Changelog[v2]:
>>      The following series implements a fix for:
>>      A kdump problem about DMA that has been discussed for a long
>> time. That is,
>>      when a kernel panics and boots into the kdump kernel, DMA started
>> by the
>>      panicked kernel is not stopped before the kdump kernel is booted
>> and the
>>      kdump kernel disables the IOMMU while this DMA continues.  This
>> causes the
>>      IOMMU to stop translating the DMA addresses as IOVAs and begin to
>> treat
>>      them as physical memory addresses -- which causes the DMA to either:
>>          (1) generate DMAR errors or
>>          (2) generate PCI SERR errors or
>>          (3) transfer data to or from incorrect areas of memory. Often
>> this
>>              causes the dump to fail.
>>
>> Changelog[v1]:
>>      The original version.
>>
>> Changed in this version:
>> 1. Do not disable and re-enable traslation and interrupt remapping.
>> 2. Use old root entry table.
>> 3. Use old interrupt remapping table.
>> 4. Use "unsigned long" as physical address.
>> 5. Use intel_unmap to unmap the old dma;
>>
>> Baoquan He <bhe@redhat.com> helps testing this patchset.
>> Takao Indoh <indou.takao@jp.fujitsu.com> gives valuable suggestions.
>>
>> Li, Zhen-Hua (10):
>>    iommu/vt-d: New function to attach domain with id
>>    iommu/vt-d: Items required for kdump
>>    iommu/vt-d: Function to get old context entry
>>    iommu/vt-d: functions to copy data from old mem
>>    iommu/vt-d: Add functions to load and save old re
>>    iommu/vt-d: datatypes and functions used for kdump
>>    iommu/vt-d: enable kdump support in iommu module
>>    iommu/vt-d: assign new page table for dma_map
>>    iommu/vt-d: Copy functions for irte
>>    iommu/vt-d: Use old irte in kdump kernel
>>
>>   drivers/iommu/intel-iommu.c         | 518
>> ++++++++++++++++++++++++++++++++++--
>>   drivers/iommu/intel_irq_remapping.c |  96 ++++++-
>>   include/linux/intel-iommu.h         |  16 ++
>>   3 files changed, 605 insertions(+), 25 deletions(-)
>>
>


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: dl980_boot.log --]
[-- Type: text/x-log; name="dl980_boot.log", Size: 99170 bytes --]

^[[7l^[[0m^[[2J^[[01;01H^[[02;01H[    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@localhost.localdomain) (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\r  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@aivazian.fsnet.co.uk>, 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 ^[[0;34mRed Hat Enterprise Linux Server 7.1 (Maipo) dracut-033-240.el7 (Initramfs)^[[0m!

[    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.
[^[[32m  OK  ^[[0m] Created slice -.slice.
[   10.158755] systemd[1]: Created slice -.slice.
[   10.161164] systemd[1]: Starting System Slice.
[^[[32m  OK  ^[[0m] Created slice System Slice.
[   10.165748] systemd[1]: Created slice System Slice.
[   10.168370] systemd[1]: Starting Slices.
[^[[32m  OK  ^[[0m] Reached target Slices.
[   10.172801] systemd[1]: Reached target Slices.
[   10.175169] systemd[1]: Starting Timers.
[^[[32m  OK  ^[[0m] Reached target Timers.
[   10.179792] systemd[1]: Reached target Timers.
[   10.182204] systemd[1]: Starting Journal Socket.
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started Journal Service.
[   10.217553] systemd[1]: Started Journal Service.
[^[[32m  OK  ^[[0m] Listening on udev Kernel Socket.
[^[[32m  OK  ^[[0m] Listening on udev Control Socket.
[^[[32m  OK  ^[[0m] Reached target Sockets.
         Starting Create list of required static device nodes...rrent kernel...
         Starting Apply Kernel Variables...
[^[[32m  OK  ^[[0m] Reached target Swap.
[^[[32m  OK  ^[[0m] Reached target Local File Systems.
[^[[32m  OK  ^[[0m] Started dracut cmdline hook.
[^[[32m  OK  ^[[0m] Started Setup Virtual Console.
[^[[32m  OK  ^[[0m] Started Apply Kernel Variables.
         Starting dracut pre-udev hook...
[^[[32m  OK  ^[[0m] Started Create list of required static device nodes ...current kernel.
         Starting Create static device nodes in /dev...
[^[[32m  OK  ^[[0m] Started Create static device nodes in /dev.
[^[[32m  OK  ^[[0m] Started dracut pre-udev hook.
         Starting udev Kernel Device Manager...
[   10.498102] systemd-udevd[1189]: starting version 208
[^[[32m  OK  ^[[0m] Started udev Kernel Device Manager.
         Starting udev Coldplug all Devices...
         Mounting Configuration File System...
[^[[32m  OK  ^[[0m] Mounted Configuration File System.
[^[[32m  OK  ^[[0m] Started udev Coldplug all Devices.
         Starting dracut initqueue hook...
[^[[32m  OK  ^[[0m] Reached target System Initialization.
         Starting Show Plymouth Boot Screen...
[^[[32m  OK  ^[[0m] Started Show Plymouth Boot Screen.
[^[[32m  OK  ^[[0m] Reached target Paths.
[^[[32m  OK  ^[[0m] 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 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¨´\x1aâ  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
[^[[32m  OK  ^[[0m] Found device P2000_G3_FC.
         Starting File System Check on /dev/disk/by-uuid/ff4d...cbe023625110...
[^[[32m  OK  ^[[0m] Started dracut initqueue hook.
[^[[32m  OK  ^[[0m] Reached target Remote File Systems (Pre).
[^[[32m  OK  ^[[0m] Reached target Remote File Systems.
systemd-fsck[1307]: /sbin/fsck.xfs: XFS file system.
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Mounted /sysroot.
[^[[32m  OK  ^[[0m] Reached target Initrd Root File System.
         Starting Reload Configuration from the Real Root...
[^[[32m  OK  ^[[0m] Started Reload Configuration from the Real Root.
[^[[32m  OK  ^[[0m] Reached target Initrd File Systems.
[^[[32m  OK  ^[[0m] Reached target Initrd Default Target.
[   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 ^[[0;31mRed Hat Enterprise Linux Server 7.1 (Maipo)^[[0m!

[^[[32m  OK  ^[[0m] Stopped Switch Root.
[^[[32m  OK  ^[[0m] Stopped target Switch Root.
[^[[32m  OK  ^[[0m] Stopped target Initrd File Systems.
         Stopping File System Check on /dev/disk/by-uuid/ff4d...cbe023625110...
[^[[32m  OK  ^[[0m] Stopped File System Check on /dev/disk/by-uuid/ff4df...6-cbe023625110.
[^[[32m  OK  ^[[0m] Stopped target Initrd Root File System.
         Starting Collect Read-Ahead Data...
         Starting Replay Read-Ahead Data...
[^[[32m  OK  ^[[0m] Created slice User and Session Slice.
[^[[32m  OK  ^[[0m] Created slice system-serial\x2dgetty.slice.
         Expecting device dev-ttyS1.device...
[^[[32m  OK  ^[[0m] Created slice system-getty.slice.
[^[[32m  OK  ^[[0m] Reached target Slices.
[^[[32m  OK  ^[[0m] Listening on Delayed Shutdown Socket.
[^[[32m  OK  ^[[0m] 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.
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Listening on LVM2 metadata daemon socket.
[^[[32m  OK  ^[[0m] Listening on Device-mapper event daemon FIFOs.
         Starting Monitoring of LVM2 mirrors, snapshots etc. ...ress polling...
[^[[32m  OK  ^[[0m] Listening on udev Kernel Socket.
[^[[32m  OK  ^[[0m] Listening on udev Control Socket.
         Starting udev Coldplug all Devices...
         Expecting device dev-disk-by\x2duuid-d1b01ec1\x2d03e...c8a99.device...
[^[[32m  OK  ^[[0m] Mounted Debug File System.
[^[[32m  OK  ^[[0m] Mounted POSIX Message Queue File System.
[^[[32m  OK  ^[[0m] Mounted Huge Pages File System.
[^[[32m  OK  ^[[0m] Stopped Trigger Flushing of Journal to Persistent Storage.
         Stopping Journal Service...
[^[[32m  OK  ^[[0m] Stopped Journal Service.
         Starting Journal Service...
[^[[32m  OK  ^[[0m] Started Journal Service.
[^[[32m  OK  ^[[0m] Started Collect Read-Ahead Data.
[^[[32m  OK  ^[[0m] Started Replay Read-Ahead Data.
         Starting Load legacy module configuration...
         Starting Apply Kernel Variables...
         Starting Remount Root and Kernel File Systems...
[^[[32m  OK  ^[[0m] Started Create list of required static device nodes ...current kernel.
         Starting Create static device nodes in /dev...
         Starting LVM2 metadata daemon...
[^[[32m  OK  ^[[0m] Started LVM2 metadata daemon.
[^[[32m  OK  ^[[0m] Started Apply Kernel Variables.
[^[[32m  OK  ^[[0m] Started Remount Root and Kernel File Systems.
         Starting Configure read-only root support...
         Starting Load/Save Random Seed...
[^[[32m  OK  ^[[0m] Started Load/Save Random Seed.
[^[[32m  OK  ^[[0m] Started Create static device nodes in /dev.
         Starting udev Kernel Device Manager...
[^[[32m  OK  ^[[0m] Reached target Local File Systems (Pre).
[^[[32m  OK  ^[[0m] Started Configure read-only root support.
[^[[32m  OK  ^[[0m] Started Load legacy module configuration.
[   73.995796] systemd-udevd[1445]: starting version 208
[^[[32m  OK  ^[[0m] Started udev Kernel Device Manager.
[^[[32m  OK  ^[[0m] Started udev Coldplug all Devices.
         Starting udev Wait for Complete Device Initialization...
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Activated swap /dev/disk/by-uuid/d1b01ec1-03e9-4d8b-b63d-68d75d9c8a99.
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] 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@redhat.com
[   78.066602] floppy0: no floppy controllers found
[^[[32m  OK  ^[[0m] Started Activation of DM RAID sets.
[^[[32m  OK  ^[[0m] Reached target Local File Systems.
         Starting Import network configuration from initramfs...
         Starting Tell Plymouth To Write Out Runtime Data...
[^[[32m  OK  ^[[0m] Reached target Encrypted Volumes.
[^[[32m  OK  ^[[0m] Started Tell Plymouth To Write Out Runtime Data.
[^[[32m  OK  ^[[0m] Started Import network configuration from initramfs.
         Starting Create Volatile Files and Directories...
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Started Security Auditing Service.
         Starting Update UTMP about System Reboot/Shutdown...
[^[[32m  OK  ^[[0m] Started Update UTMP about System Reboot/Shutdown.
[^[[32m  OK  ^[[0m] Reached target System Initialization.
[^[[32m  OK  ^[[0m] Reached target Timers.
         Starting Manage Sound Card State (restore and store)...
[^[[32m  OK  ^[[0m] Started Manage Sound Card State (restore and store).
[^[[32m  OK  ^[[0m] Listening on Open-iSCSI iscsiuio Socket.
[^[[32m  OK  ^[[0m] Listening on Open-iSCSI iscsid Socket.
[^[[32m  OK  ^[[0m] Listening on RPCbind Server Activation Socket.
[^[[32m  OK  ^[[0m] Listening on CUPS Printing Service Sockets.
[^[[32m  OK  ^[[0m] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[^[[32m  OK  ^[[0m] Reached target Paths.
[^[[32m  OK  ^[[0m] Listening on D-Bus System Message Bus Socket.
[^[[32m  OK  ^[[0m] Reached target Sockets.
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started ABRT Automated Bug Reporting Tool.
         Starting ABRT kernel log watcher...
[^[[32m  OK  ^[[0m] Started ABRT kernel log watcher.
         Starting Install ABRT coredump hook...
         Starting ABRT Xorg log watcher...
[^[[32m  OK  ^[[0m] Started ABRT Xorg log watcher.
         Starting libstoragemgmt plug-in server daemon...
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started irqbalance daemon.
         Starting Self Monitoring and Reporting Technology (SMART) Daemon...
[^[[32m  OK  ^[[0m] Started Self Monitoring and Reporting Technology (SMART) Daemon.
         Starting Hardware RNG Entropy Gatherer Daemon...
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started D-Bus System Message Bus.
[^[[32m  OK  ^[[0m] Started Load CPU microcode update.
[^[[32m  OK  ^[[0m] Started Dump dmesg to /var/log/dmesg.
[^[[32m  OK  ^[[0m] Started Install ABRT coredump hook.
[^[[32m  OK  ^[[0m] Started Kernel Samepage Merging.
[^[[32m  OK  ^[[0m] Started Resets System Activity Logs.
         Starting Kernel Samepage Merging (KSM) Tuning Daemon...
[^[[32m  OK  ^[[0m] Started System Logging Service.
[^[[32m  OK  ^[[0m] Started NTP client/server.
         Starting Authorization Manager...
[^[[32m  OK  ^[[0m] Started Avahi mDNS/DNS-SD Stack.
[^[[32m  OK  ^[[0m] Started Modem Manager.
[^[[32m  OK  ^[[0m] Started RealtimeKit Scheduling Policy Service.
[^[[32m  OK  ^[[0m] Started Login Service.
[^[[32m  OK  ^[[0m] Started Kernel Samepage Merging (KSM) Tuning Daemon.
[^[[32m  OK  ^[[0m] Started Authorization Manager.
[^[[32m  OK  ^[[0m] Started Accounts Service.
[   78.884276] ip_tables: (C) 2000-2006 Netfilter Core Team
[^[[32m  OK  ^[[0m] 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.
[^[[32m  OK  ^[[0m] Started firewalld - dynamic firewall daemon.
         Starting Network Manager...
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started Network Manager Script Dispatcher Service.
[^[[32m  OK  ^[[0m] Started LSB: Bring up/down networking.
[^[[32m  OK  ^[[0m] 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...
[^[[32m  OK  ^[[0m] Started OpenSSH server daemon.
[^[[32m  OK  ^[[0m] Started Logout off all iSCSI sessions on shutdown.
[^[[32m  OK  ^[[0m] Started Enable periodic update of entitlement certificates..
[^[[32m  OK  ^[[0m] Reached target Remote File Systems (Pre).
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Started Trigger Flushing of Journal to Persistent Storage.
[^[[1;31mFAILED^[[0m] Failed to start LSB: Starts the Spacewalk Daemon.
See 'systemctl status rhnsd.service' for details.
         Starting Permit User Sessions...
[^[[32m  OK  ^[[0m] Started Virtualization daemon.
[^[[32m  OK  ^[[0m] Started Permit User Sessions.
         Starting Command Scheduler...
[^[[32m  OK  ^[[0m] Started Command Scheduler.
         Starting Job spooling tools...
[^[[32m  OK  ^[[0m] Started Job spooling tools.
         Starting Wait for Plymouth Boot Screen to Quit...
         Starting GNOME Display Manager...
[^[[32m  OK  ^[[0m] Started GNOME Display Manager.
[^[[32m  OK  ^[[0m] 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 ~]# 

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: dl980_dump.log --]
[-- Type: text/x-log; name="dl980_dump.log", Size: 94879 bytes --]

[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@localhost.localdomain) (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)\r  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@aivazian.fsnet.co.uk>, 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 ^[[0;34mRed Hat Enterprise Linux Server 7.1 (Maipo) dracut-033-240.el7 (Initramfs)^[[0m!

[    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.
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Created slice System Slice.
[    6.332735] systemd[1]: Created slice System Slice.
[    6.335483] systemd[1]: Starting Slices.
[^[[32m  OK  ^[[0m] Reached target Slices.
[    6.339730] systemd[1]: Reached target Slices.
[    6.342241] systemd[1]: Starting Timers.
[^[[32m  OK  ^[[0m] 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.
[^[[32m  OK  ^[[0m] Reached target Paths.
[    6.359718] systemd[1]: Reached target Paths.
[    6.362113] systemd[1]: Starting Journal Socket.
[^[[32m  OK  ^[[0m] 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 
[^[[32m  OK  ^[[0m] Started Journal Service.
[    6.618618] systemd[1]: Started Journal Service.
[^[[32m  OK  ^[[0m] Listening on udev Kernel Socket.
[^[[32m  OK  ^[[0m] Listening on udev Control Socket.
[^[[32m  OK  ^[[0m] Reached target Sockets.
         Starting Create list of required static device nodes...rrent kernel...
[^[[32m  OK  ^[[0m] Reached target Swap.
[^[[32m  OK  ^[[0m] Reached target Local File Systems.
[^[[32m  OK  ^[[0m] Started dracut cmdline hook.
         Starting dracut pre-udev hook...
[^[[32m  OK  ^[[0m] Started Create list of required static device nodes ...current kernel.
         Starting Create static device nodes in /dev...
[^[[32m  OK  ^[[0m] Started Create static device nodes in /dev.
[^[[32m  OK  ^[[0m] 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
[^[[32m  OK  ^[[0m] Started udev Kernel Device Manager.
         Starting udev Coldplug all Devices...
[^[[32m  OK  ^[[0m] Started udev Coldplug all Devices.
         Starting dracut initqueue hook...
[^[[32m  OK  ^[[0m] Reached target System Initialization.
[^[[32m  OK  ^[[0m] Reached target Basic System.
         Mounting Configuration File System...
[^[[32m  OK  ^[[0m] 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 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ\x10\f 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
[^[[32m  OK  ^[[0m] Found device P2000_G3_FC.
[^[[32m  OK  ^[[0m] Found device P2000_G3_FC.
         Starting File System Check on /dev/disk/by-uuid/ff4d...cbe023625110...
[^[[32m  OK  ^[[0m] Started dracut initqueue hook.
[^[[32m  OK  ^[[0m] Reached target Initrd Root File System.
         Starting Reload Configuration from the Real Root...
[^[[32m  OK  ^[[0m] Reached target Remote File Systems (Pre).
[^[[32m  OK  ^[[0m] Reached target Remote File Systems.
systemd-fsck[234]: /sbin/fsck.xfs: XFS file system.
[^[[32m  OK  ^[[0m] Started File System Check on /dev/disk/by-uuid/ff4df...6-cbe023625110.
         Mounting /sysroot...
[^[[32m  OK  ^[[0m] Started Reload Configuration from the Real Root.
[^[[32m  OK  ^[[0m] Reached target Initrd File Systems.
[^[[32m  OK  ^[[0m] Reached target Initrd Default Target.
[   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
\rExcluding unnecessary pages        : [  0.0 %] /\rExcluding unnecessary pages        : [100.0 %] |\rExcluding unnecessary pages        : [100.0 %] \\rExcluding unnecessary pages        : [100.0 %] -\rExcluding unnecessary pages        : [100.0 %] /\rExcluding unnecessary pages        : [100.0 %] |\rExcluding unnecessary pages        : [  0.0 %] \\rExcluding unnecessary pages        : [100.0 %] -\rExcluding unnecessary pages        : [100.0 %] /[   77.225989] random: nonblocking pool is initialized
\rCopying data                       : [  9.7 %] |\rCopying data                       : [ 29.1 %] \\rExcluding unnecessary pages        : [100.0 %] -\rCopying data                       : [ 40.2 %] /\rExcluding unnecessary pages        : [100.0 %] |\rCopying data                       : [ 50.4 %] \\rExcluding unnecessary pages        : [100.0 %] -\rExcluding unnecessary pages        : [ 79.4 %] /\rExcluding unnecessary pages        : [100.0 %] |\rCopying data                       : [ 70.8 %] \\rExcluding unnecessary pages        : [100.0 %] -\rCopying data                       : [ 79.8 %] /\rCopying data                       : [100.0 %] |\rCopying data                       : [100.0 %] \
kdump: saving vmcore complete
         Stopping Kdump Vmcore Save Service...
[^[[32m  OK  ^[[0m] Stopped Kdump Vmcore Save Service.
         Stopping dracut pre-pivot and cleanup hook...
[^[[32m  OK  ^[[0m] Stopped dracut pre-pivot and cleanup hook.
[^[[32m  OK  ^[[0m] Stopped target Remote File Systems.
[^[[32m  OK  ^[[0m] Stopped target Remote File Systems (Pre).
         Unmounting /sysroot...
[^[[32m  OK  ^[[0m] Stopped target Initrd Default Target.
[^[[32m  OK  ^[[0m] Stopped target Basic System.
[^[[32m  OK  ^[[0m] Stopped target Slices.
[^[[32m  OK  ^[[0m] Removed slice -.slice.
[^[[32m  OK  ^[[0m] Stopped target Paths.
[^[[32m  OK  ^[[0m] 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.\r[   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

[-- Attachment #4: lspci --]
[-- Type: text/plain, Size: 3253 bytes --]

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)

[-- Attachment #5: Type: text/plain, Size: 143 bytes --]

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
  2015-04-15  6:48       ` Dave Young
@ 2015-04-24  8:01         ` Baoquan He
  -1 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-04-24  8:01 UTC (permalink / raw)
  To: Dave Young
  Cc: Li, ZhenHua, dwmw2, indou.takao, joro, vgoyal, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright

On 04/15/15 at 02:48pm, Dave Young wrote:
> On 04/15/15 at 01:47pm, Li, ZhenHua wrote:
> > On 04/15/2015 08:57 AM, Dave Young wrote:
> > >Again, I think it is bad to use old page table, below issues need consider:
> > >1) make sure old page table are reliable across crash
> > >2) do not allow writing oldmem after crash
> > >
> > >Please correct me if I'm wrong, or if above is not doable I think I will vote for
> > >resetting pci bus.
> > >
> > >Thanks
> > >Dave
> > >
> > Hi Dave,
> > 
> > When updating the context tables, we have to write their address to root
> > tables, this will cause writing to old mem.
> > 
> > Resetting the pci bus has been discussed, please check this:
> > http://lists.infradead.org/pipermail/kexec/2014-October/012752.html
> > https://lkml.org/lkml/2014/10/21/890

I support this patchset.

We should not fear oldmem since reserved crashkernel region is similar.
No one can guarantee that any crazy code won't step into crashkernel
region just because 1st kernel says it's reversed for kdump kernel. Here
the root table and context tables are also not built to allow legal code
to danamge. Both of them has the risk to be corrupted, for trying our
best to get a dumped vmcore the risk is worth being taken.

And the resetting pci way has been NACKed by David Woodhouse, the
maintainer of intel iommu. Because the place calling the resetting pci
code is ugly before kdump kernel or in kdump kernel. And as he said a
certain device made mistakes why we blame on all devices. We should fix
that device who made mistakes. 

As for me, periodically poked by customers to ask how iommu fix is
going, I really think this patchset is good enough. Aren't we going to
do thing just because there's a risk with tiny possibility or not perfect
enough. I think people won't agree. Otherwise kdump could have been
killed when author proposed it since crashkernel reserved region is
risky and could be corrupted by 1st kernel.

Anyway, let's comprimise a little. At worst it can be reverted if it's
not satisfactory.

Personal opinion.

By the way, I tested it and it works well on my HP z420 workstation.

Thanks
Baoquan


> 
> I know one reason to use old pgtable is this looks better because it fixes the
> real problem, but it is not a good way if it introduce more problems because of
> it have to use oldmem. I will be glad if this is not a problem but I have not
> been convinced.
> 
> OTOH, there's many types of iommu, intel, amd, a lot of other types. They need
> their own fixes, so it looks not that elegant.
> 
> For pci reset, it is not perfect, but it has another advantage, the patch is
> simpler. The problem I see from the old discusssion is, reset bus in 2nd kernel
> is acceptable but it does not fix things on sparc platform. AFAIK current reported
> problems are intel and amd iommu, at least pci reset stuff does not make it worse.
> 
> Thanks
> Dave

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-24  8:01         ` Baoquan He
  0 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-04-24  8:01 UTC (permalink / raw)
  To: Dave Young
  Cc: alex.williamson, indou.takao, tom.vaden, rwright, linux-pci,
	joro, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	Li, ZhenHua, ddutile, doug.hatch, ishii.hironobu, bhelgaas,
	billsumnerlinux, li.zhang6, dwmw2, vgoyal

On 04/15/15 at 02:48pm, Dave Young wrote:
> On 04/15/15 at 01:47pm, Li, ZhenHua wrote:
> > On 04/15/2015 08:57 AM, Dave Young wrote:
> > >Again, I think it is bad to use old page table, below issues need consider:
> > >1) make sure old page table are reliable across crash
> > >2) do not allow writing oldmem after crash
> > >
> > >Please correct me if I'm wrong, or if above is not doable I think I will vote for
> > >resetting pci bus.
> > >
> > >Thanks
> > >Dave
> > >
> > Hi Dave,
> > 
> > When updating the context tables, we have to write their address to root
> > tables, this will cause writing to old mem.
> > 
> > Resetting the pci bus has been discussed, please check this:
> > http://lists.infradead.org/pipermail/kexec/2014-October/012752.html
> > https://lkml.org/lkml/2014/10/21/890

I support this patchset.

We should not fear oldmem since reserved crashkernel region is similar.
No one can guarantee that any crazy code won't step into crashkernel
region just because 1st kernel says it's reversed for kdump kernel. Here
the root table and context tables are also not built to allow legal code
to danamge. Both of them has the risk to be corrupted, for trying our
best to get a dumped vmcore the risk is worth being taken.

And the resetting pci way has been NACKed by David Woodhouse, the
maintainer of intel iommu. Because the place calling the resetting pci
code is ugly before kdump kernel or in kdump kernel. And as he said a
certain device made mistakes why we blame on all devices. We should fix
that device who made mistakes. 

As for me, periodically poked by customers to ask how iommu fix is
going, I really think this patchset is good enough. Aren't we going to
do thing just because there's a risk with tiny possibility or not perfect
enough. I think people won't agree. Otherwise kdump could have been
killed when author proposed it since crashkernel reserved region is
risky and could be corrupted by 1st kernel.

Anyway, let's comprimise a little. At worst it can be reverted if it's
not satisfactory.

Personal opinion.

By the way, I tested it and it works well on my HP z420 workstation.

Thanks
Baoquan


> 
> I know one reason to use old pgtable is this looks better because it fixes the
> real problem, but it is not a good way if it introduce more problems because of
> it have to use oldmem. I will be glad if this is not a problem but I have not
> been convinced.
> 
> OTOH, there's many types of iommu, intel, amd, a lot of other types. They need
> their own fixes, so it looks not that elegant.
> 
> For pci reset, it is not perfect, but it has another advantage, the patch is
> simpler. The problem I see from the old discusssion is, reset bus in 2nd kernel
> is acceptable but it does not fix things on sparc platform. AFAIK current reported
> problems are intel and amd iommu, at least pci reset stuff does not make it worse.
> 
> Thanks
> Dave

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
  2015-04-24  8:01         ` Baoquan He
@ 2015-04-24  8:25           ` Dave Young
  -1 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-04-24  8:25 UTC (permalink / raw)
  To: Baoquan He
  Cc: Li, ZhenHua, dwmw2, indou.takao, joro, vgoyal, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright

Hi, Baoquan

> I support this patchset.
> 
> We should not fear oldmem since reserved crashkernel region is similar.
> No one can guarantee that any crazy code won't step into crashkernel
> region just because 1st kernel says it's reversed for kdump kernel. Here
> the root table and context tables are also not built to allow legal code
> to danamge. Both of them has the risk to be corrupted, for trying our
> best to get a dumped vmcore the risk is worth being taken.

old mem is mapped in 1st kernel so compare with the reserved crashkernel
they are more likely to be corrupted. they are totally different. 

> 
> And the resetting pci way has been NACKed by David Woodhouse, the
> maintainer of intel iommu. Because the place calling the resetting pci
> code is ugly before kdump kernel or in kdump kernel. And as he said a
> certain device made mistakes why we blame on all devices. We should fix
> that device who made mistakes. 

Resetting pci bus is not ugly than fixing a problem with risk and to fix
the problem it introduced in the future.

I know it is late to speak out, but sorry I still object and have to NACK this
oldmem approach from my point.

Thanks
Dave

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-24  8:25           ` Dave Young
  0 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-04-24  8:25 UTC (permalink / raw)
  To: Baoquan He
  Cc: alex.williamson, indou.takao, tom.vaden, rwright, linux-pci,
	joro, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	Li, ZhenHua, ddutile, doug.hatch, ishii.hironobu, bhelgaas,
	billsumnerlinux, li.zhang6, dwmw2, vgoyal

Hi, Baoquan

> I support this patchset.
> 
> We should not fear oldmem since reserved crashkernel region is similar.
> No one can guarantee that any crazy code won't step into crashkernel
> region just because 1st kernel says it's reversed for kdump kernel. Here
> the root table and context tables are also not built to allow legal code
> to danamge. Both of them has the risk to be corrupted, for trying our
> best to get a dumped vmcore the risk is worth being taken.

old mem is mapped in 1st kernel so compare with the reserved crashkernel
they are more likely to be corrupted. they are totally different. 

> 
> And the resetting pci way has been NACKed by David Woodhouse, the
> maintainer of intel iommu. Because the place calling the resetting pci
> code is ugly before kdump kernel or in kdump kernel. And as he said a
> certain device made mistakes why we blame on all devices. We should fix
> that device who made mistakes. 

Resetting pci bus is not ugly than fixing a problem with risk and to fix
the problem it introduced in the future.

I know it is late to speak out, but sorry I still object and have to NACK this
oldmem approach from my point.

Thanks
Dave

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
  2015-04-24  8:25           ` Dave Young
@ 2015-04-24  8:35             ` Baoquan He
  -1 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-04-24  8:35 UTC (permalink / raw)
  To: Dave Young
  Cc: Li, ZhenHua, dwmw2, indou.takao, joro, vgoyal, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright

On 04/24/15 at 04:25pm, Dave Young wrote:
> Hi, Baoquan
> 
> > I support this patchset.
> > 
> > We should not fear oldmem since reserved crashkernel region is similar.
> > No one can guarantee that any crazy code won't step into crashkernel
> > region just because 1st kernel says it's reversed for kdump kernel. Here
> > the root table and context tables are also not built to allow legal code
> > to danamge. Both of them has the risk to be corrupted, for trying our
> > best to get a dumped vmcore the risk is worth being taken.
> 
> old mem is mapped in 1st kernel so compare with the reserved crashkernel
> they are more likely to be corrupted. they are totally different. 

Could you tell how and why they are different? Wrong code will choose
root tables and context tables to danamge when they totally lose
control?

> 
> > 
> > And the resetting pci way has been NACKed by David Woodhouse, the
> > maintainer of intel iommu. Because the place calling the resetting pci
> > code is ugly before kdump kernel or in kdump kernel. And as he said a
> > certain device made mistakes why we blame on all devices. We should fix
> > that device who made mistakes. 
> 
> Resetting pci bus is not ugly than fixing a problem with risk and to fix
> the problem it introduced in the future.

There's a problem, we fix the problem. If that's uglier, I need redefine
the 'ugly' in my personal dict. You mean the problem it could introduce
is wrong code will damage root table and context tables, why don't we
fix that wrong code, but blame innocent context tables? So you mean
these tables should deserve being damaged by wrong code?

> 
> I know it is late to speak out, but sorry I still object and have to NACK this
> oldmem approach from my point.
> 
> Thanks
> Dave

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-24  8:35             ` Baoquan He
  0 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-04-24  8:35 UTC (permalink / raw)
  To: Dave Young
  Cc: alex.williamson, indou.takao, tom.vaden, rwright, linux-pci,
	joro, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	Li, ZhenHua, ddutile, doug.hatch, ishii.hironobu, bhelgaas,
	billsumnerlinux, li.zhang6, dwmw2, vgoyal

On 04/24/15 at 04:25pm, Dave Young wrote:
> Hi, Baoquan
> 
> > I support this patchset.
> > 
> > We should not fear oldmem since reserved crashkernel region is similar.
> > No one can guarantee that any crazy code won't step into crashkernel
> > region just because 1st kernel says it's reversed for kdump kernel. Here
> > the root table and context tables are also not built to allow legal code
> > to danamge. Both of them has the risk to be corrupted, for trying our
> > best to get a dumped vmcore the risk is worth being taken.
> 
> old mem is mapped in 1st kernel so compare with the reserved crashkernel
> they are more likely to be corrupted. they are totally different. 

Could you tell how and why they are different? Wrong code will choose
root tables and context tables to danamge when they totally lose
control?

> 
> > 
> > And the resetting pci way has been NACKed by David Woodhouse, the
> > maintainer of intel iommu. Because the place calling the resetting pci
> > code is ugly before kdump kernel or in kdump kernel. And as he said a
> > certain device made mistakes why we blame on all devices. We should fix
> > that device who made mistakes. 
> 
> Resetting pci bus is not ugly than fixing a problem with risk and to fix
> the problem it introduced in the future.

There's a problem, we fix the problem. If that's uglier, I need redefine
the 'ugly' in my personal dict. You mean the problem it could introduce
is wrong code will damage root table and context tables, why don't we
fix that wrong code, but blame innocent context tables? So you mean
these tables should deserve being damaged by wrong code?

> 
> I know it is late to speak out, but sorry I still object and have to NACK this
> oldmem approach from my point.
> 
> Thanks
> Dave

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
  2015-04-24  8:35             ` Baoquan He
@ 2015-04-24  8:49               ` Dave Young
  -1 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-04-24  8:49 UTC (permalink / raw)
  To: Baoquan He
  Cc: Li, ZhenHua, dwmw2, indou.takao, joro, vgoyal, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright

On 04/24/15 at 04:35pm, Baoquan He wrote:
> On 04/24/15 at 04:25pm, Dave Young wrote:
> > Hi, Baoquan
> > 
> > > I support this patchset.
> > > 
> > > We should not fear oldmem since reserved crashkernel region is similar.
> > > No one can guarantee that any crazy code won't step into crashkernel
> > > region just because 1st kernel says it's reversed for kdump kernel. Here
> > > the root table and context tables are also not built to allow legal code
> > > to danamge. Both of them has the risk to be corrupted, for trying our
> > > best to get a dumped vmcore the risk is worth being taken.
> > 
> > old mem is mapped in 1st kernel so compare with the reserved crashkernel
> > they are more likely to be corrupted. they are totally different. 
> 
> Could you tell how and why they are different? Wrong code will choose
> root tables and context tables to danamge when they totally lose
> control?

iommu will map io address to system ram, right? not to reserved ram, but
yes I'm assuming the page table is right, but I was worrying they are corrupted
while kernel panic is happening.

> 
> > 
> > > 
> > > And the resetting pci way has been NACKed by David Woodhouse, the
> > > maintainer of intel iommu. Because the place calling the resetting pci
> > > code is ugly before kdump kernel or in kdump kernel. And as he said a
> > > certain device made mistakes why we blame on all devices. We should fix
> > > that device who made mistakes. 
> > 
> > Resetting pci bus is not ugly than fixing a problem with risk and to fix
> > the problem it introduced in the future.
> 
> There's a problem, we fix the problem. If that's uglier, I need redefine
> the 'ugly' in my personal dict. You mean the problem it could introduce
> is wrong code will damage root table and context tables, why don't we
> fix that wrong code, but blame innocent context tables? So you mean
> these tables should deserve being damaged by wrong code?

I'm more than happy to see this issue can be fixed in the patchset, I do not
agree to add the code there with such problems. OTOH, for now seems there's
no way to fix it.

> 
> > 
> > I know it is late to speak out, but sorry I still object and have to NACK this
> > oldmem approach from my point.
> > 
> > Thanks
> > Dave

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-24  8:49               ` Dave Young
  0 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-04-24  8:49 UTC (permalink / raw)
  To: Baoquan He
  Cc: alex.williamson, indou.takao, tom.vaden, rwright, linux-pci,
	joro, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	Li, ZhenHua, ddutile, doug.hatch, ishii.hironobu, bhelgaas,
	billsumnerlinux, li.zhang6, dwmw2, vgoyal

On 04/24/15 at 04:35pm, Baoquan He wrote:
> On 04/24/15 at 04:25pm, Dave Young wrote:
> > Hi, Baoquan
> > 
> > > I support this patchset.
> > > 
> > > We should not fear oldmem since reserved crashkernel region is similar.
> > > No one can guarantee that any crazy code won't step into crashkernel
> > > region just because 1st kernel says it's reversed for kdump kernel. Here
> > > the root table and context tables are also not built to allow legal code
> > > to danamge. Both of them has the risk to be corrupted, for trying our
> > > best to get a dumped vmcore the risk is worth being taken.
> > 
> > old mem is mapped in 1st kernel so compare with the reserved crashkernel
> > they are more likely to be corrupted. they are totally different. 
> 
> Could you tell how and why they are different? Wrong code will choose
> root tables and context tables to danamge when they totally lose
> control?

iommu will map io address to system ram, right? not to reserved ram, but
yes I'm assuming the page table is right, but I was worrying they are corrupted
while kernel panic is happening.

> 
> > 
> > > 
> > > And the resetting pci way has been NACKed by David Woodhouse, the
> > > maintainer of intel iommu. Because the place calling the resetting pci
> > > code is ugly before kdump kernel or in kdump kernel. And as he said a
> > > certain device made mistakes why we blame on all devices. We should fix
> > > that device who made mistakes. 
> > 
> > Resetting pci bus is not ugly than fixing a problem with risk and to fix
> > the problem it introduced in the future.
> 
> There's a problem, we fix the problem. If that's uglier, I need redefine
> the 'ugly' in my personal dict. You mean the problem it could introduce
> is wrong code will damage root table and context tables, why don't we
> fix that wrong code, but blame innocent context tables? So you mean
> these tables should deserve being damaged by wrong code?

I'm more than happy to see this issue can be fixed in the patchset, I do not
agree to add the code there with such problems. OTOH, for now seems there's
no way to fix it.

> 
> > 
> > I know it is late to speak out, but sorry I still object and have to NACK this
> > oldmem approach from my point.
> > 
> > Thanks
> > Dave

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
  2015-04-24  8:49               ` Dave Young
@ 2015-04-28  8:54                 ` Baoquan He
  -1 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-04-28  8:54 UTC (permalink / raw)
  To: Dave Young
  Cc: Li, ZhenHua, dwmw2, indou.takao, joro, vgoyal, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright

On 04/24/15 at 04:49pm, Dave Young wrote:
> On 04/24/15 at 04:35pm, Baoquan He wrote:
> > On 04/24/15 at 04:25pm, Dave Young wrote:
> > > Hi, Baoquan
> > > 
> > > > I support this patchset.
> > > > 
> > > > We should not fear oldmem since reserved crashkernel region is similar.
> > > > No one can guarantee that any crazy code won't step into crashkernel
> > > > region just because 1st kernel says it's reversed for kdump kernel. Here
> > > > the root table and context tables are also not built to allow legal code
> > > > to danamge. Both of them has the risk to be corrupted, for trying our
> > > > best to get a dumped vmcore the risk is worth being taken.
> > > 
> > > old mem is mapped in 1st kernel so compare with the reserved crashkernel
> > > they are more likely to be corrupted. they are totally different. 
> > 
> > Could you tell how and why they are different? Wrong code will choose
> > root tables and context tables to danamge when they totally lose
> > control?
> 
> iommu will map io address to system ram, right? not to reserved ram, but
> yes I'm assuming the page table is right, but I was worrying they are corrupted
> while kernel panic is happening.

OK, I think we may need to think more about the old context tables
reuse. Currently dmar faults will cause error or warning message,
occasionally will cause system with iommu hang in kdump kernel. I don't
know what will happen if old root tables or context tables are corrupted
by evil code. For kdump kernel which use the similar mechanism there's a
verification. When load kdump kernel into reserved crashkernel region a
sha256 sum is calculated, then verify it when jump into kdump kernel
after panic. If corrupted context tables will bring worse result, then
we need consider giving it up and change back to the old way and try
to dump though there's error message.

Hi Zhenhua,

I don't know what's your plan about verification whether old root tables
or old context tables are corrupted. Or have you experimented that what
will happen if old tables are corrupted on purpose.

I am fine if you just put this in a TODO list since that's truly in a
rare case. But it maybe necessary to tell it in patch log.

Thanks
Baoquan


^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-28  8:54                 ` Baoquan He
  0 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-04-28  8:54 UTC (permalink / raw)
  To: Dave Young
  Cc: alex.williamson, indou.takao, tom.vaden, rwright, linux-pci,
	joro, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	Li, ZhenHua, ddutile, doug.hatch, ishii.hironobu, bhelgaas,
	billsumnerlinux, li.zhang6, dwmw2, vgoyal

On 04/24/15 at 04:49pm, Dave Young wrote:
> On 04/24/15 at 04:35pm, Baoquan He wrote:
> > On 04/24/15 at 04:25pm, Dave Young wrote:
> > > Hi, Baoquan
> > > 
> > > > I support this patchset.
> > > > 
> > > > We should not fear oldmem since reserved crashkernel region is similar.
> > > > No one can guarantee that any crazy code won't step into crashkernel
> > > > region just because 1st kernel says it's reversed for kdump kernel. Here
> > > > the root table and context tables are also not built to allow legal code
> > > > to danamge. Both of them has the risk to be corrupted, for trying our
> > > > best to get a dumped vmcore the risk is worth being taken.
> > > 
> > > old mem is mapped in 1st kernel so compare with the reserved crashkernel
> > > they are more likely to be corrupted. they are totally different. 
> > 
> > Could you tell how and why they are different? Wrong code will choose
> > root tables and context tables to danamge when they totally lose
> > control?
> 
> iommu will map io address to system ram, right? not to reserved ram, but
> yes I'm assuming the page table is right, but I was worrying they are corrupted
> while kernel panic is happening.

OK, I think we may need to think more about the old context tables
reuse. Currently dmar faults will cause error or warning message,
occasionally will cause system with iommu hang in kdump kernel. I don't
know what will happen if old root tables or context tables are corrupted
by evil code. For kdump kernel which use the similar mechanism there's a
verification. When load kdump kernel into reserved crashkernel region a
sha256 sum is calculated, then verify it when jump into kdump kernel
after panic. If corrupted context tables will bring worse result, then
we need consider giving it up and change back to the old way and try
to dump though there's error message.

Hi Zhenhua,

I don't know what's your plan about verification whether old root tables
or old context tables are corrupted. Or have you experimented that what
will happen if old tables are corrupted on purpose.

I am fine if you just put this in a TODO list since that's truly in a
rare case. But it maybe necessary to tell it in patch log.

Thanks
Baoquan


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
  2015-04-28  8:54                 ` Baoquan He
@ 2015-04-28  9:00                   ` Li, ZhenHua
  -1 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-04-28  9:00 UTC (permalink / raw)
  To: Baoquan He
  Cc: Dave Young, dwmw2, indou.takao, joro, vgoyal, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright, Li, ZhenHua

Hi Baoquan,

If old tables are corrupted, we will see the DMAR faults or INTR faults
(which we have seen), or some other error messages. Most of these
messages are from hardware. This means, hardware will do some check when 
running. But I don't think hardware will completely check the
tables.

Till now, I do not have a good idea to do the check in kdump kernel.


Thanks
Zhenhua


On 04/28/2015 04:54 PM, Baoquan He wrote:
> On 04/24/15 at 04:49pm, Dave Young wrote:
>> On 04/24/15 at 04:35pm, Baoquan He wrote:
>>> On 04/24/15 at 04:25pm, Dave Young wrote:
>>>> Hi, Baoquan
>>>>
>>>>> I support this patchset.
>>>>>
>>>>> We should not fear oldmem since reserved crashkernel region is similar.
>>>>> No one can guarantee that any crazy code won't step into crashkernel
>>>>> region just because 1st kernel says it's reversed for kdump kernel. Here
>>>>> the root table and context tables are also not built to allow legal code
>>>>> to danamge. Both of them has the risk to be corrupted, for trying our
>>>>> best to get a dumped vmcore the risk is worth being taken.
>>>>
>>>> old mem is mapped in 1st kernel so compare with the reserved crashkernel
>>>> they are more likely to be corrupted. they are totally different.
>>>
>>> Could you tell how and why they are different? Wrong code will choose
>>> root tables and context tables to danamge when they totally lose
>>> control?
>>
>> iommu will map io address to system ram, right? not to reserved ram, but
>> yes I'm assuming the page table is right, but I was worrying they are corrupted
>> while kernel panic is happening.
>
> OK, I think we may need to think more about the old context tables
> reuse. Currently dmar faults will cause error or warning message,
> occasionally will cause system with iommu hang in kdump kernel. I don't
> know what will happen if old root tables or context tables are corrupted
> by evil code. For kdump kernel which use the similar mechanism there's a
> verification. When load kdump kernel into reserved crashkernel region a
> sha256 sum is calculated, then verify it when jump into kdump kernel
> after panic. If corrupted context tables will bring worse result, then
> we need consider giving it up and change back to the old way and try
> to dump though there's error message.
>
> Hi Zhenhua,
>
> I don't know what's your plan about verification whether old root tables
> or old context tables are corrupted. Or have you experimented that what
> will happen if old tables are corrupted on purpose.
>
> I am fine if you just put this in a TODO list since that's truly in a
> rare case. But it maybe necessary to tell it in patch log.
>
> Thanks
> Baoquan
>


^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-28  9:00                   ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-04-28  9:00 UTC (permalink / raw)
  To: Baoquan He
  Cc: alex.williamson, indou.takao, tom.vaden, rwright, Dave Young,
	joro, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	Li, ZhenHua, ddutile, doug.hatch, ishii.hironobu, linux-pci,
	bhelgaas, billsumnerlinux, li.zhang6, dwmw2, vgoyal

Hi Baoquan,

If old tables are corrupted, we will see the DMAR faults or INTR faults
(which we have seen), or some other error messages. Most of these
messages are from hardware. This means, hardware will do some check when 
running. But I don't think hardware will completely check the
tables.

Till now, I do not have a good idea to do the check in kdump kernel.


Thanks
Zhenhua


On 04/28/2015 04:54 PM, Baoquan He wrote:
> On 04/24/15 at 04:49pm, Dave Young wrote:
>> On 04/24/15 at 04:35pm, Baoquan He wrote:
>>> On 04/24/15 at 04:25pm, Dave Young wrote:
>>>> Hi, Baoquan
>>>>
>>>>> I support this patchset.
>>>>>
>>>>> We should not fear oldmem since reserved crashkernel region is similar.
>>>>> No one can guarantee that any crazy code won't step into crashkernel
>>>>> region just because 1st kernel says it's reversed for kdump kernel. Here
>>>>> the root table and context tables are also not built to allow legal code
>>>>> to danamge. Both of them has the risk to be corrupted, for trying our
>>>>> best to get a dumped vmcore the risk is worth being taken.
>>>>
>>>> old mem is mapped in 1st kernel so compare with the reserved crashkernel
>>>> they are more likely to be corrupted. they are totally different.
>>>
>>> Could you tell how and why they are different? Wrong code will choose
>>> root tables and context tables to danamge when they totally lose
>>> control?
>>
>> iommu will map io address to system ram, right? not to reserved ram, but
>> yes I'm assuming the page table is right, but I was worrying they are corrupted
>> while kernel panic is happening.
>
> OK, I think we may need to think more about the old context tables
> reuse. Currently dmar faults will cause error or warning message,
> occasionally will cause system with iommu hang in kdump kernel. I don't
> know what will happen if old root tables or context tables are corrupted
> by evil code. For kdump kernel which use the similar mechanism there's a
> verification. When load kdump kernel into reserved crashkernel region a
> sha256 sum is calculated, then verify it when jump into kdump kernel
> after panic. If corrupted context tables will bring worse result, then
> we need consider giving it up and change back to the old way and try
> to dump though there's error message.
>
> Hi Zhenhua,
>
> I don't know what's your plan about verification whether old root tables
> or old context tables are corrupted. Or have you experimented that what
> will happen if old tables are corrupted on purpose.
>
> I am fine if you just put this in a TODO list since that's truly in a
> rare case. But it maybe necessary to tell it in patch log.
>
> Thanks
> Baoquan
>


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-29 11:20   ` Baoquan He
  0 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-04-29 11:20 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: dwmw2, indou.takao, joro, vgoyal, dyoung, iommu, linux-kernel,
	linux-pci, kexec, alex.williamson, ddutile, ishii.hironobu,
	bhelgaas, doug.hatch, jerry.hoemann, tom.vaden, li.zhang6,
	lisa.mitchell, billsumnerlinux, rwright

[-- Attachment #1: Type: text/plain, Size: 391 bytes --]

Bad news, I rebuilt a kernel with your patchset on 4.0.0+ (this commit
f614c81). Now dmar fault is  seen again.

The lspci log and kdump log are attached, please check:

[ ~]$ cat /proc/cmdline 
BOOT_IMAGE=/vmlinuz-4.0.0+ root=/dev/mapper/fedora_dhcp--128--28-root ro
rd.lvm.lv=fedora_dhcp-128-28/swap rd.lvm.lv=fedora_dhcp-128-28/root
crashkernel=256M console=ttyS0,115200 intel_iommu=on



[-- Attachment #2: lspci.txt --]
[-- Type: text/plain, Size: 0 bytes --]



[-- Attachment #3: kdump_iommu.log --]
[-- Type: text/plain, Size: 55157 bytes --]

[root@dhcp-128-28 ~]# echo c >/proc/sysrq-trigger 
[  163.160203] sysrq: SysRq : Trigger a crash
[  163.164362] BUG: unable to handle kernel NULL pointer dereference at           (null)
[  163.172220] IP: [<ffffffff81480696>] sysrq_handle_crash+0x16/0x20
[  163.178333] PGD 419aba067 PUD 419774067 PMD 0 
[  163.182838] Oops: 0002 [#1] SMP 
[  163.186114] Modules linked in: xt_CHECKSUM ipt_MASQUERADE nf_nat_masquerade_ipv4 nf_conntrack_netbios_ns nf_conntrack_broadcast ip6t_rpfilter ip6t_REJECT cfg80211i
[  163.287902] CPU: 0 PID: 1662 Comm: bash Not tainted 4.0.0+ #6
[  163.293648] Hardware name: Hewlett-Packard HP Z420 Workstation/1589, BIOS J61 v01.02 03/09/2012
[  163.302351] task: ffff8803fdefd580 ti: ffff880403744000 task.ti: ffff880403744000
[  163.309842] RIP: 0010:[<ffffffff81480696>]  [<ffffffff81480696>] sysrq_handle_crash+0x16/0x20
[  163.318383] RSP: 0018:ffff880403747da8  EFLAGS: 00010246
[  163.323696] RAX: 000000000000000f RBX: 0000000000000063 RCX: 000000000000000f
[  163.330817] RDX: 0000000000000000 RSI: ffff88042fc0ea08 RDI: 0000000000000063
[  163.337939] RBP: ffff880403747da8 R08: 0000000000000096 R09: 0000000000015098
[  163.345067] R10: 00000000000003f1 R11: 0000000000000002 R12: 0000000000000007
[  163.352203] R13: 0000000000000000 R14: ffffffff81cc33e0 R15: 0000000000000000
[  163.359346] FS:  00007ff6f6ca9700(0000) GS:ffff88042fc00000(0000) knlGS:0000000000000000
[  163.367443] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  163.373180] CR2: 0000000000000000 CR3: 00000004019d6000 CR4: 00000000000407f0
[  163.380305] Stack:
[  163.382321]  ffff880403747dd8 ffffffff81480ea6 0000000000000002 fffffffffffffffb
[  163.389771]  00007ff6f6cc5000 0000000000000002 ffff880403747df8 ffffffff81481353
[  163.397222]  ffff880403747ec8 ffff88041d167f00 ffff880403747e18 ffffffff81282408
[  163.404682] Call Trace:
[  163.407130]  [<ffffffff81480ea6>] __handle_sysrq+0x106/0x170
[  163.412784]  [<ffffffff81481353>] write_sysrq_trigger+0x33/0x40
[  163.418697]  [<ffffffff81282408>] proc_reg_write+0x48/0x70
[  163.424172]  [<ffffffff81215e77>] __vfs_write+0x37/0x110
[  163.429478]  [<ffffffff81218d48>] ? __sb_start_write+0x58/0x120
[  163.435391]  [<ffffffff8131dc03>] ? security_file_permission+0x23/0xa0
[  163.441902]  [<ffffffff812165e9>] vfs_write+0xa9/0x1b0
[  163.447035]  [<ffffffff812174a5>] SyS_write+0x55/0xd0
[  163.452085]  [<ffffffff81067f6f>] ? do_page_fault+0x2f/0x80
[  163.457651]  [<ffffffff8178416e>] system_call_fastpath+0x12/0x71
[  163.463648] Code: ef e8 bf f7 ff ff eb d8 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 66 66 66 66 90 55 c7 05 d4 6c a9 00 01 00 00 00 48 89 e5 0f ae f8 <c6> 04 25 00 0 
[  163.483597] RIP  [<ffffffff81480696>] sysrq_handle_crash+0x16/0x20
[  163.489777]  RSP <ffff880403747da8>
[  163.493257] 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+ (bhe@dhcp-128-28.nay.redhat.com) (gcc version 4.9.2 20150212 (Red Hat 4.9.2-6) (GCC) ) #6 SMP Wed Apr 29 16:53:34 CST 2015
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.0.0+ root=/dev/mapper/fedora_dhcp--128--28-root ro rd.lvm.lv=fedora_dhcp-128-28/swap rd.lvm.lv=fedora_dhcp-128-28/K
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x00000000000963ff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000096400-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000025000000-0x0000000034f65fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000034fff400-0x0000000034ffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cb750000-0x00000000cb7dafff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cb7db000-0x00000000cbaacfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbaad000-0x00000000cbaaefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbaaf000-0x00000000cbabafff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbabb000-0x00000000cbacdfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbace000-0x00000000cbb55fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbb56000-0x00000000cbb5dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbb5e000-0x00000000cbb70fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbb71000-0x00000000cbffffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] earlycon: no match for ttyS0,115200
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    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 0x000f4bc0-0x000f4bcf] mapped at [ffff8800000f4bc0]
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000] init_memory_mapping: [mem 0x34c00000-0x34dfffff]
[    0.000000] init_memory_mapping: [mem 0x25000000-0x34bfffff]
[    0.000000] init_memory_mapping: [mem 0x34e00000-0x34f65fff]
[    0.000000] RAMDISK: [mem 0x31cbe000-0x32ffffff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F9810 000024 (v02 HPQOEM)
[    0.000000] ACPI: XSDT 0x00000000CBA28078 00006C (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000CBA304C8 0000F4 (v04 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000CBA28170 008352 (v02 HPQOEM SLIC-WKS 00000102 INTL 20051117)
[    0.000000] ACPI: FACS 0x00000000CBB5BF80 000040
[    0.000000] ACPI: APIC 0x00000000CBA305C0 00007E (v03 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 0x00000000CBA30640 00003C (v01 HPQOEM OEMMCFG. 01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000CBA30680 000038 (v01 HPQOEM SLIC-WKS 01072009 AMI. 00000004)
[    0.000000] ACPI: ASF! 0x00000000CBA306B8 0000A0 (v32 INTEL   HCG     00000001 TFSM 000F4240)
[    0.000000] ACPI: SSDT 0x00000000CBA30758 0058DA (v01 COMPAQ WMI      00000001 MSFT 03000001)
[    0.000000] ACPI: SLIC 0x00000000CBA36038 000176 (v01 HPQOEM SLIC-WKS 00000001      00000000)
[    0.000000] ACPI: SSDT 0x00000000CBA361B0 06E284 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.000000] ACPI: DMAR 0x00000000CBAA4438 0000A0 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.000000] Setting APIC routing to cluster x2apic.
[    0.000000] NUMA turned off
[    0.000000] Faking a node at [mem 0x0000000000000000-0x0000000034ffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x34f52000-0x34f65fff]
[    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-0x0000000000095fff]
[    0.000000]   node   0: [mem 0x0000000025000000-0x0000000034f65fff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000034f65fff]
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 1/0x2 ignored.
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 2/0x4 ignored.
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 3/0x6 ignored.
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: 4 Processors exceeds NR_CPUS limit of 1
[    0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] e820: [mem 0x35000000-0xcb74ffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
[    0.000000] PERCPU: Embedded 34 pages/cpu @ffff880034c00000 s101720 r8192 d29352 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=/vmlinuz-4.0.0+ root=/dev/mapper/fedora_dhcp--128--28-root ro rd.lvm.lv=fedora_dhcp-128-28/swap rd.lvm.lv=fedora_dhcp-K
[    0.000000] Intel-IOMMU: enabled
[    0.000000] Misrouted IRQ fixup and polling support enabled
[    0.000000] This may significantly impact system performance
[    0.000000] Disabling memory control group subsystem
[    0.000000] PID hash table entries: 1024 (order: 1, 8192 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[    0.000000] Memory: 217108K/262124K available (7716K kernel code, 1276K rwdata, 3260K rodata, 1500K init, 1448K bss, 45016K 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 dyntick-idle grace-period acceleration is enabled.
[    0.000000]  RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.000000] NR_IRQS:4352 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] do_IRQ: 0.100 No irq handler for vector (irq -1)
[    0.000000] do_IRQ: 0.37 No irq handler for vector (irq -1)
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [ttyS0] enabled
[    0.000000] clocksource hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2793.236 MHz processor
[    0.000065] Calibrating delay loop (skipped), value calculated using timer frequency.. 5586.47 BogoMIPS (lpj=2793236)
[    0.010687] pid_max: default: 32768 minimum: 301
[    0.015320] ACPI: Core revision 20150410
[    0.076923] ACPI: All ACPI Tables successfully acquired
[    0.082243] Security Framework initialized
[    0.086345] SELinux:  Initializing.
[    0.089932] Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.097009] Inode-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.103936] Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
[    0.110471] Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes)
[    0.117723] Initializing cgroup subsys blkio
[    0.121992] Initializing cgroup subsys memory
[    0.126346] Initializing cgroup subsys devices
[    0.130783] Initializing cgroup subsys freezer
[    0.135220] Initializing cgroup subsys net_cls
[    0.139663] Initializing cgroup subsys perf_event
[    0.144370] Initializing cgroup subsys net_prio
[    0.148906] Initializing cgroup subsys hugetlb
[    0.153399] CPU: Physical Processor ID: 0
[    0.157416] CPU: Processor Core ID: 0
[    0.161098] process: using mwait in idle threads
[    0.165727] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.171215] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.189958] Freeing SMP alternatives memory: 28K (ffffffff81eb8000 - ffffffff81ebf000)
[    0.200232] ftrace: allocating 27958 entries in 110 pages
[    0.233887] dmar: Host address width 46
[    0.237730] dmar: DRHD base: 0x000000dfffc000 flags: 0x1
[    0.243057] dmar: IOMMU 0: reg_base_addr dfffc000 ver 1:0 cap d2078c106f0462 ecap f020fe
[    0.251150] dmar: RMRR base: 0x000000cba11000 end: 0x000000cba27fff
[    0.257428] dmar: ATSR flags: 0x0
[    0.260752] IOAPIC id 0 under DRHD base  0xdfffc000 IOMMU 0
[    0.266318] IOAPIC id 2 under DRHD base  0xdfffc000 IOMMU 0
[    0.271873] HPET id 0 under DRHD base 0xdfffc000
[    0.276787] IR is enabled prior to OS.
[    0.280543] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.290569] Enabled IRQ remapping in x2apic mode
[    0.295793] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.311836] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-1603 0 @ 2.80GHz (fam: 06, model: 2d, stepping: 07)
[    0.321233] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.331798] ... version:                3
[    0.335798] ... bit width:              48
[    0.339899] ... generic registers:      8
[    0.343917] ... value mask:             0000ffffffffffff
[    0.349236] ... max period:             0000ffffffffffff
[    0.354555] ... fixed-purpose events:   3
[    0.358571] ... event mask:             00000007000000ff
[    0.365068] x86: Booted up 1 node, 1 CPUs
[    0.369089] smpboot: Total of 1 processors activated (5586.47 BogoMIPS)
[    0.375739] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.386838] devtmpfs: initialized
[    0.395976] PM: Registering ACPI NVS region [mem 0xcb750000-0xcb7dafff] (569344 bytes)
[    0.403925] PM: Registering ACPI NVS region [mem 0xcbaad000-0xcbaaefff] (8192 bytes)
[    0.411660] PM: Registering ACPI NVS region [mem 0xcbabb000-0xcbacdfff] (77824 bytes)
[    0.419482] PM: Registering ACPI NVS region [mem 0xcbb56000-0xcbb5dfff] (32768 bytes)
[    0.427317] PM: Registering ACPI NVS region [mem 0xcbb71000-0xcbffffff] (4780032 bytes)
[    0.435539] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.445303] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.452262] pinctrl core: initialized pinctrl subsystem
[    0.457536] RTC time: 10:37:02, date: 04/29/15
[    0.462187] NET: Registered protocol family 16
[    0.467020] cpuidle: using governor menu
[    0.471152] ACPI: bus type PCI registered
[    0.475160] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.481718] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.491006] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.498450] PCI: Using configuration type 1 for base access
[    0.504311] perf_event_intel: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[    0.514793] ACPI: Added _OSI(Module Device)
[    0.518993] ACPI: Added _OSI(Processor Device)
[    0.523451] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.528161] ACPI: Added _OSI(Processor Aggregator Device)
[    0.547246] ACPI: Executed 1 blocks of module-level executable AML code
[    0.676932] ACPI: Interpreter enabled
[    0.680610] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150410/hwxface-580)
[    0.689859] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150410/hwxface-580)
[    0.699122] ACPI: (supports S0 S3 S5)
[    0.702784] ACPI: Using IOAPIC for interrupt routing
[    0.707798] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.718463] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.741051] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    0.747236] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.755636] acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability]
[    0.762877] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
[    0.772090] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[    0.779818] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
[    0.787373] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
[    0.794389] PCI host bridge to bus 0000:00
[    0.798498] pci_bus 0000:00: root bus resource [bus 00-7f]
[    0.803986] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.810759] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.817538] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.824314] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.831093] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.838557] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.846026] pci_bus 0000:00: root bus resource [mem 0xd4000000-0xdfffffff window]
[    0.853494] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3c007fffffff window]
[    0.862049] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.867944] pci 0000:00:02.0: System wakeup disabled by ACPI
[    0.873839] pci 0000:00:03.0: System wakeup disabled by ACPI
[    0.881198] pci 0000:00:19.0: System wakeup disabled by ACPI
[    0.887113] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.893180] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    0.897884] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    0.904617] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.910497] pci 0000:00:1c.5: Enabling MPC IRBNCE
[    0.915201] pci 0000:00:1c.5: Intel PCH root port ACS workaround enabled
[    0.921946] pci 0000:00:1c.5: System wakeup disabled by ACPI
[    0.927775] pci 0000:00:1c.6: Enabling MPC IRBNCE
[    0.932477] pci 0000:00:1c.6: Intel PCH root port ACS workaround enabled
[    0.939210] pci 0000:00:1c.6: System wakeup disabled by ACPI
[    0.945045] pci 0000:00:1c.7: Enabling MPC IRBNCE
[    0.949762] pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled
[    0.956513] pci 0000:00:1c.7: System wakeup disabled by ACPI
[    0.962422] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.968247] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.974687] pci 0000:00:01.0: PCI bridge to [bus 03]
[    0.981695] pci 0000:00:02.0: PCI bridge to [bus 05]
[    0.986766] pci 0000:00:03.0: PCI bridge to [bus 04]
[    0.992023] pci 0000:02:00.0: VF(n) BAR0 space: [mem 0xde800000-0xde87bfff 64bit pref] (contains BAR0 for 31 VFs)
[    1.002485] pci 0000:00:11.0: PCI bridge to [bus 02]
[    1.007553] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    1.012620] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.017677] pci 0000:00:1c.6: PCI bridge to [bus 07]
[    1.024661] pci 0000:00:1c.7: PCI bridge to [bus 08]
[    1.030149] pci 0000:00:1e.0: PCI bridge to [bus 09] (subtractive decode)
[    1.037879] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-ff])
[    1.044067] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    1.052491] acpi PNP0A08:01: _OSC: platform does not support [PCIeCapability]
[    1.059741] acpi PNP0A08:01: _OSC: not requesting control; platform does not support [PCIeCapability]
[    1.068944] acpi PNP0A08:01: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[    1.076670] acpi PNP0A08:01: _OSC: platform willing to grant [PCIeHotplug PME AER]
[    1.084224] acpi PNP0A08:01: _OSC failed (AE_SUPPORT); disabling ASPM
[    1.090899] PCI host bridge to bus 0000:80
[    1.095002] pci_bus 0000:80: root bus resource [bus 80-ff]
[    1.100484] pci_bus 0000:80: root bus resource [io  0x0000-0x03af window]
[    1.107260] pci_bus 0000:80: root bus resource [io  0x03e0-0x0cf7 window]
[    1.114039] pci_bus 0000:80: root bus resource [mem 0x000c0000-0x000dffff window]
[    1.121669] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15), disabled.
[    1.129988] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15), disabled.
[    1.138300] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15), disabled.
[    1.146408] ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 5 6 10 11 12 14 15), disabled.
[    1.154518] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 7 10 11 12 14 15), disabled.
[    1.162825] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.171326] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 11 12 14 15), disabled.
[    1.179644] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *10 11 12 14 15), disabled.
[    1.188199] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 4/0x2 ignored.
[    1.196018] ACPI: Unable to map lapic to logical cpu number
[    1.201750] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 5/0x4 ignored.
[    1.209582] ACPI: Unable to map lapic to logical cpu number
[    1.215318] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 6/0x6 ignored.
[    1.223153] ACPI: Unable to map lapic to logical cpu number
[    1.229434] ACPI: Enabled 2 GPEs in block 00 to 3F
[    1.234470] vgaarb: setting as boot device: PCI:0000:05:00.0
[    1.240127] vgaarb: device added: PCI:0000:05:00.0,decodes=io+mem,owns=io+mem,locks=none
[    1.248211] vgaarb: loaded
[    1.250925] vgaarb: bridge control possible 0000:05:00.0
[    1.256375] SCSI subsystem initialized
[    1.260262] ACPI: bus type USB registered
[    1.264311] usbcore: registered new interface driver usbfs
[    1.269801] usbcore: registered new interface driver hub
[    1.275125] usbcore: registered new device driver usb
[    1.280345] PCI: Using ACPI for IRQ routing
[    1.292659] PCI: Discovered peer bus ff
[    1.296562] ACPI: \: failed to evaluate _DSM (0x1001)
[    1.301617] PCI host bridge to bus 0000:ff
[    1.305712] pci_bus 0000:ff: root bus resource [io  0x0000-0xffff]
[    1.311880] pci_bus 0000:ff: root bus resource [mem 0x00000000-0x3fffffffffff]
[    1.319092] pci_bus 0000:ff: No busn resource found for root bus, will use [bus ff-ff]
[    1.331425] NetLabel: Initializing
[    1.334831] NetLabel:  domain hash size = 128
[    1.339187] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.344167] NetLabel:  unlabeled traffic allowed by default
[    1.349929] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.356272] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.364155] Switched to clocksource hpet
[    1.378628] pnp: PnP ACPI init
[    1.381916] system 00:00: [mem 0xfc000000-0xfcffffff window] has been reserved
[    1.389159] system 00:00: [mem 0xfd000000-0xfdffffff window] has been reserved
[    1.396381] system 00:00: [mem 0xfe000000-0xfeafffff window] has been reserved
[    1.403595] system 00:00: [mem 0xfeb00000-0xfebfffff window] has been reserved
[    1.410816] system 00:00: [mem 0xfed00400-0xfed3ffff window] could not be reserved
[    1.418371] system 00:00: [mem 0xfed45000-0xfedfffff window] has been reserved
[    1.425578] system 00:00: [mem 0xdffff000-0xdfffffff window] has been reserved
[    1.433036] system 00:01: [io  0x0620-0x063f] has been reserved
[    1.438955] system 00:01: [io  0x0610-0x061f] has been reserved
[    1.445255] system 00:05: [io  0x04d0-0x04d1] has been reserved
[    1.451860] system 00:07: [io  0x0400-0x0453] could not be reserved
[    1.458143] system 00:07: [io  0x0458-0x047f] has been reserved
[    1.464072] system 00:07: [io  0x1180-0x119f] has been reserved
[    1.469997] system 00:07: [io  0x0500-0x057f] has been reserved
[    1.475926] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.482549] system 00:07: [mem 0xfec00000-0xfecfffff] could not be reserved
[    1.489517] system 00:07: [mem 0xfed08000-0xfed08fff] has been reserved
[    1.496120] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[    1.502862] system 00:08: [io  0x0454-0x0457] has been reserved
[    1.509408] system 00:09: [mem 0xfed40000-0xfed44fff] has been reserved
[    1.516024] pnp: PnP ACPI: found 10 devices
[    1.527531] clocksource acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.536416] pci 0000:00:01.0: PCI bridge to [bus 03]
[    1.541392] pci 0000:00:02.0: PCI bridge to [bus 05]
[    1.546363] pci 0000:00:02.0:   bridge window [io  0xd000-0xdfff]
[    1.552460] pci 0000:00:02.0:   bridge window [mem 0xd6000000-0xd70fffff]
[    1.559247] pci 0000:00:02.0:   bridge window [mem 0xd8000000-0xddffffff 64bit pref]
[    1.566993] pci 0000:00:03.0: PCI bridge to [bus 04]
[    1.571969] pci 0000:00:11.0: PCI bridge to [bus 02]
[    1.576930] pci 0000:00:11.0:   bridge window [io  0xe000-0xefff]
[    1.583023] pci 0000:00:11.0:   bridge window [mem 0xde400000-0xde8fffff 64bit pref]
[    1.590773] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    1.595747] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.600725] pci 0000:00:1c.6: PCI bridge to [bus 07]
[    1.605702] pci 0000:00:1c.7: PCI bridge to [bus 08]
[    1.610669] pci 0000:00:1c.7:   bridge window [mem 0xd7200000-0xd72fffff]
[    1.617457] pci 0000:00:1e.0: PCI bridge to [bus 09]
[    1.622418] pci 0000:00:1e.0:   bridge window [io  0xc000-0xcfff]
[    1.628523] pci 0000:00:1e.0:   bridge window [mem 0xd7100000-0xd71fffff]
[    1.635493] NET: Registered protocol family 2
[    1.640142] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[    1.647220] TCP bind hash table entries: 2048 (order: 3, 32768 bytes)
[    1.653666] TCP: Hash tables configured (established 2048 bind 2048)
[    1.660060] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    1.665892] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    1.672227] NET: Registered protocol family 1
[    1.682331] Unpacking initramfs...
[    2.307008] Freeing initrd memory: 19720K (ffff880031cbe000 - ffff880033000000)
[    2.314686] Translation is enabled prior to OS.
[    2.319221] IOMMU Copying translate tables from panicked kernel
[    2.325295] IOMMU: root_cache:0xffff88002ccbb000 phys:0x0000c6548000
[    2.331655] IOMMU: dmar0 using Queued invalidation
[    2.336450] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[    2.345395] RAPL PMU detected, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    2.353994] hw unit of domain pp0-core 2^-16 Joules
[    2.358868] hw unit of domain package 2^-16 Joules
[    2.363655] hw unit of domain dram 2^-16 Joules
[    2.368417] microcode: CPU0 sig=0x206d7, pf=0x1, revision=0x710
[    2.374442] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.383569] AVX version of gcm_enc/dec engaged.
[    2.388108] AES CTR mode by8 optimization enabled
[    2.396079] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[    2.402980] futex hash table entries: 256 (order: 2, 16384 bytes)
[    2.409140] Initialise system trusted keyring
[    2.413542] audit: initializing netlink subsys (disabled)
[    2.418975] audit: type=2000 audit(1430303822.418:1): initialized
[    2.426139] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.435279] zpool: loaded
[    2.438216] VFS: Disk quotas dquot_6.6.0
[    2.442219] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.449839] Key type big_key registered
[    2.454761] alg: No test for stdrng (krng)
[    2.458884] NET: Registered protocol family 38
[    2.463360] Key type asymmetric registered
[    2.467472] Asymmetric key parser 'x509' registered
[    2.472438] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.479862] io scheduler noop registered
[    2.483800] io scheduler deadline registered
[    2.488144] io scheduler cfq registered (default)
[    2.494392] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.500020] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.506896] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.515253] ACPI: Power Button [PWRB]
[    2.518991] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.526378] ACPI: Power Button [PWRF]
[    2.531997] GHES: HEST is not enabled!
[    2.535871] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.562820] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.591181] 0000:00:16.3: ttyS1 at I/O 0xf060 (irq = 17, base_baud = 115200) is a 16550A
[    2.599752] Non-volatile memory driver v1.3
[    2.604004] Linux agpgart interface v0.103
[    2.619575] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl RAID mode
[    2.627657] ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pio ems sxs apst 
[    2.637433] scsi host0: ahci
[    2.640467] scsi host1: ahci
[    2.643472] scsi host2: ahci
[    2.646470] scsi host3: ahci
[    2.649477] scsi host4: ahci
[    2.652482] scsi host5: ahci
[    2.655438] ata1: SATA max UDMA/133 abar m2048@0xd7348000 port 0xd7348100 irq 27
[    2.662824] ata2: DUMMY
[    2.665275] ata3: SATA max UDMA/133 abar m2048@0xd7348000 port 0xd7348200 irq 27
[    2.672666] ata4: DUMMY
[    2.675113] ata5: DUMMY
[    2.677562] ata6: DUMMY
[    2.680385] libphy: Fixed MDIO Bus: probed
[    2.684693] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    2.689982] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 1
[    2.697664] xhci_hcd 0000:08:00.0: hcc params 0x0270f06d hci version 0x96 quirks 0x00004000
[    2.706170] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.712953] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.720172] usb usb1: Product: xHCI Host Controller
[    2.725050] usb usb1: Manufacturer: Linux 4.0.0+ xhci-hcd
[    2.730451] usb usb1: SerialNumber: 0000:08:00.0
[    2.735274] hub 1-0:1.0: USB hub found
[    2.739053] hub 1-0:1.0: 4 ports detected
[    2.743275] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    2.748560] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 2
[    2.755999] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    2.762778] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.769992] usb usb2: Product: xHCI Host Controller
[    2.774865] usb usb2: Manufacturer: Linux 4.0.0+ xhci-hcd
[    2.780256] usb usb2: SerialNumber: 0000:08:00.0
[    2.785049] hub 2-0:1.0: USB hub found
[    2.788829] hub 2-0:1.0: 4 ports detected
[    2.793070] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.799603] ehci-pci: EHCI PCI platform driver
[    2.804223] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    2.809519] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    2.816918] ehci-pci 0000:00:1a.0: debug port 2
[    2.825476] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd734b000
[    2.836792] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    2.842597] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    2.849380] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.856592] usb usb3: Product: EHCI Host Controller
[    2.861469] usb usb3: Manufacturer: Linux 4.0.0+ ehci_hcd
[    2.866864] usb usb3: SerialNumber: 0000:00:1a.0
[    2.871736] hub 3-0:1.0: USB hub found
[    2.875523] hub 3-0:1.0: 3 ports detected
[    2.879920] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    2.885234] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    2.892646] ehci-pci 0000:00:1d.0: debug port 2
[    2.901304] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd734a000
[    2.912902] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    2.918730] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002
[    2.925512] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.932747] usb usb4: Product: EHCI Host Controller
[    2.937639] usb usb4: Manufacturer: Linux 4.0.0+ ehci_hcd
[    2.943057] usb usb4: SerialNumber: 0000:00:1d.0
[    2.947909] hub 4-0:1.0: USB hub found
[    2.951684] hub 4-0:1.0: 3 ports detected
[    2.955934] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.962132] ohci-pci: OHCI PCI platform driver
[    2.966601] uhci_hcd: USB Universal Host Controller Interface driver
[    2.973066] usbcore: registered new interface driver usbserial
[    2.978909] usbcore: registered new interface driver usbserial_generic
[    2.985490] usbserial: USB Serial support registered for generic
[    2.991520] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.997725] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.003994] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    3.012319] ata3.00: ATAPI: hp       CDDVDW SH-216ALN, HA5A, max UDMA/100
[    3.019125] ata1.00: ATA-8: WDC WD10EALX-609BA0, 18.01H18, max UDMA/100
[    3.025752] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    3.035655] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.040666] ata3.00: configured for UDMA/100
[    3.044957] ata1.00: configured for UDMA/100
[    3.049378] scsi 0:0:0:0: Direct-Access     ATA      WDC WD10EALX-609 1H18 PQ: 0 ANSI: 5
[    3.057523] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.062805] mousedev: PS/2 mouse device common for all mice
[    3.068682] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.074058] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    3.082100] sd 0:0:0:0: [sda] Write Protect is off
[    3.086998] rtc_cmos 00:04: RTC can wake from S4
[    3.091647] scsi 2:0:0:0: CD-ROM            hp       CDDVDW SH-216ALN HA5A PQ: 0 ANSI: 5
[    3.099973] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    3.106123] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.115613] rtc_cmos 00:04: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    3.123614] device-mapper: uevent: version 1.0.3
[    3.128405]  sda: sda1 sda2
[    3.131679] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.136335] device-mapper: ioctl: 4.31.0-ioctl (2015-3-12) initialised: dm-devel@redhat.com
[    3.145429] Intel P-state driver initializing.
[    3.151685] hidraw: raw HID events driver (C) Jiri Kosina
[    3.157694] usbcore: registered new interface driver usbhid
[    3.163274] usbhid: USB HID core driver
[    3.167188] drop_monitor: Initializing network drop monitor service
[    3.173625] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.178975] sr 2:0:0:0: [sr0] scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
[    3.187607] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.192862] Initializing XFRM netlink socket
[    3.197314] NET: Registered protocol family 10
[    3.201773] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    3.208817] mip6: Mobile IPv6
[    3.211978] sr 2:0:0:0: Attached scsi generic sg1 type 5
[    3.217292] NET: Registered protocol family 17
[    3.221791] dmar: DRHD: handling fault status reg 2
[    3.226666] dmar: DMAR:[DMA Read] Request device [00:1f.2] fault addr fffc0000 
[    3.226666] DMAR:[fault reason 06] PTE Read access is not set
[    3.239704] ata3.00: exception Emask 0x60 SAct 0x0 SErr 0x800 action 0x6 frozen
[    3.247007] ata3.00: irq_stat 0x20000000, host bus error
[    3.252323] ata3: SError: { HostInt }
[    3.255995] ata3.00: cmd a0/00:00:00:08:00/00:00:00:00:00/a0 tag 5 pio 16392 in
[    3.255995]          Get event status notification 4a 01 00 00 10 00 00 00 08 00res 50/00:03:00:80:00/00:00:00:00:00/a0 Emask 0x60 (host bus error)
[    3.276455] ata3.00: status: { DRDY }
[    3.280121] ata3: hard resetting link
[    3.283806] usb 4-1: new high-speed USB device number 2 using ehci-pci
[    3.290350] mce: Unable to init device /dev/mcelog (rc: -5)
[    3.296192] Loading compiled-in X.509 certificates
[    3.302015] Loaded X.509 cert 'Magrathea: Glacier signing key: 8d99b9f6f028e78c7dfe07caad5fd2ff7cee9c74'
[    3.311548] registered taskstats version 1
[    3.316092]   Magic number: 11:806:629
[    3.319931] rtc_cmos 00:04: setting system clock to 2015-04-29 10:37:05 UTC (1430303825)
[    3.328504] Freeing unused kernel memory: 1500K (ffffffff81d41000 - ffffffff81eb8000)
[    3.336329] Write protecting the kernel read-only data: 12288k
[    3.342583] Freeing unused kernel memory: 464K (ffff88003378c000 - ffff880033800000)
[    3.350787] Freeing unused kernel memory: 836K (ffff880033b2f000 - ffff880033c00000)
[    3.358525] tsc: Refined TSC clocksource calibration: 2793.268 MHz
[    3.364699] clocksource tsc: mask: 0xffffffffffffffff max_cycles: 0x28436928c28, max_idle_ns: 440795267499 ns
[    3.375952] random: systemd urandom read with 13 bits of entropy available
[    3.383395] systemd[1]: systemd 217 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -L)
[    3.401586] systemd[1]: Detected architecture 'x86-64'.
[    3.406820] systemd[1]: Running in initial RAM disk.

Welcome to Fedora 21 (Twenty One) dracut-038-30.git20140903.fc21 (Initramfs)!

[    3.420591] systemd[1]: Set hostname to <dhcp-128-28.nay.redhat.com>.
[    3.427453] usb 3-1: New USB device found, idVendor=8087, idProduct=0024
[    3.434150] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.441287] usb 4-1: New USB device found, idVendor=8087, idProduct=0024
[    3.447985] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.467331] hub 3-1:1.0: USB hub found
[    3.471115] hub 4-1:1.0: USB hub found
[    3.478192] hub 4-1:1.0: 8 ports detected
[    3.482208] hub 3-1:1.0: 6 ports detected
[    3.494103] systemd[1]: Expecting device dev-mapper-fedora_dhcp\x2d\x2d128\x2d\x2d28\x2dswap.device...
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2dswap.device...
[    3.511619] systemd[1]: Expecting device dev-disk-by\x2duuid-689a8845\x2d7f32\x2d4fd7\x2d87fc\x2d615276a16f2f.device...
         Expecting device dev-disk-by\x2duui...2d87fc\x2d615276a16f2f.device...
[    3.530640] systemd[1]: Expecting device dev-mapper-fedora_dhcp\x2d\x2d128\x2d\x2d28\x2droot.device...
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2droot.device...
[    3.548656] systemd[1]: Starting Timers.
[  OK  ] Reached target Timers.
[    3.556651] systemd[1]: Reached target Timers.
[    3.561115] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[    3.569147] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    3.577064] systemd[1]: Starting Paths.
[  OK  ] Reached target Paths.
[    3.585700] systemd[1]: Reached target Paths.
[    3.590077] systemd[1]: Starting -.slice.
[  OK  ] Created slice -.slice.
[    3.601708] systemd[1]: Created slice -.slice.
[    3.606181] systemd[1]: Starting udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[    3.617731] systemd[1]: Listening on udev Control Socket.
[    3.623154] systemd[1]: Starting udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[    3.633749] systemd[1]: Listening on udev Kernel Socket.
[    3.639080] systemd[1]: Starting Journal Socket.
[  OK  [    3.644687] dmar: DRHD: handling fault status reg 102
[    3.650280] dmar: DMAR:[DMA Write] Request device [00:1f.2] fault addr fffc0000 
[    3.650280] DMAR:[fault reason 05] PTE Write access is not set
] Listening on J[    3.663523] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ournal Socket.
[    3.671072] dmar: DRHD: handling fault status reg 202
[    3.677461] dmar: DMAR:[DMA Read] Request device [00:1f.2] fault addr fffc0000 
[    3.677461] DMAR:[fault reason 06] PTE Read access is not set
[    3.690485] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x100)
[    3.696742] ata3.00: revalidation failed (errno=-5)
[    3.701702] systemd[1]: Listening on Journal Socket.
[    3.706683] systemd[1]: Starting System Slice.
[  OK  ] Created slice System Slice.
[    3.715837] systemd[1]: Created slice System Slice.
[    3.720795] systemd[1]: Started dracut ask for additional cmdline parameters.
[    3.728016] systemd[1]: Starting dracut cmdline hook...
         Starting dracut cmdline hook...
[    3.738143] systemd[1]: Starting system-systemd\x2dfsck.slice.
[  OK  ] Created slice system-systemd\x2dfsck.slice.
[    3.754853] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    3.764945] systemd[1]: Starting Create list of required static device nodes for the current kernel...
         Startin[    3.783966] usb 4-1.1: new high-speed USB device number 3 using ehci-pci
g Create list of required st... nodes for the current kernel...
[    3.799162] systemd[1]: Starting Journal Socket (/dev/log).
[    3.807691] systemd[1]: Starting Slices.
[  OK  ] Reached target Slices.
[    3.820928] systemd[1]: Reached target Slices.
[    3.827320] systemd[1]: Started Load Kernel Modules.
[    3.837299] systemd[1]: Starting Apply Kernel Variables...
         Starting Apply Kernel Variables...
[    3.853225] systemd[1]: Starting Swap.
[  OK  ] Reached target Swap.
[    3.863972] systemd[1]: Reached target Swap.
[    3.870307] systemd[1]: Starting Local File Systems.
[  OK  [    3.880322] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2412
] Reached target[    3.888186] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
 Local File Systems.
[    3.900011] systemd[1]: Reached target Local File Systems.
[  OK  ] Started Create[    3.910759] hub 4-1.1:1.0: USB hub found
 list of require[    3.915877] hub 4-1.1:1.0: 2 ports detected
d sta...ce nodes for the current kernel.
[    3.925064] systemd[1]: Started Create list of required static device nodes for the current kernel.
[  OK  ] Started dracut cmdline hook.
[    3.939083] systemd[1]: Started dracut cmdline hook.
[  OK  ] Listening on Journal Socket (/dev/log).
[    3.950118] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Started Apply Kernel Variables.
[    3.962129] systemd[1]: Started Apply Kernel Variables.
[    3.971875] systemd[1]: Starting Sockets.
[  OK  ] Reached target Sockets.
[    3.980130] systemd[1]: Reached target Sockets.
[    3.984675] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[    3.994543] systemd[1]: Starting dracut pre-udev hook...
[    4.001744] systemd-journald[218]: File /var/log/journal/95212bce02f14a269471981f705ca21f/system.journal corrupted or uncleanly shut down, renaming and replacing.
         Starting dracut pre-udev hook...
[    4.021459] systemd[1]: Starting Create Static Device Nodes in /dev...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Started Create Static Device Nodes in /dev.
[    4.053182] systemd[1]: Started Create Static Device Nodes in /dev.
[  OK  ] Started dracut pre-udev hook.
[    4.091249] systemd[1]: Started dracut pre-udev hook.
[  OK  ] Started Journal Service.
[    4.101278] systemd[1]: Started Journal Service.
         Starting udev Kernel Device Manager...
[  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.
[    4.200477] wmi: Mapper loaded
[    4.203681] usb 4-1.1.1: new low-speed USB device number 4 using ehci-pci
[    4.222406] [drm] Initialized drm 1.1.0 20060810
[    4.240547] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    4.258375] isci 0000:02:00.0: driver configured for rev: 5 silicon
[    4.291419] isci 0000:02:00.0: OEM SAS parameters (version: 1.3) loaded (firmware)
[    4.313180] isci 0000:02:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    4.328315] usb 4-1.1.1: New USB device found, idVendor=03f0, idProduct=0324
[    4.335360] usb 4-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.342835] usb 4-1.1.1: Product: HP Basic USB Keyboard
[    4.348057] usb 4-1.1.1: Manufacturer: Lite-On Technology Corp.
[    4.359190] nouveau  [  DEVICE][0000:05:00.0] BOOT0  : 0x0a8c00b1
[    4.365325] nouveau  [  DEVICE][0000:05:00.0] Chipset: GT218 (NVA8)
[    4.371618] nouveau  [  DEVICE][0000:05:00.0] Family : NV50
[    4.384935] input: Lite-On Technology Corp. HP Basic USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.1/4-1.1.1/4-1.1.1:1.0/0003:03F0:0324.0001/input5
[    4.404579] scsi host6: isci
[    4.409301] random: nonblocking pool is initialized
[    4.416905] Switched to clocksource tsc
[    4.530384] hid-generic 0003:03F0:0324.0001: input,hidraw0: USB HID v1.10 Keyboard [Lite-On Technology Corp. HP Basic USB Keyboard] on usb-0000:00:1d.0-1.1.1/inpu0
[    4.617826] usb 4-1.1.2: new low-speed USB device number 5 using ehci-pci
[    4.988061] usb 4-1.1.2: New USB device found, idVendor=03f0, idProduct=0b4a
[    4.995136] usb 4-1.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    5.002619] usb 4-1.1.2: Product: USB Optical Mouse
[    5.007555] usb 4-1.1.2: Manufacturer: Logitech
[    5.040561] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.1/4-1.1.2/4-1.1.2:1.0/0003:03F0:0B4A.0002/input/input6
[    5.068488] hid-generic 0003:03F0:0B4A.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.1.2/input0
[    5.087326] scsi host7: ata_generic
[    5.098343] scsi host8: ata_generic
[    5.105436] ata7: PATA max UDMA/100 cmd 0xf0b0 ctl 0xf0a0 bmdma 0xf070 irq 18
[    5.112603] ata8: PATA max UDMA/100 cmd 0xf090 ctl 0xf080 bmdma 0xf078 irq 18
[    5.411708] nouveau  [   VBIOS][0000:05:00.0] using image from PRAMIN
[    5.418722] nouveau  [   VBIOS][0000:05:00.0] BIT signature found
[    5.424818] nouveau  [   VBIOS][0000:05:00.0] version 70.18.89.00.02
[    5.469015] nouveau  [     PMC][0000:05:00.0] MSI interrupts enabled
[    5.476719] pps_core: LinuxPPS API ver. 1 registered
[    5.481675] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    5.499853] nouveau  [     PFB][0000:05:00.0] RAM type: DDR3
[    5.505527] nouveau  [     PFB][0000:05:00.0] RAM size: 512 MiB
[    5.511451] nouveau  [     PFB][0000:05:00.0]    ZCOMP: 960 tags
[    5.542850] PTP clock support registered
[    5.596306] nouveau  [    VOLT][0000:05:00.0] GPU voltage: 900000uv
[    5.655578] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
[    5.661411] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
[    5.692267] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    5.708902] nouveau  [  PTHERM][0000:05:00.0] FAN control: none / external
[    5.715826] nouveau  [  PTHERM][0000:05:00.0] fan management: automatic
[    5.722450] nouveau  [  PTHERM][0000:05:00.0] internal sensor: yes
[    5.801093] nouveau  [     CLK][0000:05:00.0] 03: core 135 MHz shader 270 MHz memory 135 MHz
[    5.828131] nouveau  [     CLK][0000:05:00.0] 07: core 405 MHz shader 810 MHz memory 405 MHz
[    5.846134] nouveau  [     CLK][0000:05:00.0] 0f: core 520 MHz shader 1230 MHz memory 790 MHz
[    5.854747] nouveau  [     CLK][0000:05:00.0] --: core 405 MHz shader 810 MHz memory 405 MHz
[    5.901174] [TTM] Zone  kernel: Available graphics memory: 119828 kiB
[    5.907609] [TTM] Initializing pool allocator
[    5.921188] [TTM] Initializing DMA pool allocator
[    5.928128] nouveau  [     DRM] VRAM: 512 MiB
[    5.932490] nouveau  [     DRM] GART: 1048576 MiB
[    5.937198] nouveau  [     DRM] TMDS table version 2.0
[    5.942326] nouveau  [     DRM] DCB version 4.0
[    5.946860] nouveau  [     DRM] DCB outp 00: 02000360 00000000
[    5.952683] nouveau  [     DRM] DCB outp 01: 02000362 00020010
[    5.958511] nouveau  [     DRM] DCB outp 02: 028003a6 0f220010
[    5.964349] nouveau  [     DRM] DCB outp 03: 01011380 00000000
[    5.970169] nouveau  [     DRM] DCB outp 04: 08011382 00020010
[    5.975991] nouveau  [     DRM] DCB outp 05: 088113c6 0f220010
[    5.981821] nouveau  [     DRM] DCB conn 00: 00101064
[    5.986897] nouveau  [     DRM] DCB conn 01: 00202165
[    6.012149] nouveau E[   PDISP][0000:05:00.0] UNK01 [UNK02] chid 0 mthd 0x0000 data 0x00000400
[    6.020748] nouveau E[   PDISP][0000:05:00.0] UNK01 [UNK02] chid 1 mthd 0x0000 data 0x00000400
[    6.042493] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    6.049104] [drm] Driver supports precise vblank timestamp query.
[    6.085985] nouveau  [     DRM] MM: using COPY for buffer copies
[    6.122810] e1000e 0000:00:19.0 eth0: registered PHC clock
[    6.128296] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 80:c1:6e:f8:9f:92
[    6.136193] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[    6.145426] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 0100FF-0FF
[    6.242421] tulip: Linux Tulip driver version 1.1.15 (Feb 27, 2007)
[    6.253721] tulip: tulip_init_one: Enabled WOL support for AN983B
[    6.261665] tulip0:  MII transceiver #1 config 1000 status 786d advertising 05e1
[    6.278694] net eth1: ADMtek Comet rev 17 at MMIO 0xd7121000, 00:b0:c0:06:70:90, IRQ 20
[    6.349682] firewire_ohci 0000:09:05.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
[  OK  ] Found device WDC_WD10EALX-609BA0 1.
[    6.860267] firewire_core 0000:09:05.0: created device fw0: GUID 0060b000008cec98, S400
[    8.676219] ata3: hard resetting link
[    8.984562] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    8.995356] ata3.00: configured for UDMA/100
[    8.999897] ata3: EH complete
[    9.352568] e1000e 0000:00:19.0 eno1: renamed from eth0
[    9.363102] tulip 0000:09:04.0 enp9s4: renamed from eth1
[    9.374412] iTCO_vendor_support: vendor-support=0
[    9.380595] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    9.386231] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[   10.153286] nouveau  [     DRM] allocated 1920x1080 fb: 0x70000, bo ffff880032afd400
[   10.161103] fbcon: nouveaufb (fb0) is primary device
[   18.218368] Console: switching to colour frame buffer device 240x67
[   18.232823] nouveau 0000:05:00.0: fb0: nouveaufb frame buffer device
[   18.239186] nouveau 0000:05:00.0: registered panic notifier
[   18.244950] [drm] Initialized nouveau 1.2.2 20120801 for 0000:05:00.0 on minor 0
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-swap.
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-root.
         Starting File System Check on /dev/mapper/fedora_dhcp--128--28-root...
[  OK  ] Started dracut initqueue hook.
[  OK  ] Reached target Remote File Systems (Pre).
[  OK  ] Reached target Remote File Systems.
[   17.574332] systemd-fsck[361]: /dev/mapper/fedora_dhcp--128--28-root: recovering journal
[   19.639716] systemd-fsck[361]: /dev/mapper/fedora_dhcp--128--28-root: Clearing orphaned inode 1705150 (uid=42, gid=42, mode=0100644, size=451)
[   19.648774] systemd-fsck[361]: /dev/mapper/fedora_dhcp--128--28-root: clean, 162324/19660800 files, 9598778/78643200 blocks
[  OK  ] Started File System Check on /dev/mapper/fedora_dhcp--128--28-root.
         Mounting /sysroot...
[   22.093146] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[  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.
         Starting dracut pre-pivot and cleanup hook...
[  OK  ] Started dracut pre-pivot and cleanup hook.
         Starting Kdump Vmcore Save Service...
kdump: dump target is /dev/mapper/fedora_dhcp--128--28-root
kdu[   22.464100] EXT4-fs (dm-1): re-mounted. Opts: data=ordered
mp: saving to /sysroot//var/crash/127.0.0.1-2015.04.29-18:37:24/
kdump: saving vmcore-dmesg.txt
kdump: saving vmcore-dmesg.txt complete
kdump: saving vmcore
Copying data                       : [100.0 %] |
kdump: saving vmcore complete
[  OK  ] Stopped target Timers.
[  OK  ] Removed slice system-systemd\x2dfsck.slice.
         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).
[  OK  ] Stopped target Initrd Default Target.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped targ[   24.137096] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
et Slices.
[  OK  ] Removed slice -.slice.
[  OK[   24.148896] systemd-journald[218]: Received SIGTERM from PID 1 (systemd-shutdow).
  ] Stopped target Paths.
[[   24.159738] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
  OK  ] Stopped target Sockets.
[[   24.170398] systemd-shutdown[1]: Unmounting file systems.
  OK  ] Stopped target System Initialization.
         Stopping Apply Kernel Variables...
[  OK  ] Stopped Apply Kernel Variables.
         Stopping Create Static Device Nodes in /dev...
[  OK  ] Stopped Create Static Device Nodes in /dev.
[  OK  ] Reached target Shutdown.
[  OK  ] Stopped target Swap.
[[   24.206037] EXT4-fs (dm-1): re-mounted. Opts: (null)
  OK  ][   24.212563] systemd-shutdown[1]: Unmounting /sysroot.
 Stopped target Local File Systems.
[  OK  ] Stopped target Initrd File Systems.
[  OK  ] Stopped target Initrd Root File System.
         Starting Cleaning Up and Shuttin[   24.234371] systemd-shutdown[1]: Unmounting /sys/kernel/config.
g Down Daemons..[   24.241384] systemd-shutdown[1]: All filesystems unmounted.
.
         Unmo[   24.248331] systemd-shutdown[1]: Deactivating swaps.
unting /sysroot.[   24.254699] systemd-shutdown[1]: All swaps deactivated.
..
[  OK  [   24.261243] systemd-shutdown[1]: Detaching loop devices.
] Failed unm[   24.268025] systemd-shutdown[1]: All loop devices detached.
ounting /sysroot[   24.274885] systemd-shutdown[1]: Detaching DM devices.
.
[FAILE[   24.281552] systemd-shutdown[1]: Detaching DM 253:1.
D] Failed to[   24.287950] systemd-shutdown[1]: Detaching DM 253:0.
 start Cleaning [   24.294232] systemd-shutdown[1]: All DM devices detached.
Up and Shutting [   24.301110] systemd-shutdown[1]: Rebooting.
Down Daemons.
S[   24.306513] sd 0:0:0:0: [sda] Synchronizing SCSI cache
ee "systemctl status initrd-cleanup.service" for[   24.316241] e1000e: EEE TX LPI TIMER: 00000011
 details.
[  OK  ] Reached target Unmount All Filesystems.
[  OK  ] Reached target Final Step.
         Starting Reboot...
[   24.376843] reboot: Restarting system
[   24.380516] reboot: machine restart

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-29 11:20   ` Baoquan He
  0 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-04-29 11:20 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dyoung-H+wXaHxf7aLQT0dZR+AlfA, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

[-- Attachment #1: Type: text/plain, Size: 391 bytes --]

Bad news, I rebuilt a kernel with your patchset on 4.0.0+ (this commit
f614c81). Now dmar fault is  seen again.

The lspci log and kdump log are attached, please check:

[ ~]$ cat /proc/cmdline 
BOOT_IMAGE=/vmlinuz-4.0.0+ root=/dev/mapper/fedora_dhcp--128--28-root ro
rd.lvm.lv=fedora_dhcp-128-28/swap rd.lvm.lv=fedora_dhcp-128-28/root
crashkernel=256M console=ttyS0,115200 intel_iommu=on



[-- Attachment #2: lspci.txt --]
[-- Type: text/plain, Size: 0 bytes --]



[-- Attachment #3: kdump_iommu.log --]
[-- Type: text/plain, Size: 55269 bytes --]

[root@dhcp-128-28 ~]# echo c >/proc/sysrq-trigger 
[  163.160203] sysrq: SysRq : Trigger a crash
[  163.164362] BUG: unable to handle kernel NULL pointer dereference at           (null)
[  163.172220] IP: [<ffffffff81480696>] sysrq_handle_crash+0x16/0x20
[  163.178333] PGD 419aba067 PUD 419774067 PMD 0 
[  163.182838] Oops: 0002 [#1] SMP 
[  163.186114] Modules linked in: xt_CHECKSUM ipt_MASQUERADE nf_nat_masquerade_ipv4 nf_conntrack_netbios_ns nf_conntrack_broadcast ip6t_rpfilter ip6t_REJECT cfg80211i
[  163.287902] CPU: 0 PID: 1662 Comm: bash Not tainted 4.0.0+ #6
[  163.293648] Hardware name: Hewlett-Packard HP Z420 Workstation/1589, BIOS J61 v01.02 03/09/2012
[  163.302351] task: ffff8803fdefd580 ti: ffff880403744000 task.ti: ffff880403744000
[  163.309842] RIP: 0010:[<ffffffff81480696>]  [<ffffffff81480696>] sysrq_handle_crash+0x16/0x20
[  163.318383] RSP: 0018:ffff880403747da8  EFLAGS: 00010246
[  163.323696] RAX: 000000000000000f RBX: 0000000000000063 RCX: 000000000000000f
[  163.330817] RDX: 0000000000000000 RSI: ffff88042fc0ea08 RDI: 0000000000000063
[  163.337939] RBP: ffff880403747da8 R08: 0000000000000096 R09: 0000000000015098
[  163.345067] R10: 00000000000003f1 R11: 0000000000000002 R12: 0000000000000007
[  163.352203] R13: 0000000000000000 R14: ffffffff81cc33e0 R15: 0000000000000000
[  163.359346] FS:  00007ff6f6ca9700(0000) GS:ffff88042fc00000(0000) knlGS:0000000000000000
[  163.367443] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  163.373180] CR2: 0000000000000000 CR3: 00000004019d6000 CR4: 00000000000407f0
[  163.380305] Stack:
[  163.382321]  ffff880403747dd8 ffffffff81480ea6 0000000000000002 fffffffffffffffb
[  163.389771]  00007ff6f6cc5000 0000000000000002 ffff880403747df8 ffffffff81481353
[  163.397222]  ffff880403747ec8 ffff88041d167f00 ffff880403747e18 ffffffff81282408
[  163.404682] Call Trace:
[  163.407130]  [<ffffffff81480ea6>] __handle_sysrq+0x106/0x170
[  163.412784]  [<ffffffff81481353>] write_sysrq_trigger+0x33/0x40
[  163.418697]  [<ffffffff81282408>] proc_reg_write+0x48/0x70
[  163.424172]  [<ffffffff81215e77>] __vfs_write+0x37/0x110
[  163.429478]  [<ffffffff81218d48>] ? __sb_start_write+0x58/0x120
[  163.435391]  [<ffffffff8131dc03>] ? security_file_permission+0x23/0xa0
[  163.441902]  [<ffffffff812165e9>] vfs_write+0xa9/0x1b0
[  163.447035]  [<ffffffff812174a5>] SyS_write+0x55/0xd0
[  163.452085]  [<ffffffff81067f6f>] ? do_page_fault+0x2f/0x80
[  163.457651]  [<ffffffff8178416e>] system_call_fastpath+0x12/0x71
[  163.463648] Code: ef e8 bf f7 ff ff eb d8 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 66 66 66 66 90 55 c7 05 d4 6c a9 00 01 00 00 00 48 89 e5 0f ae f8 <c6> 04 25 00 0 
[  163.483597] RIP  [<ffffffff81480696>] sysrq_handle_crash+0x16/0x20
[  163.489777]  RSP <ffff880403747da8>
[  163.493257] 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+ (bhe-0VdLhd/A9PlfpSRLqpFUpR/sF2h8X+2i0E9HWUfgJXw@public.gmane.org) (gcc version 4.9.2 20150212 (Red Hat 4.9.2-6) (GCC) ) #6 SMP Wed Apr 29 16:53:34 CST 2015
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.0.0+ root=/dev/mapper/fedora_dhcp--128--28-root ro rd.lvm.lv=fedora_dhcp-128-28/swap rd.lvm.lv=fedora_dhcp-128-28/K
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x00000000000963ff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000096400-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000025000000-0x0000000034f65fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000034fff400-0x0000000034ffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cb750000-0x00000000cb7dafff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cb7db000-0x00000000cbaacfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbaad000-0x00000000cbaaefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbaaf000-0x00000000cbabafff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbabb000-0x00000000cbacdfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbace000-0x00000000cbb55fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbb56000-0x00000000cbb5dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbb5e000-0x00000000cbb70fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbb71000-0x00000000cbffffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] earlycon: no match for ttyS0,115200
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    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 0x000f4bc0-0x000f4bcf] mapped at [ffff8800000f4bc0]
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000] init_memory_mapping: [mem 0x34c00000-0x34dfffff]
[    0.000000] init_memory_mapping: [mem 0x25000000-0x34bfffff]
[    0.000000] init_memory_mapping: [mem 0x34e00000-0x34f65fff]
[    0.000000] RAMDISK: [mem 0x31cbe000-0x32ffffff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F9810 000024 (v02 HPQOEM)
[    0.000000] ACPI: XSDT 0x00000000CBA28078 00006C (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000CBA304C8 0000F4 (v04 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000CBA28170 008352 (v02 HPQOEM SLIC-WKS 00000102 INTL 20051117)
[    0.000000] ACPI: FACS 0x00000000CBB5BF80 000040
[    0.000000] ACPI: APIC 0x00000000CBA305C0 00007E (v03 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 0x00000000CBA30640 00003C (v01 HPQOEM OEMMCFG. 01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000CBA30680 000038 (v01 HPQOEM SLIC-WKS 01072009 AMI. 00000004)
[    0.000000] ACPI: ASF! 0x00000000CBA306B8 0000A0 (v32 INTEL   HCG     00000001 TFSM 000F4240)
[    0.000000] ACPI: SSDT 0x00000000CBA30758 0058DA (v01 COMPAQ WMI      00000001 MSFT 03000001)
[    0.000000] ACPI: SLIC 0x00000000CBA36038 000176 (v01 HPQOEM SLIC-WKS 00000001      00000000)
[    0.000000] ACPI: SSDT 0x00000000CBA361B0 06E284 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.000000] ACPI: DMAR 0x00000000CBAA4438 0000A0 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.000000] Setting APIC routing to cluster x2apic.
[    0.000000] NUMA turned off
[    0.000000] Faking a node at [mem 0x0000000000000000-0x0000000034ffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x34f52000-0x34f65fff]
[    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-0x0000000000095fff]
[    0.000000]   node   0: [mem 0x0000000025000000-0x0000000034f65fff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000034f65fff]
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 1/0x2 ignored.
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 2/0x4 ignored.
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 3/0x6 ignored.
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: 4 Processors exceeds NR_CPUS limit of 1
[    0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] e820: [mem 0x35000000-0xcb74ffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
[    0.000000] PERCPU: Embedded 34 pages/cpu @ffff880034c00000 s101720 r8192 d29352 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=/vmlinuz-4.0.0+ root=/dev/mapper/fedora_dhcp--128--28-root ro rd.lvm.lv=fedora_dhcp-128-28/swap rd.lvm.lv=fedora_dhcp-K
[    0.000000] Intel-IOMMU: enabled
[    0.000000] Misrouted IRQ fixup and polling support enabled
[    0.000000] This may significantly impact system performance
[    0.000000] Disabling memory control group subsystem
[    0.000000] PID hash table entries: 1024 (order: 1, 8192 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[    0.000000] Memory: 217108K/262124K available (7716K kernel code, 1276K rwdata, 3260K rodata, 1500K init, 1448K bss, 45016K 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 dyntick-idle grace-period acceleration is enabled.
[    0.000000]  RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.000000] NR_IRQS:4352 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] do_IRQ: 0.100 No irq handler for vector (irq -1)
[    0.000000] do_IRQ: 0.37 No irq handler for vector (irq -1)
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [ttyS0] enabled
[    0.000000] clocksource hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2793.236 MHz processor
[    0.000065] Calibrating delay loop (skipped), value calculated using timer frequency.. 5586.47 BogoMIPS (lpj=2793236)
[    0.010687] pid_max: default: 32768 minimum: 301
[    0.015320] ACPI: Core revision 20150410
[    0.076923] ACPI: All ACPI Tables successfully acquired
[    0.082243] Security Framework initialized
[    0.086345] SELinux:  Initializing.
[    0.089932] Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.097009] Inode-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.103936] Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
[    0.110471] Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes)
[    0.117723] Initializing cgroup subsys blkio
[    0.121992] Initializing cgroup subsys memory
[    0.126346] Initializing cgroup subsys devices
[    0.130783] Initializing cgroup subsys freezer
[    0.135220] Initializing cgroup subsys net_cls
[    0.139663] Initializing cgroup subsys perf_event
[    0.144370] Initializing cgroup subsys net_prio
[    0.148906] Initializing cgroup subsys hugetlb
[    0.153399] CPU: Physical Processor ID: 0
[    0.157416] CPU: Processor Core ID: 0
[    0.161098] process: using mwait in idle threads
[    0.165727] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.171215] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.189958] Freeing SMP alternatives memory: 28K (ffffffff81eb8000 - ffffffff81ebf000)
[    0.200232] ftrace: allocating 27958 entries in 110 pages
[    0.233887] dmar: Host address width 46
[    0.237730] dmar: DRHD base: 0x000000dfffc000 flags: 0x1
[    0.243057] dmar: IOMMU 0: reg_base_addr dfffc000 ver 1:0 cap d2078c106f0462 ecap f020fe
[    0.251150] dmar: RMRR base: 0x000000cba11000 end: 0x000000cba27fff
[    0.257428] dmar: ATSR flags: 0x0
[    0.260752] IOAPIC id 0 under DRHD base  0xdfffc000 IOMMU 0
[    0.266318] IOAPIC id 2 under DRHD base  0xdfffc000 IOMMU 0
[    0.271873] HPET id 0 under DRHD base 0xdfffc000
[    0.276787] IR is enabled prior to OS.
[    0.280543] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.290569] Enabled IRQ remapping in x2apic mode
[    0.295793] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.311836] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-1603 0 @ 2.80GHz (fam: 06, model: 2d, stepping: 07)
[    0.321233] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.331798] ... version:                3
[    0.335798] ... bit width:              48
[    0.339899] ... generic registers:      8
[    0.343917] ... value mask:             0000ffffffffffff
[    0.349236] ... max period:             0000ffffffffffff
[    0.354555] ... fixed-purpose events:   3
[    0.358571] ... event mask:             00000007000000ff
[    0.365068] x86: Booted up 1 node, 1 CPUs
[    0.369089] smpboot: Total of 1 processors activated (5586.47 BogoMIPS)
[    0.375739] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.386838] devtmpfs: initialized
[    0.395976] PM: Registering ACPI NVS region [mem 0xcb750000-0xcb7dafff] (569344 bytes)
[    0.403925] PM: Registering ACPI NVS region [mem 0xcbaad000-0xcbaaefff] (8192 bytes)
[    0.411660] PM: Registering ACPI NVS region [mem 0xcbabb000-0xcbacdfff] (77824 bytes)
[    0.419482] PM: Registering ACPI NVS region [mem 0xcbb56000-0xcbb5dfff] (32768 bytes)
[    0.427317] PM: Registering ACPI NVS region [mem 0xcbb71000-0xcbffffff] (4780032 bytes)
[    0.435539] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.445303] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.452262] pinctrl core: initialized pinctrl subsystem
[    0.457536] RTC time: 10:37:02, date: 04/29/15
[    0.462187] NET: Registered protocol family 16
[    0.467020] cpuidle: using governor menu
[    0.471152] ACPI: bus type PCI registered
[    0.475160] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.481718] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.491006] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.498450] PCI: Using configuration type 1 for base access
[    0.504311] perf_event_intel: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[    0.514793] ACPI: Added _OSI(Module Device)
[    0.518993] ACPI: Added _OSI(Processor Device)
[    0.523451] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.528161] ACPI: Added _OSI(Processor Aggregator Device)
[    0.547246] ACPI: Executed 1 blocks of module-level executable AML code
[    0.676932] ACPI: Interpreter enabled
[    0.680610] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150410/hwxface-580)
[    0.689859] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150410/hwxface-580)
[    0.699122] ACPI: (supports S0 S3 S5)
[    0.702784] ACPI: Using IOAPIC for interrupt routing
[    0.707798] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.718463] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.741051] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    0.747236] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.755636] acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability]
[    0.762877] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
[    0.772090] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[    0.779818] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
[    0.787373] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
[    0.794389] PCI host bridge to bus 0000:00
[    0.798498] pci_bus 0000:00: root bus resource [bus 00-7f]
[    0.803986] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.810759] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.817538] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.824314] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.831093] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.838557] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.846026] pci_bus 0000:00: root bus resource [mem 0xd4000000-0xdfffffff window]
[    0.853494] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3c007fffffff window]
[    0.862049] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.867944] pci 0000:00:02.0: System wakeup disabled by ACPI
[    0.873839] pci 0000:00:03.0: System wakeup disabled by ACPI
[    0.881198] pci 0000:00:19.0: System wakeup disabled by ACPI
[    0.887113] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.893180] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    0.897884] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    0.904617] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.910497] pci 0000:00:1c.5: Enabling MPC IRBNCE
[    0.915201] pci 0000:00:1c.5: Intel PCH root port ACS workaround enabled
[    0.921946] pci 0000:00:1c.5: System wakeup disabled by ACPI
[    0.927775] pci 0000:00:1c.6: Enabling MPC IRBNCE
[    0.932477] pci 0000:00:1c.6: Intel PCH root port ACS workaround enabled
[    0.939210] pci 0000:00:1c.6: System wakeup disabled by ACPI
[    0.945045] pci 0000:00:1c.7: Enabling MPC IRBNCE
[    0.949762] pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled
[    0.956513] pci 0000:00:1c.7: System wakeup disabled by ACPI
[    0.962422] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.968247] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.974687] pci 0000:00:01.0: PCI bridge to [bus 03]
[    0.981695] pci 0000:00:02.0: PCI bridge to [bus 05]
[    0.986766] pci 0000:00:03.0: PCI bridge to [bus 04]
[    0.992023] pci 0000:02:00.0: VF(n) BAR0 space: [mem 0xde800000-0xde87bfff 64bit pref] (contains BAR0 for 31 VFs)
[    1.002485] pci 0000:00:11.0: PCI bridge to [bus 02]
[    1.007553] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    1.012620] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.017677] pci 0000:00:1c.6: PCI bridge to [bus 07]
[    1.024661] pci 0000:00:1c.7: PCI bridge to [bus 08]
[    1.030149] pci 0000:00:1e.0: PCI bridge to [bus 09] (subtractive decode)
[    1.037879] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-ff])
[    1.044067] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    1.052491] acpi PNP0A08:01: _OSC: platform does not support [PCIeCapability]
[    1.059741] acpi PNP0A08:01: _OSC: not requesting control; platform does not support [PCIeCapability]
[    1.068944] acpi PNP0A08:01: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[    1.076670] acpi PNP0A08:01: _OSC: platform willing to grant [PCIeHotplug PME AER]
[    1.084224] acpi PNP0A08:01: _OSC failed (AE_SUPPORT); disabling ASPM
[    1.090899] PCI host bridge to bus 0000:80
[    1.095002] pci_bus 0000:80: root bus resource [bus 80-ff]
[    1.100484] pci_bus 0000:80: root bus resource [io  0x0000-0x03af window]
[    1.107260] pci_bus 0000:80: root bus resource [io  0x03e0-0x0cf7 window]
[    1.114039] pci_bus 0000:80: root bus resource [mem 0x000c0000-0x000dffff window]
[    1.121669] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15), disabled.
[    1.129988] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15), disabled.
[    1.138300] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15), disabled.
[    1.146408] ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 5 6 10 11 12 14 15), disabled.
[    1.154518] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 7 10 11 12 14 15), disabled.
[    1.162825] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.171326] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 11 12 14 15), disabled.
[    1.179644] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *10 11 12 14 15), disabled.
[    1.188199] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 4/0x2 ignored.
[    1.196018] ACPI: Unable to map lapic to logical cpu number
[    1.201750] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 5/0x4 ignored.
[    1.209582] ACPI: Unable to map lapic to logical cpu number
[    1.215318] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 6/0x6 ignored.
[    1.223153] ACPI: Unable to map lapic to logical cpu number
[    1.229434] ACPI: Enabled 2 GPEs in block 00 to 3F
[    1.234470] vgaarb: setting as boot device: PCI:0000:05:00.0
[    1.240127] vgaarb: device added: PCI:0000:05:00.0,decodes=io+mem,owns=io+mem,locks=none
[    1.248211] vgaarb: loaded
[    1.250925] vgaarb: bridge control possible 0000:05:00.0
[    1.256375] SCSI subsystem initialized
[    1.260262] ACPI: bus type USB registered
[    1.264311] usbcore: registered new interface driver usbfs
[    1.269801] usbcore: registered new interface driver hub
[    1.275125] usbcore: registered new device driver usb
[    1.280345] PCI: Using ACPI for IRQ routing
[    1.292659] PCI: Discovered peer bus ff
[    1.296562] ACPI: \: failed to evaluate _DSM (0x1001)
[    1.301617] PCI host bridge to bus 0000:ff
[    1.305712] pci_bus 0000:ff: root bus resource [io  0x0000-0xffff]
[    1.311880] pci_bus 0000:ff: root bus resource [mem 0x00000000-0x3fffffffffff]
[    1.319092] pci_bus 0000:ff: No busn resource found for root bus, will use [bus ff-ff]
[    1.331425] NetLabel: Initializing
[    1.334831] NetLabel:  domain hash size = 128
[    1.339187] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.344167] NetLabel:  unlabeled traffic allowed by default
[    1.349929] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.356272] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.364155] Switched to clocksource hpet
[    1.378628] pnp: PnP ACPI init
[    1.381916] system 00:00: [mem 0xfc000000-0xfcffffff window] has been reserved
[    1.389159] system 00:00: [mem 0xfd000000-0xfdffffff window] has been reserved
[    1.396381] system 00:00: [mem 0xfe000000-0xfeafffff window] has been reserved
[    1.403595] system 00:00: [mem 0xfeb00000-0xfebfffff window] has been reserved
[    1.410816] system 00:00: [mem 0xfed00400-0xfed3ffff window] could not be reserved
[    1.418371] system 00:00: [mem 0xfed45000-0xfedfffff window] has been reserved
[    1.425578] system 00:00: [mem 0xdffff000-0xdfffffff window] has been reserved
[    1.433036] system 00:01: [io  0x0620-0x063f] has been reserved
[    1.438955] system 00:01: [io  0x0610-0x061f] has been reserved
[    1.445255] system 00:05: [io  0x04d0-0x04d1] has been reserved
[    1.451860] system 00:07: [io  0x0400-0x0453] could not be reserved
[    1.458143] system 00:07: [io  0x0458-0x047f] has been reserved
[    1.464072] system 00:07: [io  0x1180-0x119f] has been reserved
[    1.469997] system 00:07: [io  0x0500-0x057f] has been reserved
[    1.475926] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.482549] system 00:07: [mem 0xfec00000-0xfecfffff] could not be reserved
[    1.489517] system 00:07: [mem 0xfed08000-0xfed08fff] has been reserved
[    1.496120] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[    1.502862] system 00:08: [io  0x0454-0x0457] has been reserved
[    1.509408] system 00:09: [mem 0xfed40000-0xfed44fff] has been reserved
[    1.516024] pnp: PnP ACPI: found 10 devices
[    1.527531] clocksource acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.536416] pci 0000:00:01.0: PCI bridge to [bus 03]
[    1.541392] pci 0000:00:02.0: PCI bridge to [bus 05]
[    1.546363] pci 0000:00:02.0:   bridge window [io  0xd000-0xdfff]
[    1.552460] pci 0000:00:02.0:   bridge window [mem 0xd6000000-0xd70fffff]
[    1.559247] pci 0000:00:02.0:   bridge window [mem 0xd8000000-0xddffffff 64bit pref]
[    1.566993] pci 0000:00:03.0: PCI bridge to [bus 04]
[    1.571969] pci 0000:00:11.0: PCI bridge to [bus 02]
[    1.576930] pci 0000:00:11.0:   bridge window [io  0xe000-0xefff]
[    1.583023] pci 0000:00:11.0:   bridge window [mem 0xde400000-0xde8fffff 64bit pref]
[    1.590773] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    1.595747] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.600725] pci 0000:00:1c.6: PCI bridge to [bus 07]
[    1.605702] pci 0000:00:1c.7: PCI bridge to [bus 08]
[    1.610669] pci 0000:00:1c.7:   bridge window [mem 0xd7200000-0xd72fffff]
[    1.617457] pci 0000:00:1e.0: PCI bridge to [bus 09]
[    1.622418] pci 0000:00:1e.0:   bridge window [io  0xc000-0xcfff]
[    1.628523] pci 0000:00:1e.0:   bridge window [mem 0xd7100000-0xd71fffff]
[    1.635493] NET: Registered protocol family 2
[    1.640142] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[    1.647220] TCP bind hash table entries: 2048 (order: 3, 32768 bytes)
[    1.653666] TCP: Hash tables configured (established 2048 bind 2048)
[    1.660060] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    1.665892] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    1.672227] NET: Registered protocol family 1
[    1.682331] Unpacking initramfs...
[    2.307008] Freeing initrd memory: 19720K (ffff880031cbe000 - ffff880033000000)
[    2.314686] Translation is enabled prior to OS.
[    2.319221] IOMMU Copying translate tables from panicked kernel
[    2.325295] IOMMU: root_cache:0xffff88002ccbb000 phys:0x0000c6548000
[    2.331655] IOMMU: dmar0 using Queued invalidation
[    2.336450] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[    2.345395] RAPL PMU detected, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    2.353994] hw unit of domain pp0-core 2^-16 Joules
[    2.358868] hw unit of domain package 2^-16 Joules
[    2.363655] hw unit of domain dram 2^-16 Joules
[    2.368417] microcode: CPU0 sig=0x206d7, pf=0x1, revision=0x710
[    2.374442] microcode: Microcode Update Driver: v2.00 <tigran-ppwZ4lME3+KI6QP4U9MhSdBc4/FLrbF6@public.gmane.org>, Peter Oruba
[    2.383569] AVX version of gcm_enc/dec engaged.
[    2.388108] AES CTR mode by8 optimization enabled
[    2.396079] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[    2.402980] futex hash table entries: 256 (order: 2, 16384 bytes)
[    2.409140] Initialise system trusted keyring
[    2.413542] audit: initializing netlink subsys (disabled)
[    2.418975] audit: type=2000 audit(1430303822.418:1): initialized
[    2.426139] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.435279] zpool: loaded
[    2.438216] VFS: Disk quotas dquot_6.6.0
[    2.442219] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.449839] Key type big_key registered
[    2.454761] alg: No test for stdrng (krng)
[    2.458884] NET: Registered protocol family 38
[    2.463360] Key type asymmetric registered
[    2.467472] Asymmetric key parser 'x509' registered
[    2.472438] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.479862] io scheduler noop registered
[    2.483800] io scheduler deadline registered
[    2.488144] io scheduler cfq registered (default)
[    2.494392] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.500020] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.506896] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.515253] ACPI: Power Button [PWRB]
[    2.518991] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.526378] ACPI: Power Button [PWRF]
[    2.531997] GHES: HEST is not enabled!
[    2.535871] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.562820] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.591181] 0000:00:16.3: ttyS1 at I/O 0xf060 (irq = 17, base_baud = 115200) is a 16550A
[    2.599752] Non-volatile memory driver v1.3
[    2.604004] Linux agpgart interface v0.103
[    2.619575] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl RAID mode
[    2.627657] ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pio ems sxs apst 
[    2.637433] scsi host0: ahci
[    2.640467] scsi host1: ahci
[    2.643472] scsi host2: ahci
[    2.646470] scsi host3: ahci
[    2.649477] scsi host4: ahci
[    2.652482] scsi host5: ahci
[    2.655438] ata1: SATA max UDMA/133 abar m2048@0xd7348000 port 0xd7348100 irq 27
[    2.662824] ata2: DUMMY
[    2.665275] ata3: SATA max UDMA/133 abar m2048@0xd7348000 port 0xd7348200 irq 27
[    2.672666] ata4: DUMMY
[    2.675113] ata5: DUMMY
[    2.677562] ata6: DUMMY
[    2.680385] libphy: Fixed MDIO Bus: probed
[    2.684693] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    2.689982] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 1
[    2.697664] xhci_hcd 0000:08:00.0: hcc params 0x0270f06d hci version 0x96 quirks 0x00004000
[    2.706170] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.712953] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.720172] usb usb1: Product: xHCI Host Controller
[    2.725050] usb usb1: Manufacturer: Linux 4.0.0+ xhci-hcd
[    2.730451] usb usb1: SerialNumber: 0000:08:00.0
[    2.735274] hub 1-0:1.0: USB hub found
[    2.739053] hub 1-0:1.0: 4 ports detected
[    2.743275] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    2.748560] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 2
[    2.755999] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    2.762778] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.769992] usb usb2: Product: xHCI Host Controller
[    2.774865] usb usb2: Manufacturer: Linux 4.0.0+ xhci-hcd
[    2.780256] usb usb2: SerialNumber: 0000:08:00.0
[    2.785049] hub 2-0:1.0: USB hub found
[    2.788829] hub 2-0:1.0: 4 ports detected
[    2.793070] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.799603] ehci-pci: EHCI PCI platform driver
[    2.804223] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    2.809519] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    2.816918] ehci-pci 0000:00:1a.0: debug port 2
[    2.825476] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd734b000
[    2.836792] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    2.842597] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    2.849380] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.856592] usb usb3: Product: EHCI Host Controller
[    2.861469] usb usb3: Manufacturer: Linux 4.0.0+ ehci_hcd
[    2.866864] usb usb3: SerialNumber: 0000:00:1a.0
[    2.871736] hub 3-0:1.0: USB hub found
[    2.875523] hub 3-0:1.0: 3 ports detected
[    2.879920] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    2.885234] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    2.892646] ehci-pci 0000:00:1d.0: debug port 2
[    2.901304] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd734a000
[    2.912902] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    2.918730] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002
[    2.925512] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.932747] usb usb4: Product: EHCI Host Controller
[    2.937639] usb usb4: Manufacturer: Linux 4.0.0+ ehci_hcd
[    2.943057] usb usb4: SerialNumber: 0000:00:1d.0
[    2.947909] hub 4-0:1.0: USB hub found
[    2.951684] hub 4-0:1.0: 3 ports detected
[    2.955934] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.962132] ohci-pci: OHCI PCI platform driver
[    2.966601] uhci_hcd: USB Universal Host Controller Interface driver
[    2.973066] usbcore: registered new interface driver usbserial
[    2.978909] usbcore: registered new interface driver usbserial_generic
[    2.985490] usbserial: USB Serial support registered for generic
[    2.991520] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.997725] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.003994] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    3.012319] ata3.00: ATAPI: hp       CDDVDW SH-216ALN, HA5A, max UDMA/100
[    3.019125] ata1.00: ATA-8: WDC WD10EALX-609BA0, 18.01H18, max UDMA/100
[    3.025752] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    3.035655] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.040666] ata3.00: configured for UDMA/100
[    3.044957] ata1.00: configured for UDMA/100
[    3.049378] scsi 0:0:0:0: Direct-Access     ATA      WDC WD10EALX-609 1H18 PQ: 0 ANSI: 5
[    3.057523] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.062805] mousedev: PS/2 mouse device common for all mice
[    3.068682] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.074058] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    3.082100] sd 0:0:0:0: [sda] Write Protect is off
[    3.086998] rtc_cmos 00:04: RTC can wake from S4
[    3.091647] scsi 2:0:0:0: CD-ROM            hp       CDDVDW SH-216ALN HA5A PQ: 0 ANSI: 5
[    3.099973] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    3.106123] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.115613] rtc_cmos 00:04: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    3.123614] device-mapper: uevent: version 1.0.3
[    3.128405]  sda: sda1 sda2
[    3.131679] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.136335] device-mapper: ioctl: 4.31.0-ioctl (2015-3-12) initialised: dm-devel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org
[    3.145429] Intel P-state driver initializing.
[    3.151685] hidraw: raw HID events driver (C) Jiri Kosina
[    3.157694] usbcore: registered new interface driver usbhid
[    3.163274] usbhid: USB HID core driver
[    3.167188] drop_monitor: Initializing network drop monitor service
[    3.173625] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.178975] sr 2:0:0:0: [sr0] scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
[    3.187607] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.192862] Initializing XFRM netlink socket
[    3.197314] NET: Registered protocol family 10
[    3.201773] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    3.208817] mip6: Mobile IPv6
[    3.211978] sr 2:0:0:0: Attached scsi generic sg1 type 5
[    3.217292] NET: Registered protocol family 17
[    3.221791] dmar: DRHD: handling fault status reg 2
[    3.226666] dmar: DMAR:[DMA Read] Request device [00:1f.2] fault addr fffc0000 
[    3.226666] DMAR:[fault reason 06] PTE Read access is not set
[    3.239704] ata3.00: exception Emask 0x60 SAct 0x0 SErr 0x800 action 0x6 frozen
[    3.247007] ata3.00: irq_stat 0x20000000, host bus error
[    3.252323] ata3: SError: { HostInt }
[    3.255995] ata3.00: cmd a0/00:00:00:08:00/00:00:00:00:00/a0 tag 5 pio 16392 in
[    3.255995]          Get event status notification 4a 01 00 00 10 00 00 00 08 00res 50/00:03:00:80:00/00:00:00:00:00/a0 Emask 0x60 (host bus error)
[    3.276455] ata3.00: status: { DRDY }
[    3.280121] ata3: hard resetting link
[    3.283806] usb 4-1: new high-speed USB device number 2 using ehci-pci
[    3.290350] mce: Unable to init device /dev/mcelog (rc: -5)
[    3.296192] Loading compiled-in X.509 certificates
[    3.302015] Loaded X.509 cert 'Magrathea: Glacier signing key: 8d99b9f6f028e78c7dfe07caad5fd2ff7cee9c74'
[    3.311548] registered taskstats version 1
[    3.316092]   Magic number: 11:806:629
[    3.319931] rtc_cmos 00:04: setting system clock to 2015-04-29 10:37:05 UTC (1430303825)
[    3.328504] Freeing unused kernel memory: 1500K (ffffffff81d41000 - ffffffff81eb8000)
[    3.336329] Write protecting the kernel read-only data: 12288k
[    3.342583] Freeing unused kernel memory: 464K (ffff88003378c000 - ffff880033800000)
[    3.350787] Freeing unused kernel memory: 836K (ffff880033b2f000 - ffff880033c00000)
[    3.358525] tsc: Refined TSC clocksource calibration: 2793.268 MHz
[    3.364699] clocksource tsc: mask: 0xffffffffffffffff max_cycles: 0x28436928c28, max_idle_ns: 440795267499 ns
[    3.375952] random: systemd urandom read with 13 bits of entropy available
[    3.383395] systemd[1]: systemd 217 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -L)
[    3.401586] systemd[1]: Detected architecture 'x86-64'.
[    3.406820] systemd[1]: Running in initial RAM disk.

Welcome to Fedora 21 (Twenty One) dracut-038-30.git20140903.fc21 (Initramfs)!

[    3.420591] systemd[1]: Set hostname to <dhcp-128-28.nay.redhat.com>.
[    3.427453] usb 3-1: New USB device found, idVendor=8087, idProduct=0024
[    3.434150] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.441287] usb 4-1: New USB device found, idVendor=8087, idProduct=0024
[    3.447985] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.467331] hub 3-1:1.0: USB hub found
[    3.471115] hub 4-1:1.0: USB hub found
[    3.478192] hub 4-1:1.0: 8 ports detected
[    3.482208] hub 3-1:1.0: 6 ports detected
[    3.494103] systemd[1]: Expecting device dev-mapper-fedora_dhcp\x2d\x2d128\x2d\x2d28\x2dswap.device...
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2dswap.device...
[    3.511619] systemd[1]: Expecting device dev-disk-by\x2duuid-689a8845\x2d7f32\x2d4fd7\x2d87fc\x2d615276a16f2f.device...
         Expecting device dev-disk-by\x2duui...2d87fc\x2d615276a16f2f.device...
[    3.530640] systemd[1]: Expecting device dev-mapper-fedora_dhcp\x2d\x2d128\x2d\x2d28\x2droot.device...
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2droot.device...
[    3.548656] systemd[1]: Starting Timers.
[  OK  ] Reached target Timers.
[    3.556651] systemd[1]: Reached target Timers.
[    3.561115] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[    3.569147] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    3.577064] systemd[1]: Starting Paths.
[  OK  ] Reached target Paths.
[    3.585700] systemd[1]: Reached target Paths.
[    3.590077] systemd[1]: Starting -.slice.
[  OK  ] Created slice -.slice.
[    3.601708] systemd[1]: Created slice -.slice.
[    3.606181] systemd[1]: Starting udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[    3.617731] systemd[1]: Listening on udev Control Socket.
[    3.623154] systemd[1]: Starting udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[    3.633749] systemd[1]: Listening on udev Kernel Socket.
[    3.639080] systemd[1]: Starting Journal Socket.
[  OK  [    3.644687] dmar: DRHD: handling fault status reg 102
[    3.650280] dmar: DMAR:[DMA Write] Request device [00:1f.2] fault addr fffc0000 
[    3.650280] DMAR:[fault reason 05] PTE Write access is not set
] Listening on J[    3.663523] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ournal Socket.
[    3.671072] dmar: DRHD: handling fault status reg 202
[    3.677461] dmar: DMAR:[DMA Read] Request device [00:1f.2] fault addr fffc0000 
[    3.677461] DMAR:[fault reason 06] PTE Read access is not set
[    3.690485] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x100)
[    3.696742] ata3.00: revalidation failed (errno=-5)
[    3.701702] systemd[1]: Listening on Journal Socket.
[    3.706683] systemd[1]: Starting System Slice.
[  OK  ] Created slice System Slice.
[    3.715837] systemd[1]: Created slice System Slice.
[    3.720795] systemd[1]: Started dracut ask for additional cmdline parameters.
[    3.728016] systemd[1]: Starting dracut cmdline hook...
         Starting dracut cmdline hook...
[    3.738143] systemd[1]: Starting system-systemd\x2dfsck.slice.
[  OK  ] Created slice system-systemd\x2dfsck.slice.
[    3.754853] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    3.764945] systemd[1]: Starting Create list of required static device nodes for the current kernel...
         Startin[    3.783966] usb 4-1.1: new high-speed USB device number 3 using ehci-pci
g Create list of required st... nodes for the current kernel...
[    3.799162] systemd[1]: Starting Journal Socket (/dev/log).
[    3.807691] systemd[1]: Starting Slices.
[  OK  ] Reached target Slices.
[    3.820928] systemd[1]: Reached target Slices.
[    3.827320] systemd[1]: Started Load Kernel Modules.
[    3.837299] systemd[1]: Starting Apply Kernel Variables...
         Starting Apply Kernel Variables...
[    3.853225] systemd[1]: Starting Swap.
[  OK  ] Reached target Swap.
[    3.863972] systemd[1]: Reached target Swap.
[    3.870307] systemd[1]: Starting Local File Systems.
[  OK  [    3.880322] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2412
] Reached target[    3.888186] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
 Local File Systems.
[    3.900011] systemd[1]: Reached target Local File Systems.
[  OK  ] Started Create[    3.910759] hub 4-1.1:1.0: USB hub found
 list of require[    3.915877] hub 4-1.1:1.0: 2 ports detected
d sta...ce nodes for the current kernel.
[    3.925064] systemd[1]: Started Create list of required static device nodes for the current kernel.
[  OK  ] Started dracut cmdline hook.
[    3.939083] systemd[1]: Started dracut cmdline hook.
[  OK  ] Listening on Journal Socket (/dev/log).
[    3.950118] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Started Apply Kernel Variables.
[    3.962129] systemd[1]: Started Apply Kernel Variables.
[    3.971875] systemd[1]: Starting Sockets.
[  OK  ] Reached target Sockets.
[    3.980130] systemd[1]: Reached target Sockets.
[    3.984675] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[    3.994543] systemd[1]: Starting dracut pre-udev hook...
[    4.001744] systemd-journald[218]: File /var/log/journal/95212bce02f14a269471981f705ca21f/system.journal corrupted or uncleanly shut down, renaming and replacing.
         Starting dracut pre-udev hook...
[    4.021459] systemd[1]: Starting Create Static Device Nodes in /dev...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Started Create Static Device Nodes in /dev.
[    4.053182] systemd[1]: Started Create Static Device Nodes in /dev.
[  OK  ] Started dracut pre-udev hook.
[    4.091249] systemd[1]: Started dracut pre-udev hook.
[  OK  ] Started Journal Service.
[    4.101278] systemd[1]: Started Journal Service.
         Starting udev Kernel Device Manager...
[  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.
[    4.200477] wmi: Mapper loaded
[    4.203681] usb 4-1.1.1: new low-speed USB device number 4 using ehci-pci
[    4.222406] [drm] Initialized drm 1.1.0 20060810
[    4.240547] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    4.258375] isci 0000:02:00.0: driver configured for rev: 5 silicon
[    4.291419] isci 0000:02:00.0: OEM SAS parameters (version: 1.3) loaded (firmware)
[    4.313180] isci 0000:02:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    4.328315] usb 4-1.1.1: New USB device found, idVendor=03f0, idProduct=0324
[    4.335360] usb 4-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.342835] usb 4-1.1.1: Product: HP Basic USB Keyboard
[    4.348057] usb 4-1.1.1: Manufacturer: Lite-On Technology Corp.
[    4.359190] nouveau  [  DEVICE][0000:05:00.0] BOOT0  : 0x0a8c00b1
[    4.365325] nouveau  [  DEVICE][0000:05:00.0] Chipset: GT218 (NVA8)
[    4.371618] nouveau  [  DEVICE][0000:05:00.0] Family : NV50
[    4.384935] input: Lite-On Technology Corp. HP Basic USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.1/4-1.1.1/4-1.1.1:1.0/0003:03F0:0324.0001/input5
[    4.404579] scsi host6: isci
[    4.409301] random: nonblocking pool is initialized
[    4.416905] Switched to clocksource tsc
[    4.530384] hid-generic 0003:03F0:0324.0001: input,hidraw0: USB HID v1.10 Keyboard [Lite-On Technology Corp. HP Basic USB Keyboard] on usb-0000:00:1d.0-1.1.1/inpu0
[    4.617826] usb 4-1.1.2: new low-speed USB device number 5 using ehci-pci
[    4.988061] usb 4-1.1.2: New USB device found, idVendor=03f0, idProduct=0b4a
[    4.995136] usb 4-1.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    5.002619] usb 4-1.1.2: Product: USB Optical Mouse
[    5.007555] usb 4-1.1.2: Manufacturer: Logitech
[    5.040561] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.1/4-1.1.2/4-1.1.2:1.0/0003:03F0:0B4A.0002/input/input6
[    5.068488] hid-generic 0003:03F0:0B4A.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.1.2/input0
[    5.087326] scsi host7: ata_generic
[    5.098343] scsi host8: ata_generic
[    5.105436] ata7: PATA max UDMA/100 cmd 0xf0b0 ctl 0xf0a0 bmdma 0xf070 irq 18
[    5.112603] ata8: PATA max UDMA/100 cmd 0xf090 ctl 0xf080 bmdma 0xf078 irq 18
[    5.411708] nouveau  [   VBIOS][0000:05:00.0] using image from PRAMIN
[    5.418722] nouveau  [   VBIOS][0000:05:00.0] BIT signature found
[    5.424818] nouveau  [   VBIOS][0000:05:00.0] version 70.18.89.00.02
[    5.469015] nouveau  [     PMC][0000:05:00.0] MSI interrupts enabled
[    5.476719] pps_core: LinuxPPS API ver. 1 registered
[    5.481675] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti-k2GhghHVRtY@public.gmane.org>
[    5.499853] nouveau  [     PFB][0000:05:00.0] RAM type: DDR3
[    5.505527] nouveau  [     PFB][0000:05:00.0] RAM size: 512 MiB
[    5.511451] nouveau  [     PFB][0000:05:00.0]    ZCOMP: 960 tags
[    5.542850] PTP clock support registered
[    5.596306] nouveau  [    VOLT][0000:05:00.0] GPU voltage: 900000uv
[    5.655578] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
[    5.661411] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
[    5.692267] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    5.708902] nouveau  [  PTHERM][0000:05:00.0] FAN control: none / external
[    5.715826] nouveau  [  PTHERM][0000:05:00.0] fan management: automatic
[    5.722450] nouveau  [  PTHERM][0000:05:00.0] internal sensor: yes
[    5.801093] nouveau  [     CLK][0000:05:00.0] 03: core 135 MHz shader 270 MHz memory 135 MHz
[    5.828131] nouveau  [     CLK][0000:05:00.0] 07: core 405 MHz shader 810 MHz memory 405 MHz
[    5.846134] nouveau  [     CLK][0000:05:00.0] 0f: core 520 MHz shader 1230 MHz memory 790 MHz
[    5.854747] nouveau  [     CLK][0000:05:00.0] --: core 405 MHz shader 810 MHz memory 405 MHz
[    5.901174] [TTM] Zone  kernel: Available graphics memory: 119828 kiB
[    5.907609] [TTM] Initializing pool allocator
[    5.921188] [TTM] Initializing DMA pool allocator
[    5.928128] nouveau  [     DRM] VRAM: 512 MiB
[    5.932490] nouveau  [     DRM] GART: 1048576 MiB
[    5.937198] nouveau  [     DRM] TMDS table version 2.0
[    5.942326] nouveau  [     DRM] DCB version 4.0
[    5.946860] nouveau  [     DRM] DCB outp 00: 02000360 00000000
[    5.952683] nouveau  [     DRM] DCB outp 01: 02000362 00020010
[    5.958511] nouveau  [     DRM] DCB outp 02: 028003a6 0f220010
[    5.964349] nouveau  [     DRM] DCB outp 03: 01011380 00000000
[    5.970169] nouveau  [     DRM] DCB outp 04: 08011382 00020010
[    5.975991] nouveau  [     DRM] DCB outp 05: 088113c6 0f220010
[    5.981821] nouveau  [     DRM] DCB conn 00: 00101064
[    5.986897] nouveau  [     DRM] DCB conn 01: 00202165
[    6.012149] nouveau E[   PDISP][0000:05:00.0] UNK01 [UNK02] chid 0 mthd 0x0000 data 0x00000400
[    6.020748] nouveau E[   PDISP][0000:05:00.0] UNK01 [UNK02] chid 1 mthd 0x0000 data 0x00000400
[    6.042493] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    6.049104] [drm] Driver supports precise vblank timestamp query.
[    6.085985] nouveau  [     DRM] MM: using COPY for buffer copies
[    6.122810] e1000e 0000:00:19.0 eth0: registered PHC clock
[    6.128296] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 80:c1:6e:f8:9f:92
[    6.136193] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[    6.145426] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 0100FF-0FF
[    6.242421] tulip: Linux Tulip driver version 1.1.15 (Feb 27, 2007)
[    6.253721] tulip: tulip_init_one: Enabled WOL support for AN983B
[    6.261665] tulip0:  MII transceiver #1 config 1000 status 786d advertising 05e1
[    6.278694] net eth1: ADMtek Comet rev 17 at MMIO 0xd7121000, 00:b0:c0:06:70:90, IRQ 20
[    6.349682] firewire_ohci 0000:09:05.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
[  OK  ] Found device WDC_WD10EALX-609BA0 1.
[    6.860267] firewire_core 0000:09:05.0: created device fw0: GUID 0060b000008cec98, S400
[    8.676219] ata3: hard resetting link
[    8.984562] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    8.995356] ata3.00: configured for UDMA/100
[    8.999897] ata3: EH complete
[    9.352568] e1000e 0000:00:19.0 eno1: renamed from eth0
[    9.363102] tulip 0000:09:04.0 enp9s4: renamed from eth1
[    9.374412] iTCO_vendor_support: vendor-support=0
[    9.380595] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    9.386231] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[   10.153286] nouveau  [     DRM] allocated 1920x1080 fb: 0x70000, bo ffff880032afd400
[   10.161103] fbcon: nouveaufb (fb0) is primary device
[   18.218368] Console: switching to colour frame buffer device 240x67
[   18.232823] nouveau 0000:05:00.0: fb0: nouveaufb frame buffer device
[   18.239186] nouveau 0000:05:00.0: registered panic notifier
[   18.244950] [drm] Initialized nouveau 1.2.2 20120801 for 0000:05:00.0 on minor 0
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-swap.
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-root.
         Starting File System Check on /dev/mapper/fedora_dhcp--128--28-root...
[  OK  ] Started dracut initqueue hook.
[  OK  ] Reached target Remote File Systems (Pre).
[  OK  ] Reached target Remote File Systems.
[   17.574332] systemd-fsck[361]: /dev/mapper/fedora_dhcp--128--28-root: recovering journal
[   19.639716] systemd-fsck[361]: /dev/mapper/fedora_dhcp--128--28-root: Clearing orphaned inode 1705150 (uid=42, gid=42, mode=0100644, size=451)
[   19.648774] systemd-fsck[361]: /dev/mapper/fedora_dhcp--128--28-root: clean, 162324/19660800 files, 9598778/78643200 blocks
[  OK  ] Started File System Check on /dev/mapper/fedora_dhcp--128--28-root.
         Mounting /sysroot...
[   22.093146] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[  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.
         Starting dracut pre-pivot and cleanup hook...
[  OK  ] Started dracut pre-pivot and cleanup hook.
         Starting Kdump Vmcore Save Service...
kdump: dump target is /dev/mapper/fedora_dhcp--128--28-root
kdu[   22.464100] EXT4-fs (dm-1): re-mounted. Opts: data=ordered
mp: saving to /sysroot//var/crash/127.0.0.1-2015.04.29-18:37:24/
kdump: saving vmcore-dmesg.txt
kdump: saving vmcore-dmesg.txt complete
kdump: saving vmcore
Copying data                       : [100.0 %] |
kdump: saving vmcore complete
[  OK  ] Stopped target Timers.
[  OK  ] Removed slice system-systemd\x2dfsck.slice.
         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).
[  OK  ] Stopped target Initrd Default Target.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped targ[   24.137096] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
et Slices.
[  OK  ] Removed slice -.slice.
[  OK[   24.148896] systemd-journald[218]: Received SIGTERM from PID 1 (systemd-shutdow).
  ] Stopped target Paths.
[[   24.159738] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
  OK  ] Stopped target Sockets.
[[   24.170398] systemd-shutdown[1]: Unmounting file systems.
  OK  ] Stopped target System Initialization.
         Stopping Apply Kernel Variables...
[  OK  ] Stopped Apply Kernel Variables.
         Stopping Create Static Device Nodes in /dev...
[  OK  ] Stopped Create Static Device Nodes in /dev.
[  OK  ] Reached target Shutdown.
[  OK  ] Stopped target Swap.
[[   24.206037] EXT4-fs (dm-1): re-mounted. Opts: (null)
  OK  ][   24.212563] systemd-shutdown[1]: Unmounting /sysroot.
 Stopped target Local File Systems.
[  OK  ] Stopped target Initrd File Systems.
[  OK  ] Stopped target Initrd Root File System.
         Starting Cleaning Up and Shuttin[   24.234371] systemd-shutdown[1]: Unmounting /sys/kernel/config.
g Down Daemons..[   24.241384] systemd-shutdown[1]: All filesystems unmounted.
.
         Unmo[   24.248331] systemd-shutdown[1]: Deactivating swaps.
unting /sysroot.[   24.254699] systemd-shutdown[1]: All swaps deactivated.
..
[  OK  [   24.261243] systemd-shutdown[1]: Detaching loop devices.
] Failed unm[   24.268025] systemd-shutdown[1]: All loop devices detached.
ounting /sysroot[   24.274885] systemd-shutdown[1]: Detaching DM devices.
.
[FAILE[   24.281552] systemd-shutdown[1]: Detaching DM 253:1.
D] Failed to[   24.287950] systemd-shutdown[1]: Detaching DM 253:0.
 start Cleaning [   24.294232] systemd-shutdown[1]: All DM devices detached.
Up and Shutting [   24.301110] systemd-shutdown[1]: Rebooting.
Down Daemons.
S[   24.306513] sd 0:0:0:0: [sda] Synchronizing SCSI cache
ee "systemctl status initrd-cleanup.service" for[   24.316241] e1000e: EEE TX LPI TIMER: 00000011
 details.
[  OK  ] Reached target Unmount All Filesystems.
[  OK  ] Reached target Final Step.
         Starting Reboot...
[   24.376843] reboot: Restarting system
[   24.380516] reboot: machine restart

[-- Attachment #4: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-04-29 11:20   ` Baoquan He
  0 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-04-29 11:20 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: alex.williamson, indou.takao, tom.vaden, rwright, dwmw2, joro,
	kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	ddutile, doug.hatch, ishii.hironobu, linux-pci, bhelgaas,
	billsumnerlinux, li.zhang6, dyoung, vgoyal

[-- Attachment #1: Type: text/plain, Size: 391 bytes --]

Bad news, I rebuilt a kernel with your patchset on 4.0.0+ (this commit
f614c81). Now dmar fault is  seen again.

The lspci log and kdump log are attached, please check:

[ ~]$ cat /proc/cmdline 
BOOT_IMAGE=/vmlinuz-4.0.0+ root=/dev/mapper/fedora_dhcp--128--28-root ro
rd.lvm.lv=fedora_dhcp-128-28/swap rd.lvm.lv=fedora_dhcp-128-28/root
crashkernel=256M console=ttyS0,115200 intel_iommu=on



[-- Attachment #2: lspci.txt --]
[-- Type: text/plain, Size: 0 bytes --]



[-- Attachment #3: kdump_iommu.log --]
[-- Type: text/plain, Size: 55157 bytes --]

[root@dhcp-128-28 ~]# echo c >/proc/sysrq-trigger 
[  163.160203] sysrq: SysRq : Trigger a crash
[  163.164362] BUG: unable to handle kernel NULL pointer dereference at           (null)
[  163.172220] IP: [<ffffffff81480696>] sysrq_handle_crash+0x16/0x20
[  163.178333] PGD 419aba067 PUD 419774067 PMD 0 
[  163.182838] Oops: 0002 [#1] SMP 
[  163.186114] Modules linked in: xt_CHECKSUM ipt_MASQUERADE nf_nat_masquerade_ipv4 nf_conntrack_netbios_ns nf_conntrack_broadcast ip6t_rpfilter ip6t_REJECT cfg80211i
[  163.287902] CPU: 0 PID: 1662 Comm: bash Not tainted 4.0.0+ #6
[  163.293648] Hardware name: Hewlett-Packard HP Z420 Workstation/1589, BIOS J61 v01.02 03/09/2012
[  163.302351] task: ffff8803fdefd580 ti: ffff880403744000 task.ti: ffff880403744000
[  163.309842] RIP: 0010:[<ffffffff81480696>]  [<ffffffff81480696>] sysrq_handle_crash+0x16/0x20
[  163.318383] RSP: 0018:ffff880403747da8  EFLAGS: 00010246
[  163.323696] RAX: 000000000000000f RBX: 0000000000000063 RCX: 000000000000000f
[  163.330817] RDX: 0000000000000000 RSI: ffff88042fc0ea08 RDI: 0000000000000063
[  163.337939] RBP: ffff880403747da8 R08: 0000000000000096 R09: 0000000000015098
[  163.345067] R10: 00000000000003f1 R11: 0000000000000002 R12: 0000000000000007
[  163.352203] R13: 0000000000000000 R14: ffffffff81cc33e0 R15: 0000000000000000
[  163.359346] FS:  00007ff6f6ca9700(0000) GS:ffff88042fc00000(0000) knlGS:0000000000000000
[  163.367443] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  163.373180] CR2: 0000000000000000 CR3: 00000004019d6000 CR4: 00000000000407f0
[  163.380305] Stack:
[  163.382321]  ffff880403747dd8 ffffffff81480ea6 0000000000000002 fffffffffffffffb
[  163.389771]  00007ff6f6cc5000 0000000000000002 ffff880403747df8 ffffffff81481353
[  163.397222]  ffff880403747ec8 ffff88041d167f00 ffff880403747e18 ffffffff81282408
[  163.404682] Call Trace:
[  163.407130]  [<ffffffff81480ea6>] __handle_sysrq+0x106/0x170
[  163.412784]  [<ffffffff81481353>] write_sysrq_trigger+0x33/0x40
[  163.418697]  [<ffffffff81282408>] proc_reg_write+0x48/0x70
[  163.424172]  [<ffffffff81215e77>] __vfs_write+0x37/0x110
[  163.429478]  [<ffffffff81218d48>] ? __sb_start_write+0x58/0x120
[  163.435391]  [<ffffffff8131dc03>] ? security_file_permission+0x23/0xa0
[  163.441902]  [<ffffffff812165e9>] vfs_write+0xa9/0x1b0
[  163.447035]  [<ffffffff812174a5>] SyS_write+0x55/0xd0
[  163.452085]  [<ffffffff81067f6f>] ? do_page_fault+0x2f/0x80
[  163.457651]  [<ffffffff8178416e>] system_call_fastpath+0x12/0x71
[  163.463648] Code: ef e8 bf f7 ff ff eb d8 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 66 66 66 66 90 55 c7 05 d4 6c a9 00 01 00 00 00 48 89 e5 0f ae f8 <c6> 04 25 00 0 
[  163.483597] RIP  [<ffffffff81480696>] sysrq_handle_crash+0x16/0x20
[  163.489777]  RSP <ffff880403747da8>
[  163.493257] 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+ (bhe@dhcp-128-28.nay.redhat.com) (gcc version 4.9.2 20150212 (Red Hat 4.9.2-6) (GCC) ) #6 SMP Wed Apr 29 16:53:34 CST 2015
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.0.0+ root=/dev/mapper/fedora_dhcp--128--28-root ro rd.lvm.lv=fedora_dhcp-128-28/swap rd.lvm.lv=fedora_dhcp-128-28/K
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x00000000000963ff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000096400-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000025000000-0x0000000034f65fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000034fff400-0x0000000034ffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cb750000-0x00000000cb7dafff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cb7db000-0x00000000cbaacfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbaad000-0x00000000cbaaefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbaaf000-0x00000000cbabafff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbabb000-0x00000000cbacdfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbace000-0x00000000cbb55fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbb56000-0x00000000cbb5dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbb5e000-0x00000000cbb70fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbb71000-0x00000000cbffffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] earlycon: no match for ttyS0,115200
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    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 0x000f4bc0-0x000f4bcf] mapped at [ffff8800000f4bc0]
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000] init_memory_mapping: [mem 0x34c00000-0x34dfffff]
[    0.000000] init_memory_mapping: [mem 0x25000000-0x34bfffff]
[    0.000000] init_memory_mapping: [mem 0x34e00000-0x34f65fff]
[    0.000000] RAMDISK: [mem 0x31cbe000-0x32ffffff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F9810 000024 (v02 HPQOEM)
[    0.000000] ACPI: XSDT 0x00000000CBA28078 00006C (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000CBA304C8 0000F4 (v04 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000CBA28170 008352 (v02 HPQOEM SLIC-WKS 00000102 INTL 20051117)
[    0.000000] ACPI: FACS 0x00000000CBB5BF80 000040
[    0.000000] ACPI: APIC 0x00000000CBA305C0 00007E (v03 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 0x00000000CBA30640 00003C (v01 HPQOEM OEMMCFG. 01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000CBA30680 000038 (v01 HPQOEM SLIC-WKS 01072009 AMI. 00000004)
[    0.000000] ACPI: ASF! 0x00000000CBA306B8 0000A0 (v32 INTEL   HCG     00000001 TFSM 000F4240)
[    0.000000] ACPI: SSDT 0x00000000CBA30758 0058DA (v01 COMPAQ WMI      00000001 MSFT 03000001)
[    0.000000] ACPI: SLIC 0x00000000CBA36038 000176 (v01 HPQOEM SLIC-WKS 00000001      00000000)
[    0.000000] ACPI: SSDT 0x00000000CBA361B0 06E284 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.000000] ACPI: DMAR 0x00000000CBAA4438 0000A0 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.000000] Setting APIC routing to cluster x2apic.
[    0.000000] NUMA turned off
[    0.000000] Faking a node at [mem 0x0000000000000000-0x0000000034ffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x34f52000-0x34f65fff]
[    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-0x0000000000095fff]
[    0.000000]   node   0: [mem 0x0000000025000000-0x0000000034f65fff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000034f65fff]
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 1/0x2 ignored.
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 2/0x4 ignored.
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] enabled)
[    0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 3/0x6 ignored.
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: 4 Processors exceeds NR_CPUS limit of 1
[    0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] e820: [mem 0x35000000-0xcb74ffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
[    0.000000] PERCPU: Embedded 34 pages/cpu @ffff880034c00000 s101720 r8192 d29352 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=/vmlinuz-4.0.0+ root=/dev/mapper/fedora_dhcp--128--28-root ro rd.lvm.lv=fedora_dhcp-128-28/swap rd.lvm.lv=fedora_dhcp-K
[    0.000000] Intel-IOMMU: enabled
[    0.000000] Misrouted IRQ fixup and polling support enabled
[    0.000000] This may significantly impact system performance
[    0.000000] Disabling memory control group subsystem
[    0.000000] PID hash table entries: 1024 (order: 1, 8192 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[    0.000000] Memory: 217108K/262124K available (7716K kernel code, 1276K rwdata, 3260K rodata, 1500K init, 1448K bss, 45016K 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 dyntick-idle grace-period acceleration is enabled.
[    0.000000]  RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.000000] NR_IRQS:4352 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] do_IRQ: 0.100 No irq handler for vector (irq -1)
[    0.000000] do_IRQ: 0.37 No irq handler for vector (irq -1)
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [ttyS0] enabled
[    0.000000] clocksource hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2793.236 MHz processor
[    0.000065] Calibrating delay loop (skipped), value calculated using timer frequency.. 5586.47 BogoMIPS (lpj=2793236)
[    0.010687] pid_max: default: 32768 minimum: 301
[    0.015320] ACPI: Core revision 20150410
[    0.076923] ACPI: All ACPI Tables successfully acquired
[    0.082243] Security Framework initialized
[    0.086345] SELinux:  Initializing.
[    0.089932] Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.097009] Inode-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.103936] Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
[    0.110471] Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes)
[    0.117723] Initializing cgroup subsys blkio
[    0.121992] Initializing cgroup subsys memory
[    0.126346] Initializing cgroup subsys devices
[    0.130783] Initializing cgroup subsys freezer
[    0.135220] Initializing cgroup subsys net_cls
[    0.139663] Initializing cgroup subsys perf_event
[    0.144370] Initializing cgroup subsys net_prio
[    0.148906] Initializing cgroup subsys hugetlb
[    0.153399] CPU: Physical Processor ID: 0
[    0.157416] CPU: Processor Core ID: 0
[    0.161098] process: using mwait in idle threads
[    0.165727] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.171215] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.189958] Freeing SMP alternatives memory: 28K (ffffffff81eb8000 - ffffffff81ebf000)
[    0.200232] ftrace: allocating 27958 entries in 110 pages
[    0.233887] dmar: Host address width 46
[    0.237730] dmar: DRHD base: 0x000000dfffc000 flags: 0x1
[    0.243057] dmar: IOMMU 0: reg_base_addr dfffc000 ver 1:0 cap d2078c106f0462 ecap f020fe
[    0.251150] dmar: RMRR base: 0x000000cba11000 end: 0x000000cba27fff
[    0.257428] dmar: ATSR flags: 0x0
[    0.260752] IOAPIC id 0 under DRHD base  0xdfffc000 IOMMU 0
[    0.266318] IOAPIC id 2 under DRHD base  0xdfffc000 IOMMU 0
[    0.271873] HPET id 0 under DRHD base 0xdfffc000
[    0.276787] IR is enabled prior to OS.
[    0.280543] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.290569] Enabled IRQ remapping in x2apic mode
[    0.295793] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.311836] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-1603 0 @ 2.80GHz (fam: 06, model: 2d, stepping: 07)
[    0.321233] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.331798] ... version:                3
[    0.335798] ... bit width:              48
[    0.339899] ... generic registers:      8
[    0.343917] ... value mask:             0000ffffffffffff
[    0.349236] ... max period:             0000ffffffffffff
[    0.354555] ... fixed-purpose events:   3
[    0.358571] ... event mask:             00000007000000ff
[    0.365068] x86: Booted up 1 node, 1 CPUs
[    0.369089] smpboot: Total of 1 processors activated (5586.47 BogoMIPS)
[    0.375739] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.386838] devtmpfs: initialized
[    0.395976] PM: Registering ACPI NVS region [mem 0xcb750000-0xcb7dafff] (569344 bytes)
[    0.403925] PM: Registering ACPI NVS region [mem 0xcbaad000-0xcbaaefff] (8192 bytes)
[    0.411660] PM: Registering ACPI NVS region [mem 0xcbabb000-0xcbacdfff] (77824 bytes)
[    0.419482] PM: Registering ACPI NVS region [mem 0xcbb56000-0xcbb5dfff] (32768 bytes)
[    0.427317] PM: Registering ACPI NVS region [mem 0xcbb71000-0xcbffffff] (4780032 bytes)
[    0.435539] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.445303] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.452262] pinctrl core: initialized pinctrl subsystem
[    0.457536] RTC time: 10:37:02, date: 04/29/15
[    0.462187] NET: Registered protocol family 16
[    0.467020] cpuidle: using governor menu
[    0.471152] ACPI: bus type PCI registered
[    0.475160] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.481718] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.491006] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.498450] PCI: Using configuration type 1 for base access
[    0.504311] perf_event_intel: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[    0.514793] ACPI: Added _OSI(Module Device)
[    0.518993] ACPI: Added _OSI(Processor Device)
[    0.523451] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.528161] ACPI: Added _OSI(Processor Aggregator Device)
[    0.547246] ACPI: Executed 1 blocks of module-level executable AML code
[    0.676932] ACPI: Interpreter enabled
[    0.680610] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150410/hwxface-580)
[    0.689859] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150410/hwxface-580)
[    0.699122] ACPI: (supports S0 S3 S5)
[    0.702784] ACPI: Using IOAPIC for interrupt routing
[    0.707798] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.718463] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.741051] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    0.747236] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.755636] acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability]
[    0.762877] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
[    0.772090] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[    0.779818] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
[    0.787373] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
[    0.794389] PCI host bridge to bus 0000:00
[    0.798498] pci_bus 0000:00: root bus resource [bus 00-7f]
[    0.803986] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.810759] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.817538] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.824314] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.831093] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.838557] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.846026] pci_bus 0000:00: root bus resource [mem 0xd4000000-0xdfffffff window]
[    0.853494] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3c007fffffff window]
[    0.862049] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.867944] pci 0000:00:02.0: System wakeup disabled by ACPI
[    0.873839] pci 0000:00:03.0: System wakeup disabled by ACPI
[    0.881198] pci 0000:00:19.0: System wakeup disabled by ACPI
[    0.887113] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.893180] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    0.897884] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    0.904617] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.910497] pci 0000:00:1c.5: Enabling MPC IRBNCE
[    0.915201] pci 0000:00:1c.5: Intel PCH root port ACS workaround enabled
[    0.921946] pci 0000:00:1c.5: System wakeup disabled by ACPI
[    0.927775] pci 0000:00:1c.6: Enabling MPC IRBNCE
[    0.932477] pci 0000:00:1c.6: Intel PCH root port ACS workaround enabled
[    0.939210] pci 0000:00:1c.6: System wakeup disabled by ACPI
[    0.945045] pci 0000:00:1c.7: Enabling MPC IRBNCE
[    0.949762] pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled
[    0.956513] pci 0000:00:1c.7: System wakeup disabled by ACPI
[    0.962422] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.968247] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.974687] pci 0000:00:01.0: PCI bridge to [bus 03]
[    0.981695] pci 0000:00:02.0: PCI bridge to [bus 05]
[    0.986766] pci 0000:00:03.0: PCI bridge to [bus 04]
[    0.992023] pci 0000:02:00.0: VF(n) BAR0 space: [mem 0xde800000-0xde87bfff 64bit pref] (contains BAR0 for 31 VFs)
[    1.002485] pci 0000:00:11.0: PCI bridge to [bus 02]
[    1.007553] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    1.012620] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.017677] pci 0000:00:1c.6: PCI bridge to [bus 07]
[    1.024661] pci 0000:00:1c.7: PCI bridge to [bus 08]
[    1.030149] pci 0000:00:1e.0: PCI bridge to [bus 09] (subtractive decode)
[    1.037879] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-ff])
[    1.044067] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    1.052491] acpi PNP0A08:01: _OSC: platform does not support [PCIeCapability]
[    1.059741] acpi PNP0A08:01: _OSC: not requesting control; platform does not support [PCIeCapability]
[    1.068944] acpi PNP0A08:01: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[    1.076670] acpi PNP0A08:01: _OSC: platform willing to grant [PCIeHotplug PME AER]
[    1.084224] acpi PNP0A08:01: _OSC failed (AE_SUPPORT); disabling ASPM
[    1.090899] PCI host bridge to bus 0000:80
[    1.095002] pci_bus 0000:80: root bus resource [bus 80-ff]
[    1.100484] pci_bus 0000:80: root bus resource [io  0x0000-0x03af window]
[    1.107260] pci_bus 0000:80: root bus resource [io  0x03e0-0x0cf7 window]
[    1.114039] pci_bus 0000:80: root bus resource [mem 0x000c0000-0x000dffff window]
[    1.121669] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15), disabled.
[    1.129988] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15), disabled.
[    1.138300] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15), disabled.
[    1.146408] ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 5 6 10 11 12 14 15), disabled.
[    1.154518] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 7 10 11 12 14 15), disabled.
[    1.162825] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.171326] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 11 12 14 15), disabled.
[    1.179644] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *10 11 12 14 15), disabled.
[    1.188199] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 4/0x2 ignored.
[    1.196018] ACPI: Unable to map lapic to logical cpu number
[    1.201750] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 5/0x4 ignored.
[    1.209582] ACPI: Unable to map lapic to logical cpu number
[    1.215318] ACPI: NR_CPUS/possible_cpus limit of 1 reached.  Processor 6/0x6 ignored.
[    1.223153] ACPI: Unable to map lapic to logical cpu number
[    1.229434] ACPI: Enabled 2 GPEs in block 00 to 3F
[    1.234470] vgaarb: setting as boot device: PCI:0000:05:00.0
[    1.240127] vgaarb: device added: PCI:0000:05:00.0,decodes=io+mem,owns=io+mem,locks=none
[    1.248211] vgaarb: loaded
[    1.250925] vgaarb: bridge control possible 0000:05:00.0
[    1.256375] SCSI subsystem initialized
[    1.260262] ACPI: bus type USB registered
[    1.264311] usbcore: registered new interface driver usbfs
[    1.269801] usbcore: registered new interface driver hub
[    1.275125] usbcore: registered new device driver usb
[    1.280345] PCI: Using ACPI for IRQ routing
[    1.292659] PCI: Discovered peer bus ff
[    1.296562] ACPI: \: failed to evaluate _DSM (0x1001)
[    1.301617] PCI host bridge to bus 0000:ff
[    1.305712] pci_bus 0000:ff: root bus resource [io  0x0000-0xffff]
[    1.311880] pci_bus 0000:ff: root bus resource [mem 0x00000000-0x3fffffffffff]
[    1.319092] pci_bus 0000:ff: No busn resource found for root bus, will use [bus ff-ff]
[    1.331425] NetLabel: Initializing
[    1.334831] NetLabel:  domain hash size = 128
[    1.339187] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.344167] NetLabel:  unlabeled traffic allowed by default
[    1.349929] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.356272] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.364155] Switched to clocksource hpet
[    1.378628] pnp: PnP ACPI init
[    1.381916] system 00:00: [mem 0xfc000000-0xfcffffff window] has been reserved
[    1.389159] system 00:00: [mem 0xfd000000-0xfdffffff window] has been reserved
[    1.396381] system 00:00: [mem 0xfe000000-0xfeafffff window] has been reserved
[    1.403595] system 00:00: [mem 0xfeb00000-0xfebfffff window] has been reserved
[    1.410816] system 00:00: [mem 0xfed00400-0xfed3ffff window] could not be reserved
[    1.418371] system 00:00: [mem 0xfed45000-0xfedfffff window] has been reserved
[    1.425578] system 00:00: [mem 0xdffff000-0xdfffffff window] has been reserved
[    1.433036] system 00:01: [io  0x0620-0x063f] has been reserved
[    1.438955] system 00:01: [io  0x0610-0x061f] has been reserved
[    1.445255] system 00:05: [io  0x04d0-0x04d1] has been reserved
[    1.451860] system 00:07: [io  0x0400-0x0453] could not be reserved
[    1.458143] system 00:07: [io  0x0458-0x047f] has been reserved
[    1.464072] system 00:07: [io  0x1180-0x119f] has been reserved
[    1.469997] system 00:07: [io  0x0500-0x057f] has been reserved
[    1.475926] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.482549] system 00:07: [mem 0xfec00000-0xfecfffff] could not be reserved
[    1.489517] system 00:07: [mem 0xfed08000-0xfed08fff] has been reserved
[    1.496120] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[    1.502862] system 00:08: [io  0x0454-0x0457] has been reserved
[    1.509408] system 00:09: [mem 0xfed40000-0xfed44fff] has been reserved
[    1.516024] pnp: PnP ACPI: found 10 devices
[    1.527531] clocksource acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.536416] pci 0000:00:01.0: PCI bridge to [bus 03]
[    1.541392] pci 0000:00:02.0: PCI bridge to [bus 05]
[    1.546363] pci 0000:00:02.0:   bridge window [io  0xd000-0xdfff]
[    1.552460] pci 0000:00:02.0:   bridge window [mem 0xd6000000-0xd70fffff]
[    1.559247] pci 0000:00:02.0:   bridge window [mem 0xd8000000-0xddffffff 64bit pref]
[    1.566993] pci 0000:00:03.0: PCI bridge to [bus 04]
[    1.571969] pci 0000:00:11.0: PCI bridge to [bus 02]
[    1.576930] pci 0000:00:11.0:   bridge window [io  0xe000-0xefff]
[    1.583023] pci 0000:00:11.0:   bridge window [mem 0xde400000-0xde8fffff 64bit pref]
[    1.590773] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    1.595747] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.600725] pci 0000:00:1c.6: PCI bridge to [bus 07]
[    1.605702] pci 0000:00:1c.7: PCI bridge to [bus 08]
[    1.610669] pci 0000:00:1c.7:   bridge window [mem 0xd7200000-0xd72fffff]
[    1.617457] pci 0000:00:1e.0: PCI bridge to [bus 09]
[    1.622418] pci 0000:00:1e.0:   bridge window [io  0xc000-0xcfff]
[    1.628523] pci 0000:00:1e.0:   bridge window [mem 0xd7100000-0xd71fffff]
[    1.635493] NET: Registered protocol family 2
[    1.640142] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
[    1.647220] TCP bind hash table entries: 2048 (order: 3, 32768 bytes)
[    1.653666] TCP: Hash tables configured (established 2048 bind 2048)
[    1.660060] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    1.665892] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    1.672227] NET: Registered protocol family 1
[    1.682331] Unpacking initramfs...
[    2.307008] Freeing initrd memory: 19720K (ffff880031cbe000 - ffff880033000000)
[    2.314686] Translation is enabled prior to OS.
[    2.319221] IOMMU Copying translate tables from panicked kernel
[    2.325295] IOMMU: root_cache:0xffff88002ccbb000 phys:0x0000c6548000
[    2.331655] IOMMU: dmar0 using Queued invalidation
[    2.336450] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[    2.345395] RAPL PMU detected, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    2.353994] hw unit of domain pp0-core 2^-16 Joules
[    2.358868] hw unit of domain package 2^-16 Joules
[    2.363655] hw unit of domain dram 2^-16 Joules
[    2.368417] microcode: CPU0 sig=0x206d7, pf=0x1, revision=0x710
[    2.374442] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.383569] AVX version of gcm_enc/dec engaged.
[    2.388108] AES CTR mode by8 optimization enabled
[    2.396079] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[    2.402980] futex hash table entries: 256 (order: 2, 16384 bytes)
[    2.409140] Initialise system trusted keyring
[    2.413542] audit: initializing netlink subsys (disabled)
[    2.418975] audit: type=2000 audit(1430303822.418:1): initialized
[    2.426139] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.435279] zpool: loaded
[    2.438216] VFS: Disk quotas dquot_6.6.0
[    2.442219] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.449839] Key type big_key registered
[    2.454761] alg: No test for stdrng (krng)
[    2.458884] NET: Registered protocol family 38
[    2.463360] Key type asymmetric registered
[    2.467472] Asymmetric key parser 'x509' registered
[    2.472438] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.479862] io scheduler noop registered
[    2.483800] io scheduler deadline registered
[    2.488144] io scheduler cfq registered (default)
[    2.494392] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.500020] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.506896] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.515253] ACPI: Power Button [PWRB]
[    2.518991] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.526378] ACPI: Power Button [PWRF]
[    2.531997] GHES: HEST is not enabled!
[    2.535871] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.562820] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.591181] 0000:00:16.3: ttyS1 at I/O 0xf060 (irq = 17, base_baud = 115200) is a 16550A
[    2.599752] Non-volatile memory driver v1.3
[    2.604004] Linux agpgart interface v0.103
[    2.619575] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl RAID mode
[    2.627657] ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pio ems sxs apst 
[    2.637433] scsi host0: ahci
[    2.640467] scsi host1: ahci
[    2.643472] scsi host2: ahci
[    2.646470] scsi host3: ahci
[    2.649477] scsi host4: ahci
[    2.652482] scsi host5: ahci
[    2.655438] ata1: SATA max UDMA/133 abar m2048@0xd7348000 port 0xd7348100 irq 27
[    2.662824] ata2: DUMMY
[    2.665275] ata3: SATA max UDMA/133 abar m2048@0xd7348000 port 0xd7348200 irq 27
[    2.672666] ata4: DUMMY
[    2.675113] ata5: DUMMY
[    2.677562] ata6: DUMMY
[    2.680385] libphy: Fixed MDIO Bus: probed
[    2.684693] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    2.689982] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 1
[    2.697664] xhci_hcd 0000:08:00.0: hcc params 0x0270f06d hci version 0x96 quirks 0x00004000
[    2.706170] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.712953] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.720172] usb usb1: Product: xHCI Host Controller
[    2.725050] usb usb1: Manufacturer: Linux 4.0.0+ xhci-hcd
[    2.730451] usb usb1: SerialNumber: 0000:08:00.0
[    2.735274] hub 1-0:1.0: USB hub found
[    2.739053] hub 1-0:1.0: 4 ports detected
[    2.743275] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    2.748560] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 2
[    2.755999] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    2.762778] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.769992] usb usb2: Product: xHCI Host Controller
[    2.774865] usb usb2: Manufacturer: Linux 4.0.0+ xhci-hcd
[    2.780256] usb usb2: SerialNumber: 0000:08:00.0
[    2.785049] hub 2-0:1.0: USB hub found
[    2.788829] hub 2-0:1.0: 4 ports detected
[    2.793070] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.799603] ehci-pci: EHCI PCI platform driver
[    2.804223] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    2.809519] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    2.816918] ehci-pci 0000:00:1a.0: debug port 2
[    2.825476] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd734b000
[    2.836792] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    2.842597] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    2.849380] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.856592] usb usb3: Product: EHCI Host Controller
[    2.861469] usb usb3: Manufacturer: Linux 4.0.0+ ehci_hcd
[    2.866864] usb usb3: SerialNumber: 0000:00:1a.0
[    2.871736] hub 3-0:1.0: USB hub found
[    2.875523] hub 3-0:1.0: 3 ports detected
[    2.879920] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    2.885234] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    2.892646] ehci-pci 0000:00:1d.0: debug port 2
[    2.901304] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd734a000
[    2.912902] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    2.918730] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002
[    2.925512] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.932747] usb usb4: Product: EHCI Host Controller
[    2.937639] usb usb4: Manufacturer: Linux 4.0.0+ ehci_hcd
[    2.943057] usb usb4: SerialNumber: 0000:00:1d.0
[    2.947909] hub 4-0:1.0: USB hub found
[    2.951684] hub 4-0:1.0: 3 ports detected
[    2.955934] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.962132] ohci-pci: OHCI PCI platform driver
[    2.966601] uhci_hcd: USB Universal Host Controller Interface driver
[    2.973066] usbcore: registered new interface driver usbserial
[    2.978909] usbcore: registered new interface driver usbserial_generic
[    2.985490] usbserial: USB Serial support registered for generic
[    2.991520] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.997725] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.003994] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    3.012319] ata3.00: ATAPI: hp       CDDVDW SH-216ALN, HA5A, max UDMA/100
[    3.019125] ata1.00: ATA-8: WDC WD10EALX-609BA0, 18.01H18, max UDMA/100
[    3.025752] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    3.035655] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.040666] ata3.00: configured for UDMA/100
[    3.044957] ata1.00: configured for UDMA/100
[    3.049378] scsi 0:0:0:0: Direct-Access     ATA      WDC WD10EALX-609 1H18 PQ: 0 ANSI: 5
[    3.057523] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.062805] mousedev: PS/2 mouse device common for all mice
[    3.068682] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.074058] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    3.082100] sd 0:0:0:0: [sda] Write Protect is off
[    3.086998] rtc_cmos 00:04: RTC can wake from S4
[    3.091647] scsi 2:0:0:0: CD-ROM            hp       CDDVDW SH-216ALN HA5A PQ: 0 ANSI: 5
[    3.099973] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    3.106123] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.115613] rtc_cmos 00:04: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    3.123614] device-mapper: uevent: version 1.0.3
[    3.128405]  sda: sda1 sda2
[    3.131679] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.136335] device-mapper: ioctl: 4.31.0-ioctl (2015-3-12) initialised: dm-devel@redhat.com
[    3.145429] Intel P-state driver initializing.
[    3.151685] hidraw: raw HID events driver (C) Jiri Kosina
[    3.157694] usbcore: registered new interface driver usbhid
[    3.163274] usbhid: USB HID core driver
[    3.167188] drop_monitor: Initializing network drop monitor service
[    3.173625] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.178975] sr 2:0:0:0: [sr0] scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
[    3.187607] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.192862] Initializing XFRM netlink socket
[    3.197314] NET: Registered protocol family 10
[    3.201773] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    3.208817] mip6: Mobile IPv6
[    3.211978] sr 2:0:0:0: Attached scsi generic sg1 type 5
[    3.217292] NET: Registered protocol family 17
[    3.221791] dmar: DRHD: handling fault status reg 2
[    3.226666] dmar: DMAR:[DMA Read] Request device [00:1f.2] fault addr fffc0000 
[    3.226666] DMAR:[fault reason 06] PTE Read access is not set
[    3.239704] ata3.00: exception Emask 0x60 SAct 0x0 SErr 0x800 action 0x6 frozen
[    3.247007] ata3.00: irq_stat 0x20000000, host bus error
[    3.252323] ata3: SError: { HostInt }
[    3.255995] ata3.00: cmd a0/00:00:00:08:00/00:00:00:00:00/a0 tag 5 pio 16392 in
[    3.255995]          Get event status notification 4a 01 00 00 10 00 00 00 08 00res 50/00:03:00:80:00/00:00:00:00:00/a0 Emask 0x60 (host bus error)
[    3.276455] ata3.00: status: { DRDY }
[    3.280121] ata3: hard resetting link
[    3.283806] usb 4-1: new high-speed USB device number 2 using ehci-pci
[    3.290350] mce: Unable to init device /dev/mcelog (rc: -5)
[    3.296192] Loading compiled-in X.509 certificates
[    3.302015] Loaded X.509 cert 'Magrathea: Glacier signing key: 8d99b9f6f028e78c7dfe07caad5fd2ff7cee9c74'
[    3.311548] registered taskstats version 1
[    3.316092]   Magic number: 11:806:629
[    3.319931] rtc_cmos 00:04: setting system clock to 2015-04-29 10:37:05 UTC (1430303825)
[    3.328504] Freeing unused kernel memory: 1500K (ffffffff81d41000 - ffffffff81eb8000)
[    3.336329] Write protecting the kernel read-only data: 12288k
[    3.342583] Freeing unused kernel memory: 464K (ffff88003378c000 - ffff880033800000)
[    3.350787] Freeing unused kernel memory: 836K (ffff880033b2f000 - ffff880033c00000)
[    3.358525] tsc: Refined TSC clocksource calibration: 2793.268 MHz
[    3.364699] clocksource tsc: mask: 0xffffffffffffffff max_cycles: 0x28436928c28, max_idle_ns: 440795267499 ns
[    3.375952] random: systemd urandom read with 13 bits of entropy available
[    3.383395] systemd[1]: systemd 217 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -L)
[    3.401586] systemd[1]: Detected architecture 'x86-64'.
[    3.406820] systemd[1]: Running in initial RAM disk.

Welcome to Fedora 21 (Twenty One) dracut-038-30.git20140903.fc21 (Initramfs)!

[    3.420591] systemd[1]: Set hostname to <dhcp-128-28.nay.redhat.com>.
[    3.427453] usb 3-1: New USB device found, idVendor=8087, idProduct=0024
[    3.434150] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.441287] usb 4-1: New USB device found, idVendor=8087, idProduct=0024
[    3.447985] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.467331] hub 3-1:1.0: USB hub found
[    3.471115] hub 4-1:1.0: USB hub found
[    3.478192] hub 4-1:1.0: 8 ports detected
[    3.482208] hub 3-1:1.0: 6 ports detected
[    3.494103] systemd[1]: Expecting device dev-mapper-fedora_dhcp\x2d\x2d128\x2d\x2d28\x2dswap.device...
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2dswap.device...
[    3.511619] systemd[1]: Expecting device dev-disk-by\x2duuid-689a8845\x2d7f32\x2d4fd7\x2d87fc\x2d615276a16f2f.device...
         Expecting device dev-disk-by\x2duui...2d87fc\x2d615276a16f2f.device...
[    3.530640] systemd[1]: Expecting device dev-mapper-fedora_dhcp\x2d\x2d128\x2d\x2d28\x2droot.device...
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2droot.device...
[    3.548656] systemd[1]: Starting Timers.
[  OK  ] Reached target Timers.
[    3.556651] systemd[1]: Reached target Timers.
[    3.561115] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[    3.569147] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    3.577064] systemd[1]: Starting Paths.
[  OK  ] Reached target Paths.
[    3.585700] systemd[1]: Reached target Paths.
[    3.590077] systemd[1]: Starting -.slice.
[  OK  ] Created slice -.slice.
[    3.601708] systemd[1]: Created slice -.slice.
[    3.606181] systemd[1]: Starting udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[    3.617731] systemd[1]: Listening on udev Control Socket.
[    3.623154] systemd[1]: Starting udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[    3.633749] systemd[1]: Listening on udev Kernel Socket.
[    3.639080] systemd[1]: Starting Journal Socket.
[  OK  [    3.644687] dmar: DRHD: handling fault status reg 102
[    3.650280] dmar: DMAR:[DMA Write] Request device [00:1f.2] fault addr fffc0000 
[    3.650280] DMAR:[fault reason 05] PTE Write access is not set
] Listening on J[    3.663523] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ournal Socket.
[    3.671072] dmar: DRHD: handling fault status reg 202
[    3.677461] dmar: DMAR:[DMA Read] Request device [00:1f.2] fault addr fffc0000 
[    3.677461] DMAR:[fault reason 06] PTE Read access is not set
[    3.690485] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x100)
[    3.696742] ata3.00: revalidation failed (errno=-5)
[    3.701702] systemd[1]: Listening on Journal Socket.
[    3.706683] systemd[1]: Starting System Slice.
[  OK  ] Created slice System Slice.
[    3.715837] systemd[1]: Created slice System Slice.
[    3.720795] systemd[1]: Started dracut ask for additional cmdline parameters.
[    3.728016] systemd[1]: Starting dracut cmdline hook...
         Starting dracut cmdline hook...
[    3.738143] systemd[1]: Starting system-systemd\x2dfsck.slice.
[  OK  ] Created slice system-systemd\x2dfsck.slice.
[    3.754853] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    3.764945] systemd[1]: Starting Create list of required static device nodes for the current kernel...
         Startin[    3.783966] usb 4-1.1: new high-speed USB device number 3 using ehci-pci
g Create list of required st... nodes for the current kernel...
[    3.799162] systemd[1]: Starting Journal Socket (/dev/log).
[    3.807691] systemd[1]: Starting Slices.
[  OK  ] Reached target Slices.
[    3.820928] systemd[1]: Reached target Slices.
[    3.827320] systemd[1]: Started Load Kernel Modules.
[    3.837299] systemd[1]: Starting Apply Kernel Variables...
         Starting Apply Kernel Variables...
[    3.853225] systemd[1]: Starting Swap.
[  OK  ] Reached target Swap.
[    3.863972] systemd[1]: Reached target Swap.
[    3.870307] systemd[1]: Starting Local File Systems.
[  OK  [    3.880322] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2412
] Reached target[    3.888186] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
 Local File Systems.
[    3.900011] systemd[1]: Reached target Local File Systems.
[  OK  ] Started Create[    3.910759] hub 4-1.1:1.0: USB hub found
 list of require[    3.915877] hub 4-1.1:1.0: 2 ports detected
d sta...ce nodes for the current kernel.
[    3.925064] systemd[1]: Started Create list of required static device nodes for the current kernel.
[  OK  ] Started dracut cmdline hook.
[    3.939083] systemd[1]: Started dracut cmdline hook.
[  OK  ] Listening on Journal Socket (/dev/log).
[    3.950118] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Started Apply Kernel Variables.
[    3.962129] systemd[1]: Started Apply Kernel Variables.
[    3.971875] systemd[1]: Starting Sockets.
[  OK  ] Reached target Sockets.
[    3.980130] systemd[1]: Reached target Sockets.
[    3.984675] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[    3.994543] systemd[1]: Starting dracut pre-udev hook...
[    4.001744] systemd-journald[218]: File /var/log/journal/95212bce02f14a269471981f705ca21f/system.journal corrupted or uncleanly shut down, renaming and replacing.
         Starting dracut pre-udev hook...
[    4.021459] systemd[1]: Starting Create Static Device Nodes in /dev...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Started Create Static Device Nodes in /dev.
[    4.053182] systemd[1]: Started Create Static Device Nodes in /dev.
[  OK  ] Started dracut pre-udev hook.
[    4.091249] systemd[1]: Started dracut pre-udev hook.
[  OK  ] Started Journal Service.
[    4.101278] systemd[1]: Started Journal Service.
         Starting udev Kernel Device Manager...
[  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.
[    4.200477] wmi: Mapper loaded
[    4.203681] usb 4-1.1.1: new low-speed USB device number 4 using ehci-pci
[    4.222406] [drm] Initialized drm 1.1.0 20060810
[    4.240547] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    4.258375] isci 0000:02:00.0: driver configured for rev: 5 silicon
[    4.291419] isci 0000:02:00.0: OEM SAS parameters (version: 1.3) loaded (firmware)
[    4.313180] isci 0000:02:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    4.328315] usb 4-1.1.1: New USB device found, idVendor=03f0, idProduct=0324
[    4.335360] usb 4-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.342835] usb 4-1.1.1: Product: HP Basic USB Keyboard
[    4.348057] usb 4-1.1.1: Manufacturer: Lite-On Technology Corp.
[    4.359190] nouveau  [  DEVICE][0000:05:00.0] BOOT0  : 0x0a8c00b1
[    4.365325] nouveau  [  DEVICE][0000:05:00.0] Chipset: GT218 (NVA8)
[    4.371618] nouveau  [  DEVICE][0000:05:00.0] Family : NV50
[    4.384935] input: Lite-On Technology Corp. HP Basic USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.1/4-1.1.1/4-1.1.1:1.0/0003:03F0:0324.0001/input5
[    4.404579] scsi host6: isci
[    4.409301] random: nonblocking pool is initialized
[    4.416905] Switched to clocksource tsc
[    4.530384] hid-generic 0003:03F0:0324.0001: input,hidraw0: USB HID v1.10 Keyboard [Lite-On Technology Corp. HP Basic USB Keyboard] on usb-0000:00:1d.0-1.1.1/inpu0
[    4.617826] usb 4-1.1.2: new low-speed USB device number 5 using ehci-pci
[    4.988061] usb 4-1.1.2: New USB device found, idVendor=03f0, idProduct=0b4a
[    4.995136] usb 4-1.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    5.002619] usb 4-1.1.2: Product: USB Optical Mouse
[    5.007555] usb 4-1.1.2: Manufacturer: Logitech
[    5.040561] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.1/4-1.1.2/4-1.1.2:1.0/0003:03F0:0B4A.0002/input/input6
[    5.068488] hid-generic 0003:03F0:0B4A.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.1.2/input0
[    5.087326] scsi host7: ata_generic
[    5.098343] scsi host8: ata_generic
[    5.105436] ata7: PATA max UDMA/100 cmd 0xf0b0 ctl 0xf0a0 bmdma 0xf070 irq 18
[    5.112603] ata8: PATA max UDMA/100 cmd 0xf090 ctl 0xf080 bmdma 0xf078 irq 18
[    5.411708] nouveau  [   VBIOS][0000:05:00.0] using image from PRAMIN
[    5.418722] nouveau  [   VBIOS][0000:05:00.0] BIT signature found
[    5.424818] nouveau  [   VBIOS][0000:05:00.0] version 70.18.89.00.02
[    5.469015] nouveau  [     PMC][0000:05:00.0] MSI interrupts enabled
[    5.476719] pps_core: LinuxPPS API ver. 1 registered
[    5.481675] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    5.499853] nouveau  [     PFB][0000:05:00.0] RAM type: DDR3
[    5.505527] nouveau  [     PFB][0000:05:00.0] RAM size: 512 MiB
[    5.511451] nouveau  [     PFB][0000:05:00.0]    ZCOMP: 960 tags
[    5.542850] PTP clock support registered
[    5.596306] nouveau  [    VOLT][0000:05:00.0] GPU voltage: 900000uv
[    5.655578] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
[    5.661411] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
[    5.692267] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    5.708902] nouveau  [  PTHERM][0000:05:00.0] FAN control: none / external
[    5.715826] nouveau  [  PTHERM][0000:05:00.0] fan management: automatic
[    5.722450] nouveau  [  PTHERM][0000:05:00.0] internal sensor: yes
[    5.801093] nouveau  [     CLK][0000:05:00.0] 03: core 135 MHz shader 270 MHz memory 135 MHz
[    5.828131] nouveau  [     CLK][0000:05:00.0] 07: core 405 MHz shader 810 MHz memory 405 MHz
[    5.846134] nouveau  [     CLK][0000:05:00.0] 0f: core 520 MHz shader 1230 MHz memory 790 MHz
[    5.854747] nouveau  [     CLK][0000:05:00.0] --: core 405 MHz shader 810 MHz memory 405 MHz
[    5.901174] [TTM] Zone  kernel: Available graphics memory: 119828 kiB
[    5.907609] [TTM] Initializing pool allocator
[    5.921188] [TTM] Initializing DMA pool allocator
[    5.928128] nouveau  [     DRM] VRAM: 512 MiB
[    5.932490] nouveau  [     DRM] GART: 1048576 MiB
[    5.937198] nouveau  [     DRM] TMDS table version 2.0
[    5.942326] nouveau  [     DRM] DCB version 4.0
[    5.946860] nouveau  [     DRM] DCB outp 00: 02000360 00000000
[    5.952683] nouveau  [     DRM] DCB outp 01: 02000362 00020010
[    5.958511] nouveau  [     DRM] DCB outp 02: 028003a6 0f220010
[    5.964349] nouveau  [     DRM] DCB outp 03: 01011380 00000000
[    5.970169] nouveau  [     DRM] DCB outp 04: 08011382 00020010
[    5.975991] nouveau  [     DRM] DCB outp 05: 088113c6 0f220010
[    5.981821] nouveau  [     DRM] DCB conn 00: 00101064
[    5.986897] nouveau  [     DRM] DCB conn 01: 00202165
[    6.012149] nouveau E[   PDISP][0000:05:00.0] UNK01 [UNK02] chid 0 mthd 0x0000 data 0x00000400
[    6.020748] nouveau E[   PDISP][0000:05:00.0] UNK01 [UNK02] chid 1 mthd 0x0000 data 0x00000400
[    6.042493] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    6.049104] [drm] Driver supports precise vblank timestamp query.
[    6.085985] nouveau  [     DRM] MM: using COPY for buffer copies
[    6.122810] e1000e 0000:00:19.0 eth0: registered PHC clock
[    6.128296] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 80:c1:6e:f8:9f:92
[    6.136193] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[    6.145426] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 0100FF-0FF
[    6.242421] tulip: Linux Tulip driver version 1.1.15 (Feb 27, 2007)
[    6.253721] tulip: tulip_init_one: Enabled WOL support for AN983B
[    6.261665] tulip0:  MII transceiver #1 config 1000 status 786d advertising 05e1
[    6.278694] net eth1: ADMtek Comet rev 17 at MMIO 0xd7121000, 00:b0:c0:06:70:90, IRQ 20
[    6.349682] firewire_ohci 0000:09:05.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
[  OK  ] Found device WDC_WD10EALX-609BA0 1.
[    6.860267] firewire_core 0000:09:05.0: created device fw0: GUID 0060b000008cec98, S400
[    8.676219] ata3: hard resetting link
[    8.984562] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    8.995356] ata3.00: configured for UDMA/100
[    8.999897] ata3: EH complete
[    9.352568] e1000e 0000:00:19.0 eno1: renamed from eth0
[    9.363102] tulip 0000:09:04.0 enp9s4: renamed from eth1
[    9.374412] iTCO_vendor_support: vendor-support=0
[    9.380595] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    9.386231] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[   10.153286] nouveau  [     DRM] allocated 1920x1080 fb: 0x70000, bo ffff880032afd400
[   10.161103] fbcon: nouveaufb (fb0) is primary device
[   18.218368] Console: switching to colour frame buffer device 240x67
[   18.232823] nouveau 0000:05:00.0: fb0: nouveaufb frame buffer device
[   18.239186] nouveau 0000:05:00.0: registered panic notifier
[   18.244950] [drm] Initialized nouveau 1.2.2 20120801 for 0000:05:00.0 on minor 0
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-swap.
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-root.
         Starting File System Check on /dev/mapper/fedora_dhcp--128--28-root...
[  OK  ] Started dracut initqueue hook.
[  OK  ] Reached target Remote File Systems (Pre).
[  OK  ] Reached target Remote File Systems.
[   17.574332] systemd-fsck[361]: /dev/mapper/fedora_dhcp--128--28-root: recovering journal
[   19.639716] systemd-fsck[361]: /dev/mapper/fedora_dhcp--128--28-root: Clearing orphaned inode 1705150 (uid=42, gid=42, mode=0100644, size=451)
[   19.648774] systemd-fsck[361]: /dev/mapper/fedora_dhcp--128--28-root: clean, 162324/19660800 files, 9598778/78643200 blocks
[  OK  ] Started File System Check on /dev/mapper/fedora_dhcp--128--28-root.
         Mounting /sysroot...
[   22.093146] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[  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.
         Starting dracut pre-pivot and cleanup hook...
[  OK  ] Started dracut pre-pivot and cleanup hook.
         Starting Kdump Vmcore Save Service...
kdump: dump target is /dev/mapper/fedora_dhcp--128--28-root
kdu[   22.464100] EXT4-fs (dm-1): re-mounted. Opts: data=ordered
mp: saving to /sysroot//var/crash/127.0.0.1-2015.04.29-18:37:24/
kdump: saving vmcore-dmesg.txt
kdump: saving vmcore-dmesg.txt complete
kdump: saving vmcore
Copying data                       : [100.0 %] |
kdump: saving vmcore complete
[  OK  ] Stopped target Timers.
[  OK  ] Removed slice system-systemd\x2dfsck.slice.
         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).
[  OK  ] Stopped target Initrd Default Target.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped targ[   24.137096] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
et Slices.
[  OK  ] Removed slice -.slice.
[  OK[   24.148896] systemd-journald[218]: Received SIGTERM from PID 1 (systemd-shutdow).
  ] Stopped target Paths.
[[   24.159738] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
  OK  ] Stopped target Sockets.
[[   24.170398] systemd-shutdown[1]: Unmounting file systems.
  OK  ] Stopped target System Initialization.
         Stopping Apply Kernel Variables...
[  OK  ] Stopped Apply Kernel Variables.
         Stopping Create Static Device Nodes in /dev...
[  OK  ] Stopped Create Static Device Nodes in /dev.
[  OK  ] Reached target Shutdown.
[  OK  ] Stopped target Swap.
[[   24.206037] EXT4-fs (dm-1): re-mounted. Opts: (null)
  OK  ][   24.212563] systemd-shutdown[1]: Unmounting /sysroot.
 Stopped target Local File Systems.
[  OK  ] Stopped target Initrd File Systems.
[  OK  ] Stopped target Initrd Root File System.
         Starting Cleaning Up and Shuttin[   24.234371] systemd-shutdown[1]: Unmounting /sys/kernel/config.
g Down Daemons..[   24.241384] systemd-shutdown[1]: All filesystems unmounted.
.
         Unmo[   24.248331] systemd-shutdown[1]: Deactivating swaps.
unting /sysroot.[   24.254699] systemd-shutdown[1]: All swaps deactivated.
..
[  OK  [   24.261243] systemd-shutdown[1]: Detaching loop devices.
] Failed unm[   24.268025] systemd-shutdown[1]: All loop devices detached.
ounting /sysroot[   24.274885] systemd-shutdown[1]: Detaching DM devices.
.
[FAILE[   24.281552] systemd-shutdown[1]: Detaching DM 253:1.
D] Failed to[   24.287950] systemd-shutdown[1]: Detaching DM 253:0.
 start Cleaning [   24.294232] systemd-shutdown[1]: All DM devices detached.
Up and Shutting [   24.301110] systemd-shutdown[1]: Rebooting.
Down Daemons.
S[   24.306513] sd 0:0:0:0: [sda] Synchronizing SCSI cache
ee "systemctl status initrd-cleanup.service" for[   24.316241] e1000e: EEE TX LPI TIMER: 00000011
 details.
[  OK  ] Reached target Unmount All Filesystems.
[  OK  ] Reached target Final Step.
         Starting Reboot...
[   24.376843] reboot: Restarting system
[   24.380516] reboot: machine restart

[-- Attachment #4: Type: text/plain, Size: 143 bytes --]

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-03  8:55     ` Baoquan He
  0 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-05-03  8:55 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: alex.williamson, indou.takao, tom.vaden, rwright, dwmw2, joro,
	kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	ddutile, doug.hatch, ishii.hironobu, linux-pci, bhelgaas,
	billsumnerlinux, li.zhang6, dyoung, vgoyal

[-- Attachment #1: Type: text/plain, Size: 291 bytes --]

On 04/29/15 at 07:20pm, Baoquan He wrote:
> Bad news, I rebuilt a kernel with your patchset on 4.0.0+ (this commit
> f614c81). Now dmar fault is  seen again.
> 
> The lspci log and kdump log are attached, please check:

I found the lspci log previously attached is emtyp, resend it again.



[-- Attachment #2: lspci.log --]
[-- Type: text/plain, Size: 35556 bytes --]

00:00.0 Host bridge: Intel Corporation Xeon E5/Core i7 DMI2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 0
	Capabilities: <access denied>

00:01.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 1a (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 24
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:02.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 2a (rev 07) (prog-if 00 [Normal decode])
	DeviceName:  Onboard IGD
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 25
	Bus: primary=00, secondary=05, subordinate=05, sec-latency=0
	I/O behind bridge: 0000d000-0000dfff
	Memory behind bridge: d6000000-d70fffff
	Prefetchable memory behind bridge: 00000000d8000000-00000000ddffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:03.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3a in PCI Express Mode (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 26
	Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:05.0 System peripheral: Intel Corporation Xeon E5/Core i7 Address Map, VTd_Misc, System Management (rev 07)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

00:05.2 System peripheral: Intel Corporation Xeon E5/Core i7 Control Status and Global Errors (rev 07)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

00:05.4 PIC: Intel Corporation Xeon E5/Core i7 I/O APIC (rev 07) (prog-if 20 [IO(X)-APIC])
	Subsystem: Intel Corporation Xeon E5/Core i7 I/O APIC
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Region 0: Memory at d7346000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>

00:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 05) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 16
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
	I/O behind bridge: 0000e000-0000efff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000de400000-00000000de8fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:16.0 Communication controller: Intel Corporation C600/X79 series chipset MEI Controller #1 (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 37
	Region 0: Memory at d7345000 (64-bit, non-prefetchable) [size=16]
	Capabilities: <access denied>
	Kernel driver in use: mei_me
	Kernel modules: mei_me

00:16.2 IDE interface: Intel Corporation C600/X79 series chipset IDE-r Controller (rev 05) (prog-if 85 [Master SecO PriO])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin C routed to IRQ 18
	Region 0: I/O ports at f0b0 [size=8]
	Region 1: I/O ports at f0a0 [size=4]
	Region 2: I/O ports at f090 [size=8]
	Region 3: I/O ports at f080 [size=4]
	Region 4: I/O ports at f070 [size=16]
	Capabilities: <access denied>
	Kernel driver in use: ata_generic
	Kernel modules: pata_acpi, ata_generic

00:16.3 Serial controller: Intel Corporation C600/X79 series chipset KT Controller (rev 05) (prog-if 02 [16550])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin B routed to IRQ 17
	Region 0: I/O ports at f060 [size=8]
	Region 1: Memory at d7344000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: serial

00:19.0 Ethernet controller: Intel Corporation 82579LM Gigabit Network Connection (rev 05)
	DeviceName:  Onboard LAN
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 35
	Region 0: Memory at d7300000 (32-bit, non-prefetchable) [size=128K]
	Region 1: Memory at d7349000 (32-bit, non-prefetchable) [size=4K]
	Region 2: I/O ports at f040 [size=32]
	Capabilities: <access denied>
	Kernel driver in use: e1000e
	Kernel modules: e1000e

00:1a.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #2 (rev 05) (prog-if 20 [EHCI])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 16
	Region 0: Memory at d734b000 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci-pci

00:1b.0 Audio device: Intel Corporation C600/X79 series chipset High Definition Audio Controller (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 38
	Region 0: Memory at d7340000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

00:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 2 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 16
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1c.5 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 5 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 17
	Bus: primary=00, secondary=06, subordinate=06, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1c.6 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 3 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 18
	Bus: primary=00, secondary=07, subordinate=07, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1c.7 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 4 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin D routed to IRQ 19
	Bus: primary=00, secondary=08, subordinate=08, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: d7200000-d72fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 05) (prog-if 20 [EHCI])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 23
	Region 0: Memory at d734a000 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci-pci

00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a5) (prog-if 01 [Subtractive decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=00, secondary=09, subordinate=09, sec-latency=128
	I/O behind bridge: 0000c000-0000cfff
	Memory behind bridge: d7100000-d71fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>

00:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: <access denied>
	Kernel driver in use: lpc_ich
	Kernel modules: lpc_ich

00:1f.2 RAID bus controller: Intel Corporation C600/X79 series chipset SATA RAID Controller (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin B routed to IRQ 27
	Region 0: I/O ports at f0f0 [size=8]
	Region 1: I/O ports at f0e0 [size=4]
	Region 2: I/O ports at f0d0 [size=8]
	Region 3: I/O ports at f0c0 [size=4]
	Region 4: I/O ports at f020 [size=32]
	Region 5: Memory at d7348000 (32-bit, non-prefetchable) [size=2K]
	Capabilities: <access denied>
	Kernel driver in use: ahci

00:1f.3 SMBus: Intel Corporation C600/X79 series chipset SMBus Host Controller (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin C routed to IRQ 18
	Region 0: Memory at d7347000 (64-bit, non-prefetchable) [size=256]
	Region 4: I/O ports at f000 [size=32]
	Kernel driver in use: i801_smbus
	Kernel modules: i2c_i801

02:00.0 Serial Attached SCSI controller: Intel Corporation C602 chipset 4-Port SATA Storage Control Unit (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 16
	Region 0: Memory at de87c000 (64-bit, prefetchable) [size=16K]
	Region 2: Memory at de400000 (64-bit, prefetchable) [size=4M]
	Region 4: I/O ports at e000 [size=256]
	Capabilities: <access denied>
	Kernel driver in use: isci
	Kernel modules: isci

05:00.0 VGA compatible controller: NVIDIA Corporation GT218 [NVS 300] (rev a2) (prog-if 00 [VGA controller])
	Subsystem: Hewlett-Packard Company Device 0862
	Physical Slot: 2
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 36
	Region 0: Memory at d6000000 (32-bit, non-prefetchable) [size=16M]
	Region 1: Memory at d8000000 (64-bit, prefetchable) [size=64M]
	Region 3: Memory at dc000000 (64-bit, prefetchable) [size=32M]
	Region 5: I/O ports at d000 [size=128]
	Expansion ROM at d7000000 [disabled] [size=512K]
	Capabilities: <access denied>
	Kernel driver in use: nouveau
	Kernel modules: nouveau

05:00.1 Audio device: NVIDIA Corporation High Definition Audio Controller (rev a1)
	Subsystem: Hewlett-Packard Company Device 0862
	Physical Slot: 2
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 39
	Region 0: Memory at d7080000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

08:00.0 USB controller: Texas Instruments TUSB73x0 SuperSpeed USB 3.0 xHCI Host Controller (rev 02) (prog-if 30 [XHCI])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 19
	Region 0: Memory at d7200000 (64-bit, non-prefetchable) [size=64K]
	Region 2: Memory at d7210000 (64-bit, non-prefetchable) [size=8K]
	Capabilities: <access denied>
	Kernel driver in use: xhci_hcd

09:04.0 Ethernet controller: ADMtek NC100 Network Everywhere Fast Ethernet 10/100 (rev 11)
	Subsystem: Accton Technology Corporation Device 1216
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 128 (16000ns min, 32000ns max), Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 20
	Region 0: I/O ports at c000 [size=256]
	Region 1: Memory at d7121000 (32-bit, non-prefetchable) [size=1K]
	Expansion ROM at d7100000 [disabled] [size=128K]
	Capabilities: <access denied>
	Kernel driver in use: tulip
	Kernel modules: tulip

09:05.0 FireWire (IEEE 1394): LSI Corporation FW322/323 [TrueFire] 1394a Controller (rev 70) (prog-if 10 [OHCI])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 128 (3000ns min, 6000ns max), Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 19
	Region 0: Memory at d7120000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: firewire_ohci
	Kernel modules: firewire_ohci

ff:08.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:08.3 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:08.4 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:09.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:09.3 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:09.4 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0a.0 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0a.1 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0a.2 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 2 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0a.3 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 3 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0b.0 System peripheral: Intel Corporation Xeon E5/Core i7 Interrupt Control Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0b.3 System peripheral: Intel Corporation Xeon E5/Core i7 Semaphore and Scratchpad Configuration Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0c.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0c.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0c.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0c.7 System peripheral: Intel Corporation Xeon E5/Core i7 System Address Decoder (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0d.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0d.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0d.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0e.0 System peripheral: Intel Corporation Xeon E5/Core i7 Processor Home Agent (rev 07)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: sbridge_edac
	Kernel modules: sb_edac

ff:0e.1 Performance counters: Intel Corporation Xeon E5/Core i7 Processor Home Agent Performance Monitoring (rev 07)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

ff:0f.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller RAS Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 3 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:10.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>
	Kernel driver in use: snbep_uncore

ff:10.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>
	Kernel driver in use: snbep_uncore

ff:10.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:10.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:10.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 2 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>
	Kernel driver in use: snbep_uncore

ff:10.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>
	Kernel driver in use: snbep_uncore

ff:10.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 2 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:10.7 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:11.0 System peripheral: Intel Corporation Xeon E5/Core i7 DDRIO (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:13.0 System peripheral: Intel Corporation Xeon E5/Core i7 R2PCIe (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:13.1 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to PCI Express Performance Monitor (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

ff:13.4 Performance counters: Intel Corporation Xeon E5/Core i7 QuickPath Interconnect Agent Ring Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:13.5 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 0 Performance Monitor (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

ff:13.6 System peripheral: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 1 Performance Monitor (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore


^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-03  8:55     ` Baoquan He
  0 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-05-03  8:55 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA, dyoung-H+wXaHxf7aLQT0dZR+AlfA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

[-- Attachment #1: Type: text/plain, Size: 291 bytes --]

On 04/29/15 at 07:20pm, Baoquan He wrote:
> Bad news, I rebuilt a kernel with your patchset on 4.0.0+ (this commit
> f614c81). Now dmar fault is  seen again.
> 
> The lspci log and kdump log are attached, please check:

I found the lspci log previously attached is emtyp, resend it again.



[-- Attachment #2: lspci.log --]
[-- Type: text/plain, Size: 35556 bytes --]

00:00.0 Host bridge: Intel Corporation Xeon E5/Core i7 DMI2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 0
	Capabilities: <access denied>

00:01.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 1a (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 24
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:02.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 2a (rev 07) (prog-if 00 [Normal decode])
	DeviceName:  Onboard IGD
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 25
	Bus: primary=00, secondary=05, subordinate=05, sec-latency=0
	I/O behind bridge: 0000d000-0000dfff
	Memory behind bridge: d6000000-d70fffff
	Prefetchable memory behind bridge: 00000000d8000000-00000000ddffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:03.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3a in PCI Express Mode (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 26
	Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:05.0 System peripheral: Intel Corporation Xeon E5/Core i7 Address Map, VTd_Misc, System Management (rev 07)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

00:05.2 System peripheral: Intel Corporation Xeon E5/Core i7 Control Status and Global Errors (rev 07)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

00:05.4 PIC: Intel Corporation Xeon E5/Core i7 I/O APIC (rev 07) (prog-if 20 [IO(X)-APIC])
	Subsystem: Intel Corporation Xeon E5/Core i7 I/O APIC
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Region 0: Memory at d7346000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>

00:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 05) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 16
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
	I/O behind bridge: 0000e000-0000efff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000de400000-00000000de8fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:16.0 Communication controller: Intel Corporation C600/X79 series chipset MEI Controller #1 (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 37
	Region 0: Memory at d7345000 (64-bit, non-prefetchable) [size=16]
	Capabilities: <access denied>
	Kernel driver in use: mei_me
	Kernel modules: mei_me

00:16.2 IDE interface: Intel Corporation C600/X79 series chipset IDE-r Controller (rev 05) (prog-if 85 [Master SecO PriO])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin C routed to IRQ 18
	Region 0: I/O ports at f0b0 [size=8]
	Region 1: I/O ports at f0a0 [size=4]
	Region 2: I/O ports at f090 [size=8]
	Region 3: I/O ports at f080 [size=4]
	Region 4: I/O ports at f070 [size=16]
	Capabilities: <access denied>
	Kernel driver in use: ata_generic
	Kernel modules: pata_acpi, ata_generic

00:16.3 Serial controller: Intel Corporation C600/X79 series chipset KT Controller (rev 05) (prog-if 02 [16550])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin B routed to IRQ 17
	Region 0: I/O ports at f060 [size=8]
	Region 1: Memory at d7344000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: serial

00:19.0 Ethernet controller: Intel Corporation 82579LM Gigabit Network Connection (rev 05)
	DeviceName:  Onboard LAN
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 35
	Region 0: Memory at d7300000 (32-bit, non-prefetchable) [size=128K]
	Region 1: Memory at d7349000 (32-bit, non-prefetchable) [size=4K]
	Region 2: I/O ports at f040 [size=32]
	Capabilities: <access denied>
	Kernel driver in use: e1000e
	Kernel modules: e1000e

00:1a.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #2 (rev 05) (prog-if 20 [EHCI])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 16
	Region 0: Memory at d734b000 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci-pci

00:1b.0 Audio device: Intel Corporation C600/X79 series chipset High Definition Audio Controller (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 38
	Region 0: Memory at d7340000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

00:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 2 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 16
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1c.5 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 5 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 17
	Bus: primary=00, secondary=06, subordinate=06, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1c.6 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 3 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 18
	Bus: primary=00, secondary=07, subordinate=07, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1c.7 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 4 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin D routed to IRQ 19
	Bus: primary=00, secondary=08, subordinate=08, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: d7200000-d72fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 05) (prog-if 20 [EHCI])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 23
	Region 0: Memory at d734a000 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci-pci

00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a5) (prog-if 01 [Subtractive decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=00, secondary=09, subordinate=09, sec-latency=128
	I/O behind bridge: 0000c000-0000cfff
	Memory behind bridge: d7100000-d71fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>

00:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: <access denied>
	Kernel driver in use: lpc_ich
	Kernel modules: lpc_ich

00:1f.2 RAID bus controller: Intel Corporation C600/X79 series chipset SATA RAID Controller (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin B routed to IRQ 27
	Region 0: I/O ports at f0f0 [size=8]
	Region 1: I/O ports at f0e0 [size=4]
	Region 2: I/O ports at f0d0 [size=8]
	Region 3: I/O ports at f0c0 [size=4]
	Region 4: I/O ports at f020 [size=32]
	Region 5: Memory at d7348000 (32-bit, non-prefetchable) [size=2K]
	Capabilities: <access denied>
	Kernel driver in use: ahci

00:1f.3 SMBus: Intel Corporation C600/X79 series chipset SMBus Host Controller (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin C routed to IRQ 18
	Region 0: Memory at d7347000 (64-bit, non-prefetchable) [size=256]
	Region 4: I/O ports at f000 [size=32]
	Kernel driver in use: i801_smbus
	Kernel modules: i2c_i801

02:00.0 Serial Attached SCSI controller: Intel Corporation C602 chipset 4-Port SATA Storage Control Unit (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 16
	Region 0: Memory at de87c000 (64-bit, prefetchable) [size=16K]
	Region 2: Memory at de400000 (64-bit, prefetchable) [size=4M]
	Region 4: I/O ports at e000 [size=256]
	Capabilities: <access denied>
	Kernel driver in use: isci
	Kernel modules: isci

05:00.0 VGA compatible controller: NVIDIA Corporation GT218 [NVS 300] (rev a2) (prog-if 00 [VGA controller])
	Subsystem: Hewlett-Packard Company Device 0862
	Physical Slot: 2
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 36
	Region 0: Memory at d6000000 (32-bit, non-prefetchable) [size=16M]
	Region 1: Memory at d8000000 (64-bit, prefetchable) [size=64M]
	Region 3: Memory at dc000000 (64-bit, prefetchable) [size=32M]
	Region 5: I/O ports at d000 [size=128]
	Expansion ROM at d7000000 [disabled] [size=512K]
	Capabilities: <access denied>
	Kernel driver in use: nouveau
	Kernel modules: nouveau

05:00.1 Audio device: NVIDIA Corporation High Definition Audio Controller (rev a1)
	Subsystem: Hewlett-Packard Company Device 0862
	Physical Slot: 2
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 39
	Region 0: Memory at d7080000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

08:00.0 USB controller: Texas Instruments TUSB73x0 SuperSpeed USB 3.0 xHCI Host Controller (rev 02) (prog-if 30 [XHCI])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 19
	Region 0: Memory at d7200000 (64-bit, non-prefetchable) [size=64K]
	Region 2: Memory at d7210000 (64-bit, non-prefetchable) [size=8K]
	Capabilities: <access denied>
	Kernel driver in use: xhci_hcd

09:04.0 Ethernet controller: ADMtek NC100 Network Everywhere Fast Ethernet 10/100 (rev 11)
	Subsystem: Accton Technology Corporation Device 1216
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 128 (16000ns min, 32000ns max), Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 20
	Region 0: I/O ports at c000 [size=256]
	Region 1: Memory at d7121000 (32-bit, non-prefetchable) [size=1K]
	Expansion ROM at d7100000 [disabled] [size=128K]
	Capabilities: <access denied>
	Kernel driver in use: tulip
	Kernel modules: tulip

09:05.0 FireWire (IEEE 1394): LSI Corporation FW322/323 [TrueFire] 1394a Controller (rev 70) (prog-if 10 [OHCI])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 128 (3000ns min, 6000ns max), Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 19
	Region 0: Memory at d7120000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: firewire_ohci
	Kernel modules: firewire_ohci

ff:08.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:08.3 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:08.4 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:09.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:09.3 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:09.4 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0a.0 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0a.1 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0a.2 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 2 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0a.3 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 3 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0b.0 System peripheral: Intel Corporation Xeon E5/Core i7 Interrupt Control Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0b.3 System peripheral: Intel Corporation Xeon E5/Core i7 Semaphore and Scratchpad Configuration Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0c.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0c.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0c.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0c.7 System peripheral: Intel Corporation Xeon E5/Core i7 System Address Decoder (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0d.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0d.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0d.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0e.0 System peripheral: Intel Corporation Xeon E5/Core i7 Processor Home Agent (rev 07)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: sbridge_edac
	Kernel modules: sb_edac

ff:0e.1 Performance counters: Intel Corporation Xeon E5/Core i7 Processor Home Agent Performance Monitoring (rev 07)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

ff:0f.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller RAS Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 3 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:10.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>
	Kernel driver in use: snbep_uncore

ff:10.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>
	Kernel driver in use: snbep_uncore

ff:10.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:10.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:10.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 2 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>
	Kernel driver in use: snbep_uncore

ff:10.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>
	Kernel driver in use: snbep_uncore

ff:10.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 2 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:10.7 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:11.0 System peripheral: Intel Corporation Xeon E5/Core i7 DDRIO (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:13.0 System peripheral: Intel Corporation Xeon E5/Core i7 R2PCIe (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:13.1 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to PCI Express Performance Monitor (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

ff:13.4 Performance counters: Intel Corporation Xeon E5/Core i7 QuickPath Interconnect Agent Ring Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:13.5 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 0 Performance Monitor (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

ff:13.6 System peripheral: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 1 Performance Monitor (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore


[-- Attachment #3: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-03  8:55     ` Baoquan He
  0 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-05-03  8:55 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: indou.takao, tom.vaden, rwright, linux-pci, joro, dyoung, kexec,
	linux-kernel, lisa.mitchell, jerry.hoemann, alex.williamson,
	iommu, ddutile, doug.hatch, ishii.hironobu, bhelgaas,
	billsumnerlinux, li.zhang6, dwmw2, vgoyal

[-- Attachment #1: Type: text/plain, Size: 291 bytes --]

On 04/29/15 at 07:20pm, Baoquan He wrote:
> Bad news, I rebuilt a kernel with your patchset on 4.0.0+ (this commit
> f614c81). Now dmar fault is  seen again.
> 
> The lspci log and kdump log are attached, please check:

I found the lspci log previously attached is emtyp, resend it again.



[-- Attachment #2: lspci.log --]
[-- Type: text/plain, Size: 35556 bytes --]

00:00.0 Host bridge: Intel Corporation Xeon E5/Core i7 DMI2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 0
	Capabilities: <access denied>

00:01.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 1a (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 24
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:02.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 2a (rev 07) (prog-if 00 [Normal decode])
	DeviceName:  Onboard IGD
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 25
	Bus: primary=00, secondary=05, subordinate=05, sec-latency=0
	I/O behind bridge: 0000d000-0000dfff
	Memory behind bridge: d6000000-d70fffff
	Prefetchable memory behind bridge: 00000000d8000000-00000000ddffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:03.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3a in PCI Express Mode (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 26
	Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:05.0 System peripheral: Intel Corporation Xeon E5/Core i7 Address Map, VTd_Misc, System Management (rev 07)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

00:05.2 System peripheral: Intel Corporation Xeon E5/Core i7 Control Status and Global Errors (rev 07)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

00:05.4 PIC: Intel Corporation Xeon E5/Core i7 I/O APIC (rev 07) (prog-if 20 [IO(X)-APIC])
	Subsystem: Intel Corporation Xeon E5/Core i7 I/O APIC
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Region 0: Memory at d7346000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>

00:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 05) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 16
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
	I/O behind bridge: 0000e000-0000efff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000de400000-00000000de8fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:16.0 Communication controller: Intel Corporation C600/X79 series chipset MEI Controller #1 (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 37
	Region 0: Memory at d7345000 (64-bit, non-prefetchable) [size=16]
	Capabilities: <access denied>
	Kernel driver in use: mei_me
	Kernel modules: mei_me

00:16.2 IDE interface: Intel Corporation C600/X79 series chipset IDE-r Controller (rev 05) (prog-if 85 [Master SecO PriO])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin C routed to IRQ 18
	Region 0: I/O ports at f0b0 [size=8]
	Region 1: I/O ports at f0a0 [size=4]
	Region 2: I/O ports at f090 [size=8]
	Region 3: I/O ports at f080 [size=4]
	Region 4: I/O ports at f070 [size=16]
	Capabilities: <access denied>
	Kernel driver in use: ata_generic
	Kernel modules: pata_acpi, ata_generic

00:16.3 Serial controller: Intel Corporation C600/X79 series chipset KT Controller (rev 05) (prog-if 02 [16550])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin B routed to IRQ 17
	Region 0: I/O ports at f060 [size=8]
	Region 1: Memory at d7344000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: serial

00:19.0 Ethernet controller: Intel Corporation 82579LM Gigabit Network Connection (rev 05)
	DeviceName:  Onboard LAN
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 35
	Region 0: Memory at d7300000 (32-bit, non-prefetchable) [size=128K]
	Region 1: Memory at d7349000 (32-bit, non-prefetchable) [size=4K]
	Region 2: I/O ports at f040 [size=32]
	Capabilities: <access denied>
	Kernel driver in use: e1000e
	Kernel modules: e1000e

00:1a.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #2 (rev 05) (prog-if 20 [EHCI])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 16
	Region 0: Memory at d734b000 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci-pci

00:1b.0 Audio device: Intel Corporation C600/X79 series chipset High Definition Audio Controller (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 38
	Region 0: Memory at d7340000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

00:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 2 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 16
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1c.5 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 5 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 17
	Bus: primary=00, secondary=06, subordinate=06, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1c.6 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 3 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 18
	Bus: primary=00, secondary=07, subordinate=07, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1c.7 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 4 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin D routed to IRQ 19
	Bus: primary=00, secondary=08, subordinate=08, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: d7200000-d72fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 05) (prog-if 20 [EHCI])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 23
	Region 0: Memory at d734a000 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci-pci

00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a5) (prog-if 01 [Subtractive decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=00, secondary=09, subordinate=09, sec-latency=128
	I/O behind bridge: 0000c000-0000cfff
	Memory behind bridge: d7100000-d71fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>

00:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: <access denied>
	Kernel driver in use: lpc_ich
	Kernel modules: lpc_ich

00:1f.2 RAID bus controller: Intel Corporation C600/X79 series chipset SATA RAID Controller (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin B routed to IRQ 27
	Region 0: I/O ports at f0f0 [size=8]
	Region 1: I/O ports at f0e0 [size=4]
	Region 2: I/O ports at f0d0 [size=8]
	Region 3: I/O ports at f0c0 [size=4]
	Region 4: I/O ports at f020 [size=32]
	Region 5: Memory at d7348000 (32-bit, non-prefetchable) [size=2K]
	Capabilities: <access denied>
	Kernel driver in use: ahci

00:1f.3 SMBus: Intel Corporation C600/X79 series chipset SMBus Host Controller (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin C routed to IRQ 18
	Region 0: Memory at d7347000 (64-bit, non-prefetchable) [size=256]
	Region 4: I/O ports at f000 [size=32]
	Kernel driver in use: i801_smbus
	Kernel modules: i2c_i801

02:00.0 Serial Attached SCSI controller: Intel Corporation C602 chipset 4-Port SATA Storage Control Unit (rev 05)
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 16
	Region 0: Memory at de87c000 (64-bit, prefetchable) [size=16K]
	Region 2: Memory at de400000 (64-bit, prefetchable) [size=4M]
	Region 4: I/O ports at e000 [size=256]
	Capabilities: <access denied>
	Kernel driver in use: isci
	Kernel modules: isci

05:00.0 VGA compatible controller: NVIDIA Corporation GT218 [NVS 300] (rev a2) (prog-if 00 [VGA controller])
	Subsystem: Hewlett-Packard Company Device 0862
	Physical Slot: 2
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 36
	Region 0: Memory at d6000000 (32-bit, non-prefetchable) [size=16M]
	Region 1: Memory at d8000000 (64-bit, prefetchable) [size=64M]
	Region 3: Memory at dc000000 (64-bit, prefetchable) [size=32M]
	Region 5: I/O ports at d000 [size=128]
	Expansion ROM at d7000000 [disabled] [size=512K]
	Capabilities: <access denied>
	Kernel driver in use: nouveau
	Kernel modules: nouveau

05:00.1 Audio device: NVIDIA Corporation High Definition Audio Controller (rev a1)
	Subsystem: Hewlett-Packard Company Device 0862
	Physical Slot: 2
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 39
	Region 0: Memory at d7080000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

08:00.0 USB controller: Texas Instruments TUSB73x0 SuperSpeed USB 3.0 xHCI Host Controller (rev 02) (prog-if 30 [XHCI])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 19
	Region 0: Memory at d7200000 (64-bit, non-prefetchable) [size=64K]
	Region 2: Memory at d7210000 (64-bit, non-prefetchable) [size=8K]
	Capabilities: <access denied>
	Kernel driver in use: xhci_hcd

09:04.0 Ethernet controller: ADMtek NC100 Network Everywhere Fast Ethernet 10/100 (rev 11)
	Subsystem: Accton Technology Corporation Device 1216
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 128 (16000ns min, 32000ns max), Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 20
	Region 0: I/O ports at c000 [size=256]
	Region 1: Memory at d7121000 (32-bit, non-prefetchable) [size=1K]
	Expansion ROM at d7100000 [disabled] [size=128K]
	Capabilities: <access denied>
	Kernel driver in use: tulip
	Kernel modules: tulip

09:05.0 FireWire (IEEE 1394): LSI Corporation FW322/323 [TrueFire] 1394a Controller (rev 70) (prog-if 10 [OHCI])
	Subsystem: Hewlett-Packard Company Device 1589
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 128 (3000ns min, 6000ns max), Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 19
	Region 0: Memory at d7120000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: firewire_ohci
	Kernel modules: firewire_ohci

ff:08.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:08.3 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:08.4 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:09.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:09.3 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:09.4 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0a.0 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0a.1 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0a.2 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 2 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0a.3 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 3 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0b.0 System peripheral: Intel Corporation Xeon E5/Core i7 Interrupt Control Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0b.3 System peripheral: Intel Corporation Xeon E5/Core i7 Semaphore and Scratchpad Configuration Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0c.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0c.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0c.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0c.7 System peripheral: Intel Corporation Xeon E5/Core i7 System Address Decoder (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0d.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0d.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0d.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:0e.0 System peripheral: Intel Corporation Xeon E5/Core i7 Processor Home Agent (rev 07)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: sbridge_edac
	Kernel modules: sb_edac

ff:0e.1 Performance counters: Intel Corporation Xeon E5/Core i7 Processor Home Agent Performance Monitoring (rev 07)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

ff:0f.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller RAS Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 3 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:0f.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:10.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>
	Kernel driver in use: snbep_uncore

ff:10.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>
	Kernel driver in use: snbep_uncore

ff:10.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 0 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:10.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 1 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:10.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 2 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>
	Kernel driver in use: snbep_uncore

ff:10.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>
	Kernel driver in use: snbep_uncore

ff:10.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 2 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:10.7 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3 (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

ff:11.0 System peripheral: Intel Corporation Xeon E5/Core i7 DDRIO (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:13.0 System peripheral: Intel Corporation Xeon E5/Core i7 R2PCIe (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:13.1 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to PCI Express Performance Monitor (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

ff:13.4 Performance counters: Intel Corporation Xeon E5/Core i7 QuickPath Interconnect Agent Ring Registers (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

ff:13.5 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 0 Performance Monitor (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

ff:13.6 System peripheral: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 1 Performance Monitor (rev 07)
	Subsystem: Intel Corporation Device 0000
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore


[-- Attachment #3: Type: text/plain, Size: 143 bytes --]

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-04  3:06       ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-05-04  3:06 UTC (permalink / raw)
  To: Baoquan He
  Cc: alex.williamson, indou.takao, tom.vaden, rwright, dwmw2, joro,
	kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	ddutile, doug.hatch, ishii.hironobu, linux-pci, bhelgaas,
	billsumnerlinux, li.zhang6, dyoung, vgoyal

Hi baoquan,
Could you paste the kernel log of the first kernel ?

Thanks
Zhenhua
On 05/03/2015 04:55 PM, Baoquan He wrote:
> On 04/29/15 at 07:20pm, Baoquan He wrote:
>> Bad news, I rebuilt a kernel with your patchset on 4.0.0+ (this commit
>> f614c81). Now dmar fault is  seen again.
>>
>> The lspci log and kdump log are attached, please check:
>
> I found the lspci log previously attached is emtyp, resend it again.
>
>


^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-04  3:06       ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-05-04  3:06 UTC (permalink / raw)
  To: Baoquan He
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA, dyoung-H+wXaHxf7aLQT0dZR+AlfA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

Hi baoquan,
Could you paste the kernel log of the first kernel ?

Thanks
Zhenhua
On 05/03/2015 04:55 PM, Baoquan He wrote:
> On 04/29/15 at 07:20pm, Baoquan He wrote:
>> Bad news, I rebuilt a kernel with your patchset on 4.0.0+ (this commit
>> f614c81). Now dmar fault is  seen again.
>>
>> The lspci log and kdump log are attached, please check:
>
> I found the lspci log previously attached is emtyp, resend it again.
>
>

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-04  3:06       ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-05-04  3:06 UTC (permalink / raw)
  To: Baoquan He
  Cc: indou.takao, tom.vaden, rwright, linux-pci, joro, dyoung, kexec,
	linux-kernel, lisa.mitchell, jerry.hoemann, alex.williamson,
	iommu, ddutile, doug.hatch, ishii.hironobu, bhelgaas,
	billsumnerlinux, li.zhang6, dwmw2, vgoyal

Hi baoquan,
Could you paste the kernel log of the first kernel ?

Thanks
Zhenhua
On 05/03/2015 04:55 PM, Baoquan He wrote:
> On 04/29/15 at 07:20pm, Baoquan He wrote:
>> Bad news, I rebuilt a kernel with your patchset on 4.0.0+ (this commit
>> f614c81). Now dmar fault is  seen again.
>>
>> The lspci log and kdump log are attached, please check:
>
> I found the lspci log previously attached is emtyp, resend it again.
>
>


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
  2015-05-04  3:06       ` Li, ZhenHua
@ 2015-05-04  3:17         ` Baoquan He
  -1 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-05-04  3:17 UTC (permalink / raw)
  To: Li, ZhenHua
  Cc: alex.williamson, indou.takao, tom.vaden, rwright, dwmw2, joro,
	kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	ddutile, doug.hatch, ishii.hironobu, linux-pci, bhelgaas,
	billsumnerlinux, li.zhang6, dyoung, vgoyal

[-- Attachment #1: Type: text/plain, Size: 142 bytes --]

On 05/04/15 at 11:06am, Li, ZhenHua wrote:
> Hi baoquan,
> Could you paste the kernel log of the first kernel ?

Please check the attachment.

[-- Attachment #2: kdump_1st_kernel.log --]
[-- Type: text/plain, Size: 62076 bytes --]

[    0.000000] microcode: CPU0 microcode updated early to revision 0x710, date = 2013-06-17
[    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+ (bhe@dhcp-128-28.nay.redhat.com) (gcc version 4.9.2 20150212 (Red Hat 4.9.2-6) (GCC) ) #6 SMP Wed Apr 29 16:53:34 CST 2015
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.0.0+ root=/dev/mapper/fedora_dhcp--128--28-root ro rd.lvm.lv=fedora_dhcp-128-28/swap rd.lvm.lv=fedora_dhcp-128-28/n
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x00000000000963ff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000096400-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cb74ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cb750000-0x00000000cb7dafff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cb7db000-0x00000000cbaacfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbaad000-0x00000000cbaaefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbaaf000-0x00000000cbabafff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbabb000-0x00000000cbacdfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbace000-0x00000000cbb55fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbb56000-0x00000000cbb5dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbb5e000-0x00000000cbb70fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbb71000-0x00000000cbffffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000042fffffff] usable
[    0.000000] earlycon: no match for ttyS0,115200
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] e820: last_pfn = 0x430000 max_arch_pfn = 0x400000000
[    0.000000] PAT configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- UC  
[    0.000000] e820: last_pfn = 0xcb750 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000f4bc0-0x000f4bcf] mapped at [ffff8800000f4bc0]
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000] init_memory_mapping: [mem 0x42fe00000-0x42fffffff]
[    0.000000] init_memory_mapping: [mem 0x420000000-0x42fdfffff]
[    0.000000] init_memory_mapping: [mem 0x400000000-0x41fffffff]
[    0.000000] init_memory_mapping: [mem 0x00100000-0xcb74ffff]
[    0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
[    0.000000] RAMDISK: [mem 0x35a94000-0x36d41fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F9810 000024 (v02 HPQOEM)
[    0.000000] ACPI: XSDT 0x00000000CBA28078 00006C (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000CBA304C8 0000F4 (v04 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000CBA28170 008352 (v02 HPQOEM SLIC-WKS 00000102 INTL 20051117)
[    0.000000] ACPI: FACS 0x00000000CBB5BF80 000040
[    0.000000] ACPI: APIC 0x00000000CBA305C0 00007E (v03 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 0x00000000CBA30640 00003C (v01 HPQOEM OEMMCFG. 01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000CBA30680 000038 (v01 HPQOEM SLIC-WKS 01072009 AMI. 00000004)
[    0.000000] ACPI: ASF! 0x00000000CBA306B8 0000A0 (v32 INTEL   HCG     00000001 TFSM 000F4240)
[    0.000000] ACPI: SSDT 0x00000000CBA30758 0058DA (v01 COMPAQ WMI      00000001 MSFT 03000001)
[    0.000000] ACPI: SLIC 0x00000000CBA36038 000176 (v01 HPQOEM SLIC-WKS 00000001      00000000)
[    0.000000] ACPI: SSDT 0x00000000CBA361B0 06E284 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.000000] ACPI: DMAR 0x00000000CBAA4438 0000A0 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000042fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x42ffea000-0x42fffdfff]
[    0.000000] Reserving 256MB of memory at 592MB for crashkernel (System RAM: 16310MB)
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000042fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x0000000000095fff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000cb74ffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000042fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000042fffffff]
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] e820: [mem 0xcc000000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 34 pages/cpu @ffff88042fc00000 s101720 r8192 d29352 u524288
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 4110322
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.0.0+ root=/dev/mapper/fedora_dhcp--128--28-root ro rd.lvm.lv=fedora_dhcp-128-28/swap rd.lvm.lv=fedora_dhcp-n
[    0.000000] Intel-IOMMU: enabled
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[    0.000000] Memory: 16075344K/16702356K available (7716K kernel code, 1276K rwdata, 3260K rodata, 1500K init, 1448K bss, 627012K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000]  RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS:4352 nr_irqs:864 16
[    0.000000]  Offload RCU callbacks from all CPUs
[    0.000000]  Offload RCU callbacks from CPUs: 0-3.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [ttyS0] enabled
[    0.000000] clocksource hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2793.141 MHz processor
[    0.000031] Calibrating delay loop (skipped), value calculated using timer frequency.. 5586.28 BogoMIPS (lpj=2793141)
[    0.010648] pid_max: default: 32768 minimum: 301
[    0.015268] ACPI: Core revision 20150410
[    0.044335] ACPI: All ACPI Tables successfully acquired
[    0.051660] Security Framework initialized
[    0.055765] SELinux:  Initializing.
[    0.060304] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.070694] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.079198] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.086084] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.093626] Initializing cgroup subsys blkio
[    0.097901] Initializing cgroup subsys memory
[    0.102257] Initializing cgroup subsys devices
[    0.106702] Initializing cgroup subsys freezer
[    0.111142] Initializing cgroup subsys net_cls
[    0.115584] Initializing cgroup subsys perf_event
[    0.120284] Initializing cgroup subsys net_prio
[    0.124812] Initializing cgroup subsys hugetlb
[    0.129274] CPU: Physical Processor ID: 0
[    0.133287] CPU: Processor Core ID: 0
[    0.136953] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.142956] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.149996] mce: CPU supports 16 MCE banks
[    0.154110] CPU0: Thermal monitoring enabled (TM1)
[    0.158907] process: using mwait in idle threads
[    0.163525] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.169004] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.175409] Freeing SMP alternatives memory: 28K (ffffffff81eb8000 - ffffffff81ebf000)
[    0.184411] ftrace: allocating 27958 entries in 110 pages
[    0.202553] dmar: Host address width 46
[    0.206386] dmar: DRHD base: 0x000000dfffc000 flags: 0x1
[    0.211698] dmar: IOMMU 0: reg_base_addr dfffc000 ver 1:0 cap d2078c106f0462 ecap f020fe
[    0.219776] dmar: RMRR base: 0x000000cba11000 end: 0x000000cba27fff
[    0.226032] dmar: ATSR flags: 0x0
[    0.229349] IOAPIC id 0 under DRHD base  0xdfffc000 IOMMU 0
[    0.234912] IOAPIC id 2 under DRHD base  0xdfffc000 IOMMU 0
[    0.240479] HPET id 0 under DRHD base 0xdfffc000
[    0.245298] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.253118] Enabled IRQ remapping in x2apic mode
[    0.257727] x2apic enabled
[    0.260438] Switched APIC routing to cluster x2apic.
[    0.265915] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.281926] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-1603 0 @ 2.80GHz (fam: 06, model: 2d, stepping: 07)
[    0.291283] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.301794] ... version:                3
[    0.305795] ... bit width:              48
[    0.309890] ... generic registers:      8
[    0.313889] ... value mask:             0000ffffffffffff
[    0.319188] ... max period:             0000ffffffffffff
[    0.324494] ... fixed-purpose events:   3
[    0.328492] ... event mask:             00000007000000ff
[    0.334424] x86: Booting SMP configuration:
[    0.338609] .... node  #0, CPUs:      #1
[    0.353899] microcode: CPU1 microcode updated early to revision 0x710, date = 2013-06-17
[    0.364309] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.372389]  #2
[    0.385492] microcode: CPU2 microcode updated early to revision 0x710, date = 2013-06-17
[    0.396036]  #3
[    0.409139] microcode: CPU3 microcode updated early to revision 0x710, date = 2013-06-17
[    0.419597] x86: Booted up 1 node, 4 CPUs
[    0.423605] smpboot: Total of 4 processors activated (22345.12 BogoMIPS)
[    0.434451] devtmpfs: initialized
[    0.440819] PM: Registering ACPI NVS region [mem 0xcb750000-0xcb7dafff] (569344 bytes)
[    0.448724] PM: Registering ACPI NVS region [mem 0xcbaad000-0xcbaaefff] (8192 bytes)
[    0.456445] PM: Registering ACPI NVS region [mem 0xcbabb000-0xcbacdfff] (77824 bytes)
[    0.464255] PM: Registering ACPI NVS region [mem 0xcbb56000-0xcbb5dfff] (32768 bytes)
[    0.472070] PM: Registering ACPI NVS region [mem 0xcbb71000-0xcbffffff] (4780032 bytes)
[    0.480167] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.489870] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.496823] pinctrl core: initialized pinctrl subsystem
[    0.502080] RTC time: 10:34:17, date: 04/29/15
[    0.506618] NET: Registered protocol family 16
[    0.514356] cpuidle: using governor menu
[    0.518327] ACPI: bus type PCI registered
[    0.522335] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.528833] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.538117] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.545204] PCI: Using configuration type 1 for base access
[    0.551103] perf_event_intel: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[    0.565709] ACPI: Added _OSI(Module Device)
[    0.569891] ACPI: Added _OSI(Processor Device)
[    0.574330] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.579033] ACPI: Added _OSI(Processor Aggregator Device)
[    0.591946] ACPI: Executed 1 blocks of module-level executable AML code
[    0.653410] ACPI: Interpreter enabled
[    0.657080] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150410/hwxface-580)
[    0.666313] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150410/hwxface-580)
[    0.675552] ACPI: (supports S0 S3 S5)
[    0.679211] ACPI: Using IOAPIC for interrupt routing
[    0.684193] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.694028] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.707840] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    0.714012] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.722276] acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability]
[    0.729448] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
[    0.738644] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[    0.746372] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
[    0.753929] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
[    0.760634] PCI host bridge to bus 0000:00
[    0.764725] pci_bus 0000:00: root bus resource [bus 00-7f]
[    0.770203] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.776982] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.783760] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.790536] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.797305] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.804770] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.812240] pci_bus 0000:00: root bus resource [mem 0xd4000000-0xdfffffff window]
[    0.819709] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3c007fffffff window]
[    0.828109] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.833901] pci 0000:00:02.0: System wakeup disabled by ACPI
[    0.839684] pci 0000:00:03.0: System wakeup disabled by ACPI
[    0.846371] pci 0000:00:19.0: System wakeup disabled by ACPI
[    0.852172] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.858072] pci 0000:00:1c.0: Disabling UPDCR peer decodes
[    0.863552] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    0.868251] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    0.874966] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.880797] pci 0000:00:1c.5: Enabling MPC IRBNCE
[    0.885497] pci 0000:00:1c.5: Intel PCH root port ACS workaround enabled
[    0.892209] pci 0000:00:1c.5: System wakeup disabled by ACPI
[    0.897974] pci 0000:00:1c.6: Enabling MPC IRBNCE
[    0.902676] pci 0000:00:1c.6: Intel PCH root port ACS workaround enabled
[    0.909389] pci 0000:00:1c.6: System wakeup disabled by ACPI
[    0.915153] pci 0000:00:1c.7: Enabling MPC IRBNCE
[    0.919854] pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled
[    0.926569] pci 0000:00:1c.7: System wakeup disabled by ACPI
[    0.932371] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.938113] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.944230] pci 0000:00:01.0: PCI bridge to [bus 03]
[    0.951223] pci 0000:00:02.0: PCI bridge to [bus 05]
[    0.956250] pci 0000:00:03.0: PCI bridge to [bus 04]
[    0.961416] pci 0000:02:00.0: VF(n) BAR0 space: [mem 0xde800000-0xde87bfff 64bit pref] (contains BAR0 for 31 VFs)
[    0.971828] pci 0000:00:11.0: PCI bridge to [bus 02]
[    0.976846] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.981876] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    0.986894] pci 0000:00:1c.6: PCI bridge to [bus 07]
[    0.993882] pci 0000:00:1c.7: PCI bridge to [bus 08]
[    0.999171] pci 0000:00:1e.0: PCI bridge to [bus 09] (subtractive decode)
[    1.006408] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-ff])
[    1.012581] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    1.020846] acpi PNP0A08:01: _OSC: platform does not support [PCIeCapability]
[    1.028022] acpi PNP0A08:01: _OSC: not requesting control; platform does not support [PCIeCapability]
[    1.037219] acpi PNP0A08:01: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[    1.044951] acpi PNP0A08:01: _OSC: platform willing to grant [PCIeHotplug PME AER]
[    1.052505] acpi PNP0A08:01: _OSC failed (AE_SUPPORT); disabling ASPM
[    1.059037] PCI host bridge to bus 0000:80
[    1.063130] pci_bus 0000:80: root bus resource [bus 80-ff]
[    1.068608] pci_bus 0000:80: root bus resource [io  0x0000-0x03af window]
[    1.075378] pci_bus 0000:80: root bus resource [io  0x03e0-0x0cf7 window]
[    1.082153] pci_bus 0000:80: root bus resource [mem 0x000c0000-0x000dffff window]
[    1.089699] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    1.096980] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    1.104250] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[    1.111332] ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 5 6 10 11 12 14 15)
[    1.118415] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    1.125686] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    1.133159] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    1.140435] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    1.148218] ACPI: Enabled 2 GPEs in block 00 to 3F
[    1.153145] vgaarb: setting as boot device: PCI:0000:05:00.0
[    1.158796] vgaarb: device added: PCI:0000:05:00.0,decodes=io+mem,owns=io+mem,locks=none
[    1.166877] vgaarb: loaded
[    1.169583] vgaarb: bridge control possible 0000:05:00.0
[    1.174956] SCSI subsystem initialized
[    1.178772] ACPI: bus type USB registered
[    1.182798] usbcore: registered new interface driver usbfs
[    1.188284] usbcore: registered new interface driver hub
[    1.193595] usbcore: registered new device driver usb
[    1.198719] PCI: Using ACPI for IRQ routing
[    1.208769] PCI: Discovered peer bus ff
[    1.212627] ACPI: \: failed to evaluate _DSM (0x1001)
[    1.217674] PCI host bridge to bus 0000:ff
[    1.221768] pci_bus 0000:ff: root bus resource [io  0x0000-0xffff]
[    1.227934] pci_bus 0000:ff: root bus resource [mem 0x00000000-0x3fffffffffff]
[    1.235145] pci_bus 0000:ff: No busn resource found for root bus, will use [bus ff-ff]
[    1.245206] NetLabel: Initializing
[    1.248601] NetLabel:  domain hash size = 128
[    1.252957] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.257928] NetLabel:  unlabeled traffic allowed by default
[    1.263548] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.269881] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.277734] Switched to clocksource hpet
[    1.287587] pnp: PnP ACPI init
[    1.290758] system 00:00: [mem 0xfc000000-0xfcffffff window] has been reserved
[    1.297976] system 00:00: [mem 0xfd000000-0xfdffffff window] has been reserved
[    1.305187] system 00:00: [mem 0xfe000000-0xfeafffff window] has been reserved
[    1.312400] system 00:00: [mem 0xfeb00000-0xfebfffff window] has been reserved
[    1.319613] system 00:00: [mem 0xfed00400-0xfed3ffff window] could not be reserved
[    1.327176] system 00:00: [mem 0xfed45000-0xfedfffff window] has been reserved
[    1.334387] system 00:00: [mem 0xdffff000-0xdfffffff window] has been reserved
[    1.341718] system 00:01: [io  0x0620-0x063f] has been reserved
[    1.347635] system 00:01: [io  0x0610-0x061f] has been reserved
[    1.353717] system 00:05: [io  0x04d0-0x04d1] has been reserved
[    1.359941] system 00:07: [io  0x0400-0x0453] could not be reserved
[    1.366198] system 00:07: [io  0x0458-0x047f] has been reserved
[    1.372108] system 00:07: [io  0x1180-0x119f] has been reserved
[    1.378023] system 00:07: [io  0x0500-0x057f] has been reserved
[    1.383934] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.390542] system 00:07: [mem 0xfec00000-0xfecfffff] could not be reserved
[    1.397494] system 00:07: [mem 0xfed08000-0xfed08fff] has been reserved
[    1.404099] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[    1.410766] system 00:08: [io  0x0454-0x0457] has been reserved
[    1.416981] system 00:09: [mem 0xfed40000-0xfed44fff] has been reserved
[    1.423593] pnp: PnP ACPI: found 10 devices
[    1.433918] clocksource acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.442755] pci 0000:00:01.0: PCI bridge to [bus 03]
[    1.447723] pci 0000:00:02.0: PCI bridge to [bus 05]
[    1.452686] pci 0000:00:02.0:   bridge window [io  0xd000-0xdfff]
[    1.458774] pci 0000:00:02.0:   bridge window [mem 0xd6000000-0xd70fffff]
[    1.465556] pci 0000:00:02.0:   bridge window [mem 0xd8000000-0xddffffff 64bit pref]
[    1.473284] pci 0000:00:03.0: PCI bridge to [bus 04]
[    1.478249] pci 0000:00:11.0: PCI bridge to [bus 02]
[    1.483211] pci 0000:00:11.0:   bridge window [io  0xe000-0xefff]
[    1.489300] pci 0000:00:11.0:   bridge window [mem 0xde400000-0xde8fffff 64bit pref]
[    1.497031] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    1.501993] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.506969] pci 0000:00:1c.6: PCI bridge to [bus 07]
[    1.511939] pci 0000:00:1c.7: PCI bridge to [bus 08]
[    1.516901] pci 0000:00:1c.7:   bridge window [mem 0xd7200000-0xd72fffff]
[    1.523681] pci 0000:00:1e.0: PCI bridge to [bus 09]
[    1.528636] pci 0000:00:1e.0:   bridge window [io  0xc000-0xcfff]
[    1.534723] pci 0000:00:1e.0:   bridge window [mem 0xd7100000-0xd71fffff]
[    1.541579] NET: Registered protocol family 2
[    1.546151] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    1.553757] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.560610] TCP: Hash tables configured (established 131072 bind 65536)
[    1.567270] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    1.573418] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    1.580031] NET: Registered protocol family 1
[    1.626445] Unpacking initramfs...
[    1.887979] Freeing initrd memory: 19128K (ffff880035a94000 - ffff880036d42000)
[    1.895511] IOMMU: dmar0 using Queued invalidation
[    1.900297] IOMMU: Setting RMRR:
[    1.903531] IOMMU: Setting identity map for device 0000:00:1a.0 [0xcba11000 - 0xcba27fff]
[    1.911725] IOMMU: Setting identity map for device 0000:00:1d.0 [0xcba11000 - 0xcba27fff]
[    1.919910] IOMMU: Prepare 0-16MiB unity mapping for LPC
[    1.925226] IOMMU: Setting identity map for device 0000:00:1f.0 [0x0 - 0xffffff]
[    1.932629] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[    1.942707] RAPL PMU detected, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    1.951314] hw unit of domain pp0-core 2^-16 Joules
[    1.956194] hw unit of domain package 2^-16 Joules
[    1.960978] hw unit of domain dram 2^-16 Joules
[    1.965679] microcode: CPU0 sig=0x206d7, pf=0x1, revision=0x710
[    1.971591] microcode: CPU1 sig=0x206d7, pf=0x1, revision=0x710
[    1.977502] microcode: CPU2 sig=0x206d7, pf=0x1, revision=0x710
[    1.983425] microcode: CPU3 sig=0x206d7, pf=0x1, revision=0x710
[    1.989388] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    1.998474] AVX version of gcm_enc/dec engaged.
[    2.003005] AES CTR mode by8 optimization enabled
[    2.009550] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[    2.016307] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    2.022499] Initialise system trusted keyring
[    2.026870] audit: initializing netlink subsys (disabled)
[    2.032278] audit: type=2000 audit(1430303656.169:1): initialized
[    2.038867] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.046515] zpool: loaded
[    2.049285] VFS: Disk quotas dquot_6.6.0
[    2.053243] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.060466] Key type big_key registered
[    2.065040] alg: No test for stdrng (krng)
[    2.069144] NET: Registered protocol family 38
[    2.073586] Key type asymmetric registered
[    2.077680] Asymmetric key parser 'x509' registered
[    2.082581] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.089993] io scheduler noop registered
[    2.093918] io scheduler deadline registered
[    2.098211] io scheduler cfq registered (default)
[    2.103818] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.109401] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.116240] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.124584] ACPI: Power Button [PWRB]
[    2.128278] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.135664] ACPI: Power Button [PWRF]
[    2.143175] GHES: HEST is not enabled!
[    2.147065] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.173918] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.202294] 0000:00:16.3: ttyS1 at I/O 0xf060 (irq = 17, base_baud = 115200) is a 16550A
[    2.210750] Non-volatile memory driver v1.3
[    2.214994] Linux agpgart interface v0.103
[    2.229807] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl RAID mode
[    2.237885] ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pio ems sxs apst 
[    2.247409] scsi host0: ahci
[    2.250578] scsi host1: ahci
[    2.253769] scsi host2: ahci
[    2.256909] scsi host3: ahci
[    2.260007] scsi host4: ahci
[    2.263068] scsi host5: ahci
[    2.265988] ata1: SATA max UDMA/133 abar m2048@0xd7348000 port 0xd7348100 irq 27
[    2.273370] ata2: DUMMY
[    2.275822] ata3: SATA max UDMA/133 abar m2048@0xd7348000 port 0xd7348200 irq 27
[    2.283208] ata4: DUMMY
[    2.285659] ata5: DUMMY
[    2.288108] ata6: DUMMY
[    2.290661] libphy: Fixed MDIO Bus: probed
[    2.294879] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    2.300205] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 1
[    2.307794] xhci_hcd 0000:08:00.0: hcc params 0x0270f06d hci version 0x96 quirks 0x00004000
[    2.316287] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.323070] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.330283] usb usb1: Product: xHCI Host Controller
[    2.335157] usb usb1: Manufacturer: Linux 4.0.0+ xhci-hcd
[    2.340550] usb usb1: SerialNumber: 0000:08:00.0
[    2.345294] hub 1-0:1.0: USB hub found
[    2.349056] hub 1-0:1.0: 4 ports detected
[    2.353176] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    2.358470] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 2
[    2.365883] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    2.372656] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.379866] usb usb2: Product: xHCI Host Controller
[    2.384739] usb usb2: Manufacturer: Linux 4.0.0+ xhci-hcd
[    2.390134] usb usb2: SerialNumber: 0000:08:00.0
[    2.394865] hub 2-0:1.0: USB hub found
[    2.398622] hub 2-0:1.0: 4 ports detected
[    2.402745] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.409275] ehci-pci: EHCI PCI platform driver
[    2.413809] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    2.419099] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    2.426495] ehci-pci 0000:00:1a.0: debug port 2
[    2.434950] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd734b000
[    2.446032] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    2.451794] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    2.458579] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.465792] usb usb3: Product: EHCI Host Controller
[    2.470664] usb usb3: Manufacturer: Linux 4.0.0+ ehci_hcd
[    2.476057] usb usb3: SerialNumber: 0000:00:1a.0
[    2.480868] hub 3-0:1.0: USB hub found
[    2.484628] hub 3-0:1.0: 3 ports detected
[    2.488835] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    2.494111] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    2.501509] ehci-pci 0000:00:1d.0: debug port 2
[    2.509949] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd734a000
[    2.521185] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    2.526967] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002
[    2.533749] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.540958] usb usb4: Product: EHCI Host Controller
[    2.545834] usb usb4: Manufacturer: Linux 4.0.0+ ehci_hcd
[    2.551227] usb usb4: SerialNumber: 0000:00:1d.0
[    2.556004] hub 4-0:1.0: USB hub found
[    2.559763] hub 4-0:1.0: 3 ports detected
[    2.563883] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.570066] ohci-pci: OHCI PCI platform driver
[    2.574521] uhci_hcd: USB Universal Host Controller Interface driver
[    2.580917] usbcore: registered new interface driver usbserial
[    2.586750] usbcore: registered new interface driver usbserial_generic
[    2.593298] usbserial: USB Serial support registered for generic
[    2.596225] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.597227] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.598407] ata3.00: ATAPI: hp       CDDVDW SH-216ALN, HA5A, max UDMA/100
[    2.600244] ata1.00: ATA-8: WDC WD10EALX-609BA0, 18.01H18, max UDMA/100
[    2.600245] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.600869] ata3.00: configured for UDMA/100
[    2.603086] ata1.00: configured for UDMA/100
[    2.603260] scsi 0:0:0:0: Direct-Access     ATA      WDC WD10EALX-609 1H18 PQ: 0 ANSI: 5
[    2.603553] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.603613] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    2.603866] sd 0:0:0:0: [sda] Write Protect is off
[    2.603965] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.604160] scsi 2:0:0:0: CD-ROM            hp       CDDVDW SH-216ALN HA5A PQ: 0 ANSI: 5
[    2.623012]  sda: sda1 sda2
[    2.623636] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.634993] sr 2:0:0:0: [sr0] scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.634994] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.635253] sr 2:0:0:0: Attached scsi generic sg1 type 5
[    2.710337] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    2.721112] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.726074] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.731370] mousedev: PS/2 mouse device common for all mice
[    2.737362] rtc_cmos 00:04: RTC can wake from S4
[    2.742165] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    2.748293] rtc_cmos 00:04: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    2.755984] device-mapper: uevent: version 1.0.3
[    2.761146] device-mapper: ioctl: 4.31.0-ioctl (2015-3-12) initialised: dm-devel@redhat.com
[    2.769585] Intel P-state driver initializing.
[    2.775764] hidraw: raw HID events driver (C) Jiri Kosina
[    2.781403] usbcore: registered new interface driver usbhid
[    2.786981] usbhid: USB HID core driver
[    2.790972] drop_monitor: Initializing network drop monitor service
[    2.797385] ip_tables: (C) 2000-2006 Netfilter Core Team
[    2.802812] Initializing XFRM netlink socket
[    2.807301] NET: Registered protocol family 10
[    2.812085] mip6: Mobile IPv6
[    2.812474] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    2.821600] NET: Registered protocol family 17
[    2.827295] Loading compiled-in X.509 certificates
[    2.833667] Loaded X.509 cert 'Magrathea: Glacier signing key: 8d99b9f6f028e78c7dfe07caad5fd2ff7cee9c74'
[    2.843170] registered taskstats version 1
[    2.848104]   Magic number: 11:256:579
[    2.851892] pci_bus 0000:00: hash matches
[    2.856043] rtc_cmos 00:04: setting system clock to 2015-04-29 10:34:19 UTC (1430303659)
[    2.864887] Freeing unused kernel memory: 1500K (ffffffff81d41000 - ffffffff81eb8000)
[    2.872721] Write protecting the kernel read-only data: 12288k
[    2.879017] Freeing unused kernel memory: 464K (ffff88000178c000 - ffff880001800000)
[    2.887086] Freeing unused kernel memory: 836K (ffff880001b2f000 - ffff880001c00000)
[    2.897887] random: systemd urandom read with 13 bits of entropy available
[    2.906032] systemd[1]: systemd 217 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -L)
[    2.924138] usb 4-1: new high-speed USB device number 2 using ehci-pci
[    2.930912] systemd[1]: Detected architecture 'x86-64'.
[    2.936158] systemd[1]: Running in initial RAM disk.

Welcome to Fedora 21 (T[    2.943202] usb 3-1: New USB device found, idVendor=8087, idProduct=0024
[    2.950774] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
wenty One) dracu[    2.958357] hub 3-1:1.0: USB hub found
t-038-30.git2014[    2.963313] hub 3-1:1.0: 6 ports detected
[    2.967652] tsc: Refined TSC clocksource calibration: 2793.266 MHz
[    2.967655] clocksource tsc: mask: 0xffffffffffffffff max_cycles: 0x2843679379e, max_idle_ns: 440795332872 ns
0903.fc21 (Initramfs)!

[    2.987898] systemd[1]: Set hostname to <dhcp-128-28.nay.redhat.com>.
[    3.039247] systemd[1]: Expecting device dev-mapper-fedora_dhcp\x2d\x2d128\x2d\x2d28\x2dswap.device...
[    3.048280] usb 4-1: New USB device found, idVendor=8087, idProduct=0024
[    3.048282] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.048702] hub 4-1:1.0: USB hub found
[    3.048882] hub 4-1:1.0: 8 ports detected
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2dswap.device...
[    3.078842] systemd[1]: Expecting device dev-disk-by\x2duuid-689a8845\x2d7f32\x2d4fd7\x2d87fc\x2d615276a16f2f.device...
         Expecting device dev-disk-by\x2duui...2d87fc\x2d615276a16f2f.device...
[    3.098910] systemd[1]: Expecting device dev-mapper-fedora_dhcp\x2d\x2d128\x2d\x2d28\x2droot.device...
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2droot.device...
[    3.116925] systemd[1]: Starting Timers.
[  OK  ] Reached target Timers.
[    3.125921] systemd[1]: Reached target Timers.
[    3.130411] systemd[1]: Starting -.slice.
[  OK  ] Created slice -.slice.
[    3.148930] systemd[1]: Created slice -.slice.
[    3.153422] systemd[1]: Starting udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[    3.163917] systemd[1]: Listening on udev Control Socket.
[    3.169345] systemd[1]: Starting udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[    3.179934] systemd[1]: Listening on udev Kernel Socket.
[    3.185270] systemd[1]: Starting Journal Socket.
[  OK  ] Listening on Journal Socket.
[    3.194965] systemd[1]: Listening on Journal Socket.
[    3.199950] systemd[1]: Starting System Slice.
[  OK  ] Created slice System Slice.
[    3.208978] systemd[1]: Created slice System Slice.
[    3.213930] systemd[1]: Started dracut ask for additional cmdline parameters.
[    3.221180] systemd[1]: Starting dracut cmdline hook...
         Starting dracut cmdline hook...
[    3.231387] systemd[1]: Starting system-systemd\x2dfsck.slice.
[  OK  ] Created slice system-systemd\x2dfsck.slice.
[    3.245004] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    3.251364] systemd[1]: Starting Create list of required static device nodes for the current kernel...
         Starting Create list of required st... nodes for the current kernel...
[    3.269339] systemd[1]: Starting Journal Socket (/dev/log).
[    3.275206] systemd[1]: Starting Slices.
[  OK  ] Reached target Slices.
[    3.284011] systemd[1]: Reached target Slices.
[    3.288485] systemd[1]: Starting Setup Virtual Console...
         Starting Setup Virtual Console...
[    3.298419] systemd[1]: Started Load Kernel Modules.
[    3.303414] systemd[1]: Starting Apply Kernel Variables...
         Starting Apply Kernel Variables...
[    3.315354] systemd[1]: Starting Swap.
[  OK  ] Reached target Swap.
[    3.324044] systemd[1]: Reached target Swap.
[    3.328329] systemd[1]: Starting Local File Systems.
[  OK  ] Reached target Local File Systems.
[    3.339064] systemd[1]: Reached target Local File Systems.
[    3.344561] usb 4-1.1: new high-speed USB device number 3 using ehci-pci
[  OK  ] Started dracut cmdline hook.
[    3.356081] systemd[1]: Started dracut cmdline hook.
[  OK  ] Started Create list of required sta...ce nodes for the current kernel.
[    3.370129] systemd[1]: Started Create list of required static device nodes for the current kernel.
[  OK  ] Listening on Journal Socket (/dev/log).
[    3.385175] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Started Setup Virtual Console.
[    3.397192] systemd[1]: Started Setup Virtual Console.
[  OK  ] Started Apply Kernel Variables.
[    3.408204] systemd[1]: Started Apply Kernel Variables.
[    3.418680] systemd[1]: Starting Sockets.
[  OK  ] Reached target Sockets.
[    3.427222] systemd[1]: Reached target Sockets.
[    3.431772] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[    3.441626] systemd[1]: Starting Create Static Device Nodes in /dev...
         Startin[    3.448533] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2412
[    3.456515] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.458510] systemd-journald[257]: File /var/log/journal/95212bce02f14a269471981f705ca21f/system.journal corrupted or uncleanly shut down, renaming and replacing.
g Create Static [    3.478590] hub 4-1.1:1.0: USB hub found
Device Nodes in [    3.483699] hub 4-1.1:1.0: 2 ports detected
/dev...
[    3.491723] systemd[1]: Starting dracut pre-udev hook...
         Starting dracut pre-udev hook...
[  OK  ] Started Journal Service.
[    3.506253] systemd[1]: Started Journal Service.
[  OK  ] Started Create Static Device Nodes in /dev.
[  OK  ] Started dracut pre-udev hook.
         Starting udev Kernel Device Manager...
[  OK  ] Started udev Kernel Device Manager.
         Starting udev Coldplug all Devices...
         Mounting Configuration File System...
[  OK  ] Mounted Configuration File System.
[  OK  [    3.575972] wmi: Mapper loaded
] Started udev Coldplug all Devi[    3.580956] [drm] Initialized drm 1.1.0 20060810
ces.
[    3.586654] pps_core: LinuxPPS API ver. 1 registered
[    3.592057] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
         Startin[    3.607042] tulip: Linux Tulip driver version 1.1.15 (Feb 27, 2007)
g dracut initque[    3.614038] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    3.614443] tulip: tulip_init_one: Enabled WOL support for AN983B
[    3.615168] tulip0:  MII transceiver #1 config 1000 status 786d advertising 05e1
ue hook...
[    3.622693] net eth0: ADMtek Comet rev 17 at MMIO 0xd7121000, 00:b0:c0:06:70:90, IRQ 20
[    3.643999] isci 0000:02:00.0: driver configured for rev: 5 silicon
[    3.650290] scsi host6: ata_generic
[    3.650292] isci 0000:02:00.0: OEM SAS parameters (version: 1.3) loaded (firmware)
[    3.650828] isci 0000:02:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    3.653193] scsi host7: isci
[    3.662347] tulip 0000:09:04.0 enp9s4: renamed from eth0
[    3.678271] PTP clock support registered
[    3.682501] scsi host8: ata_genic
         Startin[    3.686051] ata7: PATA max UDMA/100 cmd 0xf0b0 ctl 0xf0a0 bmdma 0xf070 irq 18
g Show Plymouth [    3.694460] ata8: PATA max UDMA/100 cmd 0xf090 ctl 0xf080 bmdma 0xf078 irq 18
Boot Screen...
[    3.694501] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
[    3.694501] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
[    3.716340] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    3.716542] nouveau  [  DEVICE][0000:05:00.0] BOOT0  : 0x0a8c00b1
[    3.716543] nouveau  [  DEVICE][0000:05:00.0] Chipset: GT218 (NVA8)
[    3.716544] nouveau  [  DEVICE][0000:05:00.0] Family : NV50
[    3.736505] firewire_ohci 0000:09:05.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
[  OK  ] Reached target System Initialization.
[    3.794638] usb 4-1.1.1: new low-speed USB device number 4 using ehci-pci
[    3.830599] nouveau  [   VBIOS][0000:05:00.0] using image from PRAMIN
[    3.837113] nouveau  [   VBIOS][0000:05:00.0] BIT signature found
[    3.843203] nouveau  [   VBIOS][0000:05:00.0] version 70.18.89.00.02
[    3.849872] nouveau  [     PMC][0000:05:00.0] MSI interrupts enabled
[    3.856246] nouveau  [     PFB][0000:05:00.0] RAM type: DDR3
[    3.861900] nouveau  [     PFB][0000:05:00.0] RAM size: 512 MiB
[    3.867815] nouveau  [     PFB][0000:05:00.0]    ZCOMP: 960 tags
[    3.875570] nouveau  [    VOLT][0000:05:00.0] GPU voltage: 900000uv
[    3.897662] usb 4-1.1.1: New USB device found, idVendor=03f0, idProduct=0324
[    3.904706] usb 4-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.909468] nouveau  [  PTHERM][0000:05:00.0] FAN control: none / external
[    3.909475] nouveau  [  PTHERM][0000:05:00.0] fan management: automatic
[    3.909478] nouveau  [  PTHERM][0000:05:00.0] internal sensor: yes
[    3.929522] nouveau  [     CLK][0000:05:00.0] 03: core 135 MHz shader 270 MHz memory 135 MHz
[    3.929524] nouveau  [     CLK][0000:05:00.0] 07: core 405 MHz shader 810 MHz memory 405 MHz
[    3.929526] nouveau  [     CLK][0000:05:00.0] 0f: core 520 MHz shader 1230 MHz memory 790 MHz
[    3.929544] nouveau  [     CLK][0000:05:00.0] --: core 405 MHz shader 810 MHz memory 405 MHz
[    3.929700] [TTM] Zone  kernel: Available graphics memory: 8081626 kiB
[    3.929700] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    3.929701] [TTM] Initializing pool allocator
[    3.929705] [TTM] Initializing DMA pool allocator
[    3.929713] nouveau  [     DRM] VRAM: 512 MiB
[    3.929714] nouveau  [     DRM] GART: 1048576 MiB
[    3.929717] nouveau  [     DRM] TMDS table version 2.0
[    3.929719] nouveau  [     DRM] DCB version 4.0
[    3.929720] nouveau  [     DRM] DCB outp 00: 02000360 00000000
[    3.929721] nouveau  [     DRM] DCB outp 01: 02000362 00020010
[    3.929722] nouveau  [     DRM] DCB outp 02: 028003a6 0f220010
[    3.929723] nouveau  [     DRM] DCB outp 03: 01011380 00000000
[    3.929724] nouveau  [     DRM] DCB outp 04: 08011382 00020010
[    3.929724] nouveau  [     DRM] DCB outp 05: 088113c6 0f220010
[    3.929726] nouveau  [     DRM] DCB conn 00: 00101064
[    3.929727] nouveau  [     DRM] DCB conn 01: 00202165
[    3.950057] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.950057] [drm] Driver supports precise vblank timestamp query.
[    3.951504] e1000e 0000:00:19.0 eth0: registered PHC clock
[    3.951505] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 80:c1:6e:f8:9f:92
[    3.951506] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[    3.951541] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 0100FF-0FF
[    3.966252] e1000e 0000:00:19.0 eno1: renamed from eth0
[    4.096467] usb 4-1.1.1: Product: HP Basic USB Keyboard
[    4.101686] usb 4-1.1.1: Manufacturer: Lite-On Technology Corp.
[    4.107605] Switched to clocksource tsc
[    4.110127] nouveau  [     DRM] MM: using COPY for buffer copies
[    4.120618] input: Lite-On Technology Corp. HP Basic USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.1/4-1.1.1/4-1.1.1:1.0/0003:03F0:0324.0001/input5
[    4.183452] nouveau  [     DRM] allocated 1920x1080 fb: 0x70000, bo ffff88041952d000
[    4.186159] hid-generic 0003:03F0:0324.0001: input,hidraw0: USB HID v1.10 Keyboard [Lite-On Technology Corp. HP Basic USB Keyboard] on usb-0000:00:1d.0-1.1.1/inpu0
[    4.205922] fbcon: nouveaufb (fb0) is primary device
[    4.245078] firewire_core 0000:09:05.0: created device fw0: GUID 0060b000008cec98, S400
[    4.270044] usb 4-1.1.2: new low-speed USB device number 5 using ehci-pci
[    4.327492] Console: switching to colour frame buffer device 240x67
[    4.356643] nouveau 0000:05:00.0: fb0: nouveaufb frame buffer device
[    4.362986] nouveau 0000:05:00.0: registered panic notifier
[    4.365191] usb 4-1.1.2: New USB device found, idVendor=03f0, idProduct=0b4a
[    4.365192] usb 4-1.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.365193] usb 4-1.1.2: Product: USB Optical Mouse
[    4.365194] usb 4-1.1.2: Manufacturer: Logitech
[    4.367354] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.1/4-1.1.2/4-1.1.2:1.0/0003:03F0:0B4A.0002/input/input6
[    4.367615] hid-generic 0003:03F0:0B4A.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.1.2/input0
[    4.425278] [drm] Initialized nouveau 1.2.2 20120801 for 0000:05:00.0 on minor 0
[  OK  ] Found device WDC_WD10EALX-609BA0 1.
[  OK  ] Started Show Plymouth Boot Screen.
[  OK  ] Reached target Paths.
[  OK  ] Reached target Basic System.
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-root.
         Starting File System Check on /dev/mapper/fedora_dhcp--128--28-root...
[    4.664397] random: nonblocking pool is initialized
[    3.824740] systemd-fsck[412]: /dev/mapper/fedora_dhcp--128--28-root: clean, 162320/19660800 files, 9596705/78643200 blocks
[  OK  ] Started File System Check on /dev/mapper/fedora_dhcp--128--28-root.
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-swap.
[  OK  ] Started dracut initqueue hook.
         Starting dracut pre-mount hook...
[  OK  ] Reached target Remote File Systems (Pre).
[  OK  ] Reached target Remote File Systems.
[    4.014014] dracut-pre-mount[436]: //lib/dracut/hooks/pre-mount/10-resume.sh: line 22: /sys/power/resume: Permission denied
[  OK  ] Started dracut pre-mount hook.
         Mounting /sys[    4.899848] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
root...
[  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.
         Starting dracut pre-pivot and cleanup hook...
[  OK  ] Started dracut pre-pivot and cleanup hook.
         Starting Cleaning Up and Shutting Down Daemons...
         Stopping Cleaning Up and Shutting Down Daemons...
[  OK  ] Stopped target Timers.
         Starting Plymouth switch root service...
[  OK  ] Stopped Cleaning Up and Shutting Down Daemons.
         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).
         Stopping dracut pre-mount hook...
[  OK  ] Stopped dracut pre-mount hook.
         Stopping dracut initqueue hook...
[  OK  ] Stopped dracut initqueue hook.
[  OK  ] Stopped target Initrd Default Target.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped target Slices.
[  OK  ][    5.252051] systemd-journald[257]: Received SIGTERM from PID 1 (systemd).
 Stopped target Paths.
[  OK  ] Stopped target Sockets.
[  OK  ] Stopped target System Initialization.
         Stopping udev Coldplug all Devices...
[  OK  ] Stopped udev Coldplug all Devices.
         Stopping Apply Kernel Variables...
[  OK  ] Stopped Apply Kernel Variables.
[  OK  ] Stopped target Swap.
[  OK  ] Stopped target Local File Systems.
         Stopping udev Kernel Device Manager...
[  OK  ] Stopped udev Kernel Device Manager.
         Stopping dracut pre-udev hook...
[  OK  ] Stopped dracut pre-udev hook.
         Stopping dracut cmdline hook...
[  OK  ] Stopped dracut cmdline hook.
         Stopping Create Static Device Nodes in /dev...
[  OK  ] Stopped Create Static Device Nodes in /dev.
         Stopping Create list of required st... nodes for the current kernel...
[  OK  ] Stopped Create list of required sta...ce nodes for the current kernel.
[  OK  ] Closed udev Control Socket.
[  OK  ] Closed udev Kernel Socket.
         Starting Cleanup udevd DB...
[  OK  ] Started Cleanup udevd DB.
[  OK  ] Reached target Switch Root.
[  OK  ] Started Plymouth switch root service.
         Starting Switch Root...
[    5.717985] audit: type=1404 audit(1430303662.358:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[    5.850166] SELinux:  Permission audit_read in class capability2 not defined in policy.
[    5.858159] SELinux:  Class binder not defined in policy.
[    5.863553] SELinux: the above unknown classes and permissions will be allowed
[    5.877470] audit: type=1403 audit(1430303662.517:3): policy loaded auid=4294967295 ses=4294967295
[    5.891730] systemd[1]: Successfully loaded SELinux policy in 198.682ms.
[    5.957807] systemd[1]: Relabelled /dev and /run in 20.878ms.

Welcome to Fedora 21 (Twenty One)!

[  OK  ] Stopped Switch Root.
[  OK  ] Stopped target Switch Root.
[  OK  ] Stopped target Initrd File Systems.
         Stopping File System Check on /dev/mapper/fedora_dhcp--128--28-root...
[  OK  ] Stopped File System Check on /dev/mapper/fedora_dhcp--128--28-root.
[  OK  ] Stopped target Initrd Root File System.
[  OK  ] Reached target User and Group Name Lookups.
         Starting Collect Read-Ahead Data...
         Starting Replay Read-Ahead Data...
[  OK  ] Created slice system-serial\x2dgetty.slice.
         Expecting device dev-ttyS0.device...
[  OK  ] Created slice system-getty.slice.
[  OK  ] Created slice User and Session Slice.
[  OK  ] Reached target Slices.
[  OK  ] Listening on Delayed Shutdown Socket.
[  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
         Mounting Huge Pages File System...
         Starting Create list of required st... nodes for the current kernel...
         Mounting POSIX Message Queue File System...
[  OK  ] Stopped Flush Journal to Persistent Storage.
         Stopping Journal Service...
[  OK  ] Stopped Journal Service.
         Starting Journal Service...
         Mounting Debug File System...
[  OK  ] Set up automount Arbitrary Executab...ats File System Automount Point.
[  OK  ] Listening on udev Kernel Socket.
[  OK  ] Listening on udev Control Socket.
         Starting udev Coldplug all Devices...
[  OK  ] Listening on Device-mapper event daemon FIFOs.
[  OK  ] Listening on LVM2 metadata daemon socket.
         Starting Monitoring of LVM2 mirrors... dmeventd or progress polling...
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2dswap.device...
         Mounting Temporary Directory...
         Expecting device dev-disk-by\x2duui...2d87fc\x2d615276a16f2f.device...
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2dhome.device...
[  OK  ] Started Collect Read-Ahead Data.
[  OK  ] Started Create list of required sta...ce nodes for the current kernel.
[  OK  ] Started udev Coldplug all Devices.
         Starting udev Wait for Complete Device Initialization...
[  OK  ] Started Replay Read-Ahead Data.
         Starting File System Check on Root Device...
         Starting Load legacy module configuration...
         Starting Apply Kernel Variables...
         Starting Set Up Additional Binary Formats...
[  OK  ] Mounted Huge Pages File System.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Mounted Debug File System.
[  OK  ] Mounted Temporary Directory.
[  OK  ] Started Load legacy module configuration.
[  OK  ] Started Apply Kernel Variables.
         Mounting Arbitrary Executable File Formats File System...
         Starting LVM2 metadata daemon...
[  OK  ] Started LVM2 metadata daemon.
[  OK  ] Started Journal Service.
[    6.898898] systemd-fsck[535]: /dev/mapper/fedora_dhcp--128--28-root: clean, 162320/19660800 files, 9596705/78643200 blocks
[  OK  ] Started File System Check on Root Device.
         Starting Remount Root and Kernel File Systems...
[  OK  ] Mounted Arbitrary Executable File Formats File System.
[  OK  ] Started Set Up Additional Binary Formats.
[    8.134046] EXT4-fs (dm-0): re-mounted. Opts: (null)
[  OK  ] Started Remount Root and Kernel File Systems.
         Starting Configure read-only root support...
         Starting Import network configuration from initramfs...
         Starting Load/Save Random Seed...
         Starting Flush Journal to Persistent Storage...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Started Load/Save Random Seed.
[    8.364638] systemd-journald[526]: Received request to flush runtime journal from PID 1
[  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 Monitoring of LVM2 mirrors,...ng dmeventd or progress polling.
[  OK  ] Started Import network configuration from initramfs.
[  OK  ] Started udev Kernel Device Manager.
[  OK  ] Started udev Wait for Complete Device Initialization.
         Starting Activation of DM RAID sets...
[   10.723147] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   11.122184] WARNING! power/level is deprecated; use power/control instead
[   11.209078] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[   11.255241] EDAC MC: Ver: 3.0.0
[  OK  ] Found device /dev/ttyS0.
[   11.381455] EDAC MC0: Giving out device to module sbridge_edac.c controller Sandy Bridge Socket#0: DEV 0000:ff:0e.0 (POLLED)
[   11.392668] EDAC sbridge:  Ver: 1.1.0 
[   11.567379] input: PC Speaker as /devices/platform/pcspkr/input/input7
[   11.832043] iTCO_vendor_support: vendor-support=0
[   11.883099] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   11.888740] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[  OK  ] Started Flush Journal to Persistent Storage.
G[   12.436924] snd_hda_intel 0000:05:00.1: Disabling MSI
[   12.441999] snd_hda_intel 0000:05:00.1: Handle VGA-switcheroo audio client
[   12.568500] alg: No test for crc32 (crc32-pclmul)
[   12.598319] input: HP WMI hotkeys as /devices/virtual/input/input8
[   12.622796] snd_hda_codec_realtek hdaudioC0D0: ALC262: SKU not ready 0x411111f0
[   12.630530] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC262: line_outs=1 (0x15/0x0/0x0/0x0/0x0) type:line
[   12.640910] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=1 (0x16/0x0/0x0/0x0/0x0)
[   12.648914] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[   12.656503] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   12.662859] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   12.668266] snd_hda_codec_realtek hdaudioC0D0:      Front Mic=0x19
[   12.674469] snd_hda_codec_realtek hdaudioC0D0:      Rear Mic=0x18
[   12.680568] snd_hda_codec_realtek hdaudioC0D0:      Line=0x1a
[   12.698813] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[  OK  [   12.707972] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
] Reached target[   12.718102] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
 Sound Card.
[   12.728003] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[   12.738189] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[   12.832233] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:05:00.1/sound/card1/input14
[   12.842581] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:02.0/0000:05:00.1/sound/card1/input15
[   12.852881] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:02.0/0000:05:00.1/sound/card1/input16
[   12.863157] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:02.0/0000:05:00.1/sound/card1/input17
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-swap.
         Activating swap /dev/mapper/fedora_dhcp--128--28-swap...
[   14.690904] Adding 11534332k swap on /dev/mapper/fedora_dhcp--128--28-swap.  Priority:-1 extents:1 across:11534332k FS
[  OK  ] Activated swap /dev/mapper/fedora_dhcp--128--28-swap.
[  OK  ] Reached target Swap.
[  OK  ] Started Activation of DM RAID sets.
[  OK  ] Reached target Encrypted Volumes.
[  OK  ] Created slice system-lvm2\x2dpvscan.slice.
         Starting LVM2 PV scan on device 8:2...
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-home.
[  OK  ] Started LVM2 PV scan on device 8:2.
         Starting File System Check on /dev/mapper/fedora_dhcp--128--28-home...
[  OK  ] Found device WDC_WD10EALX-609BA0 1.
         Starting File System Check on /dev/...5-7f32-4fd7-87fc-615276a16f2f...
[   15.849500] systemd-fsck[672]: /dev/sda1: clean, 436/1310720 files, 185051/5242880 blocks
[   15.924728] systemd-fsck[669]: /dev/mapper/fedora_dhcp--128--28-home: clean, 256817/39321600 files, 7501587/157286400 blocks
[  OK  ] Started File System Check on /dev/d...845-7f32-4fd7-87fc-615276a16f2f.
[  OK  ] Started File System Check on /dev/mapper/fedora_dhcp--128--28-home.
         Mounting /home...
         Mounting /boot...
[   17.549292] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[  OK  ] Mounted /boot.
[   18.049074] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
[  OK  ] Mounted /home.
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
         Starting Tell Plymouth To Write Out Runtime Data...
[  OK  ] Started Create Volatile Files and Directories.
         Starting Security Auditing Service...
[  OK  ] Started Tell Plymouth To Write Out Runtime Data.
[  OK  ] Started Security Auditing Service.
         Starting Update UTMP about System Boot/Shutdown...
[   18.575869] audit: type=1305 audit(1430303675.202:4): audit_pid=690 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1
[  OK  ] Started Update UTMP about System Boot/Shutdown.
[  OK  ] Reached target System Initialization.
[  OK  ] Reached target Paths.
[  OK  ] Listening on Open-iSCSI iscsiuio Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on Open-iSCSI iscsid Socket.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on CUPS Printing Service Sockets.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Timers.
         Starting Manage Sound Card State (restore and store)...
[  OK  ] Started Manage Sound Card State (restore and store).
[  OK  ] Reached target Basic System.
         Starting RealtimeKit Scheduling Policy Service...
         Starting Accounts Service...
         Starting Modem Manager...
         Starting NTP client/server...
         Starting Hardware RNG Entropy Gatherer Daemon...
[  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
         Starting Machine Check Exception Logging Daemon...
         Starting Login Service...
         Starting LSB: Init script for live image....
         Starting Avahi mDNS/DNS-SD Stack...
         Starting D-Bus System Message Bus...
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started RealtimeKit Scheduling Policy Service.
         Starting firewalld - dynamic firewall daemon...
[  OK  ] Started LSB: Init script for live image..
         Starting ABRT Automated Bug Reporting Tool...
[  OK  ] Started ABRT Automated Bug Reporting Tool.
         Starting Harvest vmcores for ABRT...
         Starting Install ABRT coredump hook...
         Starting ABRT kernel log watcher...
[  OK  ] Started ABRT kernel log watcher.
         Starting SYSV: Late init script for live image....
[  OK  ] Started Login Service.
[  OK  ] Started SYSV: Late init script for live image..
         Starting Authorization Manager...
[  OK  ] Started Machine Check Exception Logging Daemon.
[  OK  ] Started Install ABRT coredump hook.
[  OK  ] Started NTP client/server.
[  OK  ] Started Authorization Manager.
[  OK  ] Started Accounts Service.
[  OK  ] Started Modem Manager.
[   20.371933] tty_warn_deprecated_flags: 'ModemManager' is using deprecated serial flags (with no effect): 00008000
[   22.012159] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
[  OK  ] Started Harvest vmcores for ABRT.
[   23.305909] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   25.004969] Ebtables v2.0 registered
[   25.086780] 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...
[   26.002526] cfg80211: Calling CRDA to update world regulatory domain
[  OK  ] Started Network Manager.
[  OK  ] Reached target Network.
[  OK  ] Reached target Remote File Systems (Pre).


^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-04  3:17         ` Baoquan He
  0 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-05-04  3:17 UTC (permalink / raw)
  To: Li, ZhenHua
  Cc: indou.takao, tom.vaden, rwright, linux-pci, joro, dyoung, kexec,
	linux-kernel, lisa.mitchell, jerry.hoemann, alex.williamson,
	iommu, ddutile, doug.hatch, ishii.hironobu, bhelgaas,
	billsumnerlinux, li.zhang6, dwmw2, vgoyal

[-- Attachment #1: Type: text/plain, Size: 142 bytes --]

On 05/04/15 at 11:06am, Li, ZhenHua wrote:
> Hi baoquan,
> Could you paste the kernel log of the first kernel ?

Please check the attachment.

[-- Attachment #2: kdump_1st_kernel.log --]
[-- Type: text/plain, Size: 62076 bytes --]

[    0.000000] microcode: CPU0 microcode updated early to revision 0x710, date = 2013-06-17
[    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+ (bhe@dhcp-128-28.nay.redhat.com) (gcc version 4.9.2 20150212 (Red Hat 4.9.2-6) (GCC) ) #6 SMP Wed Apr 29 16:53:34 CST 2015
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.0.0+ root=/dev/mapper/fedora_dhcp--128--28-root ro rd.lvm.lv=fedora_dhcp-128-28/swap rd.lvm.lv=fedora_dhcp-128-28/n
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x00000000000963ff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000096400-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cb74ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cb750000-0x00000000cb7dafff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cb7db000-0x00000000cbaacfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbaad000-0x00000000cbaaefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbaaf000-0x00000000cbabafff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbabb000-0x00000000cbacdfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbace000-0x00000000cbb55fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbb56000-0x00000000cbb5dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cbb5e000-0x00000000cbb70fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cbb71000-0x00000000cbffffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000042fffffff] usable
[    0.000000] earlycon: no match for ttyS0,115200
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] e820: last_pfn = 0x430000 max_arch_pfn = 0x400000000
[    0.000000] PAT configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- UC  
[    0.000000] e820: last_pfn = 0xcb750 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000f4bc0-0x000f4bcf] mapped at [ffff8800000f4bc0]
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000] init_memory_mapping: [mem 0x42fe00000-0x42fffffff]
[    0.000000] init_memory_mapping: [mem 0x420000000-0x42fdfffff]
[    0.000000] init_memory_mapping: [mem 0x400000000-0x41fffffff]
[    0.000000] init_memory_mapping: [mem 0x00100000-0xcb74ffff]
[    0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
[    0.000000] RAMDISK: [mem 0x35a94000-0x36d41fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F9810 000024 (v02 HPQOEM)
[    0.000000] ACPI: XSDT 0x00000000CBA28078 00006C (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000CBA304C8 0000F4 (v04 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000CBA28170 008352 (v02 HPQOEM SLIC-WKS 00000102 INTL 20051117)
[    0.000000] ACPI: FACS 0x00000000CBB5BF80 000040
[    0.000000] ACPI: APIC 0x00000000CBA305C0 00007E (v03 HPQOEM SLIC-WKS 01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 0x00000000CBA30640 00003C (v01 HPQOEM OEMMCFG. 01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000CBA30680 000038 (v01 HPQOEM SLIC-WKS 01072009 AMI. 00000004)
[    0.000000] ACPI: ASF! 0x00000000CBA306B8 0000A0 (v32 INTEL   HCG     00000001 TFSM 000F4240)
[    0.000000] ACPI: SSDT 0x00000000CBA30758 0058DA (v01 COMPAQ WMI      00000001 MSFT 03000001)
[    0.000000] ACPI: SLIC 0x00000000CBA36038 000176 (v01 HPQOEM SLIC-WKS 00000001      00000000)
[    0.000000] ACPI: SSDT 0x00000000CBA361B0 06E284 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.000000] ACPI: DMAR 0x00000000CBAA4438 0000A0 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000042fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x42ffea000-0x42fffdfff]
[    0.000000] Reserving 256MB of memory at 592MB for crashkernel (System RAM: 16310MB)
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000042fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x0000000000095fff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000cb74ffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000042fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000042fffffff]
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] e820: [mem 0xcc000000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 34 pages/cpu @ffff88042fc00000 s101720 r8192 d29352 u524288
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 4110322
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.0.0+ root=/dev/mapper/fedora_dhcp--128--28-root ro rd.lvm.lv=fedora_dhcp-128-28/swap rd.lvm.lv=fedora_dhcp-n
[    0.000000] Intel-IOMMU: enabled
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[    0.000000] Memory: 16075344K/16702356K available (7716K kernel code, 1276K rwdata, 3260K rodata, 1500K init, 1448K bss, 627012K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000]  RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS:4352 nr_irqs:864 16
[    0.000000]  Offload RCU callbacks from all CPUs
[    0.000000]  Offload RCU callbacks from CPUs: 0-3.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [ttyS0] enabled
[    0.000000] clocksource hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2793.141 MHz processor
[    0.000031] Calibrating delay loop (skipped), value calculated using timer frequency.. 5586.28 BogoMIPS (lpj=2793141)
[    0.010648] pid_max: default: 32768 minimum: 301
[    0.015268] ACPI: Core revision 20150410
[    0.044335] ACPI: All ACPI Tables successfully acquired
[    0.051660] Security Framework initialized
[    0.055765] SELinux:  Initializing.
[    0.060304] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.070694] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.079198] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.086084] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.093626] Initializing cgroup subsys blkio
[    0.097901] Initializing cgroup subsys memory
[    0.102257] Initializing cgroup subsys devices
[    0.106702] Initializing cgroup subsys freezer
[    0.111142] Initializing cgroup subsys net_cls
[    0.115584] Initializing cgroup subsys perf_event
[    0.120284] Initializing cgroup subsys net_prio
[    0.124812] Initializing cgroup subsys hugetlb
[    0.129274] CPU: Physical Processor ID: 0
[    0.133287] CPU: Processor Core ID: 0
[    0.136953] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.142956] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.149996] mce: CPU supports 16 MCE banks
[    0.154110] CPU0: Thermal monitoring enabled (TM1)
[    0.158907] process: using mwait in idle threads
[    0.163525] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.169004] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.175409] Freeing SMP alternatives memory: 28K (ffffffff81eb8000 - ffffffff81ebf000)
[    0.184411] ftrace: allocating 27958 entries in 110 pages
[    0.202553] dmar: Host address width 46
[    0.206386] dmar: DRHD base: 0x000000dfffc000 flags: 0x1
[    0.211698] dmar: IOMMU 0: reg_base_addr dfffc000 ver 1:0 cap d2078c106f0462 ecap f020fe
[    0.219776] dmar: RMRR base: 0x000000cba11000 end: 0x000000cba27fff
[    0.226032] dmar: ATSR flags: 0x0
[    0.229349] IOAPIC id 0 under DRHD base  0xdfffc000 IOMMU 0
[    0.234912] IOAPIC id 2 under DRHD base  0xdfffc000 IOMMU 0
[    0.240479] HPET id 0 under DRHD base 0xdfffc000
[    0.245298] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.253118] Enabled IRQ remapping in x2apic mode
[    0.257727] x2apic enabled
[    0.260438] Switched APIC routing to cluster x2apic.
[    0.265915] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.281926] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-1603 0 @ 2.80GHz (fam: 06, model: 2d, stepping: 07)
[    0.291283] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.301794] ... version:                3
[    0.305795] ... bit width:              48
[    0.309890] ... generic registers:      8
[    0.313889] ... value mask:             0000ffffffffffff
[    0.319188] ... max period:             0000ffffffffffff
[    0.324494] ... fixed-purpose events:   3
[    0.328492] ... event mask:             00000007000000ff
[    0.334424] x86: Booting SMP configuration:
[    0.338609] .... node  #0, CPUs:      #1
[    0.353899] microcode: CPU1 microcode updated early to revision 0x710, date = 2013-06-17
[    0.364309] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.372389]  #2
[    0.385492] microcode: CPU2 microcode updated early to revision 0x710, date = 2013-06-17
[    0.396036]  #3
[    0.409139] microcode: CPU3 microcode updated early to revision 0x710, date = 2013-06-17
[    0.419597] x86: Booted up 1 node, 4 CPUs
[    0.423605] smpboot: Total of 4 processors activated (22345.12 BogoMIPS)
[    0.434451] devtmpfs: initialized
[    0.440819] PM: Registering ACPI NVS region [mem 0xcb750000-0xcb7dafff] (569344 bytes)
[    0.448724] PM: Registering ACPI NVS region [mem 0xcbaad000-0xcbaaefff] (8192 bytes)
[    0.456445] PM: Registering ACPI NVS region [mem 0xcbabb000-0xcbacdfff] (77824 bytes)
[    0.464255] PM: Registering ACPI NVS region [mem 0xcbb56000-0xcbb5dfff] (32768 bytes)
[    0.472070] PM: Registering ACPI NVS region [mem 0xcbb71000-0xcbffffff] (4780032 bytes)
[    0.480167] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.489870] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.496823] pinctrl core: initialized pinctrl subsystem
[    0.502080] RTC time: 10:34:17, date: 04/29/15
[    0.506618] NET: Registered protocol family 16
[    0.514356] cpuidle: using governor menu
[    0.518327] ACPI: bus type PCI registered
[    0.522335] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.528833] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.538117] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.545204] PCI: Using configuration type 1 for base access
[    0.551103] perf_event_intel: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[    0.565709] ACPI: Added _OSI(Module Device)
[    0.569891] ACPI: Added _OSI(Processor Device)
[    0.574330] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.579033] ACPI: Added _OSI(Processor Aggregator Device)
[    0.591946] ACPI: Executed 1 blocks of module-level executable AML code
[    0.653410] ACPI: Interpreter enabled
[    0.657080] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150410/hwxface-580)
[    0.666313] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150410/hwxface-580)
[    0.675552] ACPI: (supports S0 S3 S5)
[    0.679211] ACPI: Using IOAPIC for interrupt routing
[    0.684193] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.694028] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.707840] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[    0.714012] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.722276] acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability]
[    0.729448] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
[    0.738644] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[    0.746372] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
[    0.753929] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
[    0.760634] PCI host bridge to bus 0000:00
[    0.764725] pci_bus 0000:00: root bus resource [bus 00-7f]
[    0.770203] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.776982] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.783760] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.790536] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.797305] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.804770] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.812240] pci_bus 0000:00: root bus resource [mem 0xd4000000-0xdfffffff window]
[    0.819709] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3c007fffffff window]
[    0.828109] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.833901] pci 0000:00:02.0: System wakeup disabled by ACPI
[    0.839684] pci 0000:00:03.0: System wakeup disabled by ACPI
[    0.846371] pci 0000:00:19.0: System wakeup disabled by ACPI
[    0.852172] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.858072] pci 0000:00:1c.0: Disabling UPDCR peer decodes
[    0.863552] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    0.868251] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    0.874966] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.880797] pci 0000:00:1c.5: Enabling MPC IRBNCE
[    0.885497] pci 0000:00:1c.5: Intel PCH root port ACS workaround enabled
[    0.892209] pci 0000:00:1c.5: System wakeup disabled by ACPI
[    0.897974] pci 0000:00:1c.6: Enabling MPC IRBNCE
[    0.902676] pci 0000:00:1c.6: Intel PCH root port ACS workaround enabled
[    0.909389] pci 0000:00:1c.6: System wakeup disabled by ACPI
[    0.915153] pci 0000:00:1c.7: Enabling MPC IRBNCE
[    0.919854] pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled
[    0.926569] pci 0000:00:1c.7: System wakeup disabled by ACPI
[    0.932371] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.938113] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.944230] pci 0000:00:01.0: PCI bridge to [bus 03]
[    0.951223] pci 0000:00:02.0: PCI bridge to [bus 05]
[    0.956250] pci 0000:00:03.0: PCI bridge to [bus 04]
[    0.961416] pci 0000:02:00.0: VF(n) BAR0 space: [mem 0xde800000-0xde87bfff 64bit pref] (contains BAR0 for 31 VFs)
[    0.971828] pci 0000:00:11.0: PCI bridge to [bus 02]
[    0.976846] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.981876] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    0.986894] pci 0000:00:1c.6: PCI bridge to [bus 07]
[    0.993882] pci 0000:00:1c.7: PCI bridge to [bus 08]
[    0.999171] pci 0000:00:1e.0: PCI bridge to [bus 09] (subtractive decode)
[    1.006408] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-ff])
[    1.012581] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    1.020846] acpi PNP0A08:01: _OSC: platform does not support [PCIeCapability]
[    1.028022] acpi PNP0A08:01: _OSC: not requesting control; platform does not support [PCIeCapability]
[    1.037219] acpi PNP0A08:01: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[    1.044951] acpi PNP0A08:01: _OSC: platform willing to grant [PCIeHotplug PME AER]
[    1.052505] acpi PNP0A08:01: _OSC failed (AE_SUPPORT); disabling ASPM
[    1.059037] PCI host bridge to bus 0000:80
[    1.063130] pci_bus 0000:80: root bus resource [bus 80-ff]
[    1.068608] pci_bus 0000:80: root bus resource [io  0x0000-0x03af window]
[    1.075378] pci_bus 0000:80: root bus resource [io  0x03e0-0x0cf7 window]
[    1.082153] pci_bus 0000:80: root bus resource [mem 0x000c0000-0x000dffff window]
[    1.089699] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    1.096980] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    1.104250] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[    1.111332] ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 5 6 10 11 12 14 15)
[    1.118415] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    1.125686] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    1.133159] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    1.140435] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    1.148218] ACPI: Enabled 2 GPEs in block 00 to 3F
[    1.153145] vgaarb: setting as boot device: PCI:0000:05:00.0
[    1.158796] vgaarb: device added: PCI:0000:05:00.0,decodes=io+mem,owns=io+mem,locks=none
[    1.166877] vgaarb: loaded
[    1.169583] vgaarb: bridge control possible 0000:05:00.0
[    1.174956] SCSI subsystem initialized
[    1.178772] ACPI: bus type USB registered
[    1.182798] usbcore: registered new interface driver usbfs
[    1.188284] usbcore: registered new interface driver hub
[    1.193595] usbcore: registered new device driver usb
[    1.198719] PCI: Using ACPI for IRQ routing
[    1.208769] PCI: Discovered peer bus ff
[    1.212627] ACPI: \: failed to evaluate _DSM (0x1001)
[    1.217674] PCI host bridge to bus 0000:ff
[    1.221768] pci_bus 0000:ff: root bus resource [io  0x0000-0xffff]
[    1.227934] pci_bus 0000:ff: root bus resource [mem 0x00000000-0x3fffffffffff]
[    1.235145] pci_bus 0000:ff: No busn resource found for root bus, will use [bus ff-ff]
[    1.245206] NetLabel: Initializing
[    1.248601] NetLabel:  domain hash size = 128
[    1.252957] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.257928] NetLabel:  unlabeled traffic allowed by default
[    1.263548] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.269881] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.277734] Switched to clocksource hpet
[    1.287587] pnp: PnP ACPI init
[    1.290758] system 00:00: [mem 0xfc000000-0xfcffffff window] has been reserved
[    1.297976] system 00:00: [mem 0xfd000000-0xfdffffff window] has been reserved
[    1.305187] system 00:00: [mem 0xfe000000-0xfeafffff window] has been reserved
[    1.312400] system 00:00: [mem 0xfeb00000-0xfebfffff window] has been reserved
[    1.319613] system 00:00: [mem 0xfed00400-0xfed3ffff window] could not be reserved
[    1.327176] system 00:00: [mem 0xfed45000-0xfedfffff window] has been reserved
[    1.334387] system 00:00: [mem 0xdffff000-0xdfffffff window] has been reserved
[    1.341718] system 00:01: [io  0x0620-0x063f] has been reserved
[    1.347635] system 00:01: [io  0x0610-0x061f] has been reserved
[    1.353717] system 00:05: [io  0x04d0-0x04d1] has been reserved
[    1.359941] system 00:07: [io  0x0400-0x0453] could not be reserved
[    1.366198] system 00:07: [io  0x0458-0x047f] has been reserved
[    1.372108] system 00:07: [io  0x1180-0x119f] has been reserved
[    1.378023] system 00:07: [io  0x0500-0x057f] has been reserved
[    1.383934] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.390542] system 00:07: [mem 0xfec00000-0xfecfffff] could not be reserved
[    1.397494] system 00:07: [mem 0xfed08000-0xfed08fff] has been reserved
[    1.404099] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[    1.410766] system 00:08: [io  0x0454-0x0457] has been reserved
[    1.416981] system 00:09: [mem 0xfed40000-0xfed44fff] has been reserved
[    1.423593] pnp: PnP ACPI: found 10 devices
[    1.433918] clocksource acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.442755] pci 0000:00:01.0: PCI bridge to [bus 03]
[    1.447723] pci 0000:00:02.0: PCI bridge to [bus 05]
[    1.452686] pci 0000:00:02.0:   bridge window [io  0xd000-0xdfff]
[    1.458774] pci 0000:00:02.0:   bridge window [mem 0xd6000000-0xd70fffff]
[    1.465556] pci 0000:00:02.0:   bridge window [mem 0xd8000000-0xddffffff 64bit pref]
[    1.473284] pci 0000:00:03.0: PCI bridge to [bus 04]
[    1.478249] pci 0000:00:11.0: PCI bridge to [bus 02]
[    1.483211] pci 0000:00:11.0:   bridge window [io  0xe000-0xefff]
[    1.489300] pci 0000:00:11.0:   bridge window [mem 0xde400000-0xde8fffff 64bit pref]
[    1.497031] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    1.501993] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.506969] pci 0000:00:1c.6: PCI bridge to [bus 07]
[    1.511939] pci 0000:00:1c.7: PCI bridge to [bus 08]
[    1.516901] pci 0000:00:1c.7:   bridge window [mem 0xd7200000-0xd72fffff]
[    1.523681] pci 0000:00:1e.0: PCI bridge to [bus 09]
[    1.528636] pci 0000:00:1e.0:   bridge window [io  0xc000-0xcfff]
[    1.534723] pci 0000:00:1e.0:   bridge window [mem 0xd7100000-0xd71fffff]
[    1.541579] NET: Registered protocol family 2
[    1.546151] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    1.553757] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.560610] TCP: Hash tables configured (established 131072 bind 65536)
[    1.567270] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    1.573418] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    1.580031] NET: Registered protocol family 1
[    1.626445] Unpacking initramfs...
[    1.887979] Freeing initrd memory: 19128K (ffff880035a94000 - ffff880036d42000)
[    1.895511] IOMMU: dmar0 using Queued invalidation
[    1.900297] IOMMU: Setting RMRR:
[    1.903531] IOMMU: Setting identity map for device 0000:00:1a.0 [0xcba11000 - 0xcba27fff]
[    1.911725] IOMMU: Setting identity map for device 0000:00:1d.0 [0xcba11000 - 0xcba27fff]
[    1.919910] IOMMU: Prepare 0-16MiB unity mapping for LPC
[    1.925226] IOMMU: Setting identity map for device 0000:00:1f.0 [0x0 - 0xffffff]
[    1.932629] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[    1.942707] RAPL PMU detected, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    1.951314] hw unit of domain pp0-core 2^-16 Joules
[    1.956194] hw unit of domain package 2^-16 Joules
[    1.960978] hw unit of domain dram 2^-16 Joules
[    1.965679] microcode: CPU0 sig=0x206d7, pf=0x1, revision=0x710
[    1.971591] microcode: CPU1 sig=0x206d7, pf=0x1, revision=0x710
[    1.977502] microcode: CPU2 sig=0x206d7, pf=0x1, revision=0x710
[    1.983425] microcode: CPU3 sig=0x206d7, pf=0x1, revision=0x710
[    1.989388] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    1.998474] AVX version of gcm_enc/dec engaged.
[    2.003005] AES CTR mode by8 optimization enabled
[    2.009550] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[    2.016307] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    2.022499] Initialise system trusted keyring
[    2.026870] audit: initializing netlink subsys (disabled)
[    2.032278] audit: type=2000 audit(1430303656.169:1): initialized
[    2.038867] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.046515] zpool: loaded
[    2.049285] VFS: Disk quotas dquot_6.6.0
[    2.053243] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.060466] Key type big_key registered
[    2.065040] alg: No test for stdrng (krng)
[    2.069144] NET: Registered protocol family 38
[    2.073586] Key type asymmetric registered
[    2.077680] Asymmetric key parser 'x509' registered
[    2.082581] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.089993] io scheduler noop registered
[    2.093918] io scheduler deadline registered
[    2.098211] io scheduler cfq registered (default)
[    2.103818] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.109401] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.116240] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.124584] ACPI: Power Button [PWRB]
[    2.128278] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.135664] ACPI: Power Button [PWRF]
[    2.143175] GHES: HEST is not enabled!
[    2.147065] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.173918] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.202294] 0000:00:16.3: ttyS1 at I/O 0xf060 (irq = 17, base_baud = 115200) is a 16550A
[    2.210750] Non-volatile memory driver v1.3
[    2.214994] Linux agpgart interface v0.103
[    2.229807] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl RAID mode
[    2.237885] ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pio ems sxs apst 
[    2.247409] scsi host0: ahci
[    2.250578] scsi host1: ahci
[    2.253769] scsi host2: ahci
[    2.256909] scsi host3: ahci
[    2.260007] scsi host4: ahci
[    2.263068] scsi host5: ahci
[    2.265988] ata1: SATA max UDMA/133 abar m2048@0xd7348000 port 0xd7348100 irq 27
[    2.273370] ata2: DUMMY
[    2.275822] ata3: SATA max UDMA/133 abar m2048@0xd7348000 port 0xd7348200 irq 27
[    2.283208] ata4: DUMMY
[    2.285659] ata5: DUMMY
[    2.288108] ata6: DUMMY
[    2.290661] libphy: Fixed MDIO Bus: probed
[    2.294879] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    2.300205] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 1
[    2.307794] xhci_hcd 0000:08:00.0: hcc params 0x0270f06d hci version 0x96 quirks 0x00004000
[    2.316287] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.323070] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.330283] usb usb1: Product: xHCI Host Controller
[    2.335157] usb usb1: Manufacturer: Linux 4.0.0+ xhci-hcd
[    2.340550] usb usb1: SerialNumber: 0000:08:00.0
[    2.345294] hub 1-0:1.0: USB hub found
[    2.349056] hub 1-0:1.0: 4 ports detected
[    2.353176] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    2.358470] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 2
[    2.365883] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    2.372656] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.379866] usb usb2: Product: xHCI Host Controller
[    2.384739] usb usb2: Manufacturer: Linux 4.0.0+ xhci-hcd
[    2.390134] usb usb2: SerialNumber: 0000:08:00.0
[    2.394865] hub 2-0:1.0: USB hub found
[    2.398622] hub 2-0:1.0: 4 ports detected
[    2.402745] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.409275] ehci-pci: EHCI PCI platform driver
[    2.413809] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    2.419099] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    2.426495] ehci-pci 0000:00:1a.0: debug port 2
[    2.434950] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd734b000
[    2.446032] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    2.451794] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    2.458579] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.465792] usb usb3: Product: EHCI Host Controller
[    2.470664] usb usb3: Manufacturer: Linux 4.0.0+ ehci_hcd
[    2.476057] usb usb3: SerialNumber: 0000:00:1a.0
[    2.480868] hub 3-0:1.0: USB hub found
[    2.484628] hub 3-0:1.0: 3 ports detected
[    2.488835] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    2.494111] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    2.501509] ehci-pci 0000:00:1d.0: debug port 2
[    2.509949] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd734a000
[    2.521185] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    2.526967] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002
[    2.533749] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.540958] usb usb4: Product: EHCI Host Controller
[    2.545834] usb usb4: Manufacturer: Linux 4.0.0+ ehci_hcd
[    2.551227] usb usb4: SerialNumber: 0000:00:1d.0
[    2.556004] hub 4-0:1.0: USB hub found
[    2.559763] hub 4-0:1.0: 3 ports detected
[    2.563883] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.570066] ohci-pci: OHCI PCI platform driver
[    2.574521] uhci_hcd: USB Universal Host Controller Interface driver
[    2.580917] usbcore: registered new interface driver usbserial
[    2.586750] usbcore: registered new interface driver usbserial_generic
[    2.593298] usbserial: USB Serial support registered for generic
[    2.596225] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.597227] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.598407] ata3.00: ATAPI: hp       CDDVDW SH-216ALN, HA5A, max UDMA/100
[    2.600244] ata1.00: ATA-8: WDC WD10EALX-609BA0, 18.01H18, max UDMA/100
[    2.600245] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.600869] ata3.00: configured for UDMA/100
[    2.603086] ata1.00: configured for UDMA/100
[    2.603260] scsi 0:0:0:0: Direct-Access     ATA      WDC WD10EALX-609 1H18 PQ: 0 ANSI: 5
[    2.603553] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.603613] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    2.603866] sd 0:0:0:0: [sda] Write Protect is off
[    2.603965] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.604160] scsi 2:0:0:0: CD-ROM            hp       CDDVDW SH-216ALN HA5A PQ: 0 ANSI: 5
[    2.623012]  sda: sda1 sda2
[    2.623636] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.634993] sr 2:0:0:0: [sr0] scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.634994] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.635253] sr 2:0:0:0: Attached scsi generic sg1 type 5
[    2.710337] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    2.721112] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.726074] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.731370] mousedev: PS/2 mouse device common for all mice
[    2.737362] rtc_cmos 00:04: RTC can wake from S4
[    2.742165] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    2.748293] rtc_cmos 00:04: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    2.755984] device-mapper: uevent: version 1.0.3
[    2.761146] device-mapper: ioctl: 4.31.0-ioctl (2015-3-12) initialised: dm-devel@redhat.com
[    2.769585] Intel P-state driver initializing.
[    2.775764] hidraw: raw HID events driver (C) Jiri Kosina
[    2.781403] usbcore: registered new interface driver usbhid
[    2.786981] usbhid: USB HID core driver
[    2.790972] drop_monitor: Initializing network drop monitor service
[    2.797385] ip_tables: (C) 2000-2006 Netfilter Core Team
[    2.802812] Initializing XFRM netlink socket
[    2.807301] NET: Registered protocol family 10
[    2.812085] mip6: Mobile IPv6
[    2.812474] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    2.821600] NET: Registered protocol family 17
[    2.827295] Loading compiled-in X.509 certificates
[    2.833667] Loaded X.509 cert 'Magrathea: Glacier signing key: 8d99b9f6f028e78c7dfe07caad5fd2ff7cee9c74'
[    2.843170] registered taskstats version 1
[    2.848104]   Magic number: 11:256:579
[    2.851892] pci_bus 0000:00: hash matches
[    2.856043] rtc_cmos 00:04: setting system clock to 2015-04-29 10:34:19 UTC (1430303659)
[    2.864887] Freeing unused kernel memory: 1500K (ffffffff81d41000 - ffffffff81eb8000)
[    2.872721] Write protecting the kernel read-only data: 12288k
[    2.879017] Freeing unused kernel memory: 464K (ffff88000178c000 - ffff880001800000)
[    2.887086] Freeing unused kernel memory: 836K (ffff880001b2f000 - ffff880001c00000)
[    2.897887] random: systemd urandom read with 13 bits of entropy available
[    2.906032] systemd[1]: systemd 217 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -L)
[    2.924138] usb 4-1: new high-speed USB device number 2 using ehci-pci
[    2.930912] systemd[1]: Detected architecture 'x86-64'.
[    2.936158] systemd[1]: Running in initial RAM disk.

Welcome to Fedora 21 (T[    2.943202] usb 3-1: New USB device found, idVendor=8087, idProduct=0024
[    2.950774] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
wenty One) dracu[    2.958357] hub 3-1:1.0: USB hub found
t-038-30.git2014[    2.963313] hub 3-1:1.0: 6 ports detected
[    2.967652] tsc: Refined TSC clocksource calibration: 2793.266 MHz
[    2.967655] clocksource tsc: mask: 0xffffffffffffffff max_cycles: 0x2843679379e, max_idle_ns: 440795332872 ns
0903.fc21 (Initramfs)!

[    2.987898] systemd[1]: Set hostname to <dhcp-128-28.nay.redhat.com>.
[    3.039247] systemd[1]: Expecting device dev-mapper-fedora_dhcp\x2d\x2d128\x2d\x2d28\x2dswap.device...
[    3.048280] usb 4-1: New USB device found, idVendor=8087, idProduct=0024
[    3.048282] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.048702] hub 4-1:1.0: USB hub found
[    3.048882] hub 4-1:1.0: 8 ports detected
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2dswap.device...
[    3.078842] systemd[1]: Expecting device dev-disk-by\x2duuid-689a8845\x2d7f32\x2d4fd7\x2d87fc\x2d615276a16f2f.device...
         Expecting device dev-disk-by\x2duui...2d87fc\x2d615276a16f2f.device...
[    3.098910] systemd[1]: Expecting device dev-mapper-fedora_dhcp\x2d\x2d128\x2d\x2d28\x2droot.device...
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2droot.device...
[    3.116925] systemd[1]: Starting Timers.
[  OK  ] Reached target Timers.
[    3.125921] systemd[1]: Reached target Timers.
[    3.130411] systemd[1]: Starting -.slice.
[  OK  ] Created slice -.slice.
[    3.148930] systemd[1]: Created slice -.slice.
[    3.153422] systemd[1]: Starting udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[    3.163917] systemd[1]: Listening on udev Control Socket.
[    3.169345] systemd[1]: Starting udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[    3.179934] systemd[1]: Listening on udev Kernel Socket.
[    3.185270] systemd[1]: Starting Journal Socket.
[  OK  ] Listening on Journal Socket.
[    3.194965] systemd[1]: Listening on Journal Socket.
[    3.199950] systemd[1]: Starting System Slice.
[  OK  ] Created slice System Slice.
[    3.208978] systemd[1]: Created slice System Slice.
[    3.213930] systemd[1]: Started dracut ask for additional cmdline parameters.
[    3.221180] systemd[1]: Starting dracut cmdline hook...
         Starting dracut cmdline hook...
[    3.231387] systemd[1]: Starting system-systemd\x2dfsck.slice.
[  OK  ] Created slice system-systemd\x2dfsck.slice.
[    3.245004] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    3.251364] systemd[1]: Starting Create list of required static device nodes for the current kernel...
         Starting Create list of required st... nodes for the current kernel...
[    3.269339] systemd[1]: Starting Journal Socket (/dev/log).
[    3.275206] systemd[1]: Starting Slices.
[  OK  ] Reached target Slices.
[    3.284011] systemd[1]: Reached target Slices.
[    3.288485] systemd[1]: Starting Setup Virtual Console...
         Starting Setup Virtual Console...
[    3.298419] systemd[1]: Started Load Kernel Modules.
[    3.303414] systemd[1]: Starting Apply Kernel Variables...
         Starting Apply Kernel Variables...
[    3.315354] systemd[1]: Starting Swap.
[  OK  ] Reached target Swap.
[    3.324044] systemd[1]: Reached target Swap.
[    3.328329] systemd[1]: Starting Local File Systems.
[  OK  ] Reached target Local File Systems.
[    3.339064] systemd[1]: Reached target Local File Systems.
[    3.344561] usb 4-1.1: new high-speed USB device number 3 using ehci-pci
[  OK  ] Started dracut cmdline hook.
[    3.356081] systemd[1]: Started dracut cmdline hook.
[  OK  ] Started Create list of required sta...ce nodes for the current kernel.
[    3.370129] systemd[1]: Started Create list of required static device nodes for the current kernel.
[  OK  ] Listening on Journal Socket (/dev/log).
[    3.385175] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Started Setup Virtual Console.
[    3.397192] systemd[1]: Started Setup Virtual Console.
[  OK  ] Started Apply Kernel Variables.
[    3.408204] systemd[1]: Started Apply Kernel Variables.
[    3.418680] systemd[1]: Starting Sockets.
[  OK  ] Reached target Sockets.
[    3.427222] systemd[1]: Reached target Sockets.
[    3.431772] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[    3.441626] systemd[1]: Starting Create Static Device Nodes in /dev...
         Startin[    3.448533] usb 4-1.1: New USB device found, idVendor=0424, idProduct=2412
[    3.456515] usb 4-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.458510] systemd-journald[257]: File /var/log/journal/95212bce02f14a269471981f705ca21f/system.journal corrupted or uncleanly shut down, renaming and replacing.
g Create Static [    3.478590] hub 4-1.1:1.0: USB hub found
Device Nodes in [    3.483699] hub 4-1.1:1.0: 2 ports detected
/dev...
[    3.491723] systemd[1]: Starting dracut pre-udev hook...
         Starting dracut pre-udev hook...
[  OK  ] Started Journal Service.
[    3.506253] systemd[1]: Started Journal Service.
[  OK  ] Started Create Static Device Nodes in /dev.
[  OK  ] Started dracut pre-udev hook.
         Starting udev Kernel Device Manager...
[  OK  ] Started udev Kernel Device Manager.
         Starting udev Coldplug all Devices...
         Mounting Configuration File System...
[  OK  ] Mounted Configuration File System.
[  OK  [    3.575972] wmi: Mapper loaded
] Started udev Coldplug all Devi[    3.580956] [drm] Initialized drm 1.1.0 20060810
ces.
[    3.586654] pps_core: LinuxPPS API ver. 1 registered
[    3.592057] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
         Startin[    3.607042] tulip: Linux Tulip driver version 1.1.15 (Feb 27, 2007)
g dracut initque[    3.614038] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    3.614443] tulip: tulip_init_one: Enabled WOL support for AN983B
[    3.615168] tulip0:  MII transceiver #1 config 1000 status 786d advertising 05e1
ue hook...
[    3.622693] net eth0: ADMtek Comet rev 17 at MMIO 0xd7121000, 00:b0:c0:06:70:90, IRQ 20
[    3.643999] isci 0000:02:00.0: driver configured for rev: 5 silicon
[    3.650290] scsi host6: ata_generic
[    3.650292] isci 0000:02:00.0: OEM SAS parameters (version: 1.3) loaded (firmware)
[    3.650828] isci 0000:02:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    3.653193] scsi host7: isci
[    3.662347] tulip 0000:09:04.0 enp9s4: renamed from eth0
[    3.678271] PTP clock support registered
[    3.682501] scsi host8: ata_genic
         Startin[    3.686051] ata7: PATA max UDMA/100 cmd 0xf0b0 ctl 0xf0a0 bmdma 0xf070 irq 18
g Show Plymouth [    3.694460] ata8: PATA max UDMA/100 cmd 0xf090 ctl 0xf080 bmdma 0xf078 irq 18
Boot Screen...
[    3.694501] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
[    3.694501] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
[    3.716340] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    3.716542] nouveau  [  DEVICE][0000:05:00.0] BOOT0  : 0x0a8c00b1
[    3.716543] nouveau  [  DEVICE][0000:05:00.0] Chipset: GT218 (NVA8)
[    3.716544] nouveau  [  DEVICE][0000:05:00.0] Family : NV50
[    3.736505] firewire_ohci 0000:09:05.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
[  OK  ] Reached target System Initialization.
[    3.794638] usb 4-1.1.1: new low-speed USB device number 4 using ehci-pci
[    3.830599] nouveau  [   VBIOS][0000:05:00.0] using image from PRAMIN
[    3.837113] nouveau  [   VBIOS][0000:05:00.0] BIT signature found
[    3.843203] nouveau  [   VBIOS][0000:05:00.0] version 70.18.89.00.02
[    3.849872] nouveau  [     PMC][0000:05:00.0] MSI interrupts enabled
[    3.856246] nouveau  [     PFB][0000:05:00.0] RAM type: DDR3
[    3.861900] nouveau  [     PFB][0000:05:00.0] RAM size: 512 MiB
[    3.867815] nouveau  [     PFB][0000:05:00.0]    ZCOMP: 960 tags
[    3.875570] nouveau  [    VOLT][0000:05:00.0] GPU voltage: 900000uv
[    3.897662] usb 4-1.1.1: New USB device found, idVendor=03f0, idProduct=0324
[    3.904706] usb 4-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.909468] nouveau  [  PTHERM][0000:05:00.0] FAN control: none / external
[    3.909475] nouveau  [  PTHERM][0000:05:00.0] fan management: automatic
[    3.909478] nouveau  [  PTHERM][0000:05:00.0] internal sensor: yes
[    3.929522] nouveau  [     CLK][0000:05:00.0] 03: core 135 MHz shader 270 MHz memory 135 MHz
[    3.929524] nouveau  [     CLK][0000:05:00.0] 07: core 405 MHz shader 810 MHz memory 405 MHz
[    3.929526] nouveau  [     CLK][0000:05:00.0] 0f: core 520 MHz shader 1230 MHz memory 790 MHz
[    3.929544] nouveau  [     CLK][0000:05:00.0] --: core 405 MHz shader 810 MHz memory 405 MHz
[    3.929700] [TTM] Zone  kernel: Available graphics memory: 8081626 kiB
[    3.929700] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    3.929701] [TTM] Initializing pool allocator
[    3.929705] [TTM] Initializing DMA pool allocator
[    3.929713] nouveau  [     DRM] VRAM: 512 MiB
[    3.929714] nouveau  [     DRM] GART: 1048576 MiB
[    3.929717] nouveau  [     DRM] TMDS table version 2.0
[    3.929719] nouveau  [     DRM] DCB version 4.0
[    3.929720] nouveau  [     DRM] DCB outp 00: 02000360 00000000
[    3.929721] nouveau  [     DRM] DCB outp 01: 02000362 00020010
[    3.929722] nouveau  [     DRM] DCB outp 02: 028003a6 0f220010
[    3.929723] nouveau  [     DRM] DCB outp 03: 01011380 00000000
[    3.929724] nouveau  [     DRM] DCB outp 04: 08011382 00020010
[    3.929724] nouveau  [     DRM] DCB outp 05: 088113c6 0f220010
[    3.929726] nouveau  [     DRM] DCB conn 00: 00101064
[    3.929727] nouveau  [     DRM] DCB conn 01: 00202165
[    3.950057] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.950057] [drm] Driver supports precise vblank timestamp query.
[    3.951504] e1000e 0000:00:19.0 eth0: registered PHC clock
[    3.951505] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 80:c1:6e:f8:9f:92
[    3.951506] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[    3.951541] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 0100FF-0FF
[    3.966252] e1000e 0000:00:19.0 eno1: renamed from eth0
[    4.096467] usb 4-1.1.1: Product: HP Basic USB Keyboard
[    4.101686] usb 4-1.1.1: Manufacturer: Lite-On Technology Corp.
[    4.107605] Switched to clocksource tsc
[    4.110127] nouveau  [     DRM] MM: using COPY for buffer copies
[    4.120618] input: Lite-On Technology Corp. HP Basic USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.1/4-1.1.1/4-1.1.1:1.0/0003:03F0:0324.0001/input5
[    4.183452] nouveau  [     DRM] allocated 1920x1080 fb: 0x70000, bo ffff88041952d000
[    4.186159] hid-generic 0003:03F0:0324.0001: input,hidraw0: USB HID v1.10 Keyboard [Lite-On Technology Corp. HP Basic USB Keyboard] on usb-0000:00:1d.0-1.1.1/inpu0
[    4.205922] fbcon: nouveaufb (fb0) is primary device
[    4.245078] firewire_core 0000:09:05.0: created device fw0: GUID 0060b000008cec98, S400
[    4.270044] usb 4-1.1.2: new low-speed USB device number 5 using ehci-pci
[    4.327492] Console: switching to colour frame buffer device 240x67
[    4.356643] nouveau 0000:05:00.0: fb0: nouveaufb frame buffer device
[    4.362986] nouveau 0000:05:00.0: registered panic notifier
[    4.365191] usb 4-1.1.2: New USB device found, idVendor=03f0, idProduct=0b4a
[    4.365192] usb 4-1.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.365193] usb 4-1.1.2: Product: USB Optical Mouse
[    4.365194] usb 4-1.1.2: Manufacturer: Logitech
[    4.367354] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.1/4-1.1.2/4-1.1.2:1.0/0003:03F0:0B4A.0002/input/input6
[    4.367615] hid-generic 0003:03F0:0B4A.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.1.2/input0
[    4.425278] [drm] Initialized nouveau 1.2.2 20120801 for 0000:05:00.0 on minor 0
[  OK  ] Found device WDC_WD10EALX-609BA0 1.
[  OK  ] Started Show Plymouth Boot Screen.
[  OK  ] Reached target Paths.
[  OK  ] Reached target Basic System.
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-root.
         Starting File System Check on /dev/mapper/fedora_dhcp--128--28-root...
[    4.664397] random: nonblocking pool is initialized
[    3.824740] systemd-fsck[412]: /dev/mapper/fedora_dhcp--128--28-root: clean, 162320/19660800 files, 9596705/78643200 blocks
[  OK  ] Started File System Check on /dev/mapper/fedora_dhcp--128--28-root.
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-swap.
[  OK  ] Started dracut initqueue hook.
         Starting dracut pre-mount hook...
[  OK  ] Reached target Remote File Systems (Pre).
[  OK  ] Reached target Remote File Systems.
[    4.014014] dracut-pre-mount[436]: //lib/dracut/hooks/pre-mount/10-resume.sh: line 22: /sys/power/resume: Permission denied
[  OK  ] Started dracut pre-mount hook.
         Mounting /sys[    4.899848] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
root...
[  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.
         Starting dracut pre-pivot and cleanup hook...
[  OK  ] Started dracut pre-pivot and cleanup hook.
         Starting Cleaning Up and Shutting Down Daemons...
         Stopping Cleaning Up and Shutting Down Daemons...
[  OK  ] Stopped target Timers.
         Starting Plymouth switch root service...
[  OK  ] Stopped Cleaning Up and Shutting Down Daemons.
         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).
         Stopping dracut pre-mount hook...
[  OK  ] Stopped dracut pre-mount hook.
         Stopping dracut initqueue hook...
[  OK  ] Stopped dracut initqueue hook.
[  OK  ] Stopped target Initrd Default Target.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped target Slices.
[  OK  ][    5.252051] systemd-journald[257]: Received SIGTERM from PID 1 (systemd).
 Stopped target Paths.
[  OK  ] Stopped target Sockets.
[  OK  ] Stopped target System Initialization.
         Stopping udev Coldplug all Devices...
[  OK  ] Stopped udev Coldplug all Devices.
         Stopping Apply Kernel Variables...
[  OK  ] Stopped Apply Kernel Variables.
[  OK  ] Stopped target Swap.
[  OK  ] Stopped target Local File Systems.
         Stopping udev Kernel Device Manager...
[  OK  ] Stopped udev Kernel Device Manager.
         Stopping dracut pre-udev hook...
[  OK  ] Stopped dracut pre-udev hook.
         Stopping dracut cmdline hook...
[  OK  ] Stopped dracut cmdline hook.
         Stopping Create Static Device Nodes in /dev...
[  OK  ] Stopped Create Static Device Nodes in /dev.
         Stopping Create list of required st... nodes for the current kernel...
[  OK  ] Stopped Create list of required sta...ce nodes for the current kernel.
[  OK  ] Closed udev Control Socket.
[  OK  ] Closed udev Kernel Socket.
         Starting Cleanup udevd DB...
[  OK  ] Started Cleanup udevd DB.
[  OK  ] Reached target Switch Root.
[  OK  ] Started Plymouth switch root service.
         Starting Switch Root...
[    5.717985] audit: type=1404 audit(1430303662.358:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[    5.850166] SELinux:  Permission audit_read in class capability2 not defined in policy.
[    5.858159] SELinux:  Class binder not defined in policy.
[    5.863553] SELinux: the above unknown classes and permissions will be allowed
[    5.877470] audit: type=1403 audit(1430303662.517:3): policy loaded auid=4294967295 ses=4294967295
[    5.891730] systemd[1]: Successfully loaded SELinux policy in 198.682ms.
[    5.957807] systemd[1]: Relabelled /dev and /run in 20.878ms.

Welcome to Fedora 21 (Twenty One)!

[  OK  ] Stopped Switch Root.
[  OK  ] Stopped target Switch Root.
[  OK  ] Stopped target Initrd File Systems.
         Stopping File System Check on /dev/mapper/fedora_dhcp--128--28-root...
[  OK  ] Stopped File System Check on /dev/mapper/fedora_dhcp--128--28-root.
[  OK  ] Stopped target Initrd Root File System.
[  OK  ] Reached target User and Group Name Lookups.
         Starting Collect Read-Ahead Data...
         Starting Replay Read-Ahead Data...
[  OK  ] Created slice system-serial\x2dgetty.slice.
         Expecting device dev-ttyS0.device...
[  OK  ] Created slice system-getty.slice.
[  OK  ] Created slice User and Session Slice.
[  OK  ] Reached target Slices.
[  OK  ] Listening on Delayed Shutdown Socket.
[  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
         Mounting Huge Pages File System...
         Starting Create list of required st... nodes for the current kernel...
         Mounting POSIX Message Queue File System...
[  OK  ] Stopped Flush Journal to Persistent Storage.
         Stopping Journal Service...
[  OK  ] Stopped Journal Service.
         Starting Journal Service...
         Mounting Debug File System...
[  OK  ] Set up automount Arbitrary Executab...ats File System Automount Point.
[  OK  ] Listening on udev Kernel Socket.
[  OK  ] Listening on udev Control Socket.
         Starting udev Coldplug all Devices...
[  OK  ] Listening on Device-mapper event daemon FIFOs.
[  OK  ] Listening on LVM2 metadata daemon socket.
         Starting Monitoring of LVM2 mirrors... dmeventd or progress polling...
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2dswap.device...
         Mounting Temporary Directory...
         Expecting device dev-disk-by\x2duui...2d87fc\x2d615276a16f2f.device...
         Expecting device dev-mapper-fedora_...d128\x2d\x2d28\x2dhome.device...
[  OK  ] Started Collect Read-Ahead Data.
[  OK  ] Started Create list of required sta...ce nodes for the current kernel.
[  OK  ] Started udev Coldplug all Devices.
         Starting udev Wait for Complete Device Initialization...
[  OK  ] Started Replay Read-Ahead Data.
         Starting File System Check on Root Device...
         Starting Load legacy module configuration...
         Starting Apply Kernel Variables...
         Starting Set Up Additional Binary Formats...
[  OK  ] Mounted Huge Pages File System.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Mounted Debug File System.
[  OK  ] Mounted Temporary Directory.
[  OK  ] Started Load legacy module configuration.
[  OK  ] Started Apply Kernel Variables.
         Mounting Arbitrary Executable File Formats File System...
         Starting LVM2 metadata daemon...
[  OK  ] Started LVM2 metadata daemon.
[  OK  ] Started Journal Service.
[    6.898898] systemd-fsck[535]: /dev/mapper/fedora_dhcp--128--28-root: clean, 162320/19660800 files, 9596705/78643200 blocks
[  OK  ] Started File System Check on Root Device.
         Starting Remount Root and Kernel File Systems...
[  OK  ] Mounted Arbitrary Executable File Formats File System.
[  OK  ] Started Set Up Additional Binary Formats.
[    8.134046] EXT4-fs (dm-0): re-mounted. Opts: (null)
[  OK  ] Started Remount Root and Kernel File Systems.
         Starting Configure read-only root support...
         Starting Import network configuration from initramfs...
         Starting Load/Save Random Seed...
         Starting Flush Journal to Persistent Storage...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Started Load/Save Random Seed.
[    8.364638] systemd-journald[526]: Received request to flush runtime journal from PID 1
[  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 Monitoring of LVM2 mirrors,...ng dmeventd or progress polling.
[  OK  ] Started Import network configuration from initramfs.
[  OK  ] Started udev Kernel Device Manager.
[  OK  ] Started udev Wait for Complete Device Initialization.
         Starting Activation of DM RAID sets...
[   10.723147] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   11.122184] WARNING! power/level is deprecated; use power/control instead
[   11.209078] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[   11.255241] EDAC MC: Ver: 3.0.0
[  OK  ] Found device /dev/ttyS0.
[   11.381455] EDAC MC0: Giving out device to module sbridge_edac.c controller Sandy Bridge Socket#0: DEV 0000:ff:0e.0 (POLLED)
[   11.392668] EDAC sbridge:  Ver: 1.1.0 
[   11.567379] input: PC Speaker as /devices/platform/pcspkr/input/input7
[   11.832043] iTCO_vendor_support: vendor-support=0
[   11.883099] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   11.888740] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[  OK  ] Started Flush Journal to Persistent Storage.
G[   12.436924] snd_hda_intel 0000:05:00.1: Disabling MSI
[   12.441999] snd_hda_intel 0000:05:00.1: Handle VGA-switcheroo audio client
[   12.568500] alg: No test for crc32 (crc32-pclmul)
[   12.598319] input: HP WMI hotkeys as /devices/virtual/input/input8
[   12.622796] snd_hda_codec_realtek hdaudioC0D0: ALC262: SKU not ready 0x411111f0
[   12.630530] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC262: line_outs=1 (0x15/0x0/0x0/0x0/0x0) type:line
[   12.640910] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=1 (0x16/0x0/0x0/0x0/0x0)
[   12.648914] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[   12.656503] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   12.662859] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   12.668266] snd_hda_codec_realtek hdaudioC0D0:      Front Mic=0x19
[   12.674469] snd_hda_codec_realtek hdaudioC0D0:      Rear Mic=0x18
[   12.680568] snd_hda_codec_realtek hdaudioC0D0:      Line=0x1a
[   12.698813] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[  OK  [   12.707972] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
] Reached target[   12.718102] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
 Sound Card.
[   12.728003] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[   12.738189] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[   12.832233] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:05:00.1/sound/card1/input14
[   12.842581] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:02.0/0000:05:00.1/sound/card1/input15
[   12.852881] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:02.0/0000:05:00.1/sound/card1/input16
[   12.863157] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:02.0/0000:05:00.1/sound/card1/input17
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-swap.
         Activating swap /dev/mapper/fedora_dhcp--128--28-swap...
[   14.690904] Adding 11534332k swap on /dev/mapper/fedora_dhcp--128--28-swap.  Priority:-1 extents:1 across:11534332k FS
[  OK  ] Activated swap /dev/mapper/fedora_dhcp--128--28-swap.
[  OK  ] Reached target Swap.
[  OK  ] Started Activation of DM RAID sets.
[  OK  ] Reached target Encrypted Volumes.
[  OK  ] Created slice system-lvm2\x2dpvscan.slice.
         Starting LVM2 PV scan on device 8:2...
[  OK  ] Found device /dev/mapper/fedora_dhcp--128--28-home.
[  OK  ] Started LVM2 PV scan on device 8:2.
         Starting File System Check on /dev/mapper/fedora_dhcp--128--28-home...
[  OK  ] Found device WDC_WD10EALX-609BA0 1.
         Starting File System Check on /dev/...5-7f32-4fd7-87fc-615276a16f2f...
[   15.849500] systemd-fsck[672]: /dev/sda1: clean, 436/1310720 files, 185051/5242880 blocks
[   15.924728] systemd-fsck[669]: /dev/mapper/fedora_dhcp--128--28-home: clean, 256817/39321600 files, 7501587/157286400 blocks
[  OK  ] Started File System Check on /dev/d...845-7f32-4fd7-87fc-615276a16f2f.
[  OK  ] Started File System Check on /dev/mapper/fedora_dhcp--128--28-home.
         Mounting /home...
         Mounting /boot...
[   17.549292] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[  OK  ] Mounted /boot.
[   18.049074] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
[  OK  ] Mounted /home.
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
         Starting Tell Plymouth To Write Out Runtime Data...
[  OK  ] Started Create Volatile Files and Directories.
         Starting Security Auditing Service...
[  OK  ] Started Tell Plymouth To Write Out Runtime Data.
[  OK  ] Started Security Auditing Service.
         Starting Update UTMP about System Boot/Shutdown...
[   18.575869] audit: type=1305 audit(1430303675.202:4): audit_pid=690 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1
[  OK  ] Started Update UTMP about System Boot/Shutdown.
[  OK  ] Reached target System Initialization.
[  OK  ] Reached target Paths.
[  OK  ] Listening on Open-iSCSI iscsiuio Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on Open-iSCSI iscsid Socket.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on CUPS Printing Service Sockets.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Timers.
         Starting Manage Sound Card State (restore and store)...
[  OK  ] Started Manage Sound Card State (restore and store).
[  OK  ] Reached target Basic System.
         Starting RealtimeKit Scheduling Policy Service...
         Starting Accounts Service...
         Starting Modem Manager...
         Starting NTP client/server...
         Starting Hardware RNG Entropy Gatherer Daemon...
[  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
         Starting Machine Check Exception Logging Daemon...
         Starting Login Service...
         Starting LSB: Init script for live image....
         Starting Avahi mDNS/DNS-SD Stack...
         Starting D-Bus System Message Bus...
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started RealtimeKit Scheduling Policy Service.
         Starting firewalld - dynamic firewall daemon...
[  OK  ] Started LSB: Init script for live image..
         Starting ABRT Automated Bug Reporting Tool...
[  OK  ] Started ABRT Automated Bug Reporting Tool.
         Starting Harvest vmcores for ABRT...
         Starting Install ABRT coredump hook...
         Starting ABRT kernel log watcher...
[  OK  ] Started ABRT kernel log watcher.
         Starting SYSV: Late init script for live image....
[  OK  ] Started Login Service.
[  OK  ] Started SYSV: Late init script for live image..
         Starting Authorization Manager...
[  OK  ] Started Machine Check Exception Logging Daemon.
[  OK  ] Started Install ABRT coredump hook.
[  OK  ] Started NTP client/server.
[  OK  ] Started Authorization Manager.
[  OK  ] Started Accounts Service.
[  OK  ] Started Modem Manager.
[   20.371933] tty_warn_deprecated_flags: 'ModemManager' is using deprecated serial flags (with no effect): 00008000
[   22.012159] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
[  OK  ] Started Harvest vmcores for ABRT.
[   23.305909] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   25.004969] Ebtables v2.0 registered
[   25.086780] 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...
[   26.002526] cfg80211: Calling CRDA to update world regulatory domain
[  OK  ] Started Network Manager.
[  OK  ] Reached target Network.
[  OK  ] Reached target Remote File Systems (Pre).


[-- Attachment #3: Type: text/plain, Size: 143 bytes --]

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-04 16:23                 ` Joerg Roedel
  0 siblings, 0 replies; 99+ messages in thread
From: Joerg Roedel @ 2015-05-04 16:23 UTC (permalink / raw)
  To: Dave Young
  Cc: Baoquan He, Li, ZhenHua, dwmw2, indou.takao, vgoyal, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright

On Fri, Apr 24, 2015 at 04:49:57PM +0800, Dave Young wrote:
> I'm more than happy to see this issue can be fixed in the patchset, I
> do not agree to add the code there with such problems. OTOH, for now
> seems there's no way to fix it.

And that's the point. We discuss this issue and possible solutions for
years by now, and what ZhenHua implemented is what we agreed to be the
best-effort on what we can do in the kdump case with IOMMU enabled.

Of course there are still failure scenarios left, but that is not
different from systems without any IOMMU.


	Joerg


^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-04 16:23                 ` Joerg Roedel
  0 siblings, 0 replies; 99+ messages in thread
From: Joerg Roedel @ 2015-05-04 16:23 UTC (permalink / raw)
  To: Dave Young
  Cc: Baoquan He, tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Li, ZhenHua,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

On Fri, Apr 24, 2015 at 04:49:57PM +0800, Dave Young wrote:
> I'm more than happy to see this issue can be fixed in the patchset, I
> do not agree to add the code there with such problems. OTOH, for now
> seems there's no way to fix it.

And that's the point. We discuss this issue and possible solutions for
years by now, and what ZhenHua implemented is what we agreed to be the
best-effort on what we can do in the kdump case with IOMMU enabled.

Of course there are still failure scenarios left, but that is not
different from systems without any IOMMU.


	Joerg

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
  2015-05-04 16:23                 ` Joerg Roedel
@ 2015-05-05  6:14                   ` Dave Young
  -1 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-05-05  6:14 UTC (permalink / raw)
  To: Joerg Roedel
  Cc: Baoquan He, Li, ZhenHua, dwmw2, indou.takao, vgoyal, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright

On 05/04/15 at 06:23pm, Joerg Roedel wrote:
> On Fri, Apr 24, 2015 at 04:49:57PM +0800, Dave Young wrote:
> > I'm more than happy to see this issue can be fixed in the patchset, I
> > do not agree to add the code there with such problems. OTOH, for now
> > seems there's no way to fix it.
> 
> And that's the point. We discuss this issue and possible solutions for
> years by now, and what ZhenHua implemented is what we agreed to be the
> best-effort on what we can do in the kdump case with IOMMU enabled.
> 
> Of course there are still failure scenarios left, but that is not
> different from systems without any IOMMU.

The failure is nothing different, but as I said in another reply the
difference is we could use corrupted data to possiblly cause more failure. 

Thanks
Dave

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-05  6:14                   ` Dave Young
  0 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-05-05  6:14 UTC (permalink / raw)
  To: Joerg Roedel
  Cc: alex.williamson, indou.takao, Baoquan He, tom.vaden, rwright,
	linux-pci, kexec, linux-kernel, lisa.mitchell, jerry.hoemann,
	iommu, Li, ZhenHua, ddutile, doug.hatch, ishii.hironobu,
	bhelgaas, billsumnerlinux, li.zhang6, dwmw2, vgoyal

On 05/04/15 at 06:23pm, Joerg Roedel wrote:
> On Fri, Apr 24, 2015 at 04:49:57PM +0800, Dave Young wrote:
> > I'm more than happy to see this issue can be fixed in the patchset, I
> > do not agree to add the code there with such problems. OTOH, for now
> > seems there's no way to fix it.
> 
> And that's the point. We discuss this issue and possible solutions for
> years by now, and what ZhenHua implemented is what we agreed to be the
> best-effort on what we can do in the kdump case with IOMMU enabled.
> 
> Of course there are still failure scenarios left, but that is not
> different from systems without any IOMMU.

The failure is nothing different, but as I said in another reply the
difference is we could use corrupted data to possiblly cause more failure. 

Thanks
Dave

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-05 15:31                     ` Joerg Roedel
  0 siblings, 0 replies; 99+ messages in thread
From: Joerg Roedel @ 2015-05-05 15:31 UTC (permalink / raw)
  To: Dave Young
  Cc: Baoquan He, Li, ZhenHua, dwmw2, indou.takao, vgoyal, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright

On Tue, May 05, 2015 at 02:14:23PM +0800, Dave Young wrote:
> The failure is nothing different, but as I said in another reply the
> difference is we could use corrupted data to possiblly cause more failure.

I still fail to see how things can get more worse than they already are
by reusing the old data (we just reuse it, we do not modify anything
there). Do you have any specific scenario in mind?


	Joerg


^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-05 15:31                     ` Joerg Roedel
  0 siblings, 0 replies; 99+ messages in thread
From: Joerg Roedel @ 2015-05-05 15:31 UTC (permalink / raw)
  To: Dave Young
  Cc: Baoquan He, tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Li, ZhenHua,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

On Tue, May 05, 2015 at 02:14:23PM +0800, Dave Young wrote:
> The failure is nothing different, but as I said in another reply the
> difference is we could use corrupted data to possiblly cause more failure.

I still fail to see how things can get more worse than they already are
by reusing the old data (we just reuse it, we do not modify anything
there). Do you have any specific scenario in mind?


	Joerg

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-06  1:51                       ` Dave Young
  0 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-05-06  1:51 UTC (permalink / raw)
  To: Joerg Roedel
  Cc: Baoquan He, Li, ZhenHua, dwmw2, indou.takao, vgoyal, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright

On 05/05/15 at 05:31pm, Joerg Roedel wrote:
> On Tue, May 05, 2015 at 02:14:23PM +0800, Dave Young wrote:
> > The failure is nothing different, but as I said in another reply the
> > difference is we could use corrupted data to possiblly cause more failure.
> 
> I still fail to see how things can get more worse than they already are
> by reusing the old data (we just reuse it, we do not modify anything

DMA write will modify system ram, if the old data is corrupted  it is possible
that DMA operation modify wrong ram regions because of wrong mapping.
Am I missing something and is it not possible?

Thanks
Dave

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-06  1:51                       ` Dave Young
  0 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-05-06  1:51 UTC (permalink / raw)
  To: Joerg Roedel
  Cc: Baoquan He, tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Li, ZhenHua,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

On 05/05/15 at 05:31pm, Joerg Roedel wrote:
> On Tue, May 05, 2015 at 02:14:23PM +0800, Dave Young wrote:
> > The failure is nothing different, but as I said in another reply the
> > difference is we could use corrupted data to possiblly cause more failure.
> 
> I still fail to see how things can get more worse than they already are
> by reusing the old data (we just reuse it, we do not modify anything

DMA write will modify system ram, if the old data is corrupted  it is possible
that DMA operation modify wrong ram regions because of wrong mapping.
Am I missing something and is it not possible?

Thanks
Dave

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-06  1:51                       ` Dave Young
  0 siblings, 0 replies; 99+ messages in thread
From: Dave Young @ 2015-05-06  1:51 UTC (permalink / raw)
  To: Joerg Roedel
  Cc: alex.williamson, indou.takao, Baoquan He, tom.vaden, rwright,
	linux-pci, kexec, linux-kernel, lisa.mitchell, jerry.hoemann,
	iommu, Li, ZhenHua, ddutile, doug.hatch, ishii.hironobu,
	bhelgaas, billsumnerlinux, li.zhang6, dwmw2, vgoyal

On 05/05/15 at 05:31pm, Joerg Roedel wrote:
> On Tue, May 05, 2015 at 02:14:23PM +0800, Dave Young wrote:
> > The failure is nothing different, but as I said in another reply the
> > difference is we could use corrupted data to possiblly cause more failure.
> 
> I still fail to see how things can get more worse than they already are
> by reusing the old data (we just reuse it, we do not modify anything

DMA write will modify system ram, if the old data is corrupted  it is possible
that DMA operation modify wrong ram regions because of wrong mapping.
Am I missing something and is it not possible?

Thanks
Dave

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-06  2:37                         ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-05-06  2:37 UTC (permalink / raw)
  To: Dave Young
  Cc: Joerg Roedel, Baoquan He, dwmw2, indou.takao, vgoyal, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright, Li, ZhenHua

Dave,
This patchset will only write root tables in old kernel,  if it is 
corrupted, faults will also happen in old kernel, and hardware would 
mark it. So things will not go worse..

Thanks
Zhenhua
On 05/06/2015 09:51 AM, Dave Young wrote:
> On 05/05/15 at 05:31pm, Joerg Roedel wrote:
>> On Tue, May 05, 2015 at 02:14:23PM +0800, Dave Young wrote:
>>> The failure is nothing different, but as I said in another reply the
>>> difference is we could use corrupted data to possiblly cause more failure.
>>
>> I still fail to see how things can get more worse than they already are
>> by reusing the old data (we just reuse it, we do not modify anything
>
> DMA write will modify system ram, if the old data is corrupted  it is possible
> that DMA operation modify wrong ram regions because of wrong mapping.
> Am I missing something and is it not possible?
>
> Thanks
> Dave
>


^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-06  2:37                         ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-05-06  2:37 UTC (permalink / raw)
  To: Dave Young
  Cc: Baoquan He, tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Li, ZhenHua,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

Dave,
This patchset will only write root tables in old kernel,  if it is 
corrupted, faults will also happen in old kernel, and hardware would 
mark it. So things will not go worse..

Thanks
Zhenhua
On 05/06/2015 09:51 AM, Dave Young wrote:
> On 05/05/15 at 05:31pm, Joerg Roedel wrote:
>> On Tue, May 05, 2015 at 02:14:23PM +0800, Dave Young wrote:
>>> The failure is nothing different, but as I said in another reply the
>>> difference is we could use corrupted data to possiblly cause more failure.
>>
>> I still fail to see how things can get more worse than they already are
>> by reusing the old data (we just reuse it, we do not modify anything
>
> DMA write will modify system ram, if the old data is corrupted  it is possible
> that DMA operation modify wrong ram regions because of wrong mapping.
> Am I missing something and is it not possible?
>
> Thanks
> Dave
>

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-06  2:37                         ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-05-06  2:37 UTC (permalink / raw)
  To: Dave Young
  Cc: alex.williamson, indou.takao, Baoquan He, tom.vaden, rwright,
	linux-pci, Joerg Roedel, kexec, linux-kernel, lisa.mitchell,
	jerry.hoemann, iommu, Li, ZhenHua, ddutile, doug.hatch,
	ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6, dwmw2,
	vgoyal

Dave,
This patchset will only write root tables in old kernel,  if it is 
corrupted, faults will also happen in old kernel, and hardware would 
mark it. So things will not go worse..

Thanks
Zhenhua
On 05/06/2015 09:51 AM, Dave Young wrote:
> On 05/05/15 at 05:31pm, Joerg Roedel wrote:
>> On Tue, May 05, 2015 at 02:14:23PM +0800, Dave Young wrote:
>>> The failure is nothing different, but as I said in another reply the
>>> difference is we could use corrupted data to possiblly cause more failure.
>>
>> I still fail to see how things can get more worse than they already are
>> by reusing the old data (we just reuse it, we do not modify anything
>
> DMA write will modify system ram, if the old data is corrupted  it is possible
> that DMA operation modify wrong ram regions because of wrong mapping.
> Am I missing something and is it not possible?
>
> Thanks
> Dave
>


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-06  8:25                         ` Joerg Roedel
  0 siblings, 0 replies; 99+ messages in thread
From: Joerg Roedel @ 2015-05-06  8:25 UTC (permalink / raw)
  To: Dave Young
  Cc: Baoquan He, Li, ZhenHua, dwmw2, indou.takao, vgoyal, iommu,
	linux-kernel, linux-pci, kexec, alex.williamson, ddutile,
	ishii.hironobu, bhelgaas, doug.hatch, jerry.hoemann, tom.vaden,
	li.zhang6, lisa.mitchell, billsumnerlinux, rwright

On Wed, May 06, 2015 at 09:51:35AM +0800, Dave Young wrote:
> DMA write will modify system ram, if the old data is corrupted  it is possible
> that DMA operation modify wrong ram regions because of wrong mapping.
> Am I missing something and is it not possible?

This might have happened already before the kdump kernel even boots.
Also, if there is no IOMMU, this can happen as well. This (unlikely
but possible) situation doesn't make things worse.


	Joerg


^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-06  8:25                         ` Joerg Roedel
  0 siblings, 0 replies; 99+ messages in thread
From: Joerg Roedel @ 2015-05-06  8:25 UTC (permalink / raw)
  To: Dave Young
  Cc: Baoquan He, tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Li, ZhenHua,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

On Wed, May 06, 2015 at 09:51:35AM +0800, Dave Young wrote:
> DMA write will modify system ram, if the old data is corrupted  it is possible
> that DMA operation modify wrong ram regions because of wrong mapping.
> Am I missing something and is it not possible?

This might have happened already before the kdump kernel even boots.
Also, if there is no IOMMU, this can happen as well. This (unlikely
but possible) situation doesn't make things worse.


	Joerg

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 04/10] iommu/vt-d: functions to copy data from old mem
  2015-04-10  8:42   ` Li, Zhen-Hua
@ 2015-05-07  7:49     ` Baoquan He
  -1 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-05-07  7:49 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: dwmw2, indou.takao, joro, vgoyal, dyoung, iommu, linux-kernel,
	linux-pci, kexec, alex.williamson, ddutile, ishii.hironobu,
	bhelgaas, doug.hatch, jerry.hoemann, tom.vaden, li.zhang6,
	lisa.mitchell, billsumnerlinux, rwright

On 04/10/15 at 04:42pm, Li, Zhen-Hua wrote:
> Add some functions to copy the data from old kernel.
> These functions are used to copy context tables and page tables.
> 
> To avoid calling iounmap between spin_lock_irqsave and spin_unlock_irqrestore,
> use a link here, store the pointers , and then use iounmap to free them in
> another place.
> 
> Li, Zhen-hua:
>     The functions and logics.
> 
> Takao Indoh:
>     Check if pfn is ram:
>         if (page_is_ram(pfn))
> 
> Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
> Signed-off-by: Takao Indoh <indou.takao@jp.fujitsu.com>
> ---
>  drivers/iommu/intel-iommu.c | 102 ++++++++++++++++++++++++++++++++++++++++++++
>  include/linux/intel-iommu.h |   6 +++
>  2 files changed, 108 insertions(+)
> 
> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
> index ff5ac04..5ba403a 100644
> --- a/drivers/iommu/intel-iommu.c
> +++ b/drivers/iommu/intel-iommu.c
> @@ -373,6 +373,17 @@ static struct context_entry *device_to_existing_context_entry(
>  				struct intel_iommu *iommu,
>  				u8 bus, u8 devfn);
>  
> +/*
> + * A structure used to store the address allocated by ioremap();
> + * The we need to call iounmap() to free them out of spin_lock_irqsave/unlock;
> + */
> +struct iommu_remapped_entry {
> +	struct list_head list;
> +	void __iomem *mem;
> +};
> +static LIST_HEAD(__iommu_remapped_mem);
> +static DEFINE_MUTEX(__iommu_mem_list_lock);
> +
>  
>  /*
>   * This domain is a statically identity mapping domain.
> @@ -4817,3 +4828,94 @@ static struct context_entry *device_to_existing_context_entry(
>  	return ret;
>  }
>  
> +/*
> + * Copy memory from a physically-addressed area into a virtually-addressed area
> + */

I don't find where __iommu_load_from_oldmem is called. Obsolete code of
this patch?

> +int __iommu_load_from_oldmem(void *to, unsigned long from, unsigned long size)
> +{
> +	unsigned long pfn;		/* Page Frame Number */
> +	size_t csize = (size_t)size;	/* Num(bytes to copy) */
> +	unsigned long offset;		/* Lower 12 bits of to */
> +	void __iomem *virt_mem;
> +	struct iommu_remapped_entry *mapped;
> +
> +	pfn = from >> VTD_PAGE_SHIFT;
> +	offset = from & (~VTD_PAGE_MASK);
> +
> +	if (page_is_ram(pfn)) {
> +		memcpy(to, pfn_to_kaddr(pfn) + offset, csize);
> +	} else{
> +
> +		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
> +				GFP_KERNEL);
> +		if (!mapped)
> +			return -ENOMEM;
> +
> +		virt_mem = ioremap_cache((unsigned long)from, size);
> +		if (!virt_mem) {
> +			kfree(mapped);
> +			return -ENOMEM;
> +		}
> +		memcpy(to, virt_mem, size);
> +
> +		mutex_lock(&__iommu_mem_list_lock);
> +		mapped->mem = virt_mem;
> +		list_add_tail(&mapped->list, &__iommu_remapped_mem);
> +		mutex_unlock(&__iommu_mem_list_lock);
> +	}
> +	return size;
> +}
> +
> +/*
> + * Copy memory from a virtually-addressed area into a physically-addressed area
> + */
> +int __iommu_save_to_oldmem(unsigned long to, void *from, unsigned long size)
> +{
> +	unsigned long pfn;		/* Page Frame Number */
> +	size_t csize = (size_t)size;	/* Num(bytes to copy) */
> +	unsigned long offset;		/* Lower 12 bits of to */
> +	void __iomem *virt_mem;
> +	struct iommu_remapped_entry *mapped;
> +
> +	pfn = to >> VTD_PAGE_SHIFT;
> +	offset = to & (~VTD_PAGE_MASK);
> +
> +	if (page_is_ram(pfn)) {
> +		memcpy(pfn_to_kaddr(pfn) + offset, from, csize);
> +	} else{
> +		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
> +				GFP_KERNEL);
> +		if (!mapped)
> +			return -ENOMEM;
> +
> +		virt_mem = ioremap_cache((unsigned long)to, size);
> +		if (!virt_mem) {
> +			kfree(mapped);
> +			return -ENOMEM;
> +		}
> +		memcpy(virt_mem, from, size);
> +		mutex_lock(&__iommu_mem_list_lock);
> +		mapped->mem = virt_mem;
> +		list_add_tail(&mapped->list, &__iommu_remapped_mem);
> +		mutex_unlock(&__iommu_mem_list_lock);
> +	}
> +	return size;
> +}
> +
> +/*
> + * Free the mapped memory for ioremap;
> + */
> +int __iommu_free_mapped_mem(void)
> +{
> +	struct iommu_remapped_entry *mem_entry, *tmp;
> +
> +	mutex_lock(&__iommu_mem_list_lock);
> +	list_for_each_entry_safe(mem_entry, tmp, &__iommu_remapped_mem, list) {
> +		iounmap(mem_entry->mem);
> +		list_del(&mem_entry->list);
> +		kfree(mem_entry);
> +	}
> +	mutex_unlock(&__iommu_mem_list_lock);
> +	return 0;
> +}
> +
> diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
> index a65208a..4bca7b5 100644
> --- a/include/linux/intel-iommu.h
> +++ b/include/linux/intel-iommu.h
> @@ -368,4 +368,10 @@ extern int dmar_ir_support(void);
>  
>  extern const struct attribute_group *intel_iommu_groups[];
>  
> +extern int __iommu_load_from_oldmem(void *to, unsigned long from,
> +					unsigned long size);
> +extern int __iommu_save_to_oldmem(unsigned long to, void *from,
> +					unsigned long size);
> +extern int __iommu_free_mapped_mem(void);
> +
>  #endif
> -- 
> 2.0.0-rc0
> 

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 04/10] iommu/vt-d: functions to copy data from old mem
@ 2015-05-07  7:49     ` Baoquan He
  0 siblings, 0 replies; 99+ messages in thread
From: Baoquan He @ 2015-05-07  7:49 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: alex.williamson, indou.takao, tom.vaden, rwright, dwmw2, joro,
	kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	ddutile, doug.hatch, ishii.hironobu, linux-pci, bhelgaas,
	billsumnerlinux, li.zhang6, dyoung, vgoyal

On 04/10/15 at 04:42pm, Li, Zhen-Hua wrote:
> Add some functions to copy the data from old kernel.
> These functions are used to copy context tables and page tables.
> 
> To avoid calling iounmap between spin_lock_irqsave and spin_unlock_irqrestore,
> use a link here, store the pointers , and then use iounmap to free them in
> another place.
> 
> Li, Zhen-hua:
>     The functions and logics.
> 
> Takao Indoh:
>     Check if pfn is ram:
>         if (page_is_ram(pfn))
> 
> Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
> Signed-off-by: Takao Indoh <indou.takao@jp.fujitsu.com>
> ---
>  drivers/iommu/intel-iommu.c | 102 ++++++++++++++++++++++++++++++++++++++++++++
>  include/linux/intel-iommu.h |   6 +++
>  2 files changed, 108 insertions(+)
> 
> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
> index ff5ac04..5ba403a 100644
> --- a/drivers/iommu/intel-iommu.c
> +++ b/drivers/iommu/intel-iommu.c
> @@ -373,6 +373,17 @@ static struct context_entry *device_to_existing_context_entry(
>  				struct intel_iommu *iommu,
>  				u8 bus, u8 devfn);
>  
> +/*
> + * A structure used to store the address allocated by ioremap();
> + * The we need to call iounmap() to free them out of spin_lock_irqsave/unlock;
> + */
> +struct iommu_remapped_entry {
> +	struct list_head list;
> +	void __iomem *mem;
> +};
> +static LIST_HEAD(__iommu_remapped_mem);
> +static DEFINE_MUTEX(__iommu_mem_list_lock);
> +
>  
>  /*
>   * This domain is a statically identity mapping domain.
> @@ -4817,3 +4828,94 @@ static struct context_entry *device_to_existing_context_entry(
>  	return ret;
>  }
>  
> +/*
> + * Copy memory from a physically-addressed area into a virtually-addressed area
> + */

I don't find where __iommu_load_from_oldmem is called. Obsolete code of
this patch?

> +int __iommu_load_from_oldmem(void *to, unsigned long from, unsigned long size)
> +{
> +	unsigned long pfn;		/* Page Frame Number */
> +	size_t csize = (size_t)size;	/* Num(bytes to copy) */
> +	unsigned long offset;		/* Lower 12 bits of to */
> +	void __iomem *virt_mem;
> +	struct iommu_remapped_entry *mapped;
> +
> +	pfn = from >> VTD_PAGE_SHIFT;
> +	offset = from & (~VTD_PAGE_MASK);
> +
> +	if (page_is_ram(pfn)) {
> +		memcpy(to, pfn_to_kaddr(pfn) + offset, csize);
> +	} else{
> +
> +		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
> +				GFP_KERNEL);
> +		if (!mapped)
> +			return -ENOMEM;
> +
> +		virt_mem = ioremap_cache((unsigned long)from, size);
> +		if (!virt_mem) {
> +			kfree(mapped);
> +			return -ENOMEM;
> +		}
> +		memcpy(to, virt_mem, size);
> +
> +		mutex_lock(&__iommu_mem_list_lock);
> +		mapped->mem = virt_mem;
> +		list_add_tail(&mapped->list, &__iommu_remapped_mem);
> +		mutex_unlock(&__iommu_mem_list_lock);
> +	}
> +	return size;
> +}
> +
> +/*
> + * Copy memory from a virtually-addressed area into a physically-addressed area
> + */
> +int __iommu_save_to_oldmem(unsigned long to, void *from, unsigned long size)
> +{
> +	unsigned long pfn;		/* Page Frame Number */
> +	size_t csize = (size_t)size;	/* Num(bytes to copy) */
> +	unsigned long offset;		/* Lower 12 bits of to */
> +	void __iomem *virt_mem;
> +	struct iommu_remapped_entry *mapped;
> +
> +	pfn = to >> VTD_PAGE_SHIFT;
> +	offset = to & (~VTD_PAGE_MASK);
> +
> +	if (page_is_ram(pfn)) {
> +		memcpy(pfn_to_kaddr(pfn) + offset, from, csize);
> +	} else{
> +		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
> +				GFP_KERNEL);
> +		if (!mapped)
> +			return -ENOMEM;
> +
> +		virt_mem = ioremap_cache((unsigned long)to, size);
> +		if (!virt_mem) {
> +			kfree(mapped);
> +			return -ENOMEM;
> +		}
> +		memcpy(virt_mem, from, size);
> +		mutex_lock(&__iommu_mem_list_lock);
> +		mapped->mem = virt_mem;
> +		list_add_tail(&mapped->list, &__iommu_remapped_mem);
> +		mutex_unlock(&__iommu_mem_list_lock);
> +	}
> +	return size;
> +}
> +
> +/*
> + * Free the mapped memory for ioremap;
> + */
> +int __iommu_free_mapped_mem(void)
> +{
> +	struct iommu_remapped_entry *mem_entry, *tmp;
> +
> +	mutex_lock(&__iommu_mem_list_lock);
> +	list_for_each_entry_safe(mem_entry, tmp, &__iommu_remapped_mem, list) {
> +		iounmap(mem_entry->mem);
> +		list_del(&mem_entry->list);
> +		kfree(mem_entry);
> +	}
> +	mutex_unlock(&__iommu_mem_list_lock);
> +	return 0;
> +}
> +
> diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
> index a65208a..4bca7b5 100644
> --- a/include/linux/intel-iommu.h
> +++ b/include/linux/intel-iommu.h
> @@ -368,4 +368,10 @@ extern int dmar_ir_support(void);
>  
>  extern const struct attribute_group *intel_iommu_groups[];
>  
> +extern int __iommu_load_from_oldmem(void *to, unsigned long from,
> +					unsigned long size);
> +extern int __iommu_save_to_oldmem(unsigned long to, void *from,
> +					unsigned long size);
> +extern int __iommu_free_mapped_mem(void);
> +
>  #endif
> -- 
> 2.0.0-rc0
> 

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 04/10] iommu/vt-d: functions to copy data from old mem
@ 2015-05-07  8:33       ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-05-07  8:33 UTC (permalink / raw)
  To: Baoquan He
  Cc: dwmw2, indou.takao, joro, vgoyal, dyoung, iommu, linux-kernel,
	linux-pci, kexec, alex.williamson, ddutile, ishii.hironobu,
	bhelgaas, doug.hatch, jerry.hoemann, tom.vaden, li.zhang6,
	lisa.mitchell, billsumnerlinux, rwright

It is called in
static int copy_root_entry_table(struct intel_iommu *iommu);


On 05/07/2015 03:49 PM, Baoquan He wrote:
> On 04/10/15 at 04:42pm, Li, Zhen-Hua wrote:
>> Add some functions to copy the data from old kernel.
>> These functions are used to copy context tables and page tables.
>>
>> To avoid calling iounmap between spin_lock_irqsave and spin_unlock_irqrestore,
>> use a link here, store the pointers , and then use iounmap to free them in
>> another place.
>>
>> Li, Zhen-hua:
>>      The functions and logics.
>>
>> Takao Indoh:
>>      Check if pfn is ram:
>>          if (page_is_ram(pfn))
>>
>> Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
>> Signed-off-by: Takao Indoh <indou.takao@jp.fujitsu.com>
>> ---
>>   drivers/iommu/intel-iommu.c | 102 ++++++++++++++++++++++++++++++++++++++++++++
>>   include/linux/intel-iommu.h |   6 +++
>>   2 files changed, 108 insertions(+)
>>
>> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
>> index ff5ac04..5ba403a 100644
>> --- a/drivers/iommu/intel-iommu.c
>> +++ b/drivers/iommu/intel-iommu.c
>> @@ -373,6 +373,17 @@ static struct context_entry *device_to_existing_context_entry(
>>   				struct intel_iommu *iommu,
>>   				u8 bus, u8 devfn);
>>
>> +/*
>> + * A structure used to store the address allocated by ioremap();
>> + * The we need to call iounmap() to free them out of spin_lock_irqsave/unlock;
>> + */
>> +struct iommu_remapped_entry {
>> +	struct list_head list;
>> +	void __iomem *mem;
>> +};
>> +static LIST_HEAD(__iommu_remapped_mem);
>> +static DEFINE_MUTEX(__iommu_mem_list_lock);
>> +
>>
>>   /*
>>    * This domain is a statically identity mapping domain.
>> @@ -4817,3 +4828,94 @@ static struct context_entry *device_to_existing_context_entry(
>>   	return ret;
>>   }
>>
>> +/*
>> + * Copy memory from a physically-addressed area into a virtually-addressed area
>> + */
>
> I don't find where __iommu_load_from_oldmem is called. Obsolete code of
> this patch?
>
>> +int __iommu_load_from_oldmem(void *to, unsigned long from, unsigned long size)
>> +{
>> +	unsigned long pfn;		/* Page Frame Number */
>> +	size_t csize = (size_t)size;	/* Num(bytes to copy) */
>> +	unsigned long offset;		/* Lower 12 bits of to */
>> +	void __iomem *virt_mem;
>> +	struct iommu_remapped_entry *mapped;
>> +
>> +	pfn = from >> VTD_PAGE_SHIFT;
>> +	offset = from & (~VTD_PAGE_MASK);
>> +
>> +	if (page_is_ram(pfn)) {
>> +		memcpy(to, pfn_to_kaddr(pfn) + offset, csize);
>> +	} else{
>> +
>> +		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
>> +				GFP_KERNEL);
>> +		if (!mapped)
>> +			return -ENOMEM;
>> +
>> +		virt_mem = ioremap_cache((unsigned long)from, size);
>> +		if (!virt_mem) {
>> +			kfree(mapped);
>> +			return -ENOMEM;
>> +		}
>> +		memcpy(to, virt_mem, size);
>> +
>> +		mutex_lock(&__iommu_mem_list_lock);
>> +		mapped->mem = virt_mem;
>> +		list_add_tail(&mapped->list, &__iommu_remapped_mem);
>> +		mutex_unlock(&__iommu_mem_list_lock);
>> +	}
>> +	return size;
>> +}
>> +
>> +/*
>> + * Copy memory from a virtually-addressed area into a physically-addressed area
>> + */
>> +int __iommu_save_to_oldmem(unsigned long to, void *from, unsigned long size)
>> +{
>> +	unsigned long pfn;		/* Page Frame Number */
>> +	size_t csize = (size_t)size;	/* Num(bytes to copy) */
>> +	unsigned long offset;		/* Lower 12 bits of to */
>> +	void __iomem *virt_mem;
>> +	struct iommu_remapped_entry *mapped;
>> +
>> +	pfn = to >> VTD_PAGE_SHIFT;
>> +	offset = to & (~VTD_PAGE_MASK);
>> +
>> +	if (page_is_ram(pfn)) {
>> +		memcpy(pfn_to_kaddr(pfn) + offset, from, csize);
>> +	} else{
>> +		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
>> +				GFP_KERNEL);
>> +		if (!mapped)
>> +			return -ENOMEM;
>> +
>> +		virt_mem = ioremap_cache((unsigned long)to, size);
>> +		if (!virt_mem) {
>> +			kfree(mapped);
>> +			return -ENOMEM;
>> +		}
>> +		memcpy(virt_mem, from, size);
>> +		mutex_lock(&__iommu_mem_list_lock);
>> +		mapped->mem = virt_mem;
>> +		list_add_tail(&mapped->list, &__iommu_remapped_mem);
>> +		mutex_unlock(&__iommu_mem_list_lock);
>> +	}
>> +	return size;
>> +}
>> +
>> +/*
>> + * Free the mapped memory for ioremap;
>> + */
>> +int __iommu_free_mapped_mem(void)
>> +{
>> +	struct iommu_remapped_entry *mem_entry, *tmp;
>> +
>> +	mutex_lock(&__iommu_mem_list_lock);
>> +	list_for_each_entry_safe(mem_entry, tmp, &__iommu_remapped_mem, list) {
>> +		iounmap(mem_entry->mem);
>> +		list_del(&mem_entry->list);
>> +		kfree(mem_entry);
>> +	}
>> +	mutex_unlock(&__iommu_mem_list_lock);
>> +	return 0;
>> +}
>> +
>> diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
>> index a65208a..4bca7b5 100644
>> --- a/include/linux/intel-iommu.h
>> +++ b/include/linux/intel-iommu.h
>> @@ -368,4 +368,10 @@ extern int dmar_ir_support(void);
>>
>>   extern const struct attribute_group *intel_iommu_groups[];
>>
>> +extern int __iommu_load_from_oldmem(void *to, unsigned long from,
>> +					unsigned long size);
>> +extern int __iommu_save_to_oldmem(unsigned long to, void *from,
>> +					unsigned long size);
>> +extern int __iommu_free_mapped_mem(void);
>> +
>>   #endif
>> --
>> 2.0.0-rc0
>>


^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 04/10] iommu/vt-d: functions to copy data from old mem
@ 2015-05-07  8:33       ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-05-07  8:33 UTC (permalink / raw)
  To: Baoquan He
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	linux-pci-u79uwXL29TY76Z2rM5mHXA,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dyoung-H+wXaHxf7aLQT0dZR+AlfA, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

It is called in
static int copy_root_entry_table(struct intel_iommu *iommu);


On 05/07/2015 03:49 PM, Baoquan He wrote:
> On 04/10/15 at 04:42pm, Li, Zhen-Hua wrote:
>> Add some functions to copy the data from old kernel.
>> These functions are used to copy context tables and page tables.
>>
>> To avoid calling iounmap between spin_lock_irqsave and spin_unlock_irqrestore,
>> use a link here, store the pointers , and then use iounmap to free them in
>> another place.
>>
>> Li, Zhen-hua:
>>      The functions and logics.
>>
>> Takao Indoh:
>>      Check if pfn is ram:
>>          if (page_is_ram(pfn))
>>
>> Signed-off-by: Li, Zhen-Hua <zhen-hual-VXdhtT5mjnY@public.gmane.org>
>> Signed-off-by: Takao Indoh <indou.takao-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
>> ---
>>   drivers/iommu/intel-iommu.c | 102 ++++++++++++++++++++++++++++++++++++++++++++
>>   include/linux/intel-iommu.h |   6 +++
>>   2 files changed, 108 insertions(+)
>>
>> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
>> index ff5ac04..5ba403a 100644
>> --- a/drivers/iommu/intel-iommu.c
>> +++ b/drivers/iommu/intel-iommu.c
>> @@ -373,6 +373,17 @@ static struct context_entry *device_to_existing_context_entry(
>>   				struct intel_iommu *iommu,
>>   				u8 bus, u8 devfn);
>>
>> +/*
>> + * A structure used to store the address allocated by ioremap();
>> + * The we need to call iounmap() to free them out of spin_lock_irqsave/unlock;
>> + */
>> +struct iommu_remapped_entry {
>> +	struct list_head list;
>> +	void __iomem *mem;
>> +};
>> +static LIST_HEAD(__iommu_remapped_mem);
>> +static DEFINE_MUTEX(__iommu_mem_list_lock);
>> +
>>
>>   /*
>>    * This domain is a statically identity mapping domain.
>> @@ -4817,3 +4828,94 @@ static struct context_entry *device_to_existing_context_entry(
>>   	return ret;
>>   }
>>
>> +/*
>> + * Copy memory from a physically-addressed area into a virtually-addressed area
>> + */
>
> I don't find where __iommu_load_from_oldmem is called. Obsolete code of
> this patch?
>
>> +int __iommu_load_from_oldmem(void *to, unsigned long from, unsigned long size)
>> +{
>> +	unsigned long pfn;		/* Page Frame Number */
>> +	size_t csize = (size_t)size;	/* Num(bytes to copy) */
>> +	unsigned long offset;		/* Lower 12 bits of to */
>> +	void __iomem *virt_mem;
>> +	struct iommu_remapped_entry *mapped;
>> +
>> +	pfn = from >> VTD_PAGE_SHIFT;
>> +	offset = from & (~VTD_PAGE_MASK);
>> +
>> +	if (page_is_ram(pfn)) {
>> +		memcpy(to, pfn_to_kaddr(pfn) + offset, csize);
>> +	} else{
>> +
>> +		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
>> +				GFP_KERNEL);
>> +		if (!mapped)
>> +			return -ENOMEM;
>> +
>> +		virt_mem = ioremap_cache((unsigned long)from, size);
>> +		if (!virt_mem) {
>> +			kfree(mapped);
>> +			return -ENOMEM;
>> +		}
>> +		memcpy(to, virt_mem, size);
>> +
>> +		mutex_lock(&__iommu_mem_list_lock);
>> +		mapped->mem = virt_mem;
>> +		list_add_tail(&mapped->list, &__iommu_remapped_mem);
>> +		mutex_unlock(&__iommu_mem_list_lock);
>> +	}
>> +	return size;
>> +}
>> +
>> +/*
>> + * Copy memory from a virtually-addressed area into a physically-addressed area
>> + */
>> +int __iommu_save_to_oldmem(unsigned long to, void *from, unsigned long size)
>> +{
>> +	unsigned long pfn;		/* Page Frame Number */
>> +	size_t csize = (size_t)size;	/* Num(bytes to copy) */
>> +	unsigned long offset;		/* Lower 12 bits of to */
>> +	void __iomem *virt_mem;
>> +	struct iommu_remapped_entry *mapped;
>> +
>> +	pfn = to >> VTD_PAGE_SHIFT;
>> +	offset = to & (~VTD_PAGE_MASK);
>> +
>> +	if (page_is_ram(pfn)) {
>> +		memcpy(pfn_to_kaddr(pfn) + offset, from, csize);
>> +	} else{
>> +		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
>> +				GFP_KERNEL);
>> +		if (!mapped)
>> +			return -ENOMEM;
>> +
>> +		virt_mem = ioremap_cache((unsigned long)to, size);
>> +		if (!virt_mem) {
>> +			kfree(mapped);
>> +			return -ENOMEM;
>> +		}
>> +		memcpy(virt_mem, from, size);
>> +		mutex_lock(&__iommu_mem_list_lock);
>> +		mapped->mem = virt_mem;
>> +		list_add_tail(&mapped->list, &__iommu_remapped_mem);
>> +		mutex_unlock(&__iommu_mem_list_lock);
>> +	}
>> +	return size;
>> +}
>> +
>> +/*
>> + * Free the mapped memory for ioremap;
>> + */
>> +int __iommu_free_mapped_mem(void)
>> +{
>> +	struct iommu_remapped_entry *mem_entry, *tmp;
>> +
>> +	mutex_lock(&__iommu_mem_list_lock);
>> +	list_for_each_entry_safe(mem_entry, tmp, &__iommu_remapped_mem, list) {
>> +		iounmap(mem_entry->mem);
>> +		list_del(&mem_entry->list);
>> +		kfree(mem_entry);
>> +	}
>> +	mutex_unlock(&__iommu_mem_list_lock);
>> +	return 0;
>> +}
>> +
>> diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
>> index a65208a..4bca7b5 100644
>> --- a/include/linux/intel-iommu.h
>> +++ b/include/linux/intel-iommu.h
>> @@ -368,4 +368,10 @@ extern int dmar_ir_support(void);
>>
>>   extern const struct attribute_group *intel_iommu_groups[];
>>
>> +extern int __iommu_load_from_oldmem(void *to, unsigned long from,
>> +					unsigned long size);
>> +extern int __iommu_save_to_oldmem(unsigned long to, void *from,
>> +					unsigned long size);
>> +extern int __iommu_free_mapped_mem(void);
>> +
>>   #endif
>> --
>> 2.0.0-rc0
>>

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 04/10] iommu/vt-d: functions to copy data from old mem
@ 2015-05-07  8:33       ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-05-07  8:33 UTC (permalink / raw)
  To: Baoquan He
  Cc: alex.williamson, indou.takao, tom.vaden, rwright, dwmw2, joro,
	kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	ddutile, doug.hatch, ishii.hironobu, linux-pci, bhelgaas,
	billsumnerlinux, li.zhang6, dyoung, vgoyal

It is called in
static int copy_root_entry_table(struct intel_iommu *iommu);


On 05/07/2015 03:49 PM, Baoquan He wrote:
> On 04/10/15 at 04:42pm, Li, Zhen-Hua wrote:
>> Add some functions to copy the data from old kernel.
>> These functions are used to copy context tables and page tables.
>>
>> To avoid calling iounmap between spin_lock_irqsave and spin_unlock_irqrestore,
>> use a link here, store the pointers , and then use iounmap to free them in
>> another place.
>>
>> Li, Zhen-hua:
>>      The functions and logics.
>>
>> Takao Indoh:
>>      Check if pfn is ram:
>>          if (page_is_ram(pfn))
>>
>> Signed-off-by: Li, Zhen-Hua <zhen-hual@hp.com>
>> Signed-off-by: Takao Indoh <indou.takao@jp.fujitsu.com>
>> ---
>>   drivers/iommu/intel-iommu.c | 102 ++++++++++++++++++++++++++++++++++++++++++++
>>   include/linux/intel-iommu.h |   6 +++
>>   2 files changed, 108 insertions(+)
>>
>> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
>> index ff5ac04..5ba403a 100644
>> --- a/drivers/iommu/intel-iommu.c
>> +++ b/drivers/iommu/intel-iommu.c
>> @@ -373,6 +373,17 @@ static struct context_entry *device_to_existing_context_entry(
>>   				struct intel_iommu *iommu,
>>   				u8 bus, u8 devfn);
>>
>> +/*
>> + * A structure used to store the address allocated by ioremap();
>> + * The we need to call iounmap() to free them out of spin_lock_irqsave/unlock;
>> + */
>> +struct iommu_remapped_entry {
>> +	struct list_head list;
>> +	void __iomem *mem;
>> +};
>> +static LIST_HEAD(__iommu_remapped_mem);
>> +static DEFINE_MUTEX(__iommu_mem_list_lock);
>> +
>>
>>   /*
>>    * This domain is a statically identity mapping domain.
>> @@ -4817,3 +4828,94 @@ static struct context_entry *device_to_existing_context_entry(
>>   	return ret;
>>   }
>>
>> +/*
>> + * Copy memory from a physically-addressed area into a virtually-addressed area
>> + */
>
> I don't find where __iommu_load_from_oldmem is called. Obsolete code of
> this patch?
>
>> +int __iommu_load_from_oldmem(void *to, unsigned long from, unsigned long size)
>> +{
>> +	unsigned long pfn;		/* Page Frame Number */
>> +	size_t csize = (size_t)size;	/* Num(bytes to copy) */
>> +	unsigned long offset;		/* Lower 12 bits of to */
>> +	void __iomem *virt_mem;
>> +	struct iommu_remapped_entry *mapped;
>> +
>> +	pfn = from >> VTD_PAGE_SHIFT;
>> +	offset = from & (~VTD_PAGE_MASK);
>> +
>> +	if (page_is_ram(pfn)) {
>> +		memcpy(to, pfn_to_kaddr(pfn) + offset, csize);
>> +	} else{
>> +
>> +		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
>> +				GFP_KERNEL);
>> +		if (!mapped)
>> +			return -ENOMEM;
>> +
>> +		virt_mem = ioremap_cache((unsigned long)from, size);
>> +		if (!virt_mem) {
>> +			kfree(mapped);
>> +			return -ENOMEM;
>> +		}
>> +		memcpy(to, virt_mem, size);
>> +
>> +		mutex_lock(&__iommu_mem_list_lock);
>> +		mapped->mem = virt_mem;
>> +		list_add_tail(&mapped->list, &__iommu_remapped_mem);
>> +		mutex_unlock(&__iommu_mem_list_lock);
>> +	}
>> +	return size;
>> +}
>> +
>> +/*
>> + * Copy memory from a virtually-addressed area into a physically-addressed area
>> + */
>> +int __iommu_save_to_oldmem(unsigned long to, void *from, unsigned long size)
>> +{
>> +	unsigned long pfn;		/* Page Frame Number */
>> +	size_t csize = (size_t)size;	/* Num(bytes to copy) */
>> +	unsigned long offset;		/* Lower 12 bits of to */
>> +	void __iomem *virt_mem;
>> +	struct iommu_remapped_entry *mapped;
>> +
>> +	pfn = to >> VTD_PAGE_SHIFT;
>> +	offset = to & (~VTD_PAGE_MASK);
>> +
>> +	if (page_is_ram(pfn)) {
>> +		memcpy(pfn_to_kaddr(pfn) + offset, from, csize);
>> +	} else{
>> +		mapped = kzalloc(sizeof(struct iommu_remapped_entry),
>> +				GFP_KERNEL);
>> +		if (!mapped)
>> +			return -ENOMEM;
>> +
>> +		virt_mem = ioremap_cache((unsigned long)to, size);
>> +		if (!virt_mem) {
>> +			kfree(mapped);
>> +			return -ENOMEM;
>> +		}
>> +		memcpy(virt_mem, from, size);
>> +		mutex_lock(&__iommu_mem_list_lock);
>> +		mapped->mem = virt_mem;
>> +		list_add_tail(&mapped->list, &__iommu_remapped_mem);
>> +		mutex_unlock(&__iommu_mem_list_lock);
>> +	}
>> +	return size;
>> +}
>> +
>> +/*
>> + * Free the mapped memory for ioremap;
>> + */
>> +int __iommu_free_mapped_mem(void)
>> +{
>> +	struct iommu_remapped_entry *mem_entry, *tmp;
>> +
>> +	mutex_lock(&__iommu_mem_list_lock);
>> +	list_for_each_entry_safe(mem_entry, tmp, &__iommu_remapped_mem, list) {
>> +		iounmap(mem_entry->mem);
>> +		list_del(&mem_entry->list);
>> +		kfree(mem_entry);
>> +	}
>> +	mutex_unlock(&__iommu_mem_list_lock);
>> +	return 0;
>> +}
>> +
>> diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h
>> index a65208a..4bca7b5 100644
>> --- a/include/linux/intel-iommu.h
>> +++ b/include/linux/intel-iommu.h
>> @@ -368,4 +368,10 @@ extern int dmar_ir_support(void);
>>
>>   extern const struct attribute_group *intel_iommu_groups[];
>>
>> +extern int __iommu_load_from_oldmem(void *to, unsigned long from,
>> +					unsigned long size);
>> +extern int __iommu_save_to_oldmem(unsigned long to, void *from,
>> +					unsigned long size);
>> +extern int __iommu_free_mapped_mem(void);
>> +
>>   #endif
>> --
>> 2.0.0-rc0
>>


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-07 17:32           ` Joerg Roedel
  0 siblings, 0 replies; 99+ messages in thread
From: Joerg Roedel @ 2015-05-07 17:32 UTC (permalink / raw)
  To: Baoquan He
  Cc: Li, ZhenHua, alex.williamson, indou.takao, tom.vaden, rwright,
	dwmw2, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	ddutile, doug.hatch, ishii.hironobu, linux-pci, bhelgaas,
	billsumnerlinux, li.zhang6, dyoung, vgoyal

Hi Baoquan, ZhenHua,

On Mon, May 04, 2015 at 11:17:49AM +0800, Baoquan He wrote:
> On 05/04/15 at 11:06am, Li, ZhenHua wrote:
> > Hi baoquan,
> > Could you paste the kernel log of the first kernel ?

Please let me know when you have worked this issue out.


Thanks,

	Joerg


^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-07 17:32           ` Joerg Roedel
  0 siblings, 0 replies; 99+ messages in thread
From: Joerg Roedel @ 2015-05-07 17:32 UTC (permalink / raw)
  To: Baoquan He
  Cc: tom.vaden-VXdhtT5mjnY, rwright-VXdhtT5mjnY,
	linux-pci-u79uwXL29TY76Z2rM5mHXA, dyoung-H+wXaHxf7aLQT0dZR+AlfA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Li, ZhenHua,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

Hi Baoquan, ZhenHua,

On Mon, May 04, 2015 at 11:17:49AM +0800, Baoquan He wrote:
> On 05/04/15 at 11:06am, Li, ZhenHua wrote:
> > Hi baoquan,
> > Could you paste the kernel log of the first kernel ?

Please let me know when you have worked this issue out.


Thanks,

	Joerg

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-08  1:00             ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-05-08  1:00 UTC (permalink / raw)
  To: Joerg Roedel
  Cc: Baoquan He, alex.williamson, indou.takao, tom.vaden, rwright,
	dwmw2, kexec, linux-kernel, lisa.mitchell, jerry.hoemann, iommu,
	ddutile, doug.hatch, ishii.hironobu, linux-pci, bhelgaas,
	billsumnerlinux, li.zhang6, dyoung, vgoyal, Li, ZhenHua

Hi Joerg,
This problem is caused by the latest updates in iommu module, and we are 
trying to fix it.
When it is fixed, we will send out a new version of the patchset.

Thanks
Zhenhua

On 05/08/2015 01:32 AM, Joerg Roedel wrote:
> Hi Baoquan, ZhenHua,
>
> On Mon, May 04, 2015 at 11:17:49AM +0800, Baoquan He wrote:
>> On 05/04/15 at 11:06am, Li, ZhenHua wrote:
>>> Hi baoquan,
>>> Could you paste the kernel log of the first kernel ?
>
> Please let me know when you have worked this issue out.
>
>
> Thanks,
>
> 	Joerg
>


^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-08  1:00             ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-05-08  1:00 UTC (permalink / raw)
  To: Joerg Roedel
  Cc: Li, ZhenHua, Baoquan He, tom.vaden-VXdhtT5mjnY,
	rwright-VXdhtT5mjnY, linux-pci-u79uwXL29TY76Z2rM5mHXA,
	dyoung-H+wXaHxf7aLQT0dZR+AlfA,
	kexec-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, lisa.mitchell-VXdhtT5mjnY,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	doug.hatch-VXdhtT5mjnY, ishii.hironobu-+CUm20s59erQFUHtdCDX3A,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA,
	billsumnerlinux-Re5JQEeQqe8AvxtiuMwx3w, li.zhang6-VXdhtT5mjnY,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ, vgoyal-H+wXaHxf7aLQT0dZR+AlfA

Hi Joerg,
This problem is caused by the latest updates in iommu module, and we are 
trying to fix it.
When it is fixed, we will send out a new version of the patchset.

Thanks
Zhenhua

On 05/08/2015 01:32 AM, Joerg Roedel wrote:
> Hi Baoquan, ZhenHua,
>
> On Mon, May 04, 2015 at 11:17:49AM +0800, Baoquan He wrote:
>> On 05/04/15 at 11:06am, Li, ZhenHua wrote:
>>> Hi baoquan,
>>> Could you paste the kernel log of the first kernel ?
>
> Please let me know when you have worked this issue out.
>
>
> Thanks,
>
> 	Joerg
>

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-05-08  1:00             ` Li, ZhenHua
  0 siblings, 0 replies; 99+ messages in thread
From: Li, ZhenHua @ 2015-05-08  1:00 UTC (permalink / raw)
  To: Joerg Roedel
  Cc: Li, ZhenHua, indou.takao, Baoquan He, tom.vaden, rwright,
	linux-pci, dyoung, kexec, linux-kernel, lisa.mitchell,
	jerry.hoemann, alex.williamson, iommu, ddutile, doug.hatch,
	ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6, dwmw2,
	vgoyal

Hi Joerg,
This problem is caused by the latest updates in iommu module, and we are 
trying to fix it.
When it is fixed, we will send out a new version of the patchset.

Thanks
Zhenhua

On 05/08/2015 01:32 AM, Joerg Roedel wrote:
> Hi Baoquan, ZhenHua,
>
> On Mon, May 04, 2015 at 11:17:49AM +0800, Baoquan He wrote:
>> On 05/04/15 at 11:06am, Li, ZhenHua wrote:
>>> Hi baoquan,
>>> Could you paste the kernel log of the first kernel ?
>
> Please let me know when you have worked this issue out.
>
>
> Thanks,
>
> 	Joerg
>


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
  2015-04-10  8:42 ` Li, Zhen-Hua
@ 2015-06-11 15:40   ` David Woodhouse
  -1 siblings, 0 replies; 99+ messages in thread
From: David Woodhouse @ 2015-06-11 15:40 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: indou.takao, bhe, joro, vgoyal, dyoung, tom.vaden, rwright,
	linux-pci, kexec, iommu, lisa.mitchell, linux-kernel, doug.hatch,
	ishii.hironobu, bhelgaas, billsumnerlinux, li.zhang6

[-- Attachment #1: Type: text/plain, Size: 1997 bytes --]

On Fri, 2015-04-10 at 16:42 +0800, 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:

But, in the general case, it *does* boot.

There are two cases where it doesn't actually boot, and those are the
interesting ones.

Firstly, a device just keeps generating faults and we die in an
interrupt storm, reporting the same fault over and over again. That can
actually happen without kdump/kexec and the correct fix for that is to
have rate-limiting, disable fault reporting for the offending device
after too many are seen, and then eventually to tie it in to the PCIe
error handling as has been discussed elsewhere.

Secondly, there are devices which do not correctly respond to a
hardware reset. This is broken hardware, and if we really have to copy
the old contexts from the crashed kernel to work around it then I'd
like it to be on a blacklist basis — we do it only for hardware which
is *known* to be broken in this way.

(There's also some cases where the device driver doesn't even *try* to
reset the hardware and just assumes it'll find it in a sane state as
the BIOS or a cleanly shut down kexec would have left it. In those
cases of course we can just fix the driver).

I don't much like the idea of doing this context copy for *all*
hardware. That's masking hardware issues with reset that we really
*ought* to be finding.

I believe that most of the offending hardware is HP's; they like to do
the most, erm, "interesting" things with odd hardware and RMRRs and
stuff. So Zhen-Hua would you be able to provide the list of broken
devices that HP has shipped, for the purpose of such a blacklist?

I assume you've already contacted the hardware folks responsible and
insisted that their devices are fixed to be resettable already, right?

-- 
dwmw2

[-- Attachment #2: smime.p7s --]
[-- Type: application/x-pkcs7-signature, Size: 5691 bytes --]

^ permalink raw reply	[flat|nested] 99+ messages in thread

* Re: [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel
@ 2015-06-11 15:40   ` David Woodhouse
  0 siblings, 0 replies; 99+ messages in thread
From: David Woodhouse @ 2015-06-11 15:40 UTC (permalink / raw)
  To: Li, Zhen-Hua
  Cc: indou.takao, bhe, tom.vaden, rwright, linux-pci, joro, kexec,
	linux-kernel, lisa.mitchell, iommu, doug.hatch, ishii.hironobu,
	bhelgaas, billsumnerlinux, li.zhang6, dyoung, vgoyal


[-- Attachment #1.1: Type: text/plain, Size: 1997 bytes --]

On Fri, 2015-04-10 at 16:42 +0800, 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:

But, in the general case, it *does* boot.

There are two cases where it doesn't actually boot, and those are the
interesting ones.

Firstly, a device just keeps generating faults and we die in an
interrupt storm, reporting the same fault over and over again. That can
actually happen without kdump/kexec and the correct fix for that is to
have rate-limiting, disable fault reporting for the offending device
after too many are seen, and then eventually to tie it in to the PCIe
error handling as has been discussed elsewhere.

Secondly, there are devices which do not correctly respond to a
hardware reset. This is broken hardware, and if we really have to copy
the old contexts from the crashed kernel to work around it then I'd
like it to be on a blacklist basis — we do it only for hardware which
is *known* to be broken in this way.

(There's also some cases where the device driver doesn't even *try* to
reset the hardware and just assumes it'll find it in a sane state as
the BIOS or a cleanly shut down kexec would have left it. In those
cases of course we can just fix the driver).

I don't much like the idea of doing this context copy for *all*
hardware. That's masking hardware issues with reset that we really
*ought* to be finding.

I believe that most of the offending hardware is HP's; they like to do
the most, erm, "interesting" things with odd hardware and RMRRs and
stuff. So Zhen-Hua would you be able to provide the list of broken
devices that HP has shipped, for the purpose of such a blacklist?

I assume you've already contacted the hardware folks responsible and
insisted that their devices are fixed to be resettable already, right?

-- 
dwmw2

[-- Attachment #1.2: smime.p7s --]
[-- Type: application/x-pkcs7-signature, Size: 5691 bytes --]

[-- Attachment #2: Type: text/plain, Size: 143 bytes --]

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 99+ messages in thread

end of thread, other threads:[~2015-06-11 15:40 UTC | newest]

Thread overview: 99+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-10  8:42 [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults in kdump kernel Li, Zhen-Hua
2015-04-10  8:42 ` Li, Zhen-Hua
2015-04-10  8:42 ` Li, Zhen-Hua
2015-04-10  8:42 ` [PATCH v10 01/10] iommu/vt-d: New function to attach domain with id Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42 ` [PATCH v10 02/10] iommu/vt-d: Items required for kdump Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42 ` [PATCH v10 03/10] iommu/vt-d: Function to get old context entry Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42 ` [PATCH v10 04/10] iommu/vt-d: functions to copy data from old mem Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-05-07  7:49   ` Baoquan He
2015-05-07  7:49     ` Baoquan He
2015-05-07  8:33     ` Li, ZhenHua
2015-05-07  8:33       ` Li, ZhenHua
2015-05-07  8:33       ` Li, ZhenHua
2015-04-10  8:42 ` [PATCH v10 05/10] iommu/vt-d: Add functions to load and save old re Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42 ` [PATCH v10 06/10] iommu/vt-d: datatypes and functions used for kdump Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42 ` [PATCH v10 07/10] iommu/vt-d: enable kdump support in iommu module Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42 ` [PATCH v10 08/10] iommu/vt-d: assign new page table for dma_map Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42 ` [PATCH v10 09/10] iommu/vt-d: Copy functions for irte Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42 ` [PATCH v10 10/10] iommu/vt-d: Use old irte in kdump kernel Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-10  8:42   ` Li, Zhen-Hua
2015-04-15  0:57 ` [PATCH v10 0/10] iommu/vt-d: Fix intel vt-d faults " Dave Young
2015-04-15  5:47   ` Li, ZhenHua
2015-04-15  5:47     ` Li, ZhenHua
2015-04-15  5:47     ` Li, ZhenHua
2015-04-15  6:48     ` Dave Young
2015-04-15  6:48       ` Dave Young
2015-04-21  1:39       ` Li, ZhenHua
2015-04-21  1:39         ` Li, ZhenHua
2015-04-21  2:53         ` Dave Young
2015-04-21  2:53           ` Dave Young
2015-04-21  2:53           ` Dave Young
2015-04-24  8:01       ` Baoquan He
2015-04-24  8:01         ` Baoquan He
2015-04-24  8:25         ` Dave Young
2015-04-24  8:25           ` Dave Young
2015-04-24  8:35           ` Baoquan He
2015-04-24  8:35             ` Baoquan He
2015-04-24  8:49             ` Dave Young
2015-04-24  8:49               ` Dave Young
2015-04-28  8:54               ` Baoquan He
2015-04-28  8:54                 ` Baoquan He
2015-04-28  9:00                 ` Li, ZhenHua
2015-04-28  9:00                   ` Li, ZhenHua
2015-05-04 16:23               ` Joerg Roedel
2015-05-04 16:23                 ` Joerg Roedel
2015-05-05  6:14                 ` Dave Young
2015-05-05  6:14                   ` Dave Young
2015-05-05 15:31                   ` Joerg Roedel
2015-05-05 15:31                     ` Joerg Roedel
2015-05-06  1:51                     ` Dave Young
2015-05-06  1:51                       ` Dave Young
2015-05-06  1:51                       ` Dave Young
2015-05-06  2:37                       ` Li, ZhenHua
2015-05-06  2:37                         ` Li, ZhenHua
2015-05-06  2:37                         ` Li, ZhenHua
2015-05-06  8:25                       ` Joerg Roedel
2015-05-06  8:25                         ` Joerg Roedel
2015-04-23  8:35 ` Li, ZhenHua
2015-04-23  8:35   ` Li, ZhenHua
2015-04-23  8:35   ` Li, ZhenHua
2015-04-23  8:38   ` Li, ZhenHua
2015-04-23  8:38     ` Li, ZhenHua
2015-04-23  8:38     ` Li, ZhenHua
2015-04-29 11:20 ` Baoquan He
2015-04-29 11:20   ` Baoquan He
2015-04-29 11:20   ` Baoquan He
2015-05-03  8:55   ` Baoquan He
2015-05-03  8:55     ` Baoquan He
2015-05-03  8:55     ` Baoquan He
2015-05-04  3:06     ` Li, ZhenHua
2015-05-04  3:06       ` Li, ZhenHua
2015-05-04  3:06       ` Li, ZhenHua
2015-05-04  3:17       ` Baoquan He
2015-05-04  3:17         ` Baoquan He
2015-05-07 17:32         ` Joerg Roedel
2015-05-07 17:32           ` Joerg Roedel
2015-05-08  1:00           ` Li, ZhenHua
2015-05-08  1:00             ` Li, ZhenHua
2015-05-08  1:00             ` Li, ZhenHua
2015-06-11 15:40 ` David Woodhouse
2015-06-11 15:40   ` David Woodhouse

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.