All of lore.kernel.org
 help / color / mirror / Atom feed
* [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms
@ 2014-06-25  8:40 Jiang Liu
  2014-06-25  8:40 ` [Patch V3 01/16] x86, irq, ACPI: Protect acpi_pci_irq_enable() from reentrance Jiang Liu
                   ` (17 more replies)
  0 siblings, 18 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu
  Cc: Jiang Liu, Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck,
	Joerg Roedel, Greg Kroah-Hartman, x86, linux-kernel, linux-pci,
	linux-acpi

This patch set enhances IOAPIC core and ACPI drivers to support IOAPIC
hotplug on x86 platforms. It's based on tip/x86/apic.

You may pull it from 
https://github.com/jiangliu/linux.git ioapic/hotplug_v3

We have pick up several patches from Yinghai's original IOAPIC hotplug
patch set and reimplemented IOAPIC driver as an ACPI driver instead of
a PCI driver.

It has been tested on a 4-socket Intel SDV with socket hot-addition
capability. Any suggestions are welcomed!

Patch 1-5 are minor bugfixes and code improvements
Patch 6-14 enhances ACPI and IOAPIC core to support IOAPIC hotplug
Patch 15 killes PCI IOAPIC driver
Patch 16 reimplements ACPI IOAPIC driver and enables IOAPIC hotplug

V2->V3:
1) Refine ACPI resource walk functions for PCI root bus and IOAPIC
2) Improve commit messages
3) Reorder patch order for better maintenence

Jiang Liu (11):
  x86, irq, ACPI: Protect acpi_pci_irq_enable() from reentrance
  ACPI: Correct return value of acpi_dev_resource_address_space()
  x86, PCI, ACPI: Kill private function resource_to_addr()
  x86, irq: Remove __init marker for functions will be used by IOAPIC
    hotplug
  x86, irq: Refine mp_register_ioapic() to prepare for IOAPIC hotplug
  x86, irq, ACPI: Introduce a rwsem to protect IOAPIC operations from
    hotplug
  x86, irq, ACPI: Implement interface to support ACPI based IOAPIC
    hot-addition
  x86, irq, ACPI: Implement interface to support ACPI based IOAPIC
    hot-removal
  x86, irq: Introduce helper to check whether an IOAPIC has been
    registered
  PCI: Remove PCI ioapic driver
  x86, irq, ACPI: Implement ACPI driver to support IOAPIC hotplug

Yinghai Lu (5):
  ACPI: Make map_mat_entry handle x2apic entry
  ACPI: Move acpi_get_cpuid() to separated file
  x86, irq: Split out alloc_ioapic_save_registers()
  x86, ioapic: Find usable ioapic id for 64bit.
  ACPI, ioapic: Add acpi_get_ioapic_id()

 arch/x86/include/asm/io_apic.h |    6 +-
 arch/x86/kernel/acpi/boot.c    |   68 ++++++++-
 arch/x86/kernel/apic/io_apic.c |  235 +++++++++++++++++++++++++-------
 arch/x86/pci/acpi.c            |  142 +++++++------------
 drivers/acpi/Kconfig           |    6 +
 drivers/acpi/Makefile          |    2 +
 drivers/acpi/apic_id.c         |  295 ++++++++++++++++++++++++++++++++++++++++
 drivers/acpi/internal.h        |    7 +
 drivers/acpi/ioapic.c          |  236 ++++++++++++++++++++++++++++++++
 drivers/acpi/pci_irq.c         |    7 +-
 drivers/acpi/pci_root.c        |    3 +
 drivers/acpi/processor_core.c  |  191 --------------------------
 drivers/acpi/resource.c        |    2 +-
 drivers/pci/Kconfig            |    7 -
 drivers/pci/Makefile           |    2 -
 drivers/pci/ioapic.c           |  121 ----------------
 include/acpi/processor.h       |    3 -
 include/linux/acpi.h           |    8 ++
 18 files changed, 868 insertions(+), 473 deletions(-)
 create mode 100644 drivers/acpi/apic_id.c
 create mode 100644 drivers/acpi/ioapic.c
 delete mode 100644 drivers/pci/ioapic.c

-- 
1.7.10.4

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

* [Patch V3 01/16] x86, irq, ACPI: Protect acpi_pci_irq_enable() from reentrance
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 02/16] ACPI: Make map_mat_entry handle x2apic entry Jiang Liu
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Len Brown
  Cc: Jiang Liu, Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck,
	Joerg Roedel, Greg Kroah-Hartman, x86, linux-kernel, linux-pci,
	linux-acpi

Function acpi_pci_irq_enable() may be called twice for each PCI device
present at boot time as below:
1) pci_acpi_init()
	--> acpi_pci_irq_enable()
2) pci_enable_device()
	--> pcibios_enable_device()
		--> acpi_pci_irq_enable()

So protect acpi_pci_irq_enable() from reentrance to correctly manage
IOAPIC pin reference count.

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 drivers/acpi/pci_irq.c |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/acpi/pci_irq.c b/drivers/acpi/pci_irq.c
index 6ba463ceccc6..9d2ebd5fd9aa 100644
--- a/drivers/acpi/pci_irq.c
+++ b/drivers/acpi/pci_irq.c
@@ -413,6 +413,9 @@ int acpi_pci_irq_enable(struct pci_dev *dev)
 		return 0;
 	}
 
+	if (dev->irq > 0)
+		return 0;
+
 	entry = acpi_pci_irq_lookup(dev, pin);
 	if (!entry) {
 		/*
@@ -498,6 +501,8 @@ void acpi_pci_irq_disable(struct pci_dev *dev)
 	 */
 
 	dev_dbg(&dev->dev, "PCI INT %c disabled\n", pin_name(pin));
-	if (gsi >= 0 && dev->irq > 0)
+	if (gsi >= 0 && dev->irq > 0) {
 		acpi_unregister_gsi(gsi);
+		dev->irq = 0;
+	}
 }
-- 
1.7.10.4


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

* [Patch V3 02/16] ACPI: Make map_mat_entry handle x2apic entry
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
  2014-06-25  8:40 ` [Patch V3 01/16] x86, irq, ACPI: Protect acpi_pci_irq_enable() from reentrance Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 03/16] ACPI: Correct return value of acpi_dev_resource_address_space() Jiang Liu
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Len Brown
  Cc: Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, x86, linux-kernel, linux-pci, linux-acpi,
	Jiang Liu

From: Yinghai Lu <yinghai@kernel.org>

Now we have map_madt_entry/MADT to handle x2apic, but does not do
that with map_mat_entry _MAT.

For hotplug on system with x2apic only support, we need to add
support for x2apic map in _MAT.

Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 drivers/acpi/processor_core.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/acpi/processor_core.c b/drivers/acpi/processor_core.c
index 71e2065639a6..c8a991e9d257 100644
--- a/drivers/acpi/processor_core.c
+++ b/drivers/acpi/processor_core.c
@@ -133,6 +133,8 @@ static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
 	header = (struct acpi_subtable_header *)obj->buffer.pointer;
 	if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
 		map_lapic_id(header, acpi_id, &apic_id);
+	} else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
+		map_x2apic_id(header, type, acpi_id, &apic_id);
 	} else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
 		map_lsapic_id(header, type, acpi_id, &apic_id);
 	}
-- 
1.7.10.4

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

* [Patch V3 03/16] ACPI: Correct return value of acpi_dev_resource_address_space()
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
  2014-06-25  8:40 ` [Patch V3 01/16] x86, irq, ACPI: Protect acpi_pci_irq_enable() from reentrance Jiang Liu
  2014-06-25  8:40 ` [Patch V3 02/16] ACPI: Make map_mat_entry handle x2apic entry Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 04/16] x86, PCI, ACPI: Kill private function resource_to_addr() Jiang Liu
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Len Brown
  Cc: Jiang Liu, Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck,
	Joerg Roedel, Greg Kroah-Hartman, x86, linux-kernel, linux-pci,
	linux-acpi

Change acpi_dev_resource_address_space() to return failure if the
acpi_resource structure can't be converted to an ACPI address64 structure.

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 drivers/acpi/resource.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
index 0bdacc5e26a3..33bb71cbe72a 100644
--- a/drivers/acpi/resource.c
+++ b/drivers/acpi/resource.c
@@ -200,7 +200,7 @@ bool acpi_dev_resource_address_space(struct acpi_resource *ares,
 
 	status = acpi_resource_to_address64(ares, &addr);
 	if (ACPI_FAILURE(status))
-		return true;
+		return false;
 
 	res->start = addr.minimum;
 	res->end = addr.maximum;
-- 
1.7.10.4


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

* [Patch V3 04/16] x86, PCI, ACPI: Kill private function resource_to_addr()
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (2 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 03/16] ACPI: Correct return value of acpi_dev_resource_address_space() Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 05/16] ACPI: Move acpi_get_cpuid() to separated file Jiang Liu
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, x86
  Cc: Jiang Liu, Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck,
	Joerg Roedel, Greg Kroah-Hartman, linux-kernel, linux-pci,
	linux-acpi

Replace private function resource_to_addr() to parse ACPI resources for
PCI host bridge with public ACPI resource interfaces.

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 arch/x86/pci/acpi.c |  142 ++++++++++++++++++---------------------------------
 1 file changed, 51 insertions(+), 91 deletions(-)

diff --git a/arch/x86/pci/acpi.c b/arch/x86/pci/acpi.c
index cfd1b132b8e3..0e716fa56ae5 100644
--- a/arch/x86/pci/acpi.c
+++ b/arch/x86/pci/acpi.c
@@ -218,114 +218,74 @@ static void teardown_mcfg_map(struct pci_root_info *info)
 }
 #endif
 
-static acpi_status resource_to_addr(struct acpi_resource *resource,
-				    struct acpi_resource_address64 *addr)
-{
-	acpi_status status;
-	struct acpi_resource_memory24 *memory24;
-	struct acpi_resource_memory32 *memory32;
-	struct acpi_resource_fixed_memory32 *fixed_memory32;
-
-	memset(addr, 0, sizeof(*addr));
-	switch (resource->type) {
-	case ACPI_RESOURCE_TYPE_MEMORY24:
-		memory24 = &resource->data.memory24;
-		addr->resource_type = ACPI_MEMORY_RANGE;
-		addr->minimum = memory24->minimum;
-		addr->address_length = memory24->address_length;
-		addr->maximum = addr->minimum + addr->address_length - 1;
-		return AE_OK;
-	case ACPI_RESOURCE_TYPE_MEMORY32:
-		memory32 = &resource->data.memory32;
-		addr->resource_type = ACPI_MEMORY_RANGE;
-		addr->minimum = memory32->minimum;
-		addr->address_length = memory32->address_length;
-		addr->maximum = addr->minimum + addr->address_length - 1;
-		return AE_OK;
-	case ACPI_RESOURCE_TYPE_FIXED_MEMORY32:
-		fixed_memory32 = &resource->data.fixed_memory32;
-		addr->resource_type = ACPI_MEMORY_RANGE;
-		addr->minimum = fixed_memory32->address;
-		addr->address_length = fixed_memory32->address_length;
-		addr->maximum = addr->minimum + addr->address_length - 1;
-		return AE_OK;
-	case ACPI_RESOURCE_TYPE_ADDRESS16:
-	case ACPI_RESOURCE_TYPE_ADDRESS32:
-	case ACPI_RESOURCE_TYPE_ADDRESS64:
-		status = acpi_resource_to_address64(resource, addr);
-		if (ACPI_SUCCESS(status) &&
-		    (addr->resource_type == ACPI_MEMORY_RANGE ||
-		    addr->resource_type == ACPI_IO_RANGE) &&
-		    addr->address_length > 0) {
-			return AE_OK;
-		}
-		break;
-	}
-	return AE_ERROR;
-}
-
 static acpi_status count_resource(struct acpi_resource *acpi_res, void *data)
 {
 	struct pci_root_info *info = data;
-	struct acpi_resource_address64 addr;
-	acpi_status status;
+	struct resource r = {
+		.flags = 0
+	};
 
-	status = resource_to_addr(acpi_res, &addr);
-	if (ACPI_SUCCESS(status))
+	if (!acpi_dev_resource_memory(acpi_res, &r) &&
+	    !acpi_dev_resource_address_space(acpi_res, &r))
+		return AE_OK;
+
+	if ((r.flags & (IORESOURCE_IO | IORESOURCE_MEM)) && resource_size(&r))
 		info->res_num++;
+
 	return AE_OK;
 }
 
 static acpi_status setup_resource(struct acpi_resource *acpi_res, void *data)
 {
 	struct pci_root_info *info = data;
-	struct resource *res;
-	struct acpi_resource_address64 addr;
-	acpi_status status;
-	unsigned long flags;
-	u64 start, orig_end, end;
+	struct resource *res = &info->res[info->res_num];
+	u64 translation_offset = 0;
+
+	memset(res, 0, sizeof(*res));
+	if (acpi_dev_resource_memory(acpi_res, res)) {
+		res->flags &= IORESOURCE_MEM | IORESOURCE_IO;
+	} else if (acpi_dev_resource_address_space(acpi_res, res)) {
+		u64 orig_end;
+		struct acpi_resource_address64 addr;
+
+		res->flags &= IORESOURCE_MEM | IORESOURCE_IO;
+		if (res->flags == 0)
+			return AE_OK;
 
-	status = resource_to_addr(acpi_res, &addr);
-	if (!ACPI_SUCCESS(status))
-		return AE_OK;
+		if (ACPI_FAILURE(acpi_resource_to_address64(acpi_res, &addr)))
+			return AE_OK;
 
-	if (addr.resource_type == ACPI_MEMORY_RANGE) {
-		flags = IORESOURCE_MEM;
-		if (addr.info.mem.caching == ACPI_PREFETCHABLE_MEMORY)
-			flags |= IORESOURCE_PREFETCH;
-	} else if (addr.resource_type == ACPI_IO_RANGE) {
-		flags = IORESOURCE_IO;
-	} else
-		return AE_OK;
+		if (addr.resource_type == ACPI_MEMORY_RANGE &&
+		    addr.info.mem.caching == ACPI_PREFETCHABLE_MEMORY)
+			res->flags |= IORESOURCE_PREFETCH;
 
-	start = addr.minimum + addr.translation_offset;
-	orig_end = end = addr.maximum + addr.translation_offset;
+		translation_offset = addr.translation_offset;
+		orig_end = res->end;
+		res->start += translation_offset;
+		res->end += translation_offset;
 
-	/* Exclude non-addressable range or non-addressable portion of range */
-	end = min(end, (u64)iomem_resource.end);
-	if (end <= start) {
-		dev_info(&info->bridge->dev,
-			"host bridge window [%#llx-%#llx] "
-			"(ignored, not CPU addressable)\n", start, orig_end);
-		return AE_OK;
-	} else if (orig_end != end) {
-		dev_info(&info->bridge->dev,
-			"host bridge window [%#llx-%#llx] "
-			"([%#llx-%#llx] ignored, not CPU addressable)\n", 
-			start, orig_end, end + 1, orig_end);
+		/* Exclude non-addressable range or non-addressable portion of range */
+		res->end = min(res->end, (u64)iomem_resource.end);
+		if (res->end <= res->start) {
+			dev_info(&info->bridge->dev,
+				"host bridge window [%#llx-%#llx] (ignored, not CPU addressable)\n",
+				 res->start, orig_end);
+			return AE_OK;
+		} else if (orig_end != res->end) {
+			dev_info(&info->bridge->dev,
+				"host bridge window [%#llx-%#llx] ([%#llx-%#llx] ignored, not CPU addressable)\n",
+				res->start, orig_end, res->end + 1, orig_end);
+		}
 	}
 
-	res = &info->res[info->res_num];
-	res->name = info->name;
-	res->flags = flags;
-	res->start = start;
-	res->end = end;
-	info->res_offset[info->res_num] = addr.translation_offset;
-	info->res_num++;
-
-	if (!pci_use_crs)
-		dev_printk(KERN_DEBUG, &info->bridge->dev,
-			   "host bridge window %pR (ignored)\n", res);
+	if (res->flags && resource_size(res)) {
+		res->name = info->name;
+		info->res_offset[info->res_num] = translation_offset;
+		info->res_num++;
+		if (!pci_use_crs)
+			dev_printk(KERN_DEBUG, &info->bridge->dev,
+				   "host bridge window %pR (ignored)\n", res);
+	}
 
 	return AE_OK;
 }
-- 
1.7.10.4

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

* [Patch V3 05/16] ACPI: Move acpi_get_cpuid() to separated file
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (3 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 04/16] x86, PCI, ACPI: Kill private function resource_to_addr() Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 06/16] x86, irq: Split out alloc_ioapic_save_registers() Jiang Liu
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Len Brown, Robert Moore, Lv Zheng
  Cc: Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, x86, linux-kernel, linux-pci, linux-acpi,
	Jiang Liu, devel

From: Yinghai Lu <yinghai@kernel.org>

Will need to reuse searching MADT for ioapic, but should add
related function like acpi_get_ioapic_id to processor_core.c
to pollute the file.

Move related cpu apic id search to separated file.

Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 drivers/acpi/Makefile         |    1 +
 drivers/acpi/apic_id.c        |  202 +++++++++++++++++++++++++++++++++++++++++
 drivers/acpi/processor_core.c |  193 ---------------------------------------
 include/acpi/processor.h      |    3 -
 include/linux/acpi.h          |    4 +
 5 files changed, 207 insertions(+), 196 deletions(-)
 create mode 100644 drivers/acpi/apic_id.c

diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile
index ea55e0179f81..bf5702753c6e 100644
--- a/drivers/acpi/Makefile
+++ b/drivers/acpi/Makefile
@@ -34,6 +34,7 @@ acpi-$(CONFIG_ACPI_SLEEP)	+= proc.o
 acpi-y				+= bus.o glue.o
 acpi-y				+= scan.o
 acpi-y				+= resource.o
+acpi-y				+= apic_id.o
 acpi-y				+= acpi_processor.o
 acpi-y				+= processor_core.o
 acpi-y				+= ec.o
diff --git a/drivers/acpi/apic_id.c b/drivers/acpi/apic_id.c
new file mode 100644
index 000000000000..ac3b10a9f92d
--- /dev/null
+++ b/drivers/acpi/apic_id.c
@@ -0,0 +1,202 @@
+/*
+ * Copyright (C) 2005 Intel Corporation
+ * Copyright (C) 2009 Hewlett-Packard Development Company, L.P.
+ *	All routines dealing with CPU APIC ID are moved from processor_core.c
+ */
+#include <linux/export.h>
+#include <linux/slab.h>
+#include <linux/acpi.h>
+
+#include "internal.h"
+
+static int map_lapic_id(struct acpi_subtable_header *entry,
+		 u32 acpi_id, int *apic_id)
+{
+	struct acpi_madt_local_apic *lapic =
+		(struct acpi_madt_local_apic *)entry;
+
+	if (!(lapic->lapic_flags & ACPI_MADT_ENABLED))
+		return -ENODEV;
+
+	if (lapic->processor_id != acpi_id)
+		return -EINVAL;
+
+	*apic_id = lapic->id;
+	return 0;
+}
+
+static int map_x2apic_id(struct acpi_subtable_header *entry,
+			 int device_declaration, u32 acpi_id, int *apic_id)
+{
+	struct acpi_madt_local_x2apic *apic =
+		(struct acpi_madt_local_x2apic *)entry;
+
+	if (!(apic->lapic_flags & ACPI_MADT_ENABLED))
+		return -ENODEV;
+
+	if (device_declaration && (apic->uid == acpi_id)) {
+		*apic_id = apic->local_apic_id;
+		return 0;
+	}
+
+	return -EINVAL;
+}
+
+static int map_lsapic_id(struct acpi_subtable_header *entry,
+		int device_declaration, u32 acpi_id, int *apic_id)
+{
+	struct acpi_madt_local_sapic *lsapic =
+		(struct acpi_madt_local_sapic *)entry;
+
+	if (!(lsapic->lapic_flags & ACPI_MADT_ENABLED))
+		return -ENODEV;
+
+	if (device_declaration) {
+		if ((entry->length < 16) || (lsapic->uid != acpi_id))
+			return -EINVAL;
+	} else if (lsapic->processor_id != acpi_id)
+		return -EINVAL;
+
+	*apic_id = (lsapic->id << 8) | lsapic->eid;
+	return 0;
+}
+
+static int map_madt_entry(int type, u32 acpi_id)
+{
+	unsigned long madt_end, entry;
+	static struct acpi_table_madt *madt;
+	static int read_madt;
+	int apic_id = -1;
+
+	if (!read_madt) {
+		if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
+					(struct acpi_table_header **)&madt)))
+			madt = NULL;
+		read_madt++;
+	}
+
+	if (!madt)
+		return apic_id;
+
+	entry = (unsigned long)madt;
+	madt_end = entry + madt->header.length;
+
+	/* Parse all entries looking for a match. */
+
+	entry += sizeof(struct acpi_table_madt);
+	while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
+		struct acpi_subtable_header *header =
+			(struct acpi_subtable_header *)entry;
+		if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
+			if (!map_lapic_id(header, acpi_id, &apic_id))
+				break;
+		} else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
+			if (!map_x2apic_id(header, type, acpi_id, &apic_id))
+				break;
+		} else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
+			if (!map_lsapic_id(header, type, acpi_id, &apic_id))
+				break;
+		}
+		entry += header->length;
+	}
+	return apic_id;
+}
+
+static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
+{
+	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
+	union acpi_object *obj;
+	struct acpi_subtable_header *header;
+	int apic_id = -1;
+
+	if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
+		goto exit;
+
+	if (!buffer.length || !buffer.pointer)
+		goto exit;
+
+	obj = buffer.pointer;
+	if (obj->type != ACPI_TYPE_BUFFER ||
+	    obj->buffer.length < sizeof(struct acpi_subtable_header)) {
+		goto exit;
+	}
+
+	header = (struct acpi_subtable_header *)obj->buffer.pointer;
+	if (header->type == ACPI_MADT_TYPE_LOCAL_APIC)
+		map_lapic_id(header, acpi_id, &apic_id);
+	else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC)
+		map_x2apic_id(header, type, acpi_id, &apic_id);
+	else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC)
+		map_lsapic_id(header, type, acpi_id, &apic_id);
+
+exit:
+	kfree(buffer.pointer);
+	return apic_id;
+}
+
+int acpi_get_apicid(acpi_handle handle, int type, u32 acpi_id)
+{
+	int apic_id;
+
+	apic_id = map_mat_entry(handle, type, acpi_id);
+	if (apic_id == -1)
+		apic_id = map_madt_entry(type, acpi_id);
+
+	return apic_id;
+}
+
+int acpi_map_cpuid(int apic_id, u32 acpi_id)
+{
+#ifdef CONFIG_SMP
+	int i;
+#endif
+
+	if (apic_id == -1) {
+		/*
+		 * On UP processor, there is no _MAT or MADT table.
+		 * So above apic_id is always set to -1.
+		 *
+		 * BIOS may define multiple CPU handles even for UP processor.
+		 * For example,
+		 *
+		 * Scope (_PR)
+		 * {
+		 *     Processor (CPU0, 0x00, 0x00000410, 0x06) {}
+		 *     Processor (CPU1, 0x01, 0x00000410, 0x06) {}
+		 *     Processor (CPU2, 0x02, 0x00000410, 0x06) {}
+		 *     Processor (CPU3, 0x03, 0x00000410, 0x06) {}
+		 * }
+		 *
+		 * Ignores apic_id and always returns 0 for the processor
+		 * handle with acpi id 0 if nr_cpu_ids is 1.
+		 * This should be the case if SMP tables are not found.
+		 * Return -1 for other CPU's handle.
+		 */
+		if (nr_cpu_ids <= 1 && acpi_id == 0)
+			return acpi_id;
+		else
+			return apic_id;
+	}
+
+#ifdef CONFIG_SMP
+	for_each_possible_cpu(i) {
+		if (cpu_physical_id(i) == apic_id)
+			return i;
+	}
+#else
+	/* In UP kernel, only processor 0 is valid */
+	if (apic_id == 0)
+		return apic_id;
+#endif
+	return -1;
+}
+
+int acpi_get_cpuid(acpi_handle handle, int type, u32 acpi_id)
+{
+	int apic_id;
+
+	apic_id = acpi_get_apicid(handle, type, acpi_id);
+
+	return acpi_map_cpuid(apic_id, acpi_id);
+}
+EXPORT_SYMBOL_GPL(acpi_get_cpuid);
diff --git a/drivers/acpi/processor_core.c b/drivers/acpi/processor_core.c
index c8a991e9d257..e2ef53721755 100644
--- a/drivers/acpi/processor_core.c
+++ b/drivers/acpi/processor_core.c
@@ -18,199 +18,6 @@
 #define _COMPONENT		ACPI_PROCESSOR_COMPONENT
 ACPI_MODULE_NAME("processor_core");
 
-static int map_lapic_id(struct acpi_subtable_header *entry,
-		 u32 acpi_id, int *apic_id)
-{
-	struct acpi_madt_local_apic *lapic =
-		(struct acpi_madt_local_apic *)entry;
-
-	if (!(lapic->lapic_flags & ACPI_MADT_ENABLED))
-		return -ENODEV;
-
-	if (lapic->processor_id != acpi_id)
-		return -EINVAL;
-
-	*apic_id = lapic->id;
-	return 0;
-}
-
-static int map_x2apic_id(struct acpi_subtable_header *entry,
-			 int device_declaration, u32 acpi_id, int *apic_id)
-{
-	struct acpi_madt_local_x2apic *apic =
-		(struct acpi_madt_local_x2apic *)entry;
-
-	if (!(apic->lapic_flags & ACPI_MADT_ENABLED))
-		return -ENODEV;
-
-	if (device_declaration && (apic->uid == acpi_id)) {
-		*apic_id = apic->local_apic_id;
-		return 0;
-	}
-
-	return -EINVAL;
-}
-
-static int map_lsapic_id(struct acpi_subtable_header *entry,
-		int device_declaration, u32 acpi_id, int *apic_id)
-{
-	struct acpi_madt_local_sapic *lsapic =
-		(struct acpi_madt_local_sapic *)entry;
-
-	if (!(lsapic->lapic_flags & ACPI_MADT_ENABLED))
-		return -ENODEV;
-
-	if (device_declaration) {
-		if ((entry->length < 16) || (lsapic->uid != acpi_id))
-			return -EINVAL;
-	} else if (lsapic->processor_id != acpi_id)
-		return -EINVAL;
-
-	*apic_id = (lsapic->id << 8) | lsapic->eid;
-	return 0;
-}
-
-static int map_madt_entry(int type, u32 acpi_id)
-{
-	unsigned long madt_end, entry;
-	static struct acpi_table_madt *madt;
-	static int read_madt;
-	int apic_id = -1;
-
-	if (!read_madt) {
-		if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
-					(struct acpi_table_header **)&madt)))
-			madt = NULL;
-		read_madt++;
-	}
-
-	if (!madt)
-		return apic_id;
-
-	entry = (unsigned long)madt;
-	madt_end = entry + madt->header.length;
-
-	/* Parse all entries looking for a match. */
-
-	entry += sizeof(struct acpi_table_madt);
-	while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
-		struct acpi_subtable_header *header =
-			(struct acpi_subtable_header *)entry;
-		if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
-			if (!map_lapic_id(header, acpi_id, &apic_id))
-				break;
-		} else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
-			if (!map_x2apic_id(header, type, acpi_id, &apic_id))
-				break;
-		} else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
-			if (!map_lsapic_id(header, type, acpi_id, &apic_id))
-				break;
-		}
-		entry += header->length;
-	}
-	return apic_id;
-}
-
-static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
-{
-	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
-	union acpi_object *obj;
-	struct acpi_subtable_header *header;
-	int apic_id = -1;
-
-	if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
-		goto exit;
-
-	if (!buffer.length || !buffer.pointer)
-		goto exit;
-
-	obj = buffer.pointer;
-	if (obj->type != ACPI_TYPE_BUFFER ||
-	    obj->buffer.length < sizeof(struct acpi_subtable_header)) {
-		goto exit;
-	}
-
-	header = (struct acpi_subtable_header *)obj->buffer.pointer;
-	if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
-		map_lapic_id(header, acpi_id, &apic_id);
-	} else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
-		map_x2apic_id(header, type, acpi_id, &apic_id);
-	} else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
-		map_lsapic_id(header, type, acpi_id, &apic_id);
-	}
-
-exit:
-	kfree(buffer.pointer);
-	return apic_id;
-}
-
-int acpi_get_apicid(acpi_handle handle, int type, u32 acpi_id)
-{
-	int apic_id;
-
-	apic_id = map_mat_entry(handle, type, acpi_id);
-	if (apic_id == -1)
-		apic_id = map_madt_entry(type, acpi_id);
-
-	return apic_id;
-}
-
-int acpi_map_cpuid(int apic_id, u32 acpi_id)
-{
-#ifdef CONFIG_SMP
-	int i;
-#endif
-
-	if (apic_id == -1) {
-		/*
-		 * On UP processor, there is no _MAT or MADT table.
-		 * So above apic_id is always set to -1.
-		 *
-		 * BIOS may define multiple CPU handles even for UP processor.
-		 * For example,
-		 *
-		 * Scope (_PR)
-                 * {
-		 *     Processor (CPU0, 0x00, 0x00000410, 0x06) {}
-		 *     Processor (CPU1, 0x01, 0x00000410, 0x06) {}
-		 *     Processor (CPU2, 0x02, 0x00000410, 0x06) {}
-		 *     Processor (CPU3, 0x03, 0x00000410, 0x06) {}
-		 * }
-		 *
-		 * Ignores apic_id and always returns 0 for the processor
-		 * handle with acpi id 0 if nr_cpu_ids is 1.
-		 * This should be the case if SMP tables are not found.
-		 * Return -1 for other CPU's handle.
-		 */
-		if (nr_cpu_ids <= 1 && acpi_id == 0)
-			return acpi_id;
-		else
-			return apic_id;
-	}
-
-#ifdef CONFIG_SMP
-	for_each_possible_cpu(i) {
-		if (cpu_physical_id(i) == apic_id)
-			return i;
-	}
-#else
-	/* In UP kernel, only processor 0 is valid */
-	if (apic_id == 0)
-		return apic_id;
-#endif
-	return -1;
-}
-
-int acpi_get_cpuid(acpi_handle handle, int type, u32 acpi_id)
-{
-	int apic_id;
-
-	apic_id = acpi_get_apicid(handle, type, acpi_id);
-
-	return acpi_map_cpuid(apic_id, acpi_id);
-}
-EXPORT_SYMBOL_GPL(acpi_get_cpuid);
-
 static bool __init processor_physically_present(acpi_handle handle)
 {
 	int cpuid, type;
diff --git a/include/acpi/processor.h b/include/acpi/processor.h
index 9b9b6f29bbf3..99fc22c9e61f 100644
--- a/include/acpi/processor.h
+++ b/include/acpi/processor.h
@@ -314,9 +314,6 @@ static inline int acpi_processor_get_bios_limit(int cpu, unsigned int *limit)
 
 /* in processor_core.c */
 void acpi_processor_set_pdc(acpi_handle handle);
-int acpi_get_apicid(acpi_handle, int type, u32 acpi_id);
-int acpi_map_cpuid(int apic_id, u32 acpi_id);
-int acpi_get_cpuid(acpi_handle, int type, u32 acpi_id);
 
 /* in processor_throttling.c */
 int acpi_processor_tstate_has_changed(struct acpi_processor *pr);
diff --git a/include/linux/acpi.h b/include/linux/acpi.h
index 358c01b971db..41460ed7017f 100644
--- a/include/linux/acpi.h
+++ b/include/linux/acpi.h
@@ -146,6 +146,10 @@ int acpi_map_lsapic(acpi_handle handle, int physid, int *pcpu);
 int acpi_unmap_lsapic(int cpu);
 #endif /* CONFIG_ACPI_HOTPLUG_CPU */
 
+int acpi_get_apicid(acpi_handle, int type, u32 acpi_id);
+int acpi_map_cpuid(int apic_id, u32 acpi_id);
+int acpi_get_cpuid(acpi_handle, int type, u32 acpi_id);
+
 int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base);
 int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base);
 void acpi_irq_stats_init(void);
-- 
1.7.10.4

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

* [Patch V3 06/16] x86, irq: Split out alloc_ioapic_save_registers()
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (4 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 05/16] ACPI: Move acpi_get_cpuid() to separated file Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 07/16] x86, ioapic: Find usable ioapic id for 64bit Jiang Liu
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, x86, Jiang Liu, Grant Likely, Prarit Bhargava
  Cc: Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, linux-kernel, linux-pci, linux-acpi,
	Sebastian Andrzej Siewior, Ingo Molnar

From: Yinghai Lu <yinghai@kernel.org>

Split alloc_ioapic_save_registers() from early_irq_init(),
so it will be used per ioapic.

Will call that later for hot-added ioapic controller.

Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
---
 arch/x86/kernel/apic/io_apic.c |   22 +++++++++++++++-------
 1 file changed, 15 insertions(+), 7 deletions(-)

diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index a44dce8cc559..b7296d4ca0a1 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -237,6 +237,19 @@ static struct irq_pin_list *alloc_irq_pin_list(int node)
 	return kzalloc_node(sizeof(struct irq_pin_list), GFP_KERNEL, node);
 }
 
+static void alloc_ioapic_saved_registers(int idx)
+{
+	size_t size;
+
+	if (ioapics[idx].saved_registers)
+		return;
+
+	size = sizeof(struct IO_APIC_route_entry) * ioapics[idx].nr_registers;
+	ioapics[idx].saved_registers = kzalloc(size, GFP_KERNEL);
+	if (!ioapics[idx].saved_registers)
+		pr_err("IOAPIC %d: suspend/resume impossible!\n", idx);
+}
+
 int __init arch_early_irq_init(void)
 {
 	struct irq_cfg *cfg;
@@ -245,13 +258,8 @@ int __init arch_early_irq_init(void)
 	if (!nr_legacy_irqs())
 		io_apic_irqs = ~0UL;
 
-	for_each_ioapic(i) {
-		ioapics[i].saved_registers =
-			kzalloc(sizeof(struct IO_APIC_route_entry) *
-				ioapics[i].nr_registers, GFP_KERNEL);
-		if (!ioapics[i].saved_registers)
-			pr_err("IOAPIC %d: suspend/resume impossible!\n", i);
-	}
+	for_each_ioapic(i)
+		alloc_ioapic_saved_registers(i);
 
 	/*
 	 * For legacy IRQ's, start with assigning irq0 to irq15 to
-- 
1.7.10.4

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

* [Patch V3 07/16] x86, ioapic: Find usable ioapic id for 64bit.
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (5 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 06/16] x86, irq: Split out alloc_ioapic_save_registers() Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 08/16] ACPI, ioapic: Add acpi_get_ioapic_id() Jiang Liu
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, x86, Jiang Liu, Grant Likely, Prarit Bhargava
  Cc: Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, linux-kernel, linux-pci, linux-acpi,
	Sebastian Andrzej Siewior, Ingo Molnar

From: Yinghai Lu <yinghai@kernel.org>

Checking the id in register, if that is duplicated, will pick one and
update id register.

Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 arch/x86/kernel/apic/io_apic.c |   38 +++++++++++++++++++++++++++++++++-----
 1 file changed, 33 insertions(+), 5 deletions(-)

diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index b7296d4ca0a1..a068bf558657 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -3570,26 +3570,54 @@ static int __init io_apic_get_unique_id(int ioapic, int apic_id)
 	return apic_id;
 }
 
-static u8 __init io_apic_unique_id(u8 id)
+static u8 io_apic_unique_id(int idx, u8 id)
 {
 	if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
 	    !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
-		return io_apic_get_unique_id(nr_ioapics, id);
+		return io_apic_get_unique_id(idx, id);
 	else
 		return id;
 }
 #else
-static u8 __init io_apic_unique_id(u8 id)
+static u8 io_apic_unique_id(int idx, u8 id)
 {
 	int i;
+	u8 new_id;
+	unsigned long flags;
 	DECLARE_BITMAP(used, 256);
+	union IO_APIC_reg_00 reg_00;
 
 	bitmap_zero(used, 256);
 	for_each_ioapic(i)
 		__set_bit(mpc_ioapic_id(i), used);
 	if (!test_bit(id, used))
 		return id;
-	return find_first_zero_bit(used, 256);
+
+	/* check register at first */
+	raw_spin_lock_irqsave(&ioapic_lock, flags);
+	reg_00.raw = io_apic_read(idx, 0);
+	raw_spin_unlock_irqrestore(&ioapic_lock, flags);
+	new_id = reg_00.bits.ID;
+	if (!test_bit(new_id, used)) {
+		apic_printk(APIC_VERBOSE, KERN_INFO
+			"IOAPIC[%d]: Using reg apic_id %d instead of %d\n",
+			 idx, new_id, id);
+		return new_id;
+	}
+
+	new_id = find_first_zero_bit(used, 256);
+	reg_00.bits.ID = new_id;
+	raw_spin_lock_irqsave(&ioapic_lock, flags);
+	io_apic_write(idx, 0, reg_00.raw);
+	reg_00.raw = io_apic_read(idx, 0);
+	raw_spin_unlock_irqrestore(&ioapic_lock, flags);
+
+	/* Sanity check */
+	if (reg_00.bits.ID != new_id)
+		pr_warn("IOAPIC[%d]: Unable to change apic_id to %d!\n",
+			idx, new_id);
+
+	return new_id;
 }
 #endif
 
@@ -3855,7 +3883,7 @@ void __init mp_register_ioapic(int id, u32 address, u32 gsi_base,
 		return;
 	}
 
-	ioapics[idx].mp_config.apicid = io_apic_unique_id(id);
+	ioapics[idx].mp_config.apicid = io_apic_unique_id(idx, id);
 	ioapics[idx].mp_config.apicver = io_apic_get_version(idx);
 
 	/*
-- 
1.7.10.4

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

* [Patch V3 08/16] ACPI, ioapic: Add acpi_get_ioapic_id()
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (6 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 07/16] x86, ioapic: Find usable ioapic id for 64bit Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 09/16] x86, irq: Remove __init marker for functions will be used by IOAPIC hotplug Jiang Liu
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Len Brown
  Cc: Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, x86, linux-kernel, linux-pci, linux-acpi,
	Jiang Liu

From: Yinghai Lu <yinghai@kernel.org>

For ioapic hotplug, we need to parse apic id for ioapic registration.

We could check _MAT and MADT to get io apic id, just like cpu hotplug
path to get apic id.

Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 drivers/acpi/apic_id.c |   97 +++++++++++++++++++++++++++++++++++++++++++++++-
 include/linux/acpi.h   |    3 ++
 2 files changed, 98 insertions(+), 2 deletions(-)

diff --git a/drivers/acpi/apic_id.c b/drivers/acpi/apic_id.c
index ac3b10a9f92d..a74a3fcd8362 100644
--- a/drivers/acpi/apic_id.c
+++ b/drivers/acpi/apic_id.c
@@ -2,6 +2,10 @@
  * Copyright (C) 2005 Intel Corporation
  * Copyright (C) 2009 Hewlett-Packard Development Company, L.P.
  *	All routines dealing with CPU APIC ID are moved from processor_core.c
+ *
+ * I/O APIC hotplug support
+ *	Yinghai Lu <yinghai@kernel.org>
+ *	Jiang Liu <jiang.liu@intel.com>
  */
 #include <linux/export.h>
 #include <linux/slab.h>
@@ -9,6 +13,9 @@
 
 #include "internal.h"
 
+static struct acpi_table_madt *madt;
+static int read_madt;
+
 static int map_lapic_id(struct acpi_subtable_header *entry,
 		 u32 acpi_id, int *apic_id)
 {
@@ -64,8 +71,6 @@ static int map_lsapic_id(struct acpi_subtable_header *entry,
 static int map_madt_entry(int type, u32 acpi_id)
 {
 	unsigned long madt_end, entry;
-	static struct acpi_table_madt *madt;
-	static int read_madt;
 	int apic_id = -1;
 
 	if (!read_madt) {
@@ -200,3 +205,91 @@ int acpi_get_cpuid(acpi_handle handle, int type, u32 acpi_id)
 	return acpi_map_cpuid(apic_id, acpi_id);
 }
 EXPORT_SYMBOL_GPL(acpi_get_cpuid);
+
+#ifdef CONFIG_ACPI_HOTPLUG_IOAPIC
+static int map_ioapic_id(struct acpi_subtable_header *entry, u32 gsi_base,
+			 u64 *phys_addr, int *ioapic_id)
+{
+	struct acpi_madt_io_apic *ioapic = (struct acpi_madt_io_apic *)entry;
+
+	if (ioapic->global_irq_base != gsi_base)
+		return 0;
+
+	*phys_addr = ioapic->address;
+	*ioapic_id = ioapic->id;
+	return 1;
+}
+
+static int map_madt_ioapic_entry(u32 gsi_base, u64 *phys_addr)
+{
+	struct acpi_subtable_header *hdr;
+	unsigned long madt_end, entry;
+	int apic_id = -1;
+
+	if (!read_madt) {
+		if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
+					(struct acpi_table_header **)&madt)))
+			madt = NULL;
+		read_madt++;
+	}
+
+	if (!madt)
+		return apic_id;
+
+	entry = (unsigned long)madt;
+	madt_end = entry + madt->header.length;
+
+	/* Parse all entries looking for a match. */
+	entry += sizeof(struct acpi_table_madt);
+	while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
+		hdr = (struct acpi_subtable_header *)entry;
+		if (hdr->type == ACPI_MADT_TYPE_IO_APIC &&
+		    map_ioapic_id(hdr, gsi_base, phys_addr, &apic_id))
+			break;
+		else
+			entry += hdr->length;
+	}
+
+	return apic_id;
+}
+
+static int map_mat_ioapic_entry(acpi_handle handle, u32 gsi_base,
+				u64 *phys_addr)
+{
+	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
+	union acpi_object *obj;
+	struct acpi_subtable_header *header;
+	int apic_id = -1;
+
+	if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
+		goto exit;
+
+	if (!buffer.length || !buffer.pointer)
+		goto exit;
+
+	obj = buffer.pointer;
+	if (obj->type != ACPI_TYPE_BUFFER ||
+	    obj->buffer.length < sizeof(struct acpi_subtable_header)) {
+		goto exit;
+	}
+
+	header = (struct acpi_subtable_header *)obj->buffer.pointer;
+	if (header->type == ACPI_MADT_TYPE_IO_APIC)
+		map_ioapic_id(header, gsi_base, phys_addr, &apic_id);
+
+exit:
+	kfree(buffer.pointer);
+	return apic_id;
+}
+
+int acpi_get_ioapic_id(acpi_handle handle, u32 gsi_base, u64 *phys_addr)
+{
+	int apic_id;
+
+	apic_id = map_mat_ioapic_entry(handle, gsi_base, phys_addr);
+	if (apic_id == -1)
+		apic_id = map_madt_ioapic_entry(gsi_base, phys_addr);
+
+	return apic_id;
+}
+#endif /* CONFIG_ACPI_HOTPLUG_IOAPIC */
diff --git a/include/linux/acpi.h b/include/linux/acpi.h
index 41460ed7017f..fb2bc50f330e 100644
--- a/include/linux/acpi.h
+++ b/include/linux/acpi.h
@@ -149,6 +149,9 @@ int acpi_unmap_lsapic(int cpu);
 int acpi_get_apicid(acpi_handle, int type, u32 acpi_id);
 int acpi_map_cpuid(int apic_id, u32 acpi_id);
 int acpi_get_cpuid(acpi_handle, int type, u32 acpi_id);
+#ifdef CONFIG_ACPI_HOTPLUG_IOAPIC
+int acpi_get_ioapic_id(acpi_handle handle, u32 gsi_base, u64 *phys_addr);
+#endif
 
 int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base);
 int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base);
-- 
1.7.10.4

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

* [Patch V3 09/16] x86, irq: Remove __init marker for functions will be used by IOAPIC hotplug
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (7 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 08/16] ACPI, ioapic: Add acpi_get_ioapic_id() Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 10/16] x86, irq: Refine mp_register_ioapic() to prepare for " Jiang Liu
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, x86, Jiang Liu, Grant Likely, Prarit Bhargava
  Cc: Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, linux-kernel, linux-pci, linux-acpi,
	Ingo Molnar

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 arch/x86/include/asm/io_apic.h |    4 ++--
 arch/x86/kernel/apic/io_apic.c |   14 +++++++-------
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/arch/x86/include/asm/io_apic.h b/arch/x86/include/asm/io_apic.h
index 0aeed5ca356e..0b31aebd9405 100644
--- a/arch/x86/include/asm/io_apic.h
+++ b/arch/x86/include/asm/io_apic.h
@@ -188,8 +188,8 @@ extern int mp_find_ioapic_pin(int ioapic, u32 gsi);
 extern u32 mp_pin_to_gsi(int ioapic, int pin);
 extern int mp_map_gsi_to_irq(u32 gsi, unsigned int flags);
 extern void mp_unmap_irq(int irq);
-extern void __init mp_register_ioapic(int id, u32 address, u32 gsi_base,
-				      struct ioapic_domain_cfg *cfg);
+extern void mp_register_ioapic(int id, u32 address, u32 gsi_base,
+			       struct ioapic_domain_cfg *cfg);
 extern int mp_irqdomain_map(struct irq_domain *domain, unsigned int virq,
 			    irq_hw_number_t hwirq);
 extern void mp_irqdomain_unmap(struct irq_domain *domain, unsigned int virq);
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index a068bf558657..1510734d5cbb 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -3449,7 +3449,7 @@ io_apic_setup_irq_pin(unsigned int irq, int node, struct io_apic_irq_attr *attr)
 	return ret;
 }
 
-static int __init io_apic_get_redir_entries(int ioapic)
+static int io_apic_get_redir_entries(int ioapic)
 {
 	union IO_APIC_reg_01	reg_01;
 	unsigned long flags;
@@ -3495,7 +3495,7 @@ int __init arch_probe_nr_irqs(void)
 }
 
 #ifdef CONFIG_X86_32
-static int __init io_apic_get_unique_id(int ioapic, int apic_id)
+static int io_apic_get_unique_id(int ioapic, int apic_id)
 {
 	union IO_APIC_reg_00 reg_00;
 	static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
@@ -3621,7 +3621,7 @@ static u8 io_apic_unique_id(int idx, u8 id)
 }
 #endif
 
-static int __init io_apic_get_version(int ioapic)
+static int io_apic_get_version(int ioapic)
 {
 	union IO_APIC_reg_01	reg_01;
 	unsigned long flags;
@@ -3825,7 +3825,7 @@ int mp_find_ioapic_pin(int ioapic, u32 gsi)
 	return gsi - gsi_cfg->gsi_base;
 }
 
-static __init int bad_ioapic(unsigned long address)
+static int bad_ioapic(unsigned long address)
 {
 	if (nr_ioapics >= MAX_IO_APICS) {
 		pr_warn("WARNING: Max # of I/O APICs (%d) exceeded (found %d), skipping\n",
@@ -3839,7 +3839,7 @@ static __init int bad_ioapic(unsigned long address)
 	return 0;
 }
 
-static __init int bad_ioapic_register(int idx)
+static int bad_ioapic_register(int idx)
 {
 	union IO_APIC_reg_00 reg_00;
 	union IO_APIC_reg_01 reg_01;
@@ -3858,8 +3858,8 @@ static __init int bad_ioapic_register(int idx)
 	return 0;
 }
 
-void __init mp_register_ioapic(int id, u32 address, u32 gsi_base,
-			       struct ioapic_domain_cfg *cfg)
+void mp_register_ioapic(int id, u32 address, u32 gsi_base,
+			struct ioapic_domain_cfg *cfg)
 {
 	int idx = 0;
 	int entries;
-- 
1.7.10.4

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

* [Patch V3 10/16] x86, irq: Refine mp_register_ioapic() to prepare for IOAPIC hotplug
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (8 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 09/16] x86, irq: Remove __init marker for functions will be used by IOAPIC hotplug Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 11/16] x86, irq, ACPI: Introduce a rwsem to protect IOAPIC operations from hotplug Jiang Liu
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, x86, Jiang Liu, Grant Likely, Prarit Bhargava
  Cc: Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, linux-kernel, linux-pci, linux-acpi,
	Ingo Molnar

Refine mp_register_ioapic() to prepare for IOAPIC hotplug by:
1) change return value from void to int.
2) check for gsi range conflicts
3) check for IOAPIC physical address conflicts
4) enhance the way to allocate IOAPIC index

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 arch/x86/include/asm/io_apic.h |    4 +-
 arch/x86/kernel/apic/io_apic.c |   80 ++++++++++++++++++++++++----------------
 2 files changed, 51 insertions(+), 33 deletions(-)

diff --git a/arch/x86/include/asm/io_apic.h b/arch/x86/include/asm/io_apic.h
index 0b31aebd9405..94d05bd6586f 100644
--- a/arch/x86/include/asm/io_apic.h
+++ b/arch/x86/include/asm/io_apic.h
@@ -188,8 +188,8 @@ extern int mp_find_ioapic_pin(int ioapic, u32 gsi);
 extern u32 mp_pin_to_gsi(int ioapic, int pin);
 extern int mp_map_gsi_to_irq(u32 gsi, unsigned int flags);
 extern void mp_unmap_irq(int irq);
-extern void mp_register_ioapic(int id, u32 address, u32 gsi_base,
-			       struct ioapic_domain_cfg *cfg);
+extern int mp_register_ioapic(int id, u32 address, u32 gsi_base,
+			      struct ioapic_domain_cfg *cfg);
 extern int mp_irqdomain_map(struct irq_domain *domain, unsigned int virq,
 			    irq_hw_number_t hwirq);
 extern void mp_irqdomain_unmap(struct irq_domain *domain, unsigned int virq);
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index 1510734d5cbb..18b5ce0c2bc9 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -3825,20 +3825,6 @@ int mp_find_ioapic_pin(int ioapic, u32 gsi)
 	return gsi - gsi_cfg->gsi_base;
 }
 
-static int bad_ioapic(unsigned long address)
-{
-	if (nr_ioapics >= MAX_IO_APICS) {
-		pr_warn("WARNING: Max # of I/O APICs (%d) exceeded (found %d), skipping\n",
-			MAX_IO_APICS, nr_ioapics);
-		return 1;
-	}
-	if (!address) {
-		pr_warn("WARNING: Bogus (zero) I/O APIC address found in table, skipping!\n");
-		return 1;
-	}
-	return 0;
-}
-
 static int bad_ioapic_register(int idx)
 {
 	union IO_APIC_reg_00 reg_00;
@@ -3858,29 +3844,44 @@ static int bad_ioapic_register(int idx)
 	return 0;
 }
 
-void mp_register_ioapic(int id, u32 address, u32 gsi_base,
-			struct ioapic_domain_cfg *cfg)
+static int find_free_ioapic_entry(void)
 {
-	int idx = 0;
-	int entries;
+	return nr_ioapics;
+}
+
+int mp_register_ioapic(int id, u32 address, u32 gsi_base,
+		       struct ioapic_domain_cfg *cfg)
+{
+	u32 gsi_end;
+	int idx, ioapic, entries;
 	struct mp_ioapic_gsi *gsi_cfg;
 
-	if (bad_ioapic(address))
-		return;
+	if (!address) {
+		pr_warn("Bogus (zero) I/O APIC address found, skipping!\n");
+		return -EINVAL;
+	}
+	for_each_ioapic(ioapic)
+		if (ioapics[ioapic].mp_config.apicaddr == address) {
+			pr_warn("address 0x%x conflicts with IOAPIC%d\n",
+				address, ioapic);
+			return -EEXIST;
+		}
 
-	idx = nr_ioapics;
+	idx = find_free_ioapic_entry();
+	if (idx >= MAX_IO_APICS) {
+		pr_warn("Max # of I/O APICs (%d) exceeded (found %d), skipping\n",
+			MAX_IO_APICS, idx);
+		return -ENOSPC;
+	}
 
 	ioapics[idx].mp_config.type = MP_IOAPIC;
 	ioapics[idx].mp_config.flags = MPC_APIC_USABLE;
 	ioapics[idx].mp_config.apicaddr = address;
-	ioapics[idx].irqdomain = NULL;
-	ioapics[idx].irqdomain_cfg = *cfg;
 
 	set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
-
 	if (bad_ioapic_register(idx)) {
 		clear_fixmap(FIX_IO_APIC_BASE_0 + idx);
-		return;
+		return -ENODEV;
 	}
 
 	ioapics[idx].mp_config.apicid = io_apic_unique_id(idx, id);
@@ -3891,24 +3892,41 @@ void mp_register_ioapic(int id, u32 address, u32 gsi_base,
 	 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
 	 */
 	entries = io_apic_get_redir_entries(idx);
+	gsi_end = gsi_base + entries - 1;
+	for_each_ioapic(ioapic) {
+		gsi_cfg = mp_ioapic_gsi_routing(ioapic);
+		if ((gsi_base >= gsi_cfg->gsi_base &&
+		     gsi_base <= gsi_cfg->gsi_end) ||
+		    (gsi_end >= gsi_cfg->gsi_base &&
+		     gsi_end <= gsi_cfg->gsi_end)) {
+			pr_warn("GSI range [%u-%u] for new IOAPIC conflicts with GSI[%u-%u]\n",
+				gsi_base, gsi_end,
+				gsi_cfg->gsi_base, gsi_cfg->gsi_end);
+			clear_fixmap(FIX_IO_APIC_BASE_0 + idx);
+			return -ENOSPC;
+		}
+	}
 	gsi_cfg = mp_ioapic_gsi_routing(idx);
 	gsi_cfg->gsi_base = gsi_base;
-	gsi_cfg->gsi_end = gsi_base + entries - 1;
+	gsi_cfg->gsi_end = gsi_end;
 
-	/*
-	 * The number of IO-APIC IRQ registers (== #pins):
-	 */
-	ioapics[idx].nr_registers = entries;
+	ioapics[idx].irqdomain = NULL;
+	ioapics[idx].irqdomain_cfg = *cfg;
 
 	if (gsi_cfg->gsi_end >= gsi_top)
 		gsi_top = gsi_cfg->gsi_end + 1;
+	if (nr_ioapics <= idx)
+		nr_ioapics = idx + 1;
+
+	/* Set nr_registers to mark entry present */
+	ioapics[idx].nr_registers = entries;
 
 	pr_info("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, GSI %d-%d\n",
 		idx, mpc_ioapic_id(idx),
 		mpc_ioapic_ver(idx), mpc_ioapic_addr(idx),
 		gsi_cfg->gsi_base, gsi_cfg->gsi_end);
 
-	nr_ioapics++;
+	return 0;
 }
 
 int mp_irqdomain_map(struct irq_domain *domain, unsigned int virq,
-- 
1.7.10.4

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

* [Patch V3 11/16] x86, irq, ACPI: Introduce a rwsem to protect IOAPIC operations from hotplug
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (9 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 10/16] x86, irq: Refine mp_register_ioapic() to prepare for " Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 12/16] x86, irq, ACPI: Implement interface to support ACPI based IOAPIC hot-addition Jiang Liu
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Len Brown, Pavel Machek, x86
  Cc: Jiang Liu, Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck,
	Joerg Roedel, Greg Kroah-Hartman, linux-kernel, linux-pci,
	linux-acpi, linux-pm

We are going to support ACPI based IOAPIC hotplug, so introduce a rwsem
to protect IOAPIC data structures from IOAPIC hotplug. We choose to
serialize in ACPI instead of in the IOAPIC core because:
1) currently we are only plan to support ACPI based IOAPIC hotplug
2) it's much more clean and easy
3) It does't affect IOAPIC discovered by devicetree, SFI and mppparse.

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 arch/x86/kernel/acpi/boot.c |   13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
index 8c28023924bf..120b573f1e96 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -76,6 +76,8 @@ int acpi_fix_pin2_polarity __initdata;
 static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
 #endif
 
+static DECLARE_RWSEM(acpi_ioapic_rwsem);
+
 #ifndef __HAVE_ARCH_CMPXCHG
 #warning ACPI uses CMPXCHG, i486 and later hardware
 #endif
@@ -608,8 +610,11 @@ void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
 
 int acpi_gsi_to_irq(u32 gsi, unsigned int *irqp)
 {
-	int irq = mp_map_gsi_to_irq(gsi, IOAPIC_MAP_ALLOC | IOAPIC_MAP_CHECK);
+	int irq;
 
+	down_read(&acpi_ioapic_rwsem);
+	irq = mp_map_gsi_to_irq(gsi, IOAPIC_MAP_ALLOC | IOAPIC_MAP_CHECK);
+	up_read(&acpi_ioapic_rwsem);
 	if (irq >= 0) {
 		*irqp = irq;
 		return 0;
@@ -650,7 +655,9 @@ static int acpi_register_gsi_ioapic(struct device *dev, u32 gsi,
 	int irq = gsi;
 
 #ifdef CONFIG_X86_IO_APIC
+	down_read(&acpi_ioapic_rwsem);
 	irq = mp_register_gsi(dev, gsi, trigger, polarity);
+	up_read(&acpi_ioapic_rwsem);
 #endif
 
 	return irq;
@@ -659,7 +666,9 @@ static int acpi_register_gsi_ioapic(struct device *dev, u32 gsi,
 static void acpi_unregister_gsi_ioapic(u32 gsi)
 {
 #ifdef CONFIG_X86_IO_APIC
+	down_read(&acpi_ioapic_rwsem);
 	mp_unregister_gsi(gsi);
+	up_read(&acpi_ioapic_rwsem);
 #endif
 }
 
@@ -1185,7 +1194,9 @@ static void __init acpi_process_madt(void)
 			/*
 			 * Parse MADT IO-APIC entries
 			 */
+			down_write(&acpi_ioapic_rwsem);
 			error = acpi_parse_madt_ioapic_entries();
+			up_write(&acpi_ioapic_rwsem);
 			if (!error) {
 				acpi_set_irq_model_ioapic();
 
-- 
1.7.10.4

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

* [Patch V3 12/16] x86, irq, ACPI: Implement interface to support ACPI based IOAPIC hot-addition
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (10 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 11/16] x86, irq, ACPI: Introduce a rwsem to protect IOAPIC operations from hotplug Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 13/16] x86, irq, ACPI: Implement interface to support ACPI based IOAPIC hot-removal Jiang Liu
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Len Brown, Pavel Machek, x86, Jiang Liu,
	Grant Likely, Prarit Bhargava
  Cc: Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, linux-kernel, linux-pci, linux-acpi,
	Ingo Molnar, linux-pm

Implement acpi_register_ioapic() and enhance mp_register_ioapic()
to support ACPI based IOAPIC hot-addition.

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 arch/x86/kernel/acpi/boot.c    |   31 +++++++++++++++++++++++++++++--
 arch/x86/kernel/apic/io_apic.c |   27 ++++++++++++++++++++++++---
 2 files changed, 53 insertions(+), 5 deletions(-)

diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
index 120b573f1e96..c5a0abd0be82 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -768,8 +768,35 @@ EXPORT_SYMBOL(acpi_unmap_lsapic);
 
 int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
 {
-	/* TBD */
-	return -EINVAL;
+	int ret = -ENOSYS;
+#ifdef CONFIG_ACPI_HOTPLUG_IOAPIC
+	int ioapic_id;
+	u64 addr;
+	struct ioapic_domain_cfg cfg = {
+		.type = IOAPIC_DOMAIN_DYNAMIC,
+		.ops = &acpi_irqdomain_ops,
+	};
+
+	ioapic_id = acpi_get_ioapic_id(handle, gsi_base, &addr);
+	if (ioapic_id < 0) {
+		unsigned long long uid;
+		acpi_status status;
+
+		status = acpi_evaluate_integer(handle, METHOD_NAME__UID,
+					       NULL, &uid);
+		if (ACPI_FAILURE(status)) {
+			acpi_handle_warn(handle, "failed to get IOAPIC ID.\n");
+			return -EINVAL;
+		}
+		ioapic_id = (int)uid;
+	}
+
+	down_write(&acpi_ioapic_rwsem);
+	ret  = mp_register_ioapic(ioapic_id, phys_addr, gsi_base, &cfg);
+	up_write(&acpi_ioapic_rwsem);
+#endif
+
+	return ret;
 }
 
 EXPORT_SYMBOL(acpi_register_ioapic);
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index 18b5ce0c2bc9..1b6a64ed2472 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -3846,7 +3846,13 @@ static int bad_ioapic_register(int idx)
 
 static int find_free_ioapic_entry(void)
 {
-	return nr_ioapics;
+	int idx;
+
+	for (idx = 0; idx < MAX_IO_APICS; idx++)
+		if (ioapics[idx].nr_registers == 0)
+			return idx;
+
+	return MAX_IO_APICS;
 }
 
 int mp_register_ioapic(int id, u32 address, u32 gsi_base,
@@ -3862,8 +3868,15 @@ int mp_register_ioapic(int id, u32 address, u32 gsi_base,
 	}
 	for_each_ioapic(ioapic)
 		if (ioapics[ioapic].mp_config.apicaddr == address) {
-			pr_warn("address 0x%x conflicts with IOAPIC%d\n",
-				address, ioapic);
+			/*
+			 * IOAPIC unit may also be visible in PCI scope.
+			 * When ioapic PCI driver's probe() is called,
+			 * the IOAPIC unit may have already been initialized
+			 * at boot time.
+			 */
+			if (!ioapic_initialized)
+				pr_warn("address 0x%x conflicts with IOAPIC%d\n",
+					address, ioapic);
 			return -EEXIST;
 		}
 
@@ -3913,6 +3926,14 @@ int mp_register_ioapic(int id, u32 address, u32 gsi_base,
 	ioapics[idx].irqdomain = NULL;
 	ioapics[idx].irqdomain_cfg = *cfg;
 
+	if (ioapic_initialized) {
+		if (mp_irqdomain_create(idx)) {
+			clear_fixmap(FIX_IO_APIC_BASE_0 + idx);
+			return -ENOMEM;
+		}
+		alloc_ioapic_saved_registers(idx);
+	}
+
 	if (gsi_cfg->gsi_end >= gsi_top)
 		gsi_top = gsi_cfg->gsi_end + 1;
 	if (nr_ioapics <= idx)
-- 
1.7.10.4

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

* [Patch V3 13/16] x86, irq, ACPI: Implement interface to support ACPI based IOAPIC hot-removal
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (11 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 12/16] x86, irq, ACPI: Implement interface to support ACPI based IOAPIC hot-addition Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 14/16] x86, irq: Introduce helper to check whether an IOAPIC has been registered Jiang Liu
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, x86, Len Brown, Pavel Machek, Jiang Liu,
	Grant Likely, Prarit Bhargava
  Cc: Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, linux-kernel, linux-pci, linux-acpi,
	Ingo Molnar, linux-pm

Implement acpi_unregister_ioapic() to support ACPI based IOAPIC hot-removal.
An IOAPIC could only be removed when all its pins are unused.

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 arch/x86/include/asm/io_apic.h |    1 +
 arch/x86/kernel/acpi/boot.c    |   13 +++++++---
 arch/x86/kernel/apic/io_apic.c |   55 ++++++++++++++++++++++++++++++++++++++++
 3 files changed, 65 insertions(+), 4 deletions(-)

diff --git a/arch/x86/include/asm/io_apic.h b/arch/x86/include/asm/io_apic.h
index 94d05bd6586f..ce63cf34c93c 100644
--- a/arch/x86/include/asm/io_apic.h
+++ b/arch/x86/include/asm/io_apic.h
@@ -190,6 +190,7 @@ extern int mp_map_gsi_to_irq(u32 gsi, unsigned int flags);
 extern void mp_unmap_irq(int irq);
 extern int mp_register_ioapic(int id, u32 address, u32 gsi_base,
 			      struct ioapic_domain_cfg *cfg);
+extern int mp_unregister_ioapic(u32 gsi_base);
 extern int mp_irqdomain_map(struct irq_domain *domain, unsigned int virq,
 			    irq_hw_number_t hwirq);
 extern void mp_irqdomain_unmap(struct irq_domain *domain, unsigned int virq);
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
index c5a0abd0be82..28d50c70cac9 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -798,15 +798,20 @@ int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
 
 	return ret;
 }
-
 EXPORT_SYMBOL(acpi_register_ioapic);
 
 int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
 {
-	/* TBD */
-	return -EINVAL;
-}
+	int ret = -ENOSYS;
+
+#ifdef CONFIG_ACPI_HOTPLUG_IOAPIC
+	down_write(&acpi_ioapic_rwsem);
+	ret  = mp_unregister_ioapic(gsi_base);
+	up_write(&acpi_ioapic_rwsem);
+#endif
 
+	return ret;
+}
 EXPORT_SYMBOL(acpi_unregister_ioapic);
 
 static int __init acpi_parse_sbf(struct acpi_table_header *table)
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index 1b6a64ed2472..5711689e4307 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -112,6 +112,7 @@ static struct ioapic {
 	struct ioapic_domain_cfg irqdomain_cfg;
 	struct irq_domain *irqdomain;
 	struct mp_pin_info *pin_info;
+	struct resource *iomem_res;
 } ioapics[MAX_IO_APICS];
 
 #define mpc_ioapic_ver(ioapic_idx)	ioapics[ioapic_idx].mp_config.apicver
@@ -250,6 +251,12 @@ static void alloc_ioapic_saved_registers(int idx)
 		pr_err("IOAPIC %d: suspend/resume impossible!\n", idx);
 }
 
+static void free_ioapic_saved_registers(int idx)
+{
+	kfree(ioapics[idx].saved_registers);
+	ioapics[idx].saved_registers = NULL;
+}
+
 int __init arch_early_irq_init(void)
 {
 	struct irq_cfg *cfg;
@@ -2967,6 +2974,16 @@ static int mp_irqdomain_create(int ioapic)
 	return 0;
 }
 
+static void ioapic_destroy_irqdomain(int idx)
+{
+	if (ioapics[idx].irqdomain) {
+		irq_domain_remove(ioapics[idx].irqdomain);
+		ioapics[idx].irqdomain = NULL;
+	}
+	kfree(ioapics[idx].pin_info);
+	ioapics[idx].pin_info = NULL;
+}
+
 void __init setup_IO_APIC(void)
 {
 	int ioapic;
@@ -3728,6 +3745,7 @@ static struct resource * __init ioapic_setup_resources(void)
 		snprintf(mem, IOAPIC_RESOURCE_NAME_SIZE, "IOAPIC %u", i);
 		mem += IOAPIC_RESOURCE_NAME_SIZE;
 		num++;
+		ioapics[i].iomem_res = res;
 	}
 
 	ioapic_resources = res;
@@ -3950,6 +3968,43 @@ int mp_register_ioapic(int id, u32 address, u32 gsi_base,
 	return 0;
 }
 
+int mp_unregister_ioapic(u32 gsi_base)
+{
+	int ioapic, pin;
+	int found = 0;
+	struct mp_pin_info *pin_info;
+
+	for_each_ioapic(ioapic)
+		if (ioapics[ioapic].gsi_config.gsi_base == gsi_base) {
+			found = 1;
+			break;
+		}
+	if (!found) {
+		pr_warn("can't find IOAPIC for GSI %d\n", gsi_base);
+		return -ENODEV;
+	}
+
+	for_each_pin(ioapic, pin) {
+		pin_info = mp_pin_info(ioapic, pin);
+		if (pin_info->count) {
+			pr_warn("pin%d on IOAPIC%d is still in use.\n",
+				pin, ioapic);
+			return -EBUSY;
+		}
+	}
+
+	/* Mark entry not present */
+	ioapics[ioapic].nr_registers  = 0;
+	ioapic_destroy_irqdomain(ioapic);
+	free_ioapic_saved_registers(ioapic);
+	if (ioapics[ioapic].iomem_res)
+		release_resource(ioapics[ioapic].iomem_res);
+	clear_fixmap(FIX_IO_APIC_BASE_0 + ioapic);
+	memset(&ioapics[ioapic], 0, sizeof(ioapics[ioapic]));
+
+	return 0;
+}
+
 int mp_irqdomain_map(struct irq_domain *domain, unsigned int virq,
 		     irq_hw_number_t hwirq)
 {
-- 
1.7.10.4

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

* [Patch V3 14/16] x86, irq: Introduce helper to check whether an IOAPIC has been registered
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (12 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 13/16] x86, irq, ACPI: Implement interface to support ACPI based IOAPIC hot-removal Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 15/16] PCI: Remove PCI ioapic driver Jiang Liu
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, x86, Len Brown, Pavel Machek, Jiang Liu,
	Grant Likely, Prarit Bhargava
  Cc: Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, linux-kernel, linux-pci, linux-acpi,
	Ingo Molnar, linux-pm

Introduce acpi_ioapic_registered() to check whether an IOAPIC has already
been registered, it will be used when enabling IOAPIC hotplug.

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 arch/x86/include/asm/io_apic.h |    1 +
 arch/x86/kernel/acpi/boot.c    |   11 +++++++++++
 arch/x86/kernel/apic/io_apic.c |   11 +++++++++++
 include/linux/acpi.h           |    1 +
 4 files changed, 24 insertions(+)

diff --git a/arch/x86/include/asm/io_apic.h b/arch/x86/include/asm/io_apic.h
index ce63cf34c93c..0db2b7037e4b 100644
--- a/arch/x86/include/asm/io_apic.h
+++ b/arch/x86/include/asm/io_apic.h
@@ -191,6 +191,7 @@ extern void mp_unmap_irq(int irq);
 extern int mp_register_ioapic(int id, u32 address, u32 gsi_base,
 			      struct ioapic_domain_cfg *cfg);
 extern int mp_unregister_ioapic(u32 gsi_base);
+extern int mp_ioapic_registered(u32 gsi_base);
 extern int mp_irqdomain_map(struct irq_domain *domain, unsigned int virq,
 			    irq_hw_number_t hwirq);
 extern void mp_irqdomain_unmap(struct irq_domain *domain, unsigned int virq);
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
index 28d50c70cac9..2a133f594e66 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -814,6 +814,17 @@ int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
 }
 EXPORT_SYMBOL(acpi_unregister_ioapic);
 
+int acpi_ioapic_registered(acpi_handle handle, u32 gsi_base)
+{
+	int ret;
+
+	down_write(&acpi_ioapic_rwsem);
+	ret  = mp_ioapic_registered(gsi_base);
+	up_write(&acpi_ioapic_rwsem);
+
+	return ret;
+}
+
 static int __init acpi_parse_sbf(struct acpi_table_header *table)
 {
 	struct acpi_table_boot *sb;
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index 5711689e4307..3410f1f467db 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -4005,6 +4005,17 @@ int mp_unregister_ioapic(u32 gsi_base)
 	return 0;
 }
 
+int mp_ioapic_registered(u32 gsi_base)
+{
+	int ioapic;
+
+	for_each_ioapic(ioapic)
+		if (ioapics[ioapic].gsi_config.gsi_base == gsi_base)
+			return 1;
+
+	return 0;
+}
+
 int mp_irqdomain_map(struct irq_domain *domain, unsigned int virq,
 		     irq_hw_number_t hwirq)
 {
diff --git a/include/linux/acpi.h b/include/linux/acpi.h
index fb2bc50f330e..1294512b07e5 100644
--- a/include/linux/acpi.h
+++ b/include/linux/acpi.h
@@ -155,6 +155,7 @@ int acpi_get_ioapic_id(acpi_handle handle, u32 gsi_base, u64 *phys_addr);
 
 int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base);
 int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base);
+int acpi_ioapic_registered(acpi_handle handle, u32 gsi_base);
 void acpi_irq_stats_init(void);
 extern u32 acpi_irq_handled;
 extern u32 acpi_irq_not_handled;
-- 
1.7.10.4

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

* [Patch V3 15/16] PCI: Remove PCI ioapic driver
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (13 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 14/16] x86, irq: Introduce helper to check whether an IOAPIC has been registered Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25  8:40 ` [Patch V3 16/16] x86, irq, ACPI: Implement ACPI driver to support IOAPIC hotplug Jiang Liu
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu
  Cc: Jiang Liu, Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck,
	Joerg Roedel, Greg Kroah-Hartman, x86, linux-kernel, linux-pci,
	linux-acpi

To support IOAPIC hotplug on x86 and IA64 platforms, OS needs to figure
out global interrupt source number(GSI) and IOAPIC enumeration ID
through ACPI interfaces. So BIOS must implement an ACPI IOAPIC device
with _GSB/_UID or _MAT method to support IOAPIC hotplug. OS also needs
to figure out base physical address to access IOAPIC registers. OS may
get the base physical address through PCI BARs if IOAPIC device is
visible in PCI domain, otherwise OS may get the address by ACPI _CRS
method if IOAPIC device is hidden from PCI domain by BIOS.

When adding a PCI subtree, we need to add IOAPIC devices before enabling
all other PCI devices because other PCI devices may use the IOAPIC to
allocate PCI interrupts.

So we plan to reimplement IOAPIC driver as an ACPI instead of PCI driver
due to:
1) hot-pluggable IOAPIC devices are always visible in ACPI domain,
   but may or may not be visible in PCI domain.
2) we could explicitly control the order between IOAPIC and other PCI
   devices.

We also have another choice to use a PCI driver to manage IOAPIC device
if it's visible in PCI domain and use an ACPI driver if it's only
visible in ACPI domain. But this solution is a little complex.

It shouldn't cause serious backward compatibility issues because:
1) IOAPIC hotplug is never supported on x86 yet because it hasn't
   implemented the required acpi_register_ioapic() and
   acpi_unregister_ioapic().
2) Currently only ACPI based IOAPIC hotplug is possible on x86 and
   IA64, we don't know other specifications and interfaces to support
   IOAPIC hotplug yet.
3) We will reimplement an ACPI IOAPICtdriver support IOAPIC hotplug.

This change also helps to get rid of the false alarm on all current
Linux distributions:
[    6.952497] ioapic: probe of 0000:00:05.4 failed with error -22
[    6.959542] ioapic: probe of 0000:80:05.4 failed with error -22

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 drivers/pci/Kconfig  |    7 ---
 drivers/pci/Makefile |    2 -
 drivers/pci/ioapic.c |  121 --------------------------------------------------
 3 files changed, 130 deletions(-)
 delete mode 100644 drivers/pci/ioapic.c

diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig
index 893503fa1782..39866d18004e 100644
--- a/drivers/pci/Kconfig
+++ b/drivers/pci/Kconfig
@@ -104,13 +104,6 @@ config PCI_PASID
 
 	  If unsure, say N.
 
-config PCI_IOAPIC
-	bool "PCI IO-APIC hotplug support" if X86
-	depends on PCI
-	depends on ACPI
-	depends on X86_IO_APIC
-	default !X86
-
 config PCI_LABEL
 	def_bool y if (DMI || ACPI)
 	select NLS
diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile
index e04fe2d9df3b..73e4af400a5a 100644
--- a/drivers/pci/Makefile
+++ b/drivers/pci/Makefile
@@ -13,8 +13,6 @@ obj-$(CONFIG_PCI_QUIRKS) += quirks.o
 # Build PCI Express stuff if needed
 obj-$(CONFIG_PCIEPORTBUS) += pcie/
 
-obj-$(CONFIG_PCI_IOAPIC) += ioapic.o
-
 # Build the PCI Hotplug drivers if we were asked to
 obj-$(CONFIG_HOTPLUG_PCI) += hotplug/
 ifdef CONFIG_HOTPLUG_PCI
diff --git a/drivers/pci/ioapic.c b/drivers/pci/ioapic.c
deleted file mode 100644
index 6b2b7dddbbdb..000000000000
--- a/drivers/pci/ioapic.c
+++ /dev/null
@@ -1,121 +0,0 @@
-/*
- * IOAPIC/IOxAPIC/IOSAPIC driver
- *
- * Copyright (C) 2009 Fujitsu Limited.
- * (c) Copyright 2009 Hewlett-Packard Development Company, L.P.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- */
-
-/*
- * This driver manages PCI I/O APICs added by hotplug after boot.  We try to
- * claim all I/O APIC PCI devices, but those present at boot were registered
- * when we parsed the ACPI MADT, so we'll fail when we try to re-register
- * them.
- */
-
-#include <linux/pci.h>
-#include <linux/module.h>
-#include <linux/acpi.h>
-#include <linux/slab.h>
-
-struct ioapic {
-	acpi_handle	handle;
-	u32		gsi_base;
-};
-
-static int ioapic_probe(struct pci_dev *dev, const struct pci_device_id *ent)
-{
-	acpi_handle handle;
-	acpi_status status;
-	unsigned long long gsb;
-	struct ioapic *ioapic;
-	int ret;
-	char *type;
-	struct resource *res;
-
-	handle = ACPI_HANDLE(&dev->dev);
-	if (!handle)
-		return -EINVAL;
-
-	status = acpi_evaluate_integer(handle, "_GSB", NULL, &gsb);
-	if (ACPI_FAILURE(status))
-		return -EINVAL;
-
-	/*
-	 * The previous code in acpiphp evaluated _MAT if _GSB failed, but
-	 * ACPI spec 4.0 sec 6.2.2 requires _GSB for hot-pluggable I/O APICs.
-	 */
-
-	ioapic = kzalloc(sizeof(*ioapic), GFP_KERNEL);
-	if (!ioapic)
-		return -ENOMEM;
-
-	ioapic->handle = handle;
-	ioapic->gsi_base = (u32) gsb;
-
-	if (dev->class == PCI_CLASS_SYSTEM_PIC_IOAPIC)
-		type = "IOAPIC";
-	else
-		type = "IOxAPIC";
-
-	ret = pci_enable_device(dev);
-	if (ret < 0)
-		goto exit_free;
-
-	pci_set_master(dev);
-
-	if (pci_request_region(dev, 0, type))
-		goto exit_disable;
-
-	res = &dev->resource[0];
-	if (acpi_register_ioapic(ioapic->handle, res->start, ioapic->gsi_base))
-		goto exit_release;
-
-	pci_set_drvdata(dev, ioapic);
-	dev_info(&dev->dev, "%s at %pR, GSI %u\n", type, res, ioapic->gsi_base);
-	return 0;
-
-exit_release:
-	pci_release_region(dev, 0);
-exit_disable:
-	pci_disable_device(dev);
-exit_free:
-	kfree(ioapic);
-	return -ENODEV;
-}
-
-static void ioapic_remove(struct pci_dev *dev)
-{
-	struct ioapic *ioapic = pci_get_drvdata(dev);
-
-	acpi_unregister_ioapic(ioapic->handle, ioapic->gsi_base);
-	pci_release_region(dev, 0);
-	pci_disable_device(dev);
-	kfree(ioapic);
-}
-
-
-static DEFINE_PCI_DEVICE_TABLE(ioapic_devices) = {
-	{ PCI_DEVICE_CLASS(PCI_CLASS_SYSTEM_PIC_IOAPIC, ~0) },
-	{ PCI_DEVICE_CLASS(PCI_CLASS_SYSTEM_PIC_IOXAPIC, ~0) },
-	{ }
-};
-MODULE_DEVICE_TABLE(pci, ioapic_devices);
-
-static struct pci_driver ioapic_driver = {
-	.name		= "ioapic",
-	.id_table	= ioapic_devices,
-	.probe		= ioapic_probe,
-	.remove		= ioapic_remove,
-};
-
-static int __init ioapic_init(void)
-{
-	return pci_register_driver(&ioapic_driver);
-}
-module_init(ioapic_init);
-
-MODULE_LICENSE("GPL");
-- 
1.7.10.4

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

* [Patch V3 16/16] x86, irq, ACPI: Implement ACPI driver to support IOAPIC hotplug
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (14 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 15/16] PCI: Remove PCI ioapic driver Jiang Liu
@ 2014-06-25  8:40 ` Jiang Liu
  2014-06-25 14:44 ` [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Konrad Rzeszutek Wilk
  2014-07-14 17:26 ` Konrad Rzeszutek Wilk
  17 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-25  8:40 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Len Brown
  Cc: Jiang Liu, Konrad Rzeszutek Wilk, Andrew Morton, Tony Luck,
	Joerg Roedel, Greg Kroah-Hartman, x86, linux-kernel, linux-pci,
	linux-acpi

Enable support of IOAPIC hotplug by:
1) reintroducing ACPI based IOAPIC driver
2) enhance pci_root driver to hook hotplug events

The ACPI IOAPIC driver is always enabled if system supports all of
ACPI, PCI and IOAPIC.

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 drivers/acpi/Kconfig    |    6 ++
 drivers/acpi/Makefile   |    1 +
 drivers/acpi/internal.h |    7 ++
 drivers/acpi/ioapic.c   |  236 +++++++++++++++++++++++++++++++++++++++++++++++
 drivers/acpi/pci_root.c |    3 +
 5 files changed, 253 insertions(+)
 create mode 100644 drivers/acpi/ioapic.c

diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig
index a34a22841002..2dab72ce2dc6 100644
--- a/drivers/acpi/Kconfig
+++ b/drivers/acpi/Kconfig
@@ -309,6 +309,12 @@ config ACPI_HOTPLUG_MEMORY
 	  To compile this driver as a module, choose M here:
 	  the module will be called acpi_memhotplug.
 
+config ACPI_HOTPLUG_IOAPIC
+	bool
+	depends on PCI
+	depends on X86_IO_APIC
+	default y
+
 config ACPI_SBS
 	tristate "Smart Battery System"
 	depends on X86
diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile
index bf5702753c6e..e8e8dfe43be1 100644
--- a/drivers/acpi/Makefile
+++ b/drivers/acpi/Makefile
@@ -68,6 +68,7 @@ obj-$(CONFIG_ACPI_PROCESSOR)	+= processor.o
 obj-y				+= container.o
 obj-$(CONFIG_ACPI_THERMAL)	+= thermal.o
 obj-y				+= acpi_memhotplug.o
+obj-$(CONFIG_ACPI_HOTPLUG_IOAPIC) += ioapic.o
 obj-$(CONFIG_ACPI_BATTERY)	+= battery.o
 obj-$(CONFIG_ACPI_SBS)		+= sbshc.o
 obj-$(CONFIG_ACPI_SBS)		+= sbs.o
diff --git a/drivers/acpi/internal.h b/drivers/acpi/internal.h
index 7de5b603f272..136275c9572c 100644
--- a/drivers/acpi/internal.h
+++ b/drivers/acpi/internal.h
@@ -34,6 +34,13 @@ void acpi_pnp_init(void);
 int acpi_sysfs_init(void);
 void acpi_container_init(void);
 void acpi_memory_hotplug_init(void);
+#ifdef	CONFIG_ACPI_HOTPLUG_IOAPIC
+int acpi_ioapic_add(struct acpi_pci_root *root);
+int acpi_ioapic_remove(struct acpi_pci_root *root);
+#else
+static inline int acpi_ioapic_add(struct acpi_pci_root *root) { return 0; }
+static inline int acpi_ioapic_remove(struct acpi_pci_root *root) { return 0; }
+#endif
 #ifdef CONFIG_ACPI_DOCK
 void register_dock_dependent_device(struct acpi_device *adev,
 				    acpi_handle dshandle);
diff --git a/drivers/acpi/ioapic.c b/drivers/acpi/ioapic.c
new file mode 100644
index 000000000000..66d87a61ee5c
--- /dev/null
+++ b/drivers/acpi/ioapic.c
@@ -0,0 +1,236 @@
+/*
+ * IOAPIC/IOxAPIC/IOSAPIC driver
+ *
+ * Copyright (C) 2009 Fujitsu Limited.
+ * (c) Copyright 2009 Hewlett-Packard Development Company, L.P.
+ *
+ * Copyright (C) 2014 Intel Corporation
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * Based on original drivers/pci/ioapic.c
+ *	Yinghai Lu <yinghai@kernel.org>
+ *	Jiang Liu <jiang.liu@intel.com>
+ */
+
+/*
+ * This driver manages I/O APICs added by hotplug after boot.
+ * We try to claim all I/O APIC devices, but those present at boot were
+ * registered when we parsed the ACPI MADT, so we'll fail when we try to
+ * re-register them.
+ */
+
+#define pr_fmt(fmt) "ACPI : IOAPIC: " fmt
+
+#include <linux/slab.h>
+#include <linux/acpi.h>
+#include <linux/pci.h>
+#include <acpi/acpi.h>
+
+struct acpi_pci_ioapic {
+	acpi_handle	root_handle;
+	acpi_handle	handle;
+	u32		gsi_base;
+	struct resource	res;
+	struct pci_dev	*pdev;
+	struct list_head list;
+};
+
+static LIST_HEAD(ioapic_list);
+static DEFINE_MUTEX(ioapic_list_lock);
+
+static acpi_status setup_res(struct acpi_resource *acpi_res, void *data)
+{
+	struct resource *res = data;
+
+	memset(res, 0, sizeof(*res));
+	if (acpi_dev_resource_memory(acpi_res, res)) {
+		res->flags &= IORESOURCE_MEM;
+		if (res->flags)
+			return AE_OK;
+	} else if (acpi_dev_resource_address_space(acpi_res, res)) {
+		struct acpi_resource_address64 addr;
+
+		res->flags &= IORESOURCE_MEM;
+		if (res->flags &&
+		    ACPI_SUCCESS(acpi_resource_to_address64(acpi_res, &addr)) &&
+		    addr.info.mem.caching != ACPI_PREFETCHABLE_MEMORY) {
+			res->start += addr.translation_offset;
+			res->end += addr.translation_offset;
+			return AE_OK;
+		}
+	}
+	res->flags = 0;
+
+	return AE_OK;
+}
+
+static bool acpi_is_ioapic(acpi_handle handle, char **type)
+{
+	acpi_status status;
+	struct acpi_device_info *info;
+	char *hid = NULL;
+	bool match = false;
+
+	if (!acpi_has_method(handle, "_GSB"))
+		return false;
+
+	status = acpi_get_object_info(handle, &info);
+	if (ACPI_SUCCESS(status)) {
+		if (info->valid & ACPI_VALID_HID)
+			hid = info->hardware_id.string;
+		if (hid) {
+			if (strcmp(hid, "ACPI0009") == 0) {
+				*type = "IOxAPIC";
+				match = true;
+			} else if (strcmp(hid, "ACPI000A") == 0) {
+				*type = "IOAPIC";
+				match = true;
+			}
+		}
+		kfree(info);
+	}
+
+	return match;
+}
+
+static acpi_status handle_ioapic_add(acpi_handle handle, u32 lvl,
+				     void *context, void **rv)
+{
+	acpi_status status;
+	unsigned long long gsi_base;
+	struct acpi_pci_ioapic *ioapic;
+	struct pci_dev *dev = NULL;
+	struct resource *res = NULL;
+	char *type = NULL;
+
+	if (!acpi_is_ioapic(handle, &type))
+		return AE_OK;
+
+	mutex_lock(&ioapic_list_lock);
+	list_for_each_entry(ioapic, &ioapic_list, list)
+		if (ioapic->handle == handle) {
+			mutex_unlock(&ioapic_list_lock);
+			return AE_OK;
+		}
+
+	status = acpi_evaluate_integer(handle, "_GSB", NULL, &gsi_base);
+	if (ACPI_FAILURE(status)) {
+		acpi_handle_warn(handle, "failed to evaluate _GSB method\n");
+		goto exit;
+	}
+
+	ioapic = kzalloc(sizeof(*ioapic), GFP_KERNEL);
+	if (!ioapic) {
+		pr_err("cannot allocate memory for new IOAPIC\n");
+		goto exit;
+	} else {
+		ioapic->root_handle = (acpi_handle)context;
+		ioapic->handle = handle;
+		ioapic->gsi_base = (u32)gsi_base;
+		ioapic->res.flags = IORESOURCE_UNSET;
+	}
+
+	if (acpi_ioapic_registered(handle, (u32)gsi_base))
+		goto done;
+
+	dev = acpi_get_pci_dev(handle);
+	if (dev && pci_resource_len(dev, 0)) {
+		if (pci_enable_device(dev) < 0)
+			goto exit_put;
+		pci_set_master(dev);
+		if (pci_request_region(dev, 0, type))
+			goto exit_disable;
+		res = &dev->resource[0];
+		ioapic->pdev = dev;
+	} else {
+		pci_dev_put(dev);
+		dev = NULL;
+
+		res = &ioapic->res;
+		acpi_walk_resources(handle, METHOD_NAME__CRS, setup_res, res);
+		if (res->flags == IORESOURCE_UNSET) {
+			acpi_handle_warn(handle, "failed to get resource\n");
+			goto exit_free;
+		} else if (request_resource(&iomem_resource, res)) {
+			acpi_handle_warn(handle, "failed to insert resource\n");
+			goto exit_free;
+		}
+	}
+
+	if (acpi_register_ioapic(handle, res->start, (u32)gsi_base)) {
+		acpi_handle_warn(handle, "failed to register IOAPIC\n");
+		goto exit_release;
+	}
+done:
+	list_add(&ioapic->list, &ioapic_list);
+	mutex_unlock(&ioapic_list_lock);
+
+	if (dev)
+		dev_info(&dev->dev, "%s at %pR, GSI %u\n",
+			 type, res, (u32)gsi_base);
+	else
+		acpi_handle_info(handle, "%s at %pR, GSI %u\n",
+				 type, res, (u32)gsi_base);
+
+	return AE_OK;
+
+exit_release:
+	if (dev)
+		pci_release_region(dev, 0);
+	else
+		release_resource(res);
+exit_disable:
+	if (dev)
+		pci_disable_device(dev);
+exit_put:
+	if (dev)
+		pci_dev_put(dev);
+exit_free:
+	kfree(ioapic);
+exit:
+	mutex_unlock(&ioapic_list_lock);
+	*(acpi_status *)rv = AE_ERROR;
+	return AE_OK;
+}
+
+int acpi_ioapic_add(struct acpi_pci_root *root)
+{
+	acpi_status status, retval = AE_OK;
+
+	status = acpi_walk_namespace(ACPI_TYPE_DEVICE, root->device->handle,
+				     UINT_MAX, handle_ioapic_add, NULL,
+				     root->device->handle, (void **)&retval);
+
+	return ACPI_SUCCESS(status) && ACPI_SUCCESS(retval) ? 0 : -ENODEV;
+}
+
+int acpi_ioapic_remove(struct acpi_pci_root *root)
+{
+	int retval = 0;
+	struct acpi_pci_ioapic *ioapic, *tmp;
+
+	mutex_lock(&ioapic_list_lock);
+	list_for_each_entry_safe(ioapic, tmp, &ioapic_list, list) {
+		if (root->device->handle != ioapic->root_handle)
+			continue;
+
+		if (acpi_unregister_ioapic(ioapic->handle, ioapic->gsi_base))
+			retval = -EBUSY;
+
+		if (ioapic->pdev) {
+			pci_release_region(ioapic->pdev, 0);
+			pci_disable_device(ioapic->pdev);
+			pci_dev_put(ioapic->pdev);
+		} else if (ioapic->res.flags != IORESOURCE_UNSET) {
+			release_resource(&ioapic->res);
+		}
+		list_del(&ioapic->list);
+		kfree(ioapic);
+	}
+	mutex_unlock(&ioapic_list_lock);
+
+	return retval;
+}
diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c
index d388f13d48b4..e1223fac65ce 100644
--- a/drivers/acpi/pci_root.c
+++ b/drivers/acpi/pci_root.c
@@ -600,6 +600,7 @@ static int acpi_pci_root_add(struct acpi_device *device,
 	if (system_state != SYSTEM_BOOTING) {
 		pcibios_resource_survey_bus(root->bus);
 		pci_assign_unassigned_root_bus_resources(root->bus);
+		acpi_ioapic_add(root);
 	}
 
 	pci_lock_rescan_remove();
@@ -620,6 +621,8 @@ static void acpi_pci_root_remove(struct acpi_device *device)
 
 	pci_stop_root_bus(root->bus);
 
+	WARN_ON(acpi_ioapic_remove(root));
+
 	device_set_run_wake(root->bus->bridge, false);
 	pci_acpi_remove_bus_pm_notifier(device);
 
-- 
1.7.10.4

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

* Re: [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (15 preceding siblings ...)
  2014-06-25  8:40 ` [Patch V3 16/16] x86, irq, ACPI: Implement ACPI driver to support IOAPIC hotplug Jiang Liu
@ 2014-06-25 14:44 ` Konrad Rzeszutek Wilk
  2014-06-27 14:43   ` Jiang Liu
  2014-07-14 17:26 ` Konrad Rzeszutek Wilk
  17 siblings, 1 reply; 25+ messages in thread
From: Konrad Rzeszutek Wilk @ 2014-06-25 14:44 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, x86, linux-kernel, linux-pci, linux-acpi

On Wed, Jun 25, 2014 at 04:40:31PM +0800, Jiang Liu wrote:
> This patch set enhances IOAPIC core and ACPI drivers to support IOAPIC
> hotplug on x86 platforms. It's based on tip/x86/apic.
> 
> You may pull it from 
> https://github.com/jiangliu/linux.git ioapic/hotplug_v3

fatal: Couldn't find remote ref ioapic/hotplug_v3
Unexpected end of command stream

I see ioapic/hotplug_v2?
> 
> We have pick up several patches from Yinghai's original IOAPIC hotplug
> patch set and reimplemented IOAPIC driver as an ACPI driver instead of
> a PCI driver.
> 
> It has been tested on a 4-socket Intel SDV with socket hot-addition
> capability. Any suggestions are welcomed!
> 
> Patch 1-5 are minor bugfixes and code improvements
> Patch 6-14 enhances ACPI and IOAPIC core to support IOAPIC hotplug
> Patch 15 killes PCI IOAPIC driver
> Patch 16 reimplements ACPI IOAPIC driver and enables IOAPIC hotplug
> 
> V2->V3:
> 1) Refine ACPI resource walk functions for PCI root bus and IOAPIC
> 2) Improve commit messages
> 3) Reorder patch order for better maintenence
> 
> Jiang Liu (11):
>   x86, irq, ACPI: Protect acpi_pci_irq_enable() from reentrance
>   ACPI: Correct return value of acpi_dev_resource_address_space()
>   x86, PCI, ACPI: Kill private function resource_to_addr()
>   x86, irq: Remove __init marker for functions will be used by IOAPIC
>     hotplug
>   x86, irq: Refine mp_register_ioapic() to prepare for IOAPIC hotplug
>   x86, irq, ACPI: Introduce a rwsem to protect IOAPIC operations from
>     hotplug
>   x86, irq, ACPI: Implement interface to support ACPI based IOAPIC
>     hot-addition
>   x86, irq, ACPI: Implement interface to support ACPI based IOAPIC
>     hot-removal
>   x86, irq: Introduce helper to check whether an IOAPIC has been
>     registered
>   PCI: Remove PCI ioapic driver
>   x86, irq, ACPI: Implement ACPI driver to support IOAPIC hotplug
> 
> Yinghai Lu (5):
>   ACPI: Make map_mat_entry handle x2apic entry
>   ACPI: Move acpi_get_cpuid() to separated file
>   x86, irq: Split out alloc_ioapic_save_registers()
>   x86, ioapic: Find usable ioapic id for 64bit.
>   ACPI, ioapic: Add acpi_get_ioapic_id()
> 
>  arch/x86/include/asm/io_apic.h |    6 +-
>  arch/x86/kernel/acpi/boot.c    |   68 ++++++++-
>  arch/x86/kernel/apic/io_apic.c |  235 +++++++++++++++++++++++++-------
>  arch/x86/pci/acpi.c            |  142 +++++++------------
>  drivers/acpi/Kconfig           |    6 +
>  drivers/acpi/Makefile          |    2 +
>  drivers/acpi/apic_id.c         |  295 ++++++++++++++++++++++++++++++++++++++++
>  drivers/acpi/internal.h        |    7 +
>  drivers/acpi/ioapic.c          |  236 ++++++++++++++++++++++++++++++++
>  drivers/acpi/pci_irq.c         |    7 +-
>  drivers/acpi/pci_root.c        |    3 +
>  drivers/acpi/processor_core.c  |  191 --------------------------
>  drivers/acpi/resource.c        |    2 +-
>  drivers/pci/Kconfig            |    7 -
>  drivers/pci/Makefile           |    2 -
>  drivers/pci/ioapic.c           |  121 ----------------
>  include/acpi/processor.h       |    3 -
>  include/linux/acpi.h           |    8 ++
>  18 files changed, 868 insertions(+), 473 deletions(-)
>  create mode 100644 drivers/acpi/apic_id.c
>  create mode 100644 drivers/acpi/ioapic.c
>  delete mode 100644 drivers/pci/ioapic.c
> 
> -- 
> 1.7.10.4
> 

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

* Re: [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms
  2014-06-25 14:44 ` [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Konrad Rzeszutek Wilk
@ 2014-06-27 14:43   ` Jiang Liu
  0 siblings, 0 replies; 25+ messages in thread
From: Jiang Liu @ 2014-06-27 14:43 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk
  Cc: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, x86, linux-kernel, linux-pci, linux-acpi

On 2014/6/25 22:44, Konrad Rzeszutek Wilk wrote:
> On Wed, Jun 25, 2014 at 04:40:31PM +0800, Jiang Liu wrote:
>> This patch set enhances IOAPIC core and ACPI drivers to support IOAPIC
>> hotplug on x86 platforms. It's based on tip/x86/apic.
>>
>> You may pull it from 
>> https://github.com/jiangliu/linux.git ioapic/hotplug_v3
> 
> fatal: Couldn't find remote ref ioapic/hotplug_v3
> Unexpected end of command stream
> 
> I see ioapic/hotplug_v2?
Hi Konrad,
	Sorry for that, should be ok now.
Regards!
Gerry

>>
>> We have pick up several patches from Yinghai's original IOAPIC hotplug
>> patch set and reimplemented IOAPIC driver as an ACPI driver instead of
>> a PCI driver.
>>
>> It has been tested on a 4-socket Intel SDV with socket hot-addition
>> capability. Any suggestions are welcomed!
>>
>> Patch 1-5 are minor bugfixes and code improvements
>> Patch 6-14 enhances ACPI and IOAPIC core to support IOAPIC hotplug
>> Patch 15 killes PCI IOAPIC driver
>> Patch 16 reimplements ACPI IOAPIC driver and enables IOAPIC hotplug
>>
>> V2->V3:
>> 1) Refine ACPI resource walk functions for PCI root bus and IOAPIC
>> 2) Improve commit messages
>> 3) Reorder patch order for better maintenence
>>
>> Jiang Liu (11):
>>   x86, irq, ACPI: Protect acpi_pci_irq_enable() from reentrance
>>   ACPI: Correct return value of acpi_dev_resource_address_space()
>>   x86, PCI, ACPI: Kill private function resource_to_addr()
>>   x86, irq: Remove __init marker for functions will be used by IOAPIC
>>     hotplug
>>   x86, irq: Refine mp_register_ioapic() to prepare for IOAPIC hotplug
>>   x86, irq, ACPI: Introduce a rwsem to protect IOAPIC operations from
>>     hotplug
>>   x86, irq, ACPI: Implement interface to support ACPI based IOAPIC
>>     hot-addition
>>   x86, irq, ACPI: Implement interface to support ACPI based IOAPIC
>>     hot-removal
>>   x86, irq: Introduce helper to check whether an IOAPIC has been
>>     registered
>>   PCI: Remove PCI ioapic driver
>>   x86, irq, ACPI: Implement ACPI driver to support IOAPIC hotplug
>>
>> Yinghai Lu (5):
>>   ACPI: Make map_mat_entry handle x2apic entry
>>   ACPI: Move acpi_get_cpuid() to separated file
>>   x86, irq: Split out alloc_ioapic_save_registers()
>>   x86, ioapic: Find usable ioapic id for 64bit.
>>   ACPI, ioapic: Add acpi_get_ioapic_id()
>>
>>  arch/x86/include/asm/io_apic.h |    6 +-
>>  arch/x86/kernel/acpi/boot.c    |   68 ++++++++-
>>  arch/x86/kernel/apic/io_apic.c |  235 +++++++++++++++++++++++++-------
>>  arch/x86/pci/acpi.c            |  142 +++++++------------
>>  drivers/acpi/Kconfig           |    6 +
>>  drivers/acpi/Makefile          |    2 +
>>  drivers/acpi/apic_id.c         |  295 ++++++++++++++++++++++++++++++++++++++++
>>  drivers/acpi/internal.h        |    7 +
>>  drivers/acpi/ioapic.c          |  236 ++++++++++++++++++++++++++++++++
>>  drivers/acpi/pci_irq.c         |    7 +-
>>  drivers/acpi/pci_root.c        |    3 +
>>  drivers/acpi/processor_core.c  |  191 --------------------------
>>  drivers/acpi/resource.c        |    2 +-
>>  drivers/pci/Kconfig            |    7 -
>>  drivers/pci/Makefile           |    2 -
>>  drivers/pci/ioapic.c           |  121 ----------------
>>  include/acpi/processor.h       |    3 -
>>  include/linux/acpi.h           |    8 ++
>>  18 files changed, 868 insertions(+), 473 deletions(-)
>>  create mode 100644 drivers/acpi/apic_id.c
>>  create mode 100644 drivers/acpi/ioapic.c
>>  delete mode 100644 drivers/pci/ioapic.c
>>
>> -- 
>> 1.7.10.4
>>

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

* Re: [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms
  2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
                   ` (16 preceding siblings ...)
  2014-06-25 14:44 ` [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Konrad Rzeszutek Wilk
@ 2014-07-14 17:26 ` Konrad Rzeszutek Wilk
  2014-07-14 19:41   ` Konrad Rzeszutek Wilk
  17 siblings, 1 reply; 25+ messages in thread
From: Konrad Rzeszutek Wilk @ 2014-07-14 17:26 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, x86, linux-kernel, linux-pci, linux-acpi

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

On Wed, Jun 25, 2014 at 04:40:31PM +0800, Jiang Liu wrote:
> This patch set enhances IOAPIC core and ACPI drivers to support IOAPIC
> hotplug on x86 platforms. It's based on tip/x86/apic.
> 
> You may pull it from 
> https://github.com/jiangliu/linux.git ioapic/hotplug_v3

With this patchset (on top of 3.16-rc5) my USB driver gets notified
it has interrupts but it thinks it does not have to acknowledge any.
I can only reproduce this under a 32-bit arch so far.

Please see the good.log and the bad.log 

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

Decompressing Linux... Parsing ELF... No relocation needed... done.
Booting the kernel.
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.16.0-rc5upstream (konrad@build-external.dumpdata.com) (gcc version 4.4.4 20100503 (Red Hat 4.4.4-2) (GCC) ) #1 SMP Mon Jul 14 12:56:47 EDT 2014
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f3ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f400-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e6000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfeaffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cfeb0000-0x00000000cfebdfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000cfebe000-0x00000000cfedffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cfee0000-0x00000000cfefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff700000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fffffff] usable
[    0.000000] Malformed early option 'acpi'
[    0.000000] Early serial console at I/O port 0xe400 (options '115200n8')
[    0.000000] bootconsole [uart0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.5 present.
[    0.000000] DMI: ECS A780GM-A Ultra/A780GM-A Ultra, BIOS 080015  04/01/2010
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000ffch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFF0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000130000000 aka 4864M
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
[    0.000000] found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [c00ff780]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] initial memory mapped: [mem 0x00000000-0x01ffffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x37800000-0x379fffff]
[    0.000000]  [mem 0x37800000-0x379fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x34000000-0x377fffff]
[    0.000000]  [mem 0x34000000-0x377fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x33ffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x33ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x37a00000-0x37bfdfff]
[    0.000000]  [mem 0x37a00000-0x37bfdfff] page 4k
[    0.000000] BRK [0x01a3a000, 0x01a3afff] PGTABLE
[    0.000000] RAMDISK: [mem 0x7aed7000-0x7fffefff]
[    0.000000] Allocated new RAMDISK: [mem 0x32ad6000-0x37bfd5f6]
[    0.000000] Move RAMDISK from [mem 0x7aed7000-0x7fffe5f6] to [mem 0x32ad6000-0x37bfd5f6]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000FB100 000014 (v00 ACPIAM)
[    0.000000] ACPI: RSDT 0xCFEB0000 000040 (v01 040110 RSDT1316 20100401 MSFT 00000097)
[    0.000000] ACPI: FACP 0xCFEB0200 000084 (v01 040110 FACP1316 20100401 MSFT 00000097)
[    0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20140424/tbfadt-649)
[    0.000000] ACPI: DSDT 0xCFEB0450 00A65F (v01 1AAAA  1AAAA000 00000000 INTL 20051117)
[    0.000000] ACPI: FACS 0xCFEBE000 000040
[    0.000000] ACPI: APIC 0xCFEB0390 00007C (v01 040110 APIC1316 20100401 MSFT 00000097)
[    0.000000] ACPI: MCFG 0xCFEB0410 00003C (v01 040110 OEMMCFG  20100401 MSFT 00000097)
[    0.000000] ACPI: OEMB 0xCFEBE040 000072 (v01 040110 OEMB1316 20100401 MSFT 00000097)
[    0.000000] ACPI: SRAT 0xCFEBAAB0 0000E8 (v03 AMD    FAM_F_10 00000002 AMD  00000001)
[    0.000000] ACPI: HPET 0xCFEBABA0 000038 (v01 040110 OEMHPET  20100401 MSFT 00000097)
[    0.000000] ACPI: SSDT 0xCFEBABE0 00088C (v01 A M I  POWERNOW 00000001 AMD  00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 3716MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] BRK [0x01a3b000, 0x01a3bfff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   Normal   [mem 0x01000000-0x37bfdfff]
[    0.000000]   HighMem  [mem 0x37bfe000-0x1fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0xcfeaffff]
[    0.000000]   node   0: [mem 0x00000000-0x1fffffff]
[    0.000000] On node 0 totalpages: 982606
[    0.000000] free_area_init_node: node 0, pgdat c18471c0, node_mem_map f06d6020
[    0.000000]   DMA zone: 32 pages used for  0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 224254 pages, LIFO batch:31
[    0.000000]   HighMem zone: 7433 pages used for memmap
[    0.000000]   HighMem zone: 754354 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
[    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 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8300 base: 0xfed00000
[    0.000000] smpboot: Allowing 6 CPUs, 2 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000e5fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e6000-0x000fffff]
[    0.000000] e820: [mem 0xcff00000-0xff6fffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:6 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @f0670000 s35072 r0 d22272 u57344
[    0.000000] pcpu-alloc: s35072 r0 d22272 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 980822
[    0.000000] Kernel command line: initrd=initramfs.cpio.gz acpi=debug initcall_debug loglevel=10 nofb selinux=0 console=uart8250,io,0xe400,115200n8 BOOT_IMAGE=vmlinuz 
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (00037bfe:00120000)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 3798696K/3930424K available (6259K kerwdata, 1852K rodata, 944K init, 872K bss, 131728K reserved, 3017416K highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff15000 - 0xfffff000   ( 936 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc185c000 - 0xc1948000   ( 944 kB)
[    0.000000]       .data : 0xc161d1e7 - 0xc185ab40   (2294 kB)
[    0.000000]       .text : 0xc1000000 - 0xc161d1e7   (6260 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=6.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6
[    0.000000] NR_IRQS:2304 nr_irqs:728 16
[    0.000000] CPU 0 irqstacks, hard=f0008000 soft=f000a000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2999.912 MHz processor
[    0.000024] CalibratIPS (lpj=2999912)
[    0.011184] pid_max: default: 32768 minimum: 301
[    0.016080] ACPI: Core revision 20140424
[    0.095707] ACPI: All ACPI Tables successfully acquired
[    0.107537] Security Framework initialized
[    0.111842] SELinux:  Disabled at boot.
[    0.116061] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.123003] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.131608] Initializing cgroup subsys freezer
[    0.136333] CPU: Physical Processor ID: 0
[    0.140542] CPU: Processor Core ID: 0
[    0.144391] mce: CPU supports 6 MCE banks
[    0.148607] LVT offset 0 assigned for vector 0xf9
[    0.153545] process: using AMD E400 aware idle routine
[    0.158942] Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
[    0.158942] Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
[    0.158942] tlb_flushall_shift: 6
[    0.175071] Freeing SMP alternatives memory: 28K (c1948000 - c194f000)
[    0.182933] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.188993] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.205285] smpboot: CPU0: AMD Phenom(tm) II X4 940 Processor (fam: 10, model: 04, stepping: 02)
[    0.315680] calling  xen_init_spinlocks_jump+0x0/0x23 @ 1
[    0.321350] initcall xen_init_spinlocks_jump+0x0/0x23 returned 
[    0.328926] calling  set_real_mode_permissions+0x0/0x5d @ 1
[    0.334782] initcall set_real_mode_permissions+0x0/0x5d returned 0 after 0 usecs
[    0.342540] calling  trace_init_perf_perm_irq_work_exit+0x0/0x11 @ 1
[    0.349219] initcall trace_init_perf_perm_irq_work_exit+0x0/0x11 returned 0 after 0 usecs
[    0.357816] calling  trace_init_flags_sys_exit+0x0/0xe @ 1
[    0.363572] initcall trace_init_flags_sys_exit+0x0/0xe returned 0 after 0 usecs
[    0.371245] calling  trace_init_flags_sys_enter+0x0/0xe @ 1
[    0.377099] initcall trace_init_flags_sys_enter+0x0/0xe returned 0 after 0 usecs
[    0.384859] calling  init_hw_perf_events+0x0/0x52b @ 1
[    0.390250] Performance Events: AMD PMU driver.
[    0.395011] ... version:                0
[    0.399213] ... bit width:              48
[    0.403512] ... generic registers:      4
[    0.407714] ... value mask:             0000ffffffffffff
[    0.413290] ... max period:             00007fffffffffff
[    0.418866] ... fixed-purpose events:   0
[    0.423074] ... event mask:             000000000000000f
[    0.428692] initcall init_hw_perf_events+0x0/0x52b returned 0 after 8789 usecs
[    0.436276] calling  register_trigger_all_cpu_backtrace+0x0/0x13 @ 1
[    0.442946] initcall register_trigger_all_cpu_backtrace+0x0/0x13 returned 0 after 0 usecs
[    0.451538] calling  kvm_spinlock_init_jump+0x0/0x37 @ 1
[    0.457116] initcall kvm_spinlock_init_jump+0x0/0x37 returned 0 after 0 usecs
[    0.464606] calling  spawn_ksoftirqd+0x0/0x23 @ 1
[    0.469570] initcall spawn_ksoftirqd+0x0/0x23 returned 0 after 0 usecs
[    0.476422] calling  init_workqueues+0x0/0x3e6 @ 1
[    0.481850] initcall init_workqueues+0x0/0x3e6 returned 0 after 976 usecs
[    0.488983] calling  migration_init+0x0/0x5b @ 1
[    0.493818] initcall migration_init+0x0/0x5b returned 0 after 0 usecs
[    0.500586] calling  check_cpu_stall_init+0x0/0x16 @ 1
[    0.505981] initcall check_cpu_stall_init+0x0/0x16 returned 0 after 0 usecs
[    0.513294] calling  rcu_scheduler_really_started+0x0/0x11 @ 1
[    0.519412] initcall rcu_scheduler_really_started+0x0/0x11 returned 0 after 0 usecs
[    0.527453] calling  rcu_spawn_gp_kthread+0x0/0x87 @ 1
[    0.532899] initcall rcu_spawn_gp_kthread+0x0/0x87 returned 0 after 0 usecs
[    0.540212] calling  cpu_stop_init+0x0/0x5d @ 1
[    0.544999] initcall cpu_stop_init+0x0/0x5d returned 0 after 0 usecs
[    0.551671] calling  relay_init+0x0/0x11 @ 1
[    0.556154] initcall relay_init+0x0/0x11 returned 0 after 0 usecs
[    0.562545] calling  tracer_alloc_buffers+0x0/0x213 @ 1
[    0.568126] initcall tracer_alloc_buffers+0x0/0x213 returned 0 after 0 usecs
[    0.575524] calling  init_events+0x0/0x5f @ 1
[    0.580093] initcall init_events+0x0/0x5f returned 0 after 0 usecs
[    0.586577] calling  init_trace_printk+0x0/0xf @ 1
[    0.591605] initcall init_trace_printk+0x0/0xf returned 0 after 0 usecs
[    0.598555] calling  event_trace_memsetup+0x0/0x5a @ 1
[    0.603990] initcall event_trace_memsetup+0x0/0x5a returned 0 after 0 usecs
[    0.611308] calling  jump_label_init_module+0x0/0xf @ 1
[    0.616789] initcall jump_label_init_module+0x0/0xf returned 0 after 0 usecs
[    0.624187] calling  hashlib_init+0x0/0x11 @ 1
[    0.628849] initcall hashlib_init+0x0/0x11 returned 0 after 0 usecs
[    0.635434] calling  balloon_clear+0x0/0x3b @ 1
[    0.640184] initcall balloon_clear+0x0/0x3b returned 0 after 0 usecs
[    0.646861] calling  rand_initialize+0x0/0x30 @ 1
[    0.651824] initcall rand_initialize+0x0/0x30 returned 0 after 0 usecs
[    0.658690] calling  mce_amd_init+0x0/0x134 @ 1
[    0.663438] MCE: In-kernel MCE decoding enabled.
[    0.668279] initcall mce_amd_init+0x0/0x134 returned 0 after 976 usecs
[    0.675308] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.685492] CPU 1 irqstacks, hard=ef820000 soft=ef822000
[    0.691071] x86: Booting SMP configuration:
[    0.695457] .... node  #0, CPUs:      #1
[    0.710055] Initializing CPU#1
[    0.712568] process: System has AMD C1E enabled
[    0.713111] CPU 2 irqstacks, hard=f0   0.723662] Initializing CPU#2
[    0.726295] process: Switch to broadcast mode on CPU2
[    0.726838] CPU 3 irqstacks, hard=f02be000 soft=f0200000
[    0.737386]  #3
[    0.737386] Initializing CPU#3
[    0.739969] x86: Booted up 1 node, 4 CPUs
[    0.739970] smpboot: Total of 4 processors activated (23999.29 BogoMIPS)
[    0.740012] process: Switch to broadcast mode on CPU3
[    0.763735] process: Switch to broadcast mode on CPU1
[    0.774048] process: Switch to broadcast mode on CPU0
[    0.779677] devtmpfs: initialized
[    0.784095] calling  ipc_ns_i1] calling  init_cpufreq_transition_notifier_list+0x0/0x18 @ 1
[    0.814461] initcall init_cpufreq_transition_notifier_list+0x0/0x18 returned 0 after 0 usecs
[    0.823330] calling  net_ns_init+0x0/0x100 @ 1
[    0.828143] initcall net_ns_init+0x0/0x100 returned 0 after 0 usecs
[    0.834774] calling  e820_mark_nvs_memory+0x0/0x4e @ 1
[    0.840171] PM: Registering ACPI NVS region [mem 0xcfebe000-0xcfedffff] (139264 bytes)
[    0.848558] initcall e820_mark_nvs_memory+0x0/0x4e returned 0 after 976 usecs
[    0.856042] calling  cpufreq_tsc+0x0/0x26 @ 1
[    0.860612] initcall cpufreq_tsc+0x0/0x26 returned 0 after 0 usecs
[    0.867102] calling  reboot_init+0x0/0x1a @ 1
[    0.871675] initcall reboot_init+0x0/0x1a returned 0 after 0 usecs
[    0.878178] calling  init_lapic_sysfs+0x0/0x1b @ 1
[    0.883211] initcall init_lapic_sysfs+0x0/0x1b returned 0 after 0 usecs
[    0.890167] calling  cpu_hotplug_pm_sync_init+0x0/0x29 @ 1
[    0.895919] initcall cpu_hotplug_pm_sync_init+0x0/0x29 returned 0 after 0 usecs
[    0.903593] calling  alloc_frozen_cpus+0x0/0x7 @ 1
[    0.908619] initcall alloc_frozen_cpus+0x0/0x7 returned 0 after 0 usecs
[    0.915558] calling  wq_sysfs_init+0x0/0x11 @ 1
[    0.920455] initcall wq_sysfs_init+0x0/0x11 returned 0 after 0 usecs
[    0.920565] kworker/u12:0 (30) used greatest stack depth: 6980 bytes left
[    0.934247] calling  ksysfs_init+0x0/0x74 @ 1
[    0.938892] initcall ksysfs_init+0x0/0x74 returned 0 after 0 usecs
[    0.945389] calling  pm_init+0x0/0x45 @ 1
[    0.949659] initcall pm_init+0x0/0x45 returned 0 after 0 usecs
[    0.955780] calling  pm_disk_init+0x0/0x14 @ 1
[    0.960472] initcall pm_disk_init+0x0/0x14 returned 0 after 0 usecs
[    0.967048] calling  swsusp_header_init+0x0/0x30 @ 1
[    0.972264] initcall swsusp_header_init+0x0/0x30 returned 0 after 0 usecs
[    0.979398] calling  init_jiffies_clocksource+0x0/0xf @ 1
[    0.985075] initcall init_jiffies_clocksource+0x0/0xf returned 0 after 0 usecs
[    0.992667] calling  cgroup_wq_init+0x0/0x7c @ 1
[    0.997576] initcall cgroup_wq_init+0x0/0x7c returned 0 after 0 usecs
[    1.004341] calling  event_trace_enable+0x0/0x155 @ 1
[    1.010471] initcall event_trace_enable+0x0/0x155 returned 0 after 976 usecs
[    1.017870] calling  init_zero_pfn+0x0/0x14 @ 1
[    1.022618] initcall init_zero_pfn+0x0/0x14 returned 0 after 0 usecs
[    1.029290] calling  fsnotify_init+0x0/0x24 @ 1
[    1.034056] initcall fsnotify_init+0x0/0x24 returned 0 after 0 usecs
[    1.040734] calling  filelock_init+0x0/0x74 @ 1
[    1.045538] initcall filelock_init+0x0/0x74 returned 0 after 0 usecs
[    1.052204] calling  init_misc_binfmt+0x0/0x28 @ 1
[    1.057234] initcall init_misc_binfmt+0x0/0x28 returned 0 after 0 usecs
[    1.064178] calling  init_script_binfmt+0x0/0x13 @ 1
[    1.069386] initcall init_script_binfmt+0x0/0x13 returned 0 after 0 usecs
[    1.076512] calling  init_elf_binfmt+0x0/0x13 @ 1
[    1.081442] initcall init_elf_binfmt+0x0/0x13 returned 0 after 0 usecs
[    1.088297] calling  debugfs_init+0x0/0x4a @ 1
[    1.092984] initcall debugfs_init+0x0/0x4a returned 0 after 0 usecs
[    1.099563] calling  securityfs_init+0x0/0x41 @ 1
[    1.104514] initcall securityfs_init+0x0/0x41 returned 0 after 0 usecs
[    1.111360] calling  prandom_init+0x0/0xaa @ 1
[    1.116021] initcall prandom_init+0x0/0xaa returned 0 after 0 usecs
[    1.122607] calling  virtio_init+0x0/0x30 @ 1
[    1.127259] initcall virtio_init+0x0/0x30 returned 0 after 0 usecs
[    1.133756] calling  early_resume_init+0x0/0x1a0 @ 1
[    1.138971] RTC time: 16:07:26, date: 07/14/14
[    1.143628] initcall early_resume_init+0x0/0x1a0 returned 0 after 976 usecs
[    1.150934] calling  cpufreq_core_init+0x0/0x29 @ 1
[    1.156050] initcall cpufreq_core_init+0x0/0x29 returned 0 after 0 usecs
[    1.163080] calling  cpuidle_init+0x0/0x36 @ 1
[    1.167769] initcall cpuidle_init+0x0/0x36 returned 0 after 0 usecs
[    1.174345] calling  bsp_pm_check_init+0x0/0x11 @ 1
[    1.179462] initcall bsp_pm_check_init+0x0/0x11 returned 0 after 0 usecs
[    1.186497] calling  sock_init+0x0/0x89 @ 1
[    1.191142] initcall sock_init+0x0/0x89 returned 0 after 0 usecs
[    1.197441] calling  net_inuse_init+0x0/0x24 @ 1
[    1.202308] initcall net_inuse_init+0x0/0x24 returned 0 after 0 usecs
[    1.209073] calling  netpoll_init+0x0/0x2e @ 1
[    1.213738] initcall netpoll_init+0x0/0x2e returned 0 after 0 usecs
[    1.220323] calling  netlink_proto_init+0x0/0x1a7 @ 1
[    1.225684] NET: Registered protocol family 16
[    1.230382] initcall netlink_proto_init+0x0/0x1a7 returned 0 after 976 usecs
[    1.237768] calling  __gnttab_init+0x0/0x30 @ 1
[    1.242516] initcall __gnttab_init+0x0/0x30 returned -19 after 0 usecs
[    1.249409] calling  bdi_class_init+0x0/0x40 @ 1
[    1.254419] initcall bdi_class_init+0x0/0x40 returned 0 after 0 usecs
[    1.261180] calling  mm_sysfs_init+0x0/0x22 @ 1
[    1.265947] initcall mm_sysfs_init+0x0/0x22 returned 0 after 0 usecs
[    1.272612] calling  kobject_uevent_init+0x0/0xf @ 1
[    1.277846] initcall kobject_uevent_init+0x0/0xf returned 0 after 0 usecs
[    1.284970] calling  pcibus_class_init+0x0/0x14 @ 1
[    1.290122] initcall pcibus_class_init+0x0/0x14 returned 0 after 0 usecs
[    1.297162] calling  pci_driver_init+0x0/0xf @ 1
[    1.302088] initcall pci_driver_init+0x0/0xf returned 0 after 0 usecs
[    1.308850] calling  backlight_class_init+0x0/0x92 @ 1
[    1.314281] initcall backlight_class_init+0x0/0x92 returned 0 after 0 usecs
[    1.321586] calling  xenbus_init+0x0/0x24f @ 1
[    1.326248] initcall xenbus_init+0x0/0x24f returned -19 after 0 usecs
[    1.333008] calling  tty_class_init+0x0/0x2f @ 1
[    1.337884] initcall tty_class_init+0x0/0x2f returned 0 after 0 usecs
[    1.344645] calling  vtconsole_class_init+0x0/0xc2 @ 1
[    1.350183] initcall vtconsole_class_init+0x0/0xc2 returned 0 after 0 usecs
[    1.357493] calling  wakeup_sources_debugfs_init+0x0/0x2f @ 1
[    1.363532] initcall wakeup_sources_debugfs_init+0x0/0x2f returned 0 after 0 usecs
[    1.371480] calling  i2c_init+0x0/0x57 @ 1
[    1.375930] initcall i2c_init+0x0/0x57 returned 0 after 0 usecs
[    1.382138] calling  lguest_devices_init+0x0/0x13f @ 1
[    1.387527] initcall lguest_devices_init+0x0/0x13f returned 0 after 0 usecs
[    1.394846] calling  init_ladder+0x0/0xf @ 1
[    1.399326] cpuidle: using governor ladder
[    1.403623] initcall init_ladder+0x0/0xf returned 0 after 976 usecs
[    1.410195] calling  init_menu+0x0/0xf @ 1
[    1.414494] cpuidle: using governor menu
[    1.418611] initcall init_menu+0x0/0xf returned 0 after 976 usecs
[    1.425008] calling  amd_postcore_init+0x0/0x131 @ 1
[    1.430219] node 0 link 0: io port [1000, ffffff]
[    1.435161] TOM: 00000000d0000000 aka 3328M
[    1.439550] Fam 10h mmconf [mem 0xe0000000-0xefffffff]
[    1.444939] node 0 link 0: mmio [a0000, bffff]
[    1.449611] node 0 link 0: mmio [d0000000, efffffff] ==> [d0000000, dfffffff]
[    1.457112] node 0 link 0: mmio [f0000000, fe6fffff]
[    1.462335] node 0 link 0: mmio [fe700000, fe8fffff]
[    1.467551] node 0 link 0: mmio [fe900000, ffefffff]
[    1.472760] TOM2: 0000000130000000 aka 4864M
[    1.477240] bus: [bus 00-07] on node 0 link 0
[    1.481810] bus: 00 [io  0x0000-0xffff]
[    1.485831] bus: 00 [mem 0x000a0000-0x000bffff]
[    1.490590] bus: 00 [mem 0xd0000000-0xdfffffff]
[    1.495350] bus: 00 [mem 0xf0000000-0xffffffff]
[    1.500102] bus: 00 [mem 0x130000000-0xfcffffffff]
[    1.505146] initcall amd_postcore_init+0x0/0x131 returned 0 after 16601 usecs
[    1.512675] calling  boot_params_ksysfs_init+0x0/0x22f @ 1
[    1.518461] initcall boot_params_ksysfs_init+0x0/0x22f returned 0 after 0 usecs
[    1.526134] calling  arch_kdebugfs_init+0x0/0x2a6 @ 1
[    1.531466] initcall arch_kdebugfs_init+0x0/0x2a6 returned 0 after 0 usecs
[    1.538674] calling  init_pit_clocksource+0x0/0x36 @ 1
[    1.544063] initcall init_pit_clocksource+0x0/0x36 returned 0 after 0 usecs
[    1.551382] calling  mtrr_if_init+0x0/0x56 @ 1
[    1.556048] initcall mtrr_if_init+0x0/0x56 returned 0 after 0 usecs
[    1.562628] calling  ffh_cstate_init+0x0/0x27 @ 1
[    1.567559] initcall ffh_cstate_init+0x0/0x27 returned -1 after 0 usecs
[    1.574515] calling  kdump_buf_page_init+0x0/0x3a @ 1
[    1.579818] initcall kdump_buf_page_init+0x0/0x3a returned 0 after 0 usecs
[    1.587029] calling  activate_jump_labels+0x0/0x2d @ 1
[    1.592418] initcall activate_jump_labels+0x0/0x2d returned 0 after 0 usecs
[    1.599721] calling  acpi_pci_init+0x0/0x5b @ 1
[    1.604480] ACPI: bus type PCI registered
[    1.608683] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.615443] initcall acpi_pci_init+0x0/0x5b returned 0 after 1953 usecs
[    1.622395] calling  dma_bus_init+0x0/0xbb @ 1
[    1.627247] initcall dma_bus_init+0x0/0xbb returned 0 after 0 usecs
[    1.633830] calling  dma_channel_table_init+0x0/0xc4 @ 1
[    1.639523] initcall dma_channel_table_init+0x0/0xc4 returned 0 after 976 usecs
[    1.647201] calling  setup_vcpu_hotplug_event+0x0/0x1f @ 1
[    1.652955] initcall setup_vcpu_hotplug_event+0x0/0x1f returned -19 after 0 usecs
[    1.660809] calling  register_xen_pci_notifier+0x0/0x30 @ 1
[    1.666655] initcall register_xen_pci_notifier+0x0/0x30 returned 0 after 0 usecs
[    1.674424] calling  xen_pcpu_init+0x0/0xc8 @ 1
[    1.679177] initcall xen_pcpu_init+0x0/0xc8 returned -19 after 0 usecs
[    1.686023] calling  dmi_id_init+0x0/0x2a2 @ 1
[    1.690977] initcall dmi_id_init+0x0/0x2a2 returned 0 after 0 usecs
[    1.697550] calling  dca_init+0x0/0x21 @ 1
[    1.701847] dca service started, version 1.12.1
[    1.706627] initcall dca_init+0x0/0x21 returned 0 after 976 usecs
[    1.713032] calling  pci_arch_init+0x0/0x65 @ 1
[    1.717797] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    1.727575] PCI: not using MMCONFIG
[    1.731892] PCI : PCI BIOS area is rw and x. Use pci=nobios if you want it NX.
[    1.739538] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=4
[    1.746202] PCI: Using configuration type 1 for base access
[    1.752058] PCI: Using configuration type 1 for extended access
[    1.758283] initcall pci_arch_init+0x0/0x65 returned 0 after 6835 usecs
[    1.765266] calling  topology_init+0x0/0x36 @ 1
[    1.770463] initcall topology_init+0x0/0x36 returned 0 after 976 usecs
[    1.777325] calling  mtrr_init_finialize+0x0/0x30 @ 1
[    1.782624] initcall mtrr_init_finialize+0x0/0x30 returned 0 after 0 usecs
[    1.789843] calling  uid_cache_init+0x0/0x7e @ 1
[    1.794716] initcall uid_cache_init+0x0/0x7e returned 0 after 0 usecs
[    1.801471] calling  param_sysfs_init+0x0/0x14c @ 1
[    1.819498] initcall param_sysfs_init+0x0/0x14c returned 0 after 12695 usecs
[    1.826902] calling  proc_schedstat_init+0x0[    1.848428] initcall pm_sysrq_init+0x0/0x16 returned 0 after 4882 usecs
[    1.855380] calling  create_proc_profile+0x0/0x1e0 @ 1
[    1.860771] initcall create_proc_profile+0x0/0x1e0 returned 0 after 0 usecs
[    1.868086] calling  crash_save_vmcoreinfo_init+0x0/0x5ad @ 1
[    1.874127] initcall crash_save_vmcoreinfo_init+0x0/0x5ad returned 0 after 0 usecs
[    1.882078] calling  crash_notes_memory_init+0x0/0x35 @ 1
[    1.887759] initcall crash_notes_memory_init+0x0/0x35 returned 0 after 0 usecs
[    1.895353] calling  hung_task_init+0x0/0x56 @ 1
[    1.900252] initcall hung_task_init+0x0/0x56 returned 0 after 0 usecs
[    1.907025] calling  default_bdi_init+0x0/0x78 @ 1
[    1.912552] initcall default_bdi_init+0x0/0x78 returned 0 after 976 usecs
[    1.919682] calling  init_reserve_notifier+0x0/0x7 @ 1
[    1.925066] initcall init_reserve_notifier+0x0/0x7 returned 0 after 0 usecs
[    1.932375] calling  init_admin_reserve+0x0/0x30 @ 1
[    1.937573] initcall init_admin_reserve+0x0/0x30 returned 0 after 0 usecs
[    1.944700] calling  init_user_reserve+0x0/0x30 @ 1
[    1.949825] initcall init_user_reserve+0x0/0x30 returned 0 after 0 usecs
[    1.956860] calling  mmu_notifier_init+0x0/0xf @ 1
[    1.961899] initcall mmu_notifier_init+0x0/0xf returned 0 after 0 usecs
[    1.968842] calling  hugepage_init+0x0/0x123 @ 1
[    1.973896] initcall hugepage_init+0x0/0x123 returned 0 after 0 usecs
[    1.980675] calling  crypto_wq_init+0x0/0x41 @ 1
[    1.985595] initcall crypto_wq_init+0x0/0x41 returned 0 after 0 usecs
[    1.992360] calling  cryptomgr_init+0x0/0xf @ 1
[    1.997121] initcall cryptomgr_init+0x0/0xf returned 0 after 0 usecs
[    2.003801] calling  init_bio+0x0/0xc5 @ 1
[    2.008479] initcall init_bio+0x0/0xc5 returned 0 after 0 usecs
[    2.014707] calling  blk_settings_init+0x0/0x21 @ 1
[    2.019831] initcall blk_settings_init+0x0/0x21 returned 0 after 0 usecs
[    2.026863] calling  blk_ioc_init+0x0/0x2f @ 1
[    2.031576] initcall blk_ioc_init+0x0/0x2f returned 0 after 0 usecs
[    2.038160] calling  blk_softirq_init+0x0/0x54 @ 1
[    2.043188] initcall blk_softirq_init+0x0/0x54 returned 0 after 0 usecs
[    2.050133] calling  blk_iopoll_setup+0x0/0x54 @ 1
[    2.055159] initcall blk_iopoll_setup+0x0/0x54 returned 0 after 0 usecs
[    2.062106] calling  blk_mq_init+0x0/0x16 @ 1
[    2.066677] initcall blk_mq_init+0x0/0x16 returned 0 after 0 usecs
[    2.073169] calling  genhd_device_init+0x0/0x6a @ 1
[    2.078471] initcall genhd_device_init+0x0/0x6a returned 0 after 0 usecs
[    2.085512] calling  blk_dev_integrity_init+0x0/0x2f @ 1
[    2.091110] initcall blk_dev_integrity_init+0x0/0x2f returned 0 after 0 usecs
[    2.098603] calling  pci_slot_init+0x0/0x40 @ 1
[    2.103365] initcall pci_slot_init+0x0/0x40 returned 0 after 0 usecs
[    2.110031] calling  fbmem_init+0x0/0x96 @ 1
[    2.114561] initcall fbmem_init+0x0/0x96 returned 0 after 0 usecs
[    2.120956] calling  acpi_init+0x0/0x26b @ 1
[    2.125536] ACPI: Added _OSI(Module Device)
[    2.129924] ACPI: Added _OSI(Processor Device)
[    2.134582] ACPI: Added _OSI(3.0 _SCP Extensions)
[    2.139522] ACPI: Added _OSI(Processor Aggregator Device)
[    2.159553] ACPI: Executed 4 blocks of module-level executable AML code
[    2.247057] ACPI: Interpreter enabled
[    2.250913] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (201_S2_] (20140424/hwxface-580)
[    2.270359] ACPI: (supports S0 S3 S4 S5)
[    2.274472] ACPI: Using IOAPIC for interrupt routing
[    2.279858] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    2.320569] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    2.329693] PCI: Using MMCONFIG for extended config space
[    2.335460] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.475524] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    2.482027] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    2.490666] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    2.499704] acpi PNP0A03:00: ignoring host bridge window [mem 0x000d0000-0x000dffff] (conflicts with Adapter ROM [mem 0x000cf000-0x000d09ff])
[    2.514861] PCI host bridge to bus 0000:00
[    2.519166] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.524922] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    2.531413] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    2.537903] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    2.545118] pci_bus 0000:00: root bus resource [mem 0xcff00000-0xdfffffff]
[    2.552336] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
[    2.559579] pci 0000:00:00.0: [1022:9600] type 00 class 0x060000
[    2.566768] pci 0000:00:01.0: [1022:9602] type 01 class 0x060400
[    2.573909] pci 0000:00:06.0: [1022:9606] type 01 class 0x060400
[    2.580251] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    2.587224] pci 0000:00:06.0: System wakeup disabled by ACPI
[    2.593552] pci 0000:00:07.0: [1022:9607] type 01 class 0x060400
[    2.599893] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    2.606879] pci 0000:00:07.0: System wakeup disabled by ACPI
[    2.613220] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[    2.619536] pci 0000:00:11.0: reg 0x10: [io  0x7000-0x7007]
[    2.625384] pci 0000:00:11.0: reg 0x14: [io  0x6000-0x6003]
[    2.631241] pci 0000:00:11.0: reg 0x18: [io  0x5000-0x5007]
[    2.637092] pci 0000:00:11.0: reg 0x1c: [io  0x4000-0x4003]
[    2.642948] pci 0000:00:11.0: reg 0x20: [io  0x3000-0x300f]
[    2.648800] pci 0000:00:11.0: reg 0x24: [mem 0xfe6ffc00-0xfe6fffff]
[    2.656238] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[    2.662546] pci 0000:00:12.0: reg 0x10: [mem 0xfe6fe000-0xfe6fefff]
[    2.669757] pci 0000:00:12.0: System wakeup disabled by ACPI
[    2.676081] pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
[    2.682389] pci 0000:00:12.1: reg 0x10: [mem 0xfe6fd000-0xfe6fdfff]
[    2.689605] pci 0000:00:12.1: System wakeup disabled by ACPI
[    2.695928] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[    2.702244] pci 0000:00:12.2: reg 0x10: [mem 0xfe6ff800-0xfe6ff8ff]
[    2.708910] pci 0000:00:12.2: supports D1 D2
[    2.713393] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    2.720280] pci 0000:00:12.2: System wakeup disabled by ACPI
[    2.726612] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[    2.732921] pci 0000:00:13.0: reg 0x10: [mem 0xfe6fc000-0xfe6fcfff]
[    2.740131] pci 0000:00:13.0: System wakeup disabled by ACPI
[    2.746445] pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
[    2.752756] pci 0000:00:13.1: reg 0x10: [mem 0xfe6f7000-0xfe6f7fff]
[    2.759974] pci 0000:00:13.1: System wakeup disabled by ACPI
[    2.766298] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[    2.772623] pci 0000:00:13.2: reg 0x10: [mem 0xfe6ff400-0xfe6ff4ff]
[    2.779282] pci 0000:00:13.2: supports D1 D2
[    2.783761] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    2.790644] pci 0000:00:13.2: System wakeup disabled by ACPI
[    2.796972] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[    2.804175] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[    2.811349] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[    2.818258] pci 0000:00:14.4: System wakeup disabled by ACPI
[    2.824567] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
[    2.830878] pci 0000:00:14.5: reg 0x10: [mem 0xfe6f6000-0xfe6f6fff]
[    2.838086] pci 0000:00:14.5: System wakeup disabled by ACPI
[    2.844397] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
[    2.851468] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
[    2.858545] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
[    2.865621] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
[    2.872700] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
[    2.880071] pci 0000:01:05.0: [1002:9610] type 00 class 0x030000
[    2.886374] pci 0000:01:05.0: reg 0x10: [mem 0xd0000000-0xdfffffff pref]
[    2.893411] pci 0000:01:05.0: reg 0x14: [io  0x8000-0x80ff]
[    2.899256] pci 0000:01:05.0: reg 0x18: [mem 0xfe8f0000-0xfe8fffff]
[    2.905839] pci 0000:01:05.0: reg 0x24: [mem 0xfe700000-0xfe7fffff]
[    2.912432] pci 0000:01:05.0: supports D1 D2
[    2.917353] pci 0000:01:05.1: [1002:960f] type 00 class 0x040300
[    2.923664] pci 0000:01:05.1: reg 0x10: [mem 0xfe8e8000-0xfe8ebfff]
[    2.930271] pci 0000:01:05.1: supports D1 D2
[    2.935121] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.940330] pci 0000:00:01.0:   bridge window [io  0x8000-0x8fff]
[    2.946721] pci 0000:00:01.0:   bridge window [mem 0xfe700000-0xfe8fffff]
[    2.953844] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    2.962232] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    2.968549] pci 0000:02:00.0: reg 0x10: [io  0x9800-0x98ff]
[    2.974415] pci 0000:02:00.0: reg 0x18: [mem 0xfe9ff000-0xfe9fffff 64bit]
[    2.981554] pci 0000:02:00.0: reg 0x20: [mem 0xfdff0000-0xfdffffff 64bit pref]
[    2.989139] pci 0000:02:00.0: reg 0x30: [mem 0xfe9c0000-0xfe9dffff pref]
[    2.996232] pci 0000:02:00.0: supports D1 D2
[    3.000709] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.009230] pci 0000:00:06.0: PCI bridge to [bus 02]
[    3.014459] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    3.020852] pci 0000:00:06.0:   bridge window [mem 0xfe900000-0xfe9fffff]
[    3.027981] pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
[    3.036354] pci 0000:03:00.0: [197b:2361] type 00 class 0x010601
[    3.042725] pci 0000:03:00.0: reg 0x24: [mem 0xfeafe000-0xfeafffff]
[    3.049351] pci 0000:03:00.0: PME# supported from D3hot
[    3.055290] pci 0000:03:00.1: [197b:2361] type 00 class 0x010185
[    3.061615] pci 0000:03:00.1: reg 0x10: [io  0xb800-0xb807]
[    3.067473] pci 0000:03:00.1: reg 0x14: [io  0xb400-0xb403]
[    3.073322] pci 0000:03:00.1: reg 0x18: [io  0xb000-0xb007]
[    3.079184] pci 0000:03:00.1: reg 0x1c: [io  0xa800-0xa803]
[    3.085031] pci 0000:03:00.1: reg 0x20: [io  0xa400-0xa40f]
[    3.091248] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    3.101756] pci 0000:00:07.0: PCI bridge to [bus 03]
[    3.106964] pci 0000:00:07.0:   bridge window [io  0xa000-0xbfff]
[    3.113362] pci 0000:00:07.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    3.120733] pci 0000:04:05.0: [10b7:1700] type 00 class 0x020000
[    3.127061] pci 0000:04:05.0: reg 0x10: [mem 0xfebfc000-0xfebfffff]
[    3.133650] pci 0000:04:05.0: reg 0x14: [io  0xe800-0xe8ff]
[    3.139545] pci 0000:04:05.0: reg 0x30: [mem 0xfebc0000-0xfebdffff pref]
[    3.146619] pci 0000:04:05.0: supports D1 D2
[    3.151097] pci 0000:04:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.158523] pci 0000:04:07.0: [9710:9835] type 00 class 0x070002
[    3.164843] pci 0000:04:07.0: reg 0x10: [io  0xe400-0xe407]
[    3.170696] pci 0000:04:07.0: reg 0x14: [io  0xe000-0xe007]
[    3.176557] pci 0000:04:07.0: reg 0x18: [io  0xd800-0xd807]
[    3.182414] pci 0000:04:07.0: reg 0x1c: [io  0xd400-0xd407]
[    3.188270] pci 0000:04:07.0: reg 0x20: [io  0xd000-0xd007]
[    3.194142] pci 0000:04:07.0: reg 0x24: [io  0xc800-0xc80f]
[    3.200380] pci 0000:00:14.4: PCI bridge to [bus 04] (subtractive decode)
[    3.207512] pci 0000:00:14.4:   bridge window [io  0xc000-0xefff]
[    3.213907] pci 0000:00:14.4:   bridge window [mem 0xfeb00000-0xfebfffff]
[    3.221038] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    3.229356] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    3.237674] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    3.246725] pci 0000:00:14.4:   bridge window [mem 0xcff00000-0xdfffffff] (subtractive decode)
[    3.255772] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
[    3.264832] pci_bus 0000:00: on NUMA node 0
[    3.296018] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 12 *14 15)
[    3.303461] ACPI: PCI Interrupt Link [LNKB] (IRQs  3.325779] ACPI: PCI Interrupt Link [LNKE] (IRQs *4 10 11 12 14 15)
[    3.333037] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 10 11 12 14 15) *0, disabled.
[    3.341493] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 10 11 12 14 *15)
[    3.348751] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 10 11 12 14 15) *0, disabled.
[    3.357175] ACPI: Enabled 1 GPEs in block 00 to 1F
[    3.362323] initcall acpi_init+0x0/0x26b returned 0 after 476562 usecs
[    3.369176] calling  pnp_init+0x0/0xf @ 1
[    3.373473] initcall pnp_init+0x0/0xf returned 0 after 0 usecs
[    3.379606] calling  balloon_init+0x0/0x1fa @ 1
[    3.384360] initcall balloon_init+0x0/0x1fa returned -19 after 0 usecs
[    3.391209] calling  xen_setup_shutdown_event+0x0/0x30 @ 1
[    3.396967] initcall xen_setup_shutdown_event+0x0/0x30 returned -19 after 0 usecs
[    3.404814] calling  xenbus_probe_backend_init+0x0/0x23 @ 1
[    3.410750] initcall xenbus_probe_backend_init+0x0/0x23 returned 0 after 976 usecs
[    3.418700] calling  xenbus_probe_frontend_init+0x0/0x7b @ 1
[    3.424738] initcall xenbus_probe_frontend_init+0x0/0x7b returned 0 after 976 usecs
[    3.432784] calling  xen_acpi_pad_init+0x0/0x41 @ 1
[    3.437907] initcall xen_acpi_pad_init+0x0/0x41 returned -19 after 0 usecs
[    3.445124] calling  balloon_init+0x0/0xdd @ 1
[    3.449776] initcall balloon_init+0x0/0xdd returned -19 after 0 usecs
[    3.456545] calling  misc_init+0x0/0xad @ 1
[    3.460971] initcall misc_init+0x0/0xad returned 0 after 0 usecs
[    3.467281] calling  vga_arb_device_init+0x0/0xcc @ 1
[    3.472776] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    3.481273] vgaarb: loaded
[    3.484104] vgaarb: bridge control possible 0000:01:05.0
[    3.489674] initcall vga_arb_device_init+0x0/0xcc returned 0 after 16601 usecs
[    3.497263] calling  cn_init+0x0/0xb0 @ 1
[    3.501493] initcall cn_init+0x0/0xb0 returned 0 after 0 usecs
[    3.507622] calling  dma_buf_init+0x0/0x62 @ 1
[    3.512296] initcall dma_buf_init+0x0/0x62 returned 0 after 0 usecs
[    3.518884] calling  phy_init+0x0/0x2f @ 1
[    3.523417] initcall phy_init+0x0/0x2f returned 0 after 0 usecs
[    3.529645] calling  init_pcmcia_cs+0x0/0x32 @ 1
[    3.534517] initcall init_pcmcia_cs+0x0/0x32 returned 0 after 0 usecs
[    3.541276] calling  usb_init+0x0/0x14c @ 1
[    3.545685] ACPI: bus type USB registered
[    3.550087] usbcore: registered new interface driver usbfs
[    3.555935] usbcore: registered new interface driver hub
[    3.561622] usbcore: registered new device driver usb
[    3.566932] initcall usb_init+0x0/0x14c returned 0 after 20507 usecs
[    3.573606] calling  serio_init+0x0/0x2e @ 1
[    3.578158] initcall serio_init+0x0/0x2e returned 0 after 0 usecs
[    3.584554] calling  input_init+0x0/0xf1 @ 1
[    3.589079] initcall input_init+0x0/0xf1 returned 0 after 0 usecs
[    3.595480] calling  rtc_init+0x0/0x50 @ 1
[    3.599801] initcall rtc_init+0x0/0x50 returned 0 after 0 usecs
[    3.606016] calling  pps_init+0x0/0xa6 @ 1
[    3.610352] pps_core: LinuxPPS API ver. 1 registered
[    3.615565] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    3.625147] initcall pps_init+0x0/0xa6 returned 0 after 14648 usecs
[    3.631728] calling  ptp_init+0x0/0x8e @ 1
[    3.636061] PTP clock support registered
[    3.640176] initcall ptp_init+0x0/0x8e returned 0 after 3906 usecs
[    3.646665] calling  power_supply_class_init+0x0/0x39 @ 1
[    3.652362] initcall power_supply_class_init+0x0/0x39 returned 0 after 0 usecs
[    3.659945] calling  hwmon_init+0x0/0xda @ 1
[    3.664457] initcall hwmon_init+0x0/0xda returned 0 after 0 usecs
[    3.670859] calling  leds_init+0x0/0x36 @ 1
[    3.675281] initcall leds_init+0x0/0x36 returned 0 after 0 usecs
[    3.681596] calling  efisubsys_init+0x0/0x115 @ 1
[    3.686529] initcall efisubsys_init+0x0/0x115 returned 0 after 0 usecs
[    3.693373] calling  pci_subsys_init+0x0/0x48 @ 1
[    3.698307] PCI: Using ACPI for IRQ routing
[    3.702699] PCI: pci_cache_line_size set to 64 bytes
[    3.707960] e820: reserve RAM buffer [mem 0x0009f400-0x0009ffff]
[    3.714263] e820: reserve RAM buffer [mem 0xcfeb0000-0xcfffffff]
[    3.720572] initcall pci_subsys_init+0x0/0x48 returned 0 after 22460 usecs
[    3.727796] calling  proto_init+0x0/0xf @ 1
[    3.732192] initcall proto_init+0x0/0xf returned 0 after 0 usecs
[    3.738502] calling  net_dev_init+0x0/0x15d @ 1
[    3.744107] initcall net_dev_init+0x0/0x15d returned 0 after 976 usecs
[    3.750963] calling  neigh_init+0x0/0xa4 @ 1
[    3.755447] initcall neigh_init+0x0/0xa4 returned 0 after 0 usecs
[    3.761851] calling  fib_rules_init+0x0/0xbd @ 1
[    3.766689] initcall fib_rules_init+0x0/0xbd returned 0 after 0 usecs
[    3.773448] calling  pktsched_init+0x0/0x121 @ 1
[    3.778303] initcall pktsched_init+0x0/0x121 returned 0 after 0 usecs
[    3.785066] calling  tc_filter_init+0x0/0x6a @ 1
[    3.789902] initcall tc_filter_init+0x0/0x6a returned 0 after 0 usecs
[    3.796660] calling  tc_action_init+0x0/0x6a @ 1
[    3.801502] initcall tc_action_init+0x0/0x6a returned 0 after 0 usecs
[    3.808275] calling  genl_init+0x0/0x7a @ 1
[    3.812681] initcall genl_init+0x0/0x7a returned 0 after 0 usecs
[    3.818987] calling  cipso_v4_init+0x0/0x5a @ 1
[    3.823740] initcall cipso_v4_init+0x0/0x5a returned 0 after 0 usecs
[    3.830412] calling  netlbl_init+0x0/0x7d @ 1
[    3.834985] NetLabel: Initializing
[    3.838554] NetLabel:  domain hash size = 128
[    3.843116] NetLabel:  protocols = UNLABELED CIPSOv4
[    3.848392] NetLabel:  unlabeled traffic allowed by default
[    3.854241] initcall netlbl_init+0x0/0x7d returned 0 after 18554 usecs
[    3.861089] calling  rfkill_init+0x0/0x68 @ 1
[    3.865806] initcall rfkill_init+0x0/0x68 returned 0 after 0 usecs
[    3.872313] calling  xen_mcfg_late+0x0/0xa6 @ 1
[    3.877068] initcall xen_mcfg_late+0x0/0xa6 returned 0 after 0 usecs
[    3.883793] calling  xen_p2m_debugfs+0x0/0x49 @ 1
[    3.888745] initcall xen_p2m_debugfs+0x0/0x49 returned 0 after 0 usecs
[    3.895602] calling  xen_spinlock_debugfs+0x0/0x120 @ 1
[    3.901135] initcall xen_spinlock_debugfs+0x0/0x120 returned 0 after 0 usecs
[    3.908531] calling  nmi_warning_debugfs+0x0/0x26 @ 1
[    3.913838] initcall nmi_warning_debugfs+0x0/0x26 returned 0 after 0 usecs
[    3.921052] calling  hpet_late_init+0x0/0xe6 @ 1
[    3.925905] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    3.931326] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
[    3.939454] initcall hpet_late_init+0x0/0xe6 returned 0 after 13671 usecs
[    3.946581] calling  init_amd_nbs+0x0/0xb6 @ 1
[    3.951267] initcall init_amd_nbs+0x0/0xb6 returned 0 after 0 usecs
[    3.957846] calling  clocksource_done_booting+0x0/0x3b @ 1
[    3.963614] Switched to clocksource hpet
[    3.967776] initcall clocksource_done_booting+0x0/0x3b returned 0 after 4074 usecs
[    3.975779] calling  tracer_init_debugfs+0x0/0x165 @ 1
[    3.981675] initcall tracer_init_debugfs+0x0/0x165 returned 0 after 484 usecs
[    3.989181] calling  init_trace_printk_function_export+0x0/0x33 @ 1
[    3.995772] initcall init_trace_printk_function_export+0x0/0x33 returned 0 after 7 usecs
[    4.004271] calling  event_trace_init+0x0/0x1ee @ 1
[    4.029653] initcall event_trace_init+0x0/0x1ee returned 0 after 19803 usecs
[    4.037063] calling  init_kprobe_trace+0x0/0_trace+0x0/0x92 returned 0 after 12 usecs
[    4.049331] calling  init_pipe_fs+0x0/0x3d @ 1
[    4.054111] initcall init_pipe_fs+0x0/0x3d returned 0 after 109 usecs
[    4.060881] calling  eventpoll_init+0x0/0xd0 @ 1
[    4.065829] initcall eventpoll_init+0x0/0xd0 returned 0 after 88 usecs
[    4.072687] calling  anon_inode_init+0x0/0x56 @ 1
[    4.077737] initcall anon_inode_init+0x0/0x56 returned 0 after 99 usecs
[    4.084688] calling  proc_cmdline_init+0x0/0x27 @ 1
[    4.089822] initcall proc_cmdline_init+0x0/0x27 returned 0 after 8 usecs
[    4.096864] calling  proc_consoles_init+0x0/0x27 @ 1
[    4.102089] initcall proc_consoles_init+0x0/0x27 returned 0 after 6 usecs
[    4.109223] calling  proc_cpuinfo_init+0x0/0x27 @ 1
[    4.114357] initcall proc_cpuinfo_init+0x0/0x27 returned 0 after 6 usecs
[    4.121392] calling  proc_devices_init+0x0/0x27 @ 1
[    4.126525] initcall proc_devices_init+0x0/0x27 returned 0 after 6 usecs
[    4.133565] calling  proc_interrupts_init+0x0/0x27 @ 1
[    4.138969] initcall proc_interrupts_init+0x0/0x27 returned 0 after 6 usecs
[    4.146288] calling  proc_loadavg_init+0x0/0x27 @ 1
[    4.151414] initcall proc_loadavg_init+0x0/0x27 returned 0 after 5 usecs
[    4.158474] calling  proc_meminfo_init+0x0/0x27 @ 1
[    4.163613] initcall proc_meminfo_init+0x0/0x27 returned 0 after 6 usecs
[    4.170673] calling  proc_stat_init+0x0/0x27 @ 1
[    4.175549] initcall proc_stat_init+0x0/0x27 returned 0 after 6 usecs
[    4.182321] calling  proc_uptime_init+0x0/0x27 @ 1
[    4.187369] initcall proc_uptime_init+0x0/0x27 returned 0 after 6 usecs
[    4.194321] calling  proc_version_init+0x0/0x27 @ 1
[    4.199459] initcall proc_version_init+0x0/0x27 returned 0 after 6 usecs
[    4.206505] calling  proc_softirqs_init+0x0/0x27 @ 1
[    4.211735] initcall proc_softirqs_init+0x0/0x27 returned 0 after 6 usecs
[    4.218878] calling  proc_kcore_init+0x0/0xae @ 1
[    4.223831] initcall proc_kcore_init+0x0/0xae returned 0 after 9 usecs
[    4.230692] calling  vmcore_init+0x0/0x68b @ 1
[    4.235376] initcall vmcore_init+0x0/0x68b returned 0 after 5 usecs
[    4.241974] calling  proc_kmsg_init+0x0/0x2a @ 1
[    4.246830] initcall proc_kmsg_init+0x0/0x2a returned 0 after 6 usecs
[    4.253608] calling  proc_page_init+0x0/0x4a @ 1
[    4.258476] initcall proc_page_init+0x0/0x4a returned 0 after 11 usecs
[    4.265338] calling  init_ramfs_fs+0x0/0x44 @ 1
[    4.270187] initcall init_ramfs_fs+0x0/0x44 returned 0 after 71 usecs
[    4.276958] calling  blk_scsi_ioctl_init+0x0/0x288 @ 1
[    4.282367] initcall blk_scsi_ioctl_init+0x0/0x288 returned 0 after 1 usecs
[    4.289688] calling  acpi_event_init+0x0/0x37 @ 1
[    4.294663] initcall acpi_event_init+0x0/0x37 returned 0 after 29 usecs
[    4.301622] calling  pnp_system_init+0x0/0xf @ 1
[    4.306528] initcall pnp_system_init+0x0/0xf returned 0 after 51 usecs
[    4.313379] calling  pnpacpi_init+0x0/0x88 @ 1
[    4.318049] pnp: PnP ACPI init
[    4.321310] ACPI: bus type PNP registered
[    4.326770] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.334509] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    4.362724] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
[    4.370065] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
[    4.377023] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.386519] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    4.392754] system 00:03: [io  0x040b] has been reserved
[    4.398338] system 00:03: [io  0x04d6] has been reserved
[    4.403919] system 00:03: [io  0x0c00-0x0c01] has been reserved
[    4.410151] system 00:03: [io  0x0c14] has been reserved
[    4.415748] system 00:03: [io  0x0c50-0x0c51] has been reserved
[    4.421992] system 00:03: [io  0x0c52] has been reserved
[    4.427582] system 00:03: [io  0x0c6c] has been reserved
[    4.433183] system 00:03: [io  0x0c6f] has been reserved
[    4.438798] system 00:03: [io  0x0cd0-0x0cd1] has been reserved
[    4.445024] system 00:03: [io  0x0cd2-0x0cd3] has been reserved
[    4.451241] system 00:03: [io  0x0cd4-0x0cd5] has been reserved
[    4.457459] system 00:03: [io  0x0cd6-0x0cd7] has been reserved
[    4.463698] system 00:03: [io  0x0cd8-0x0cdf] has been reserved
[    4.469935] system 00:03: [io  0x0800-0x089f] could not be reserved
[    4.476533] system 00:03: [io  0x0b00-0x0b0f] has been reserved
[    4.482770] system 00:03: [io  0x0b20-0x0b3f] has been reserved
[    4.489005] system 00:03: [io  0x0900-0x090f] has been reserved
[    4.495232] system 00:03: [io  0x0910-0x091f] has been reserved
[    4.501466] system 00:03: [io  0xfe00-0xfefe] has been reserved
[    4.507701] system 00:03: [mem 0xffb80000-0xffbfffff] has been reserved
[    4.514659] system 00:03: [mem 0xfec10000-0xfec1001f] has been reserved
[    4.521619] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.531389] system 00:04: [io  0x0e00-0x0e0f] has been reserved
[    4.537624] system 00:04: [io  0x0e80-0x0e8f] has been re039] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[    4.570990] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.579926] system 00:06: [mem 0x00000000-0x0009ffff] could not be reserved
[    4.587247] system 00:06: [mem 0x000c0000-0x000cffff] could not be reserved
[    4.594570] system 00:06: [mem 0x000e0000-0x000fffff] could not be reserved
[    4.601890] system 00:06: [mem 0x00100000-0xcfefffff] could not be reserved
[    4.609208] system 00:06: [mem 0xfec00000-0xffffffff] could not be reserved
[    4.616531] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    4.624598] pnp: PnP ACPI: found 7 devices
[    4.628904] ACPI: bus type PNP unregistered
[    4.633304] initcall pnpacpi_init+0x0/0x88 returned 0 after 308153 usecs
[    4.640345] calling  pcistub_init+0x0/0x280 @ 1
[    4.645902] initcall pcistub_init+0x0/0x280 returned 0 after 779 usecs
[    4.652770] calling  chr_dev_init+0x0/0xc9 @ 1
[    4.668867] initcall chr_dev_init+0x0/0xc9 returned 0 after 11178 usecs
[    4.675843] calling  firmware_class_init+0x0/0xd7_init+0x0/0xd7 returned 0 after 34 usecs
[    4.688499] calling  init_pcmcia_bus+0x0/0x5e @ 1
[    4.693530] initcall init_pcmcia_bus+0x0/0x5e returned 0 after 84 usecs
[    4.700480] calling  thermal_init+0x0/0x78 @ 1
[    4.705211] initcall thermal_init+0x0/0x78 returned 0 after 52 usecs
[    4.711899] calling  cpufreq_gov_performance_init+0x0/0xf @ 1
[    4.717943] initcall cpufreq_gov_performance_init+0x0/0xf returned 0 after 3 usecs
[    4.725913] calling  init_acpi_pm_clocksource+0x0/0x18d @ 1
[    4.766299] initcall init_acpi_pm_clocksource+0x0/0x18d returned 0 after 33738 usecs
[    4.774432] calling  pcibios_assign_0-0xdfffffff 64bit pref]
[    4.807132] pci 0000:00:06.0: PCI bridge to [bus 02]
[    4.812347] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    4.818740] pci 0000:00:06.0:   bridge window [mem 0xfe900000-0xfe9fffff]
[    4.825890] pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
[    4.834032] pci 0000:00:07.0: PCI bridge to [bus 03]
[    4.839246] pci 0000:00:07.0:   bridge window [io  0xa000-0xbfff]
[    4.845648] pci 0000:00:07.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    4.852778] pci 0000:00:14.4: PCI bridge to [bus 04]
[    4.857989] pci 0000:00:14.4:   bridge window [io  0xc000-0xefff]
[    4.864398] pci 0000:00:14.4:   bridge window [mem 0xfeb00000-0xfebfffff]
[    4.871555] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    4.877402] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    4.883269] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    4.889851] pci_bus 0000:00: resource 7 [mem 0xcff00000-0xdfffffff]
[    4.896441] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfebfffff]
[    4.903031] pci_bus 0000:01: resource 0 [io  0x8000-0x8fff]
[    4.908882] pci_bus 0000:01: resource 1 [mem 0xfe700000-0xfe8fffff]
[    4.915463] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    4.923054] pci_bus 0000:02: resource 0 [io  0x9000-0x9fff]
[    4.928906] pci_bus 0000:02: resource 1 [mem 0xfe900000-0xfe9fffff]
[    4.935503] pci_bus 0000:02: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
[    4.943089] pci_bus 0000:03: resource 0 [io  0xa000-0xbfff]
[    4.948954] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    4.955545] pci_bus 0000:04: resource 0 [io  0xc000-0xefff]
[    4.961395] pci_bus 0000:04: resource 1 [mem 0xfeb00000-0xfebfffff]
[    4.967971] pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7]
[    4.973836] pci_bus 0000:04: resource 5 [io  0x0d00-0xffff]
[    4.979696] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
[    4.986286] pci_bus 0000:04: resource 7 [mem 0xcff00000-0xdfffffff]
[    4.992885] pci_bus 0000:04: resource 8 [mem 0xf0000000-0xfebfffff]
[    4.999462] initcall pcibios_assign_resources+0x0/0x8f returned 0 after 214329 usecs
[    5.007605] calling  sysctl_core_init+0x0/0x23 @ 1
[    5.012666] initcall sysctl_core_init+0x0/0x23 returned 0 after 28 usecs
[    5.019710] calling  inet_init+0x0/0x25b @ 1
[    5.024420] NET: Registered protocol family 2
[    5.029775] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    5.037196] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    5.043981] TCP: Hash tables configured (established 8192 bind 8192)
[    5.050700] TCP: reno registered
[    5.054103] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    5.060324] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    5.067358] initcall inet_init+0x0/0x25b returned 0 after 42191 usecs
[    5.074118] calling  ipv4_offload_init+0x0/0x5d @ 1
[    5.079247] initcall ipv4_offload_init+0x0/0x5d returned 0 after 1 usecs
[    5.086283] calling  af_unix_init+0x0/0x4d @ 1
[    5.090990] NET: Registered protocol family 1
[    5.095595] initcall af_unix_init+0x0/0x4d returned 0 after 4533 usecs
[    5.102453] calling  ipv6_offload_init+0x0/0x7a @ 1
[    5.107591] initcall ipv6_offload_init+0x0/0x7a returned 0 after 1 usecs
[    5.114634] calling  init_sunrpc+0x0/0x5f @ 1
[    5.119599] RPC: Registered named UNIX socket transport module.
[    5.125815] RPC: Registered udp transport module.
[    5.130766] RPC: Registered tcp transport module.
[    5.135699] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.142477] initcall init_sunrpc+0x0/0x5f returned 0 after 22736 usecs
[    5.149336] calling  pci_apply_final_quirks+0x0/0x112 @ 1
[    5.155024] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    5.532617] pci 0000:01:05.0: Boot video device
[    5.537386] PCI: CLS 64 bytes, default 64
[    5.541600] initcall pci_ap[    7.414618] microcode: updated early to new patch_level=0x010000db
[    7.448847] Freeing initrd memory: 83104K (f2ad6000 - f7bfe000)
[    7.455076] initcall populate_rootfs+0x0/0xf9 returned 0 
[    7.462500] calling  pci_iommu_init+0x0/0x34 @ 1
[    7.467359] initcall pci_iommu_init+0x0/0x34 returned 0 after 2 usecs
[    7.474181] calling  register_kernel_offset_dumper+0x0/0x16 @ 1
[    7.480411] initcall register_kernel_offset_dumper+0x0/0x16 returned 0 after 2 usecs
[    7.488548] calling  i8259A_init_ops+0x0/0x1d @ 1
[    7.493486] initcall i8259A_init_ops+0x0/0x1d returned 0 after 1 usecs
[    7.500350] calling  sbf_init+0x0/0xf1 @ 1
[    7.504661] initcall sbf_init+0x0/0xf1 returned 0 after 0 usecs
[    7.510897] calling  init_tsc_clocksource+0x0/0xa7 @ 1
[    7.516307] initcall init_tsc_clocksource+0x0/0xa7 returned 0 after 2 usecs
[    7.523635] calling  add_rtc_cmos+0x0/0x99 @ 1
[    7.528306] initcall add_rtc_cmos+0x0/0x99 returned 0 after 2 usecs
[    7.534902] calling  i8237A_init_ops+0x0/0x11 @ 1
[    7.539849] initcall i8237A_init_ops+0x0/0x11 returned 0 after 0 usecs
[    7.546713] calling  cache_sysfs_init+0x0/0x69 @ 1
[    7.553084] initcall cache_sysfs_init+0x0/0x69 returned 0 after 1304 usecs
[    7.560310] calling  amd_uncore_init+0x0/0x111 @ 1
[    7.565354] initcall amd_uncore_init+0x0/0x111 returned -19 after 1 usecs
[    7.572490] calling  intel_uncore_init+0x0/0x3ea @ 1
[    7.577714] initcall intel_uncore_init+0x0/0x3ea returned -19 after 1 usecs
[    7.585022] calling  rapl_pmu_init+0x0/0x194 @ 1
[    7.589878] initcall rapl_pmu_init+0x0/0x194 returned 0 after 1 usecs
[    7.596657] calling  inject_init+0x0/0x30 @ 1
[    7.601240] Machine check injector initialized
[    7.605914] initcall inject_init+0x0/0x30 returned 0 after 4568 usecs
[    7.612682] calling  thermal_throttle_init_device+0x0/0x6d @ 1
[    7.618807] initcall thermal_throttle_init_device+0x0/0x6d returned 0 after 0 usecs
[    7.626862] calling  microcode_init+0x0/0x18c @ 1
[    7.631945] microcode: CPU0: patch_level=0x010000db
[    7.637098] microcode: CPU1: patch_level=0x01000086
[    7.642250] microcode: CPU2: patch_level=0x01000086
[    7.647409] microcode: CPU3: patch_level=0x01000086
[    7.652739] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    7.661984] initcall microcode_init+0x0/0x18c returned 0 after 29494 usecs
[    7.669223] calling  amd_ibs_init+0x0/0x21f @ 1
[    7.673992] LVT offset 1 assigned for vector 0x400
[    7.679033] IBS: LVT offset 1 assigned
[    7.683111] perf: AMD IBS detected (0x0000001f)
[    7.687880] initcall amd_ibs_init+0x0/0x21f returned 0 after 13575 usecs
[    7.694920] calling  msr_init+0x0/0x153 @ 1
[    7.699947] initcall msr_init+0x0/0x153 returned 0 after 622 usecs
[    7.706471] calling  cpuid_init+0x0/0x153 @ 1
[    7.711735] initcall cpuid_init+0x0/0x153 returned 0 after 654 usecs
[    7.718436] calling  ioapic_init_ops+0x0/0x11 @ 1
[    7.723402] initcall ioapic_init_ops+0x0/0x11 returned 0 after 1 usecs
[    7.730260] calling  add_pcspkr+0x0/0x3b @ 1
[    7.734842] initcall add_pcspkr+0x0/0x3b returned 0 after 88 usecs
[    7.741336] calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
[    7.748121] Scanning for low memory corruption every 60 seconds
[    7.754339] initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 6077 usecs
[    7.763304] calling  sysfb_init+0x0/0x80 @ 1
[    7.767882] initcall sysfb_init+0x0/0x80 returned 0 after 96 usecs
[    7.774371] calling  pt_dump_init+0x0/0x70 @ 1
[    7.779069] initcall pt_dump_init+0x0/0x70 returned 0 after 12 usecs
[    7.785749] calling  aes_init+0x0/0xf @ 1
[    7.790084] initcall aes_init+0x0/0xf returned 0 after 108 usecs
[    7.796408] calling  proc_execdomains_init+0x0/0x27 @ 1
[    7.801908] initcall proc_execdomains_init+0x0/0x27 returned 0 after 9 usecs
[    7.809328] calling  ioresources_init+0x0/0x44 @ 1
[    7.814368] initcall ioresources_init+0x0/0x44 returned 0 after 11 usecs
[    7.821425] calling  init_posix_timers+0x0/0x22b @ 1
[    7.826713] initcall init_posix_timers+0x0/0x22b returned 0 after 71 usecs
[    7.833956] calling  init_posix_cpu_timers+0x0/0x9b @ 1
[    7.839447] initcall init_posix_cpu_timers+0x0/0x9b returned 0 after 1 usecs
[    7.846865] calling  snapshot_device_init+0x0/0xf @ 1
[    7.852318] initcall snapshot_device_init+0x0/0xf returned 0 after 129 usecs
[    7.859732] calling  irq_pm_init_ops+0x0/0x11 @ 1
[    7.864680] initcall irq_pm_init_ops+0x0/0x11 returned 0 after 0 usecs
[    7.871551] calling  timekeeping_init_ops+0x0/0x11 @ 1
[    7.876968] initcall timekeeping_init_ops+0x0/0x11 returned 0 after 2 usecs
[    7.884280] calling  init_clocksource_sysfs+0x0/0x58 @ 1
[    7.890085] initcall init_clocksource_sysfs+0x0/0x58 returned 0 after 221 usecs
[    7.897764] calling  init_timer_list_procfs+0x0/0x30 @ 1
[    7.903354] initcall init_timer_list_procfs+0x0/0x30 returned 0 after 6 usecs
[    7.910854] calling  alarmtimer_init+0x0/0x151 @ 1
[    7.916076] initcall alarmtimer_init+0x0/0x151 returned 0 after 189 usecs
[    7.923231] calling  clockevents_init_sysfs+0x0/0xa3 @ 1
[    7.929525] initcall clockevents_init_sysfs+0x0/0xa3 returned 0 after 698 usecs
[    7.937219] calling  init_tstats_procfs+0x0/0x30 @ 1
[    7.942440] initcall init_tstats_procfs+0x0/0x30 returned 0 after 7 usecs
[    7.949586] calling  futex_init+0x0/0xe6 @ 1
[    7.954073] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    7.960684] initcall futex_init+0x0/0xe6 returned 0 after 6464 usecs
[    7.967371] calling  proc_dma_init+0x0/0x27 @ 1
[    7.972136] initcall proc_dma_init+0x0/0x27 returned 0 after 6 usecs
[    7.978831] calling  proc_modules_init+0x0/0x27 @ 1
[    7.983961] initcall proc_modules_init+0x0/0x27 returned 0 after 6 usecs
[    7.991001] calling  kallsyms_init+0x0/0x2a @ 1
[    7.995765] initcall kallsyms_init+0x0/0x2a returned 0 after 6 usecs
[    8.002441] calling  pid_namespaces_init+0x0/0x32 @ 1
[    8.007813] initcall pid_namespaces_init+0x0/0x32 returned 0 after 59 usecs
[    8.015136] calling  ikconfig_init+0x0/0x41 @ 1
[    8.019912] initcall ikconfig_init+0x0/0x41 returned 0 after 7 usecs
[    8.026602] calling  audit_init+0x0/0xed @ 1
[    8.031093] audit: initializing netlink subsys (disabled)
[    8.036819] audit: type=2000 audit(1405354050.578:1): initialized
[    8.043220] initcall audit_init+0x0/0xed returned 0 after 11852 usecs
[    8.050003] calling  audit_watch_init+0x0/0x31 @ 1
[    8.055037] initcall audit_watch_init+0x0/0x31 returned 0 after 4 usecs
[    8.061996] calling  audit_tree_init+0x0/0x3b @ 1
[    8.066959] initcall audit_tree_init+0x0/0x3b returned 0 after 3 usecs
[    8.073822] calling  init_kprobes+0x0/0x177 @ 1
[    8.079042] initcall init_kprobes+0x0/0x177 returned 0 after 435 usecs
[    8.085898] calling  utsname_sysctl_init+0x0/0x11 @ 1
[    8.091230] initcall utsname_sysctl_init+0x0/0x11 returned 0 after 12 usecs
[    8.098539] calling  init_tracepoints+0x0/0x29 @ 1
[    8.103582] initcall init_tracepoints+0x0/0x29 returned 0 after 0 usecs
[    8.110546] calling  init_blk_tracer+0x0/0x56 @ 1
[    8.115490] initcall init_blk_tracer+0x0/0x56 returned 0 after 2 usecs
[    8.122350] calling  irq_work_init_cpu_notifier+0x0/0x25 @ 1
[    8.128293] initcall irq_work_init_cpu_notifier+0x0/0x25 returned 0 after 2 usecs
[    8.136166] calling  perf_event_sysfs_init+0x0/0x8f @ 1
[    8.142439] initcall perf_event_sysfs_init+0x0/0x8f returned 0 after 761 usecs
[    8.150038] calling  init_per_zone_wmark_min+0x0/0x9d @ 1
[    8.155726] initcall init_per_zone_wmark_min+0x0/0x9d returned 0 after 4 usecs
[    8.163313] calling  kswapd_init+0x0/0x1d @ 1
[    8.168035] initcall kswapd_init+0x0/0x1d returned 0 after 133 usecs
[    8.174719] calling  extfrag_debug_init+0x0/0x7b @ 1
[    8.179958] initcall extfrag_debug_init+0x0/0x7b returned 0 after 26 usecs
[    8.187182] calling  setup_vmstat+0x0/0xcf @ 1
[    8.191879] initcall setup_vmstat+0x0/0xcf returned 0 after 24 usecs
[    8.198558] calling  mm_compute_batch_init+0x0/0x51 @ 1
[    8.204055] initcall mm_compute_batch_init+0x0/0x51 returned 0 after 0 usecs
[    8.211476] calling  slab_proc_init+0x0/0x2a @ 1
[    8.216336] initcall slab_proc_init+0x0/0x2a returned 0 after 8 usecs
[    8.223119] calling  workingset_init+0x0/0x38 @ 1
[    8.228064] initcall workingset_init+0x0/0x38 returned 0 after 5 usecs
[    8.234929] calling  proc_vmalloc_init+0x0/0x2a @ 1
[    8.240052] initcall proc_vmalloc_init+0x0/0x2a returned 0 after 6 usecs
[    8.247104] calling  procswaps_init+0x0/0x27 @ 1
[    8.251965] initcall procswaps_init+0x0/0x27 returned 0 after 6 usecs
[    8.258736] calling  init_frontswap+0x0/0x84 @ 1
[    8.263634] initcall init_frontswap+0x0/0x84 returned 0 after 31 usecs
[    8.270498] calling  hugetlb_init+0x0/0x3d8 @ 1
[    8.275259] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    8.281998] initcall hugetlb_init+0x0/0x3d8 returned 0 after 6586 usecs
[    8.288966] calling  slab_proc_init+0x0/0x7 @ 1
[    8.293725] initcall slab_proc_init+0x0/0x7 returned 0 after 0 usecs
[    8.300413] calling  cpucache_init+0x0/0x40 @ 1
[    8.305170] initcall cpucache_init+0x0/0x40 returned 0 after 1 usecs
[    8.311859] calling  init_cleancache+0x0/0xa8 @ 1
[    8.316838] initcall init_cleancache+0x0/0xa8 returned 0 after 30 usecs
[    8.323795] calling  zs_init+0x0/0x90 @ 1
[    8.328019] initcall zs_init+0x0/0x90 returned 0 after 3 usecs
[    8.334149] calling  fcntl_init+0x0/0x2f @ 1
[    8.338683] initcall fcntl_init+0x0/0x2f returned 0 after 33 usecs
[    8.345190] calling  proc_filesystems_init+0x0/0x27 @ 1
[    8.350687] initcall proc_filesystems_init+0x0/0x27 returned 0 after 6 usecs
[    8.358102] calling  dio_init+0x0/0x32 @ 1
[    8.362456] initcall dio_init+0x0/0x32 returned 0 after 51 usecs
[    8.368775] calling  fsnotify_mark_init+0x0/0x46 @ 1
[    8.374065] initcall fsnotify_mark_init+0x0/0x46 returned 0 after 71 usecs
[    8.381286] calling  dnotify_init+0x0/0x7c @ 1
[    8.386055] initcall dnotify_init+0x0/0x7c returned 0 after 88 usecs
[    8.392732] calling  inotify_user_setup+0x0/0x50 @ 1
[    8.398006] initcall inotify_user_setup+0x0/0x50 returned 0 after 48 usecs
[    8.405238] calling  aio_setup+0x0/0x7e @ 1
[    8.409815] initcall aio_setup+0x0/0x7e returned 0 after 174 usecs
[    8.416313] calling  proc_locks_init+0x0/0x27 @ 1
[    8.421264] initcall proc_locks_init+0x0/0x27 returned 0 after 6 usecs
[    8.428128] calling  dquot_init+0x0/0x116 @ 1
[    8.432708] VFS: Disk quotas dquot_6.5.2
[    8.436993] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    8.443856] initcall dquot_init+0x0/0x116 returned 0 after 10895 usecs
[    8.450731] calling  init_v2_quota_format+0x0/0x1d @ 1
[    8.456126] initcall init_v2_quota_format+0x0/0x1d returned 0 after 0 usecs
[    8.463454] calling  quota_init+0x0/0x2e @ 1
[    8.467972] initcall quota_init+0x0/0x2e returned 0 after 26 usecs
[    8.474464] calling  init_devpts_fs+0x0/0x52 @ 1
[    8.479443] initcall init_devpts_fs+0x0/0x52 returned 0 after 122 usecs
[    8.486405] calling  init_hugetlbfs_fs+0x0/0x145 @ 1
[    8.491861] initcall init_hugetlbfs_fs+0x0/0x145 returned 0 after 239 usecs
[    8.499172] calling  init_fat_fs+0x0/0x4c @ 1
[    8.503835] initcall init_fat_fs+0x0/0x4c returned 0 after 75 usecs
[    8.510420] calling  init_vfat_fs+0x0/0xf @ 1
[    8.514999] initcall init_vfat_fs+0x0/0xf returned 0 after 1 usecs
[    8.521503] calling  init_msdos_fs+0x0/0xf @ 1
[    8.526170] initcall init_msdos_fs+0x0/0xf returned 0 after 1 usecs
[    8.532758] calling  init_iso9660_fs+0x0/0x69 @ 1
[    8.537754] initcall init_iso9660_fs+0x0/0x69 returned 0 after 46 usecs
[    8.544712] calling  init_nfs_fs+0x0/0x142 @ 1
[    8.549803] initcall init_nfs_fs+0x0/0x142 returned 0 after 420 usecs
[    8.556576] calling  init_nfs_v2+0x0/0x11 @ 1
[    8.561160] initcall init_nfs_v2+0x0/0x11 returned 0 after 1 usecs
[    8.567654] calling  init_nfs_v3+0x0/0x11 @ 1
[    8.572246] initcall init_nfs_v3+0x0/0x11 returned 0 after 1 usecs
[    8.578749] calling  init_nfs_v4+0x0/0x30 @ 1
[    8.583328] NFS: Registering the id_resolver key type
[    8.588653] Key type id_resolver registered
[    8.593049] Key type id_legacy registered
[    8.597279] initcall init_nfs_v4+0x0/0x30 returned 0 after 13635 usecs
[    8.604145] calling  init_nlm+0x0/0x3b @ 1
[    8.608478] initcall init_nlm+0x0/0x3b returned 0 after 12 usecs
[    8.614788] calling  init_nls_cp437+0x0/0x11 @ 1
[    8.619655] initcall init_nls_cp437+0x0/0x11 returned 0 after 1 usecs
[    8.626434] calling  init_nls_ascii+0x0/0x11 @ 1
[    8.631286] initcall init_nls_ascii+0x0/0x11 returned 0 after 0 usecs
[    8.638058] calling  init_nls_iso8859_1+0x0/0x11 @ 1
[    8.643281] initcall init_nls_iso8859_1+0x0/0x11 returned 0 after 0 usecs
[    8.650430] calling  init_nls_utf8+0x0/0x23 @ 1
[    8.655202] initcall init_nls_utf8+0x0/0x23 returned 0 after 2 usecs
[    8.661889] calling  init_ntfs_fs+0x0/0x1c9 @ 1
[    8.666646] ntfs: driver 2.1.30 [Flags: R/W].
[    8.671406] initcall init_ntfs_fs+0x0/0x1c9 returned 0 after 4652 usecs
[    8.678366] calling  init_autofs4_fs+0x0/0x26 @ 1
[    8.683381] tsc: Refined TSC clocksource calibration: 3000.105 MHz
[    8.683479] initcall init_autofs4_fs+0x0/0x26 returned 0 after 155 usecs
[    8.683485] calling  init_pstore_fs+0x0/0x41 @ 1
[    8.683509] initcall init_pstore_fs+0x0/0x41 returned 0 after 19 usecs
[    8.683513] calling  ipc_init+0x0/0x20 @ 1
[    8.683530] msgmni has been set to 1688
[    8.683551] initcall ipc_init+0x0/0x20 returned 0 after 34 usecs
[    8.683556] calling  ipc_sysctl_init+0x0/0x11 @ 1
[    8.683573] initcall ipc_sysctl_init+0x0/0x11 returned 0 after 14 usecs
[    8.683577] calling  init_mqueue_fs+0x0/0x91 @ 1
[    8.740095] initcall init_mqueue_fs+0x0/0x91 returned 0 after 55240 usecs
[    8.747242] calling  key_proc_init+0x0/0x64 @ 1
[    8.752019] initcall key_proc_init+0x0/0x64 returned 0 after 13 usecs
[    8.758802] calling  selinux_nf_ip_init+0x0/0x65 @ 1
[    8.764021] initcall selinux_nf_ip_init+0x0/0x65 returned 0 after 1 usecs
[    8.771168] calling  init_sel_fs+0x0/0x8b @ 1
[    8.775751] initcall init_sel_fs+0x0/0x8b returned 0 after 1 usecs
[    8.782250] calling  selnl_init+0x0/0x53 @ 1
[    8.786756] initcall selnl_init+0x0/0x53 returned 0 after 13 usecs
[    8.793249] calling  sel_netif_init+0x0/0x54 @ 1
[    8.798112] initcall sel_netif_init+0x0/0x54 returned 0 after 2 usecs
[    8.804880] calling  sel_netnode_init+0x0/0x5f @ 1
[    8.809938] initcall sel_netnode_init+0x0/0x5f returned 0 after 0 usecs
[    8.816901] calling  sel_netport_init+0x0/0x5f @ 1
[    8.821938] initcall sel_netport_init+0x0/0x5f returned 0 after 0 usecs
[    8.828905] calling  aurule_init+0x0/0x2d @ 1
[    8.833486] initcall aurule_init+0x0/0x2d returned 0 after 3 usecs
[    8.839999] calling  crypto_algapi_init+0x0/0xc @ 1
[    8.845133] initcall crypto_algapi_init+0x0/0xc returned 0 after 7 usecs
[    8.852183] calling  chainiv_module_init+0x0/0xf @ 1
[    8.857399] initcall chainiv_module_init+0x0/0xf returned 0 after 0 usecs
[    8.864547] calling  eseqiv_module_init+0x0/0xf @ 1
[    8.869687] initcall eseqiv_module_init+0x0/0xf returned 0 after 1 usecs
[    8.876743] calling  hmac_module_init+0x0/0xf @ 1
[    8.881697] initcall hmac_module_init+0x0/0xf returned 0 after 0 usecs
[    8.888561] calling  md5_mod_init+0x0/0xf @ 1
[    8.893227] initcall md5_mod_init+0x0/0xf returned 0 after 76 usecs
[    8.899823] calling  sha1_generic_mod_init+0x0/0xf @ 1
[    8.905294] initcall sha1_generic_mod_init+0x0/0xf returned 0 after 74 usecs
[    8.912710] calling  crypto_cbc_module_init+0x0/0xf @ 1
[    8.918194] initcall crypto_cbc_module_init+0x0/0xf returned 0 after 1 usecs
[    8.925598] calling  des_generic_mod_init+0x0/0x14 @ 1
[    8.931139] initcall des_generic_mod_init+0x0/0x14 returned 0 after 135 usecs
[    8.938643] calling  aes_init+0x0/0xf @ 1
[    8.942965] initcall aes_init+0x0/0xf returned 0 after 106 usecs
[    8.949277] calling  zlib_mod_init+0x0/0xf @ 1
[    8.954032] initcall zlib_mod_init+0x0/0xf returned 0 after 74 usecs
[    8.960709] calling  crypto_authenc_module_init+0x0/0xf @ 1
[    8.966576] initcall crypto_authenc_module_init+0x0/0xf returned 0 after 0 usecs
[    8.974346] calling  crypto_authenc_esn_module_init+0x0/0xf @ 1
[    8.980575] initcall crypto_authenc_esn_module_init+0x0/0xf returned 0 after 1 usecs
[    8.988710] calling  krng_mod_init+0x0/0xf @ 1
[    8.993486] initcall krng_mod_init+0x0/0xf returned 0 after 91 usecs
[    9.000169] calling  proc_genhd_init+0x0/0x44 @ 1
[    9.005127] initcall proc_genhd_init+0x0/0x44 returned 0 after 12 usecs
[    9.012086] calling  init_emergency_pool+0x0/0x53 @ 1
[    9.017404] bounce: pool size: 64 pages
[    9.021436] initcall init_emergency_pool+0x0/0x53 returned 0 after 3955 usecs
[    9.028933] calling  bsg_init+0x0/0x119 @ 1
[    9.033424] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    9.041183] initcall bsg_init+0x0/0x119 returned 0 after 7672 usecs
[    9.047781] calling  noop_init+0x0/0xf @ 1
[    9.052085] io scheduler noop registered
[    9.056209] initcall noop_init+0x0/0xf returned 0 after 4030 usecs
[    9.062707] calling  deadline_init+0x0/0xf @ 1
[    9.067380] io scheduler deadline registered
[    9.071869] initcall deadline_init+0x0/0xf returned 0 after 4386 usecs
[    9.078726] calling  cfq_init+0x0/0x89 @ 1
[    9.083116] io scheduler cfq registered (default)
[    9.088058] initcall cfq_init+0x0/0x89 returned 0 after 4900 usecs
[    9.094560] calling  percpu_counter_startup+0x0/0x35 @ 1
[    9.100142] initcall percpu_counter_startup+0x0/0x35 returned 0 after 1 usecs
[    9.107654] calling  audit_classes_init+0x0/0x4f @ 1
[    9.112887] initcall audit_classes_init+0x0/0x4f returned 0 after 15 usecs
[    9.120117] calling  phy_core_init+0x0/0x45 @ 1
[    9.124918] initcall phy_core_init+0x0/0x45 returned 0 after 30 usecs
[    9.131693] calling  pci_proc_init+0x0/0x64 @ 1
[    9.136674] initcall pci_proc_init+0x0/0x64 returned 0 after 209 usecs
[    9.143533] calling  pcie_portdrv_init+0x0/0x6f @ 1
[    9.150669] pcieport 0000:00:06.0: irq 40 for MSI/MSI-X
[    9.158152] pcieport 0000:00:07.0: irq 41 for MSI/MSI-X
[    9.163897] initcall pcie_portdrv_init+0x0/0x6f returned 0 after 14902 usecs
[    9.171320] calling  aer_service_init+0x0/0x28 @ 1
[    9.176411] initcall aer_service_init+0x0/0x28 returned 0 after 53 usecs
[    9.183458] calling  pci_hotplug_init+0x0/0x1e @ 1
[    9.188495] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    9.194348] initcall pci_hotplug_init+0x0/0x1e returned 0 after 5720 usecs
[    9.201586] calling  pcied_init+0x0/0x76 @ 1
[    9.206194] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    9.213151] initcall pcied_init+0x0/0x76 returned 0 after 6919 usecs
[    9.219835] calling  pcifront_init+0x0/0x41 @ 1
[    9.224602] initcall pcifront_init+0x0/0x41 returned -19 after 1 usecs
[    9.231476] calling  genericbl_driver_init+0x0/0x11 @ 1
[    9.237037] initcall genericbl_driver_init+0x0/0x11 returned 0 after 50 usecs
[    9.244545] calling  cirrusfb_init+0x0/0xaa @ 1
[    9.249396] initcall cirrusfb_init+0x0/0xaa returned 0 after 73 usecs
[    9.256169] calling  efifb_driver_init+0x0/0x11 @ 1
[    9.261354] initcall efifb_driver_init+0x0/0x11 returned 0 after 53 usecs
[    9.268503] calling  intel_idle_init+0x0/0x2ec @ 1
[    9.273549] initcall intel_idle_init+0x0/0x2ec returned -19 after 2 usecs
[    9.280687] calling  acpi_reserve_resources+0x0/0xc8 @ 1
[    9.286286] initcall acpi_reserve_resources+0x0/0xc8 returned 0 after 13 usecs
[    9.293874] calling  acpi_ac_init+0x0/0x25 @ 1
[    9.298639] initcall acpi_ac_init+0x0/0x25 returned 0 after 88 usecs
[    9.305317] calling  acpi_button_driver_init+0x0/0xf @ 1
[    9.311279] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    9.320057] ACPI: Power Button [PWRB]
[    9.324271] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    9.332045] ACPI: Power Button [PWRF]
[    9.335946] initcall acpi_button_driver_init+0x0/0xf returned 0 after 24478 usecs
[    9.343818] calling  acpi_fan_driver_init+0x0/0xf @ 1
[    9.349200] initcall acpi_fan_driver_init+0x0/0xf returned 0 after 57 usecs
[    9.356547] calling  acpi_processor_driver_init+0x0/0x3e @ 1
[    9.362592] ACPI: processor limited to max C-state 1
[    9.368609] initcall acpi_processor_driver_init+0x0/0x3e returned 0 after 5958 usecs
[    9.376751] calling  acpi_thermal_init+0x0/0x8c @ 1
[    9.384768] thermal LNXTHERM:00: registered as thermal_zone0
[    9.390712] ACPI: Thermal Zone [THRM] (30 C)
[    9.395247]d 0 after 13071 usecs
[    9.402658] calling  acpi_battery_init+0x0/0x13 @ 1
[    9.407790] initcall acpi_battery_init+0x0/0x13 returned 0 after 5 usecs
[    9.407799] calling  1_acpi_battery_init_async+0x0/0x22 @ 6
[    9.407881] initcall 1_acpi_battery_init_async+0x0/0x22 returned 0 after 76 usecs
[    9.428543] calling  acpi_hed_driver_init+0x0/0xf @ 1
[    9.433905] initcall acpi_hed_driver_init+0x0/0xf returned 0 after 53 usecs
[    9.441224] calling  erst_init+0x0/0x2fa @ 1
[    9.445709] initcall erst_init+0x0/0x2fa returned 0 after 1 usecs
[    9.452122] calling  ghes_init+0x0/0x165 @ 1
[    9.456611] GHES: HEST is not enabled!
[    9.460550] initcall ghes_init+0x0/0x165 returned -22 after 3850 usecs
[    9.467415] calling  einj_init+0x0/0x4ef @ 1
[    9.471895] initcall einj_init+0x0/0x4ef returned -19 after 1 usecs
[    9.478483] calling  ioat_init_module+0x0/0xb0 @ 1
[    9.483522] ioatdma: Intel(R) QuickData Technology Driver 4.00
[    9.489849] initcall ioat_init_module+0x0/0xb0 returned 0 after 6184 usecs
[    9.497069] calling  virtio_mmio_init+0x0/0x11 @ 1
[    9.502159] initcall virtio_mmio_init+0x0/0x11 returned 0 after 52 usecs
[    9.509204] calling  virtio_balloon_driver_init+0x0/0xf @ 1
[    9.515118] initcall virtio_balloon_driver_init+0x0/0xf returned 0 after 52 usecs
[    9.522999] calling  xenbus_probe_initcall+0x0/0x35 @ 1
[    9.528485] initcall xenbus_probe_initcall+0x0/0x35 returned -19 after 0 usecs
[    9.536085] calling  xenbus_init+0x0/0x37 @ 1
[    9.540672] initcall xenbus_init+0x0/0x37 returned -19 after 0 usecs
[    9.547343] calling  xenbus_backend_init+0x0/0x48 @ 1
[    9.552651] initcall xenbus_backend_init+0x0/0x48 returned -19 after 0 usecs
[    9.560062] calling  gntdev_init+0x0/0x48 @ 1
[    9.564639] initcall gntdev_init+0x0/0x48 returned -19 after 0 usecs
[    9.571332] calling  gntalloc_init+0x0/0x37 @ 1
[    9.576090] initcall gntalloc_init+0x0/0x37 returned -19 after 0 usecs
[    9.582946] calling  hypervisor_subsys_init+0x0/0x21 @ 1
[    9.588533] initcall hypervisor_subsys_init+0x0/0x21 returned -19 after 0 usecs
[    9.596216] calling  hyper_sysfs_init+0x0/0xcc @ 1
[    9.601241] initcall hyper_sysfs_init+0x0/0xcc returned -19 after 0 usecs
[    9.608384] calling  platform_pci_module_init+0x0/0x16 @ 1
[    9.614224] initcall platform_pci_module_init+0x0/0x16 returned 0 after 68 usecs
[    9.622009] calling  xen_pcibk_init+0x0/0x110 @ 1
[    9.626948] initcall xen_pcibk_init+0x0/0x110 returned -19 after 0 usecs
[    9.633985] calling  xen_acpi_processor_init+0x0/0x1f7 @ 1
[    9.639752] initcall xen_acpi_processor_init+0x0/0x1f7 returned -19 after 0 usecs
[    9.647615] calling  pty_init+0x0/0x3d9 @ 1
[    9.654541] kworker/u12:0 (638) used greatest stack depth: 6928 bytes left
[    9.673247] kworker/u12:0 (777) used greatest stack depth: 6712 bytes left
[    9.720948] initcall pty_init+0x0/0x3d9 returned 0 after 67380 usecs
[    9.727637] calling  sysrq_init+0x0/0xbe @ 1
[    9aring enabled
[    9.762191] Switched to ?[   11.104611] console [ttyS0] enabled
[   11.104611] console [ttyS0] enabled
[   11.111860] bootconsole [uart0] disabled
[  disabled
[   11.120626] initcall serial_pci_driver_init+0x0/0x16 returned 0 after 1326369 usecs
[   11.128527] calling  init_kgdboc+0x0/0x15 @ 1
[   11.133018] initcall init_kgdboc+0x0/0x15 returned 0 after 0 usecs
[   11.139383] calling  init+0x0/0xf3 @ 1
[   11.143394] initcall init+0x0/0xf3 returned 0 after 149 usecs
[   11.149311] calling  hpet_init+0x0/0x57 @ 1
[   11.154131] initcall hpet_init+0x0/0x57 returned 0 after 499 usecs
[   11.160501] calling  nvram_init+0x0/0x7e @ 1
[   11.165022] Non-volatile memory driver v1.3
[   11.169331] initcall nvram_init+0x0/0x7e returned 0 after 4336 usecs
[   11.175876] calling  mod_init+0x0/0x1b6 @ 1
[   11.180213] initcall mod_init+0x0/0x1b6 returned -19 after 31 usecs
[   11.186668] calling  mod_init+0x0/0x12d @ 1
[   11.190978] initcall mod_init+0x0/0x12d returned -19 after 5 usecs
[   11.197342] calling  mod_init+0x0/0x99 @ 1
[   11.201561] initcall mod_init+0x0/0x99 returned -19 after 3 usecs
[   11.207836] calling  mod_init+0x0/0x48 @ 1
[   11.212051] initcall mod_init+0x0/0x48 returned -19 after 0 usecs
[   11.218325] calling  rng_init+0x0/0xf @ 1
[   11.222608] initcall rng_init+0x0/0xf returned 0 after 153 usecs
[   11.228798] calling  agp_init+0x0/0x2f @ 1
[   11.233012] Linux agpgart interface v0.103
[   11.237228] initcall agp_init+0x0/0x2f returned 0 after 4120 usecs
[   11.243593] calling  agp_ali_init+0x0/0x24 @ 1
[   11.248237] initcall agp_ali_init+0x0/0x24 returned 0 after 68 usecs
[   11.254780] calling  agp_ati_init+0x0/0x24 @ 1
[   11.259420] initcall agp_ati_init+0x0/0x24 returned 0 after 65 usecs
[   11.265965] calling  agp_amdk7_init+0x0/0x24 @ 1
[   11.270789] initcall agp_amdk7_init+0x0/0x24 returned 0 after 71 usecs
[   11.277511] calling  agp_amd64_mod_init+0x0/0xa @ 1
[   11.283236] initcall agp_amd64_mod_init+0x0/0xa returned -19 after 688 usecs
[   11.290497] calling  agp_efficeon_init+0x0/0x39 @ 1
[   11.295586] initcall agp_efficeon_init+0x0/0x39 returned 0 after 66 usecs
[   11.302577] calling  agp_intel_init+0x0/0x24 @ 1
[   11.307399] initcall agp_intel_init+0x0/0x24 returned 0 after 68 usecs
[   11.314123] calling  agp_nvidia_init+0x0/0x24 @ 1
[   11.319027] initcall agp_nvidia_init+0x0/0x24 returned 0 after 61 usecs
[   11.325840] calling  agp_sis_init+0x0/0x24 @ 1
[   11.330481] initcall agp_sis_init+0x0/0x24 returned 0 after 67 usecs
[   11.337026] calling  agp_serverworks_init+0x0/0x24 @ 1
[   11.342382] initcall agp_serverworks_init+0x0/0x24 returned 0 after 66 usecs
[   11.349641] calling  agp_via_init+0x0/0x24 @ 1
[   11.354283] initcall agp_via_init+0x0/0x24 returned 0 after 67 usecs
[   11.360829] calling  drm_core_init+0x0/0x107 @ 1
[   11.365654] [drm] Initialized drm 1.1.0 20060810
[   11.370406] initcall drm_core_init+0x0/0x107 returned 0 after 4716 usecs
[   11.377309] calling  cn_proc_init+0x0/0x33 @ 1
[   11.381884] initcall cn_proc_init+0x0/0x33 returned 0 after 3 usecs
[   11.388337] calling  topology_sysfs_init+0x0/0x60 @ 1
[   11.393738] initcall topology_sysfs_init+0x0/0x60 returned 0 after 197 usecs
[   11.400999] calling  loop_init+0x0/0x12b @ 1
[   11.411602] loop: module loaded
[   11.414838] initcall loop_init+0x0/0x12b returned 0 after 9231 usecs
[   11.421387] call1.438176] zram: Created 1 device(s) ...
[   11.442308] initcall zram_init+0x0/0x2e9 returned 0 after 4841 usecs
[   11.448854] calling  mac_hid_init+0x0/0x1c @ 1
[   11.453443] initcall mac_hid_init+0x0/0x1c returned 0 after 10 usecs
[   11.459989] calling  macvlan_init_module+0x0/0x31 @ 1
[   11.465196] initcall macvlan_init_module+0x0/0x31 returned 0 after 2 usecs
[   11.472282] calling  macvtap_init+0x0/0xd0 @ 1
[   11.476891] initcall macvtap_init+0x0/0xd0 returned 0 after 34 usecs
[   11.483441] calling  net_olddevs_init+0x0/0x88 @ 1
[   11.488378] initcall net_olddevs_init+0x0/0x88 returned 0 after 2 usecs
[   11.495195] calling  fixed_mdio_bus_init+0x0/0xe3 @ 1
[   11.500602] libphy: Fixed MDIO Bus: probed
[   11.504818] initcall fixed_mdio_bus_init+0x0/0xe3 returned 0 after 4320 usecs
[   11.512173] calling  tun_init+0x0/0x8b @ 1
[   11.516391] tun: Universal TUN/TAP device driver, 1.6
[   11.521589] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[   11.528109] initcall tun_init+0x0/0x8b returned 0 after 11452 usecs
[   11.534570] calling  tg3_driver_init+0x0/0x16 @ 1
[   11.539529] initcall tg3_driver_init+0x0/0x16 returned 0 after 110 usecs
[   11.546435] calling  ixgbevf_init_module+0x0/0x49 @ 1
[   11.551633] ixgbevf: Intel(R) 10 Gigabit PCI Express Virtual Function Network Driver - version 2.12.1-k
[   11.561306] ixgbevf: Copyright (c) 2009 - 2012 Intel Corporation.
[   11.567683] initcall ixgbevf_init_module+0x0/0x49 returned 0 after 15687 usecs
[   11.575126] calling  forcedeth_pci_driver_init+0x0/0x16 @ 1
[   11.580936] initcall forcedeth_pci_driver_init+0x0/0x16 returned 0 after 69 usecs
[   11.588642] calling  netback_init+0x0/0x81 @ 1
[   11.593219] initcall netback_init+0x0/0x81 returned -19 after 0 usecs
[   11.599851] calling  fw_core_init+0x0/0xf1 @ 1
[   11.604596] initcall fw_core_init+0x0/0xf1 returned 0 after 161 usecs
[   11.611234] calling  nonstatic_sysfs_init+0x0/0xf @ 1
[   11.616433] initcall nonstatic_sysfs_init+0x0/0xf returned 0 after 0 usecs
[   11.623513] calling  yenta_cardbus_driver_init+0x0/0x16 @ 1
[   11.629359] initcall yenta_cardbus_driver_init+0x0/0x16 returned 0 after 106 usecs
[   11.637155] calling  mon_init+0x0/0xe1 @ 1
[   11.641571] initcall mon_init+0x0/0xe1 returned 0 after 196 usecs
[   11.647851] calling  ehci_hcd_init+0x0/0x58 @ 1
[   11.652513] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   11.659233] initcall ehci_hcd_init+0x0/0x58 returned 0 after 6567 usecs
[   11.666046] calling  ehci_pci_init+0x0/0x60 @ 1
[   11.670708] ehci-pci: EHCI PCI platform driver
[   11.676980] QUIRK: Enable AMD PLL fix
[   11.680777] ehci-pci 0000:00:12.2: EHCI Host Controller
[   11.686454] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[   11.694080] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[   11.703035] ehci-pci 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
[   11.710749] ehci-pci 0000:00:12.2: debug port 1
[   11.715545] ehci-pci 0000:00:12.2: irq 17, io mem 0xfe6ff800
[   11.727390] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[   11.733603] usb usb1: New USB device found, idVendor=1d6b, usb usb1: SerialNumber: 0000:00:12.2
[   11.765418] hub 1-0:1.0: USB hub found
[   11.769346] hub 1-0:1.0: 6 ports detected
[   11.776629] ehci-pci 0000:00:13.2: EHCI Host Controller
[   11.782308] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[   11.789933] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[   11.798887] ehci-pci 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
[   11.806600] ehci-pci 0000:00:13.2: debug port 1
[   11.811396] ehci-pci 0000:00:13.2: irq 19, io mem 0xfe6ff400
[   11.823301] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[   11.829506] usb usb2: New USB device found, idVendor=1d6b, sb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.843935] usb usb2: Product: EHCI Host Controller
[   11.848956] usb usb2: Manufacturer: Linux 3.16.0-rc5upstream ehci_hcd
[   11.855586] usb usb2: SerialNumber: 0000:00:13.2
[   11.861298] hub 2-0:1.0: USB hub found
[   11.865218] hub 2-0:1.0: 6 ports detected
[   11.870843] initcall ehci_pci_init+0x0/0x60 returned 0 after 195625 usecs
[   11.877844] calling  ohci_hcd_mod_init+0x0/0x5e @ 1
[   11.882865] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   11.889235] initcall ohci_hcd_mod_init+0x0/0x5e returned 0 after 6224 usecs
[   11.896405] calling  ohci_pci_init+0x0/0x60 @ 1
[   11.901065] ohci-pci: OHCI PCI platform driver
[   11.907374] ohci-pci 0000:00:12.0: OHCI PCI host controller
[   11.913397] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
[   11.921160] ohci-pci 0000:00:12.0: irq 16, io mem 0xfe6fe000
[   11.981410] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[   11.988404] usb usb3: New USB device strings: M: Product: OHCI PCI host controller
[   12.001214] usb usb3: Manufacturer: Linux 3.16.0-rc5upstream ohci_hcd
[   12.007842] usb usb3: SerialNumber: 0000:00:12.0
[   12.013546] hub 3-0:1.0: USB hub found
[   12.017474] hub 3-0:1.0: 3 ports detected
[   12.024244] ohci-pci 0000:00:12.1: OHCI PCI host controller
[   12.030276] ohci-pci 0000:00:12.1: new USB bus registered, assigned bus number 4
[   12.037969] ohci-pci 0000:00:12.1: irq 16, io mem 0xfe6fd000
[   12.098367] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[   12.105360] usb usb4: New USB device strings: M
[   12.118171] usb usb4: Manufacturer: Linux 3.16.0-rc5upstream ohci_hcd
[   12.124800] usb usb4: SerialNumber: 0000:00:12.1
[   12.130522] hub 4-0:1.0: USB hub found
[   12.134457] hub 4-0:1.0: 3 ports detected
[   12.141285] ohci-pci 0000:00:13.0: OHCI PCI host controller
[   12.147305] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 5
[   12.155063] ohci-pci 0000:00:13.0: irq 18, io mem 0xfe6fc000
[   12.216173] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[   12.223165] usb usb5: New USB device strings: Musb5: Manufacturer: Linux 3.16.0-rc5upstream ohci_hcd
[   12.242606] usb usb5: SerialNumber: 0000:00:13.0
[   12.248318] hub 5-0:1.0: USB hub found
[   12.252249] hub 5-0:1.0: 3 ports detected
[   12.259142] ohci-pci 0000:00:13.1: OHCI PCI host controller
[   12.265159] ohci-pci 0000:00:13.1: new USB bus registered, assigned bus number 6
[   12.272858] ohci-pci 0000:00:13.1: irq 18, io mem 0xfe6f7000
[   12.333074] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[   12.340065] usb usb6: New USB device strings: Mupstream ohci_hcd
[   12.359506] usb usb6: SerialNumber: 0000:00:13.1
[   12.365225] hub 6-0:1.0: USB hub found
[   12.369153] hub 6-0:1.0: 3 ports detected
[   12.375999] ohci-pci 0000:00:14.5: OHCI PCI host controller
[   12.382021] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 7
[   12.389720] ohci-pci 0000:00:14.5: irq 18, io mem 0xfe6f6000
[   12.450036] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
[   12.457028] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   12.464460] usb usb7: Product: OHCI PCI host controller
[   12.469837] usb usb7: Manufacturer: Linux 3.16.0-rc5upstream ohci_hcd
[   12.476465] usb usb7: SerialNumber: 0000:00:14.5
[   12.482180] hub 7-0:1.0: USB hub found
[   12.486109] hub 7-0:1.0: 2 ports detected
[   12.491102] initcall ohci_pci_init+0x0/0x60 returned 0 after 576748 usecs
[   12.498103] calling  uhci_hcd_init+0x0/0xa4 @ 1
[   12.502766] uhci_hcd: USB Universal Host Controller Interface driver
[   12.509468] initcall uhci_hcd_init+0x0/0xa4 returned 0 after 6550 usecs
[   12.516280] calling  usblp_driver_init+0x0/0x16 @ 1
[   12.521414] usbcore: registered new interface driver usblp
[   12.527062] initcall usblp_driver_init+0x0/0x16 returned 0 after 5632 usecs
[   12.534233] calling  kgdbdbgp_start_thread+0x0/0x57 @ 1
[   12.539612] initcall kgdbdbgp_start_thread+0x0/0x57 returned 0 after 0 usecs
[   12.546870] calling  i8042_init+0x0/0x3b7 @ 1
[   12.551518] i8042: PNP: No PS/2 controller found. Probing ports directly.
[   12.559039] serio: i8042 KBD port at 0x60,0x64 irq 1
[   12.564163] serio: i8042 AUX port at 0x60,0x64 irq 12
[   12.569401] initcall i8042_init+0x0/0x3b7 returned 0 after 17641 usecs
[   12.576127] calling  serport_init+0x0/0x2e @ 1
[   12.580700] initcall serport_init+0x0/0x2e returned 0 after 0 usecs
[   12.587159] calling  mousedev_init+0x0/0x54 @ 1
[   12.592025] mousedev: PS/2 mouse device common for all mice
[   12.597768] initcall mousedev_init+0x0/0x54 returned 0 after 5812 usecs
[   12.604581] calling  evdev_init+0x0/0xf @ 1
[   12.609210] initcall evdev_init+0x0/0xf returned 0 after 316 usecs
[   12.615583] calling  atkbd_init+0x0/0x20 @ 1
[   12.620053] initcall atkbd_init+0x0/0x20 returned 0 after 75 usecs
[   12.626423] calling  psmouse_init+0x0/0x8a @ 1
[   12.631213] initcall psmouse_init+0x0/0x8a returned 0 after 205 usecs
[   12.637858] calling  cmos_init+0x0/0x66 @ 1
[   12.642214] rtc_cmos 00:01: RTC can wake from S4
[   12.647441] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[   12.653759] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[   12.661676] initcall cmos_init+0x0/0x66 returned 0 after 19073 usecs
[   12.668219] calling  i2c_i801_init+0x0/0x92 @ 1
[   12.672997] initcall i2c_i801_init+0x0/0x92 returned 0 after 112 usecs
[   12.679718] calling  cpufreq_gov_dbs_init+0x0/0xf @ 1
[   12.684917] initcall cpufreq_gov_dbs_init+0x0/0xf returned 0 after 0 usecs
[   12.691997] calling  efivars_sysfs_init+0x0/0x1d0 @ 1
[   12.697196] initcall efivars_sysfs_init+0x0/0x1d0 returned -19 after 0 usecs
[   12.704456] calling  efivars_pstore_init+0x0/0x89 @ 1
[   12.709654] initcall efivars_pstore_init+0x0/0x89 returned 0 after 0 usecs
[   12.716736] calling  vhost_net_init+0x0/0x20 @ 1
[   12.721606] initcall vhost_net_init+0x0/0x20 returned 0 after 115 usecs
[   12.728428] calling  vhost_init+0x0/0x7 @ 1
[   12.732738] initcall vhost_init+0x0/0x7 returned 0 after 0 usecs
[   12.738928] calling  staging_init+0x0/0x7 @ 1
[   12.743416] initcall staging_init+0x0/0x7 returned 0 after 0 usecs
[   12.749787] calling  eeepc_laptop_init+0x0/0x4f @ 1
[   12.754963] initcall eeepc_laptop_init+0x0/0x4f returned -19 after 148 usecs
[   12.762226] calling  sock_diag_init+0x0/0xf @ 1
[   12.766911] initcall sock_diag_init+0x0/0xf returned 0 after 16 usecs
[   12.773548] calling  llc_init+0x0/0x1b @ 1
[   12.777768] initcall llc_init+0x0/0x1b returned 0 after 0 usecs
[   12.783868] calling  snap_init+0x0/0x35 @ 1
[   12.788179] initcall snap_init+0x0/0x35 returned 0 after 3 usecs
[   12.794369] calling  blackhole_module_init+0x0/0xf @ 1
[   12.799663] initcall blackhole_module_init+0x0/0xf returned 0 after 0 usecs
[   12.806837] calling  nfnetlink_init+0x0/0x4b @ 1
[   12.811593] Netfilter messages via NETLINK v0.30.
[   12.816454] initcall nfnetlink_init+0x0/0x4b returned 0 after 4750 usecs
[   12.823359] calling  nfnetlink_log_init+0x0/0x8f @ 1
[   12.828485] initcall nfnetlink_log_init+0x0/0x8f returned 0 after 10 usecs
[   12.835569] calling  nf_conntrack_standalone_init+0x0/0x70 @ 1
[   12.841580] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   12.848087] initcall nf_conntrack_standalone_init+0x0/0x70 returned 0 after 6360 usecs
[   12.856245] calling  ctnetlink_init+0x0/0x92 @ 1
[   12.861001] ctnetlink v0.93: registering with nfnetlink.
[   12.866472] initcall ctnetlink_init+0x0/0x92 returned 0 after 5347 usecs
[   12.873379] calling  nf_conntrack_ftp_init+0x0/0x195 @ 1
[   12.878855] initcall nf_conntrack_ftp_init+0x0/0x195 returned 0 after 3 usecs
[   12.886213] calling  nf_conntrack_irc_init+0x0/0x148 @ 1
[   12.891694] initcall nf_conntrack_irc_init+0x0/0x148 returned 0 after 5 usecs
[   12.899046] calling  nf_conntrack_sip_init+0x0/0x1e4 @ 1
[   12.904519] initcall nf_conntrack_sip_init+0x0/0x1e4 returned 0 after 0 usecs
[   12.911872] calling  xt_init+0x0/0xb5 @ 1
[   12.916010] initcall xt_init+0x0/0xb5 returned 0 after 7 usecs
[   12.922022] calling  tcpudp_mt_init+0x0/0x14 @ 1
[   12.926778] initcall tcpudp_mt_init+0x0/0x14 returned 0 after 0 usecs
[   12.933415] calling  connsecmark_tg_init+0x0/0xf @ 1
[   12.938529] initcall connsecmark_tg_init+0x0/0xf returned 0 after 0 usecs
[   12.945526] calling  nflog_tg_init+0x0/0xf @ 1
[   12.950105] initcall nflog_tg_init+0x0/0xf returned 0 after 0 usecs
[   12.956563] calling  secmark_tg_init+0x0/0xf @ 1
[   12.961319] initcall secmark_tg_init+0x0/0xf returned 0 after 0 usecs
[   12.967956] calling  tcpmss_tg_init+0x0/0x14 @ 1
[   12.972712] initcall tcpmss_tg_init+0x0/0x14 returned 0 after 0 usecs
[   12.979351] calling  conntrack_mt_init+0x0/0x14 @ 1
[   12.984376] initcall conntrack_mt_init+0x0/0x14 returned 0 after 0 usecs
[   12.991283] calling  policy_mt_init+0x0/0x14 @ 1
[   12.996038] initcall policy_mt_init+0x0/0x14 returned 0 after 0 usecs
[   13.002675] calling  state_mt_init+0x0/0xf @ 1
[   13.007252] initcall state_mt_init+0x0/0xf returned 0 after 0 usecs
[   13.013712] calling  gre_offload_init+0x0/0x14 @ 1
[   13.018649] initcall gre_offload_init+0x0/0x14 returned 0 after 0 usecs
[   13.025466] calling  sysctl_ipv4_init+0x0/0x44 @ 1
[   13.030443] initcall sysctl_ipv4_init+0x0/0x44 returned 0 after 39 usecs
[   13.037349] calling  tunnel4_init+0x0/0x6d @ 1
[   13.041927] initcall tunnel4_init+0x0/0x6d returned 0 after 0 usecs
[   13.048388] calling  ipv4_netfilter_init+0x0/0xf @ 1
[   13.053501] initcall ipv4_netfilter_init+0x0/0xf returned 0 after 0 usecs
[   13.060496] calling  nf_conntrack_l3proto_ipv4_init+0x0/0x150 @ 1
[   13.066970] initcall nf_conntrack_l3proto_ipv4_init+0x0/0x150 returned 0 after 191 usecs
[   13.075307] calling  nf_defrag_init+0x0/0x14 @ 1
[   13.080064] initcall nf_defrag_init+0x0/0x14 returned 0 after 0 usecs
[   13.086703] calling  ip_tables_init+0x0/0x8f @ 1
[   13.091482] ip_tables: (C) 2000-2006 Netfilter Core Team
[   13.096954] initcall ip_tables_init+0x0/0x8f returned 0 after 5369 usecs
[   13.103861] calling  iptable_filter_init+0x0/0x40 @ 1
[   13.109172] initcall iptable_filter_init+0x0/0x40 returned 0 after 103 usecs
[   13.116438] calling  iptable_mangle_init+0x0/0x40 @ 1
[   13.121721] initcall iptable_mangle_init+0x0/0x40 returned 0 after 79 usecs
[   13.128896] calling  reject_tg_init+0x0/0xf @ 1
[   13.133561] initcall reject_tg_init+0x0/0xf returned 0 after 0 usecs
[   13.140111] calling  ulog_tg_init+0x0/0x74 @ 1
[   13.144708] initcall ulog_tg_init+0x0/0x74 returned 0 after 17 usecs
[   13.151259] calling  cubictcp_register+0x0/0x72 @ 1
[   13.156283] TCP: cubic registered
[   13.159700] initcall cubictcp_register+0x0/0x72 returned 0 after 3339 usecs
[   13.166875] calling  xfrm_user_init+0x0/0x43 @ 1
[   13.171629] Initializing XFRM netlink socket
[   13.176043] initcall xfrm_user_init+0x0/0x43 returned 0 after 4313 usecs
[   13.182949] calling  inet6_init+0x0/0x2c3 @ 1
[   13.187696] NET: Registered protocol family 10
[   13.193092] initcall inet6_init+0x0/0x2c3 returned 0 after 5525 usecs
[   13.199734] calling  ah6_init+0x0/0x75 @ 1
[   13.203956] initcall ah6_init+0x0/0x75 returned 0 after 0 usecs
[   13.210051] calling  esp6_init+0x0/0x75 @ 1
[   13.214360] initcall esp6_init+0x0/0x75 returned 0 after 4 usecs
[   13.220546] calling  xfrm6_transport_init+0x0/0x14 @ 1
[   13.225839] initcall xfrm6_transport_init+0x0/0x14 returned 0 after 4 usecs
[   13.233013] calling  xfrm6_mode_tunnel_init+0x0/0x14 @ 1
[   13.238479] initcall xfrm6_mode_tunnel_init+0x0/0x14 returned 0 after 0 usecs
[   13.245829] calling  xfrm6_beet_init+0x0/0x14 @ 1
[   13.250669] initcall xfrm6_beet_init+0x0/0x14 returned 0 after 0 usecs
[   13.257391] calling  ip6_tables_init+0x0/0x8f @ 1
[   13.262255] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   13.267815] initcall ip6_tables_init+0x0/0x8f returned 0 after 5453 usecs
[   13.274805] calling  ip6table_filter_init+0x0/0x40 @ 1
[   13.280251] initcall ip6table_filter_init+0x0/0x40 returned 0 after 150 usecs
[   13.287599] calling  ip6table_mangle_init+0x0/0x40 @ 1
[   13.293033] initcall ip6table_mangle_init+0x0/0x40 returned 0 after 137 usecs
[   13.300380] calling  nf_conntrack_l3proto_ipv6_init+0x0/0x129 @ 1
[   13.306668] initcall nf_conntrack_l3proto_ipv6_init+0x0/0x129 returned 0 after 16 usecs
[   13.314914] calling  nf_defrag_init+0x0/0x4c @ 1
[   13.319690] initcall nf_defrag_init+0x0/0x4c returned 0 after 24 usecs
[   13.326418] calling  ipv6header_mt6_init+0x0/0xf @ 1
[   13.331528] initcall ipv6header_mt6_init+0x0/0xf returned 0 after 0 usecs
[   13.338523] calling  reject_tg6_init+0x0/0xf @ 1
[   13.343275] initcall reject_tg6_init+0x0/0xf returned 0 after 0 usecs
[   13.349912] calling  sit_init+0x0/0xbc @ 1
[   13.354126] sit: IPv6 over IPv4 tunneling driver
[   13.359859] initcall sit_init+0x0/0xbc returned 0 after 5602 usecs
[   13.366224] calling  packet_init+0x0/0x39 @ 1
[   13.370710] NET: Registered protocol family 17
[   13.375293] initcall packet_init+0x0/0x39 returned 0 after 4484 usecs
[   13.381926] calling  br_init+0x0/0x90 @ 1
[   13.386096] initcall br_init+0x0/0x90 returned 0 after 44 usecs
[   13.392197] calling  init_rpcsec_gss+0x0/0x54 @ 1
[   13.397096] initcall init_rpcsec_gss+0x0/0x54 returned 0 after 58 usecs
[   13.403908] calling  dcbnl_init+0x0/0x5e @ 1
[   13.408308] initcall dcbnl_init+0x0/0x5e returned 0 after 4 usecs
[   13.414583] calling  init_dns_resolver+0x0/0xcd @ 1
[   13.419619] Key type dns_resolver registered
[   13.424014] initcall init_dns_resolver+0x0/0xcd returned 0 after 4310 usecs
[   13.431187] calling  mcheck_init_device+0x0/0x177 @ 1
[   13.437316] initcall mcheck_init_device+0x0/0x177 returned 0 after 909 usecs
[   13.444623] calling  mcheck_debugfs_init+0x0/0x3e @ 1
[   13.449838] initcall mcheck_debugfs_init+0x0/0x3e returned 0 after 14 usecs
[   13.457008] calling  severities_debugfs_init+0x0/0x3e @ 1
[   13.462570] initcall severities_debugfs_init+0x0/0x3e returned 0 after 5 usecs
[   13.470007] calling  threshold_init_device+0x0/0x44 @ 1
[   13.475894] initcall threshold_init_device+0x0/0x44 returned 0 after 499 usecs
[   13.483331] calling  hpet_insert_resource+0x0/0x1e @ 1
[   13.488619] initcall hpet_insert_resource+0x0/0x1e returned 0 after 0 usecs
[   13.495789] calling  update_mp_table+0x0/0x527 @ 1
[   13.500720] initcall update_mp_table+0x0/0x527 returned 0 after 0 usecs
[   13.507532] calling  lapic_insert_resource+0x0/0x46 @ 1
[   13.512910] initcall lapic_insert_resource+0x0/0x46 returned 0 after 0 usecs
[   13.520169] calling  io_apic_bug_finalize+0x0/0x1a @ 1
[   13.525459] initcall io_apic_bug_finalize+0x0/0x1a returned 0 after 0 usecs
[   13.532628] calling  print_ICs+0x0/0x437 @ 1
[   13.537021] initcall print_ICs+0x0/0x437 returned 0 after 0 usecs
[   13.543296] calling  print_ipi_mode+0x0/0x2e @ 1
[   13.548047] Using IPI No-Shortcut mode
[   13.551905] initcall print_ipi_mode+0x0/0x2e returned 0 after 3770 usecs
[   13.558806] calling  pat_memtype_list_init+0x0/0x37 @ 1
[   13.564189] initcall pat_memtype_list_init+0x0/0x37 returned 0 after 6 usecs
[   13.571450] calling  init_oops_id+0x0/0x50 @ 1
[   13.576024] initcall init_oops_id+0x0/0x50 returned 0 after 1 usecs
[   13.582481] calling  pm_qos_power_init+0x0/0x5d @ 1
[   13.587890] initcall pm_qos_power_init+0x0/0x5d returned 0 after 381 usecs
[   13.594972] calling  pm_debugfs_init+0x0/0x2a @ 1
[   13.599821] initcall pm_debugfs_init+0x0/0x2a returned 0 after 6 usecs
[   13.606548] calling  printk_late_init+0x0/0x38 @ 1
[   13.611479] initcall printk_late_init+0x0/0x38 returned 0 after 0 usecs
[   13.618292] calling  tk_debug_sleep_time_init+0x0/0x41 @ 1
[   13.623945] initcall tk_debug_sleep_time_init+0x0/0x41 returned 0 after 6 usecs
[   13.631472] calling  debugfs_kprobe_init+0x0/0xa6 @ 1
[   13.636699] initcall debugfs_kprobe_init+0x0/0xa6 returned 0 after 25 usecs
[   13.643868] calling  taskstats_init+0x0/0x6e @ 1
[   13.648637] registered taskstats version 1
[   13.652851] initcall taskstats_init+0x0/0x6e returned 0 after 4134 usecs
[   13.659751] calling  clear_boot_tracer+0x0/0x2d @ 1
[   13.664772] initcall clear_boot_tracer+0x0/0x2d returned 0 after 0 usecs
[   13.671671] calling  kdb_ftrace_register+0x0/0x35 @ 1
[   13.676873] initcall kdb_ftrace_register+0x0/0x35 returned 0 after 2 usecs
[   13.683952] calling  fault_around_debugfs+0x0/0x3a @ 1
[   13.689245] initcall fault_around_debugfs+0x0/0x3a returned 0 after 6 usecs
[   13.696414] calling  max_swapfiles_check+0x0/0x7 @ 1
[   13.701523] initcall max_swapfiles_check+0x0/0x7 returned 0 after 0 usecs
[   13.708515] calling  set_recommended_min_free_kbytes+0x0/0xb0 @ 1
[   13.714788] initcall set_recommended_min_free_kbytes+0x0/0xb0 returned 0 after 1 usecs
[   13.722941] calling  kmemleak_late_init+0x0/0x8e @ 1
[   13.728117] kmemleak: Kernel memory leak detector initialized
[   13.728120] kmemleak: Automatic memory scanning thread started
[   13.740039] initcall kmemleak_late_init+0x0/0x8e returned 0 after 11717 usecs
[   13.747398] calling  check_early_ioremap_leak+0x0/0x5d @ 1
[   13.753048] initcall check_early_ioremap_leak+0x0/0x5d returned 0 after 0 usecs
[   13.760581] calling  init_root_keyring+0x0/0xa @ 1
[   13.765541] initcall init_root_keyring+0x0/0xa returned 0 after 23 usecs
[   13.772450] calling  fail_make_request_debugfs+0x0/0x23 @ 1
[   13.778230] initcall fail_make_request_debugfs+0x0/0x23 returned 0 after 40 usecs
[   13.785941] calling  prandom_reseed+0x0/0x3e @ 1
[   13.790698] initcall prandom_reseed+0x0/0x3e returned 0 after 0 usecs
[   13.797336] calling  pci_resource_alignment_sysfs_init+0x0/0x14 @ 1
[   13.803798] initcall pci_resource_alignment_sysfs_init+0x0/0x14 returned 0 after 6 usecs
[   13.812133] calling  pci_sysfs_init+0x0/0x44 @ 1
[   13.818219] initcall pci_sysfs_init+0x0/0x44 returned 0 after 1300 usecs
[   13.825127] calling  boot_wait_for_devices+0x0/0x28 @ 1
[   13.830510] initcall boot_wait_for_devices+0x0/0x28 returned -19 after 0 usecs
[   13.837954] calling  deferred_probe_initcall+0x0/0x80 @ 1
[   13.843594] initcall deferred_probe_initcall+0x0/0x80 returned 0 after 75 usecs
[   13.851126] calling  late_resume_init+0x0/0x190 @ 1
[   13.856151]   Magic number: 6:818:135
[   13.860039] initcall late_resume_init+0x0/0x190 returned 0 after 3799 usecs
[   13.867213] calling  firmware_memmap_init+0x0/0x29 @ 1
[   13.872811] initcall firmware_memmap_init+0x0/0x29 returned 0 after 298 usecs
[   13.880164] calling  pci_mmcfg_late_insert_resources+0x0/0x43 @ 1
[   13.886442] initcall pci_mmcfg_late_insert_resources+0x0/0x43 returned 0 after 0 usecs
[   13.894600] calling  tcp_congestion_default+0x0/0xf @ 1
[   13.899982] initcall tcp_congestion_default+0x0/0xf returned 0 after 0 usecs
[   13.907252] calling  ip_auto_config+0x0/0xeb7 @ 1
[   13.912107] initcall ip_auto_config+0x0/0xeb7 returned 0 after 8 usecs
[   13.918834] calling  software_resume+0x0/0x280 @ 1
[   13.923768] PM: Hibernation image not present or could not be loaded.
[   13.930401] initcall software_resume+0x0/0x280 returned -2 after 6484 usecs
[   13.937856] async_waiting @ 1
[   13.940915] async_continuing @ 1 after 0 usec
[   13.945680] Freeing unused kernel memory: 944K (c185c000 - c1948000)
[   13.952262] Write protecting the kernel text: 6264k
[   13.957327] Write protecting the kernel read-only data: 1856k
[   13.963245] NX-protecting the kernel data: 3976k
\rinit started: BusyBox v1.14.3 ([   13.971446] consoletype (1260) used greatest stack depth: 6648 bytes left
2014-07-14 12:59:56 EDT)
Mounting directories  [  OK  ]
mount: mount point /proc/bus/usb does not exist
mount: mount point /proc/xen does not exist
mount: mount point /sys/kernel/config does not exist
cat: /sys/hypervisor/type: N[   14.123882] udevd (1296): /proc/1296/oom_adj is deprecated, please use /proc/1296/oom_score_adj instead.
o such file or directory
/usr/bin/load_xen_modules: line 3: [: ==: unary operator expected
[   14.160244] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 1342
[   14.167535] acpi-cpufreq: overriding BIOS providet
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G[   14.200041] calling  drm_fb_helper_modinit+0x0/0x1000 [drm_kms_helper] @ 1413
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^Gudevd-work[1343]: error op[   14.214597] SCSI subsystem initialized
ening ATTR{/sys/[   14.219218] initcall init_scsi+0x0/0x90 [scsi_mod] returned 0 after 38053 usecs
devices/system/cpu/cpu0/online} [   14.230740] calling  rtl8169_pci_driver_init+0x0/0x1000 [r8169] @ 1426
for writing: Per[   14.237820] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
mission denied
[   14.244998] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control

[   14.254310] calling  skge_init_module+0x0/0x1000 [skge] @ 1478
[   14.254635] calling  ata_init+0x0/0x295 [libata] @ 1365
[   14.256315] r8169 0000:02:00.0: irq 42 for MSI/MSI-X
[   14.257795] r8169 0000:02:00.0 eth0: RTL8168c/8111c at 0xf8412000, 00:25:11:18:a1:2e, XID 1c4000c0 IRQ 42
[   14.257796] r8169 0000:02:00.0 eth0: jumbo features [frames: 6128 bytes, tx checksumming: ko]
[   14.262138] initcall rtl8169_pci_driver_init+0x0/0x1000 [r8169] returned 0 after 23845 usecs
[   14.298557] modprobe (1426) used greatest stack depth: 5492 bytes left
[   14.298991] skge: 1.14 addr 0xfebfc000 irq 20 chip Yukon rev 1
[   14.304150] libata version 3.00 loaded.
[   14.304161] initcall ata_init+0x0/0x295 [libata] returned 0 after 48399 usecs
[   14.305014] skge 0000:04:05.0 eth1: addr 00:0a:5e:5c:f5:72
[   14.305154] initcall skge_init_module+0x0/0x1000 [skge] returned 0 after 6886 usecs
[   14.305395] calling  acpi_wmi_init+0x0/0x1000 [wmi] @ 1456
Waiting for devi[   14.306018] wmi: Mapper loaded
[   14.306021] initcall acpi_wmi_init+0x0/0x1000 [wmi] returned 0 after 609 usecs
ces [[   14.354905] calling  ata_generic_pci_driver_init+0x0/0x1000 [ata_generic] @ 1485
[   14.362743] initcall ata_generic_pci_driver_init+0x0/0x1000 [ata_generic] returned 0 after 213 usecs
[   14.376037] calling  ahci_pci_driver_init+0x0/0x1000 [ahci] @ 1442
[   14.382479] ahci 0000:00:11.0: version 3.0
[   14.389 0x3f impl SATA mode
[   14.397825] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G  OK  ]
[   14.418454] scsi0 : ahci
[   14.422328] scsi1 : ahci
[   14.426323] scsi2 : ahci
[   14.430491] scsi3 : ahci
[ 8] initcall drm_fb_helper_modinit+0x0/0x1000 [drm_kms_helper] returned 0 after 221480 usecs
^G^G^G[   14.444644] scsi4 : ahci
[   14.448332] calling  ttm_init+0x0/0x1000 [ttm] @ 1413
[   14.448745] scsi5 : ahci
[   14.449633] ata1: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffd00 irq 22
[   14.449636] ata2: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffd80 irq 22
[   14.449638] ata3: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffe00 irq 22
[   14.449641] ata4: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffe80 irq 22
[   14.449643] ata5: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6fff00 irq 22
[   14.449646] ata6: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6fff80 irq 22
[   14.451991] ahci 0000:03:00.0: JMB361 has only one port
[   14.452005] ahci 0000:03:00.0: forcing port_map 0x3 -> 0x1
[   14.452107] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x1 impl SATA mode
[   14.452109] ahci 0000:03:00.0: flags: 64bit ncq led clo pmp pio 
[   14.454796] scsi6 : ahci
[   14.455872] scsi7 : ahci
[   14.456723] ata7: SATA max UDMA/133 abar m8192@0xfeafe000 port 0xfeafe100 irq 19
[   14.456724] ata8: DUMMY
[   14.456896] initcall ahci_pci_driver_init+0x0/0x1000 [ahci] returned 0 after 72807 usecs
[   14.551138] initcall ttm_init+0x0/0x1000 [ttm] returned 0 after 154 usecs
[   14.558538] calling  fb_console_init+0x0/0x1000 [fbcon] @ 2017
[   14.564846] initcall fb_console_init+0x0/0x1000 [fbcon] returned 0 after 194 usecs
[   14.574610] calling  radeon_init+0x0/0xb0 [radeon] @ 1413
[   14.580172] [drm] radeon kernel modesetting enabled.
[   14.586993] [drm] initializing kernel modesetting (RS780 0x1002:0x9610 0x1019:0x2119).
[   14.595191] [drm] register mmio base: 0xFE8F0000
[   14.599944] [drm] register mmio size: 65536
[   14.605495] ATOM BIOS: 113
[   14.608391] radeon 0000:01:05.0: VRAM: 256M 0x00000000C0000000 - 0x00000000CFFFFFFF (256M used)
[   14.617348] radeon 0000:01:05.0: GTT: 512M 0x00000000A0000000 - 0x00000000BFFFFFFF
[   14.625143] [drm] Detected VRAM RAM=256M, BAR=256M
[   14.630073] [drm] RAM width 32bits DDR
[   14.634333] [TTM] Zone  kernel: Available graphics memory: 432678 kiB
[   14.640982] [TTM] Zone highmem: Available graphics memory: 1941386 kiB
[   14.647702] [TTM] Initializing pool allocator
[   14.652282] [TTM] Initializing DMA pool allocator
[   14.657322] [drm] radeon: 256M of VRAM memory ready
[   14.662347] [drm] radeon: 512M of GTT memory ready.
[   14.667525] [drm] Loading RS780 Microcode
[   14.672121] [drm] radeon: power management initialized
[   14.677411] [drm] GART: num cpu pages 131072, num gpu pages 131072
[   14.697095] [drm] PCIE GART of 512M enabled (table at 0x00000000C0040000).
[   14.704283] radeon 0000:01:05.0: WB enabled
[00000a0000c00 and cpu addr 0xffc9fc00
[   14.718987] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   14.725844] [drm] Driver supports precise vblank timestamp query.
^G^G^G^G^G^G^G^G[   14.732162] [drm] radeon: irq initialized.
^G^G^G^G^G^G^G^G[   14.762480] ata6: SATA link down (SStatus 0 SControl 300)
[   14.768095] ata3: SATA link down (SStatus 0 SControl 300)
[   [drm] Connector 0:
[   14.773497] [drm]   VGA-1
[   14.773498] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[   14.773498] [drm]   Encoders:
[   14.773499] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[   14.773499] [drm] Connector 1:
[   14.773500] [drm]   HDMI-A-1
[   14.773500] [drm]   HPD3
[   14.773501] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[   14.773501] [drm]   Encoders:
[   14.773502] [drm]     DFP3: INTERNAL_KLDSCP_LVTMA
[   14.781836] radeon 0000:01:05.0: No connectors reported connected with modes
[   14.781862] [drm] Cannot find any crtc or sizes - going 1024x768
[   14.795918] [drm] fb mappable at 0xD0141000
[   14.795918] [drm] vram apper at 0xD0000000
[   14.795919] [drm] size 3145728
[   14.795919] [drm] fb depth is 24
[   14.795919] [drm]    pitch is 4096
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G[   14.871571] fbcon: radeondrmfb (fb0) is primary device
[   14.871626] ata4: SATA link down (SStatus 0 SControl 300)
[   14.ffer device
[   14.916682] radeon 0000:01:05.0: registered panic notifier
[   14.922397] ata1: softreset failed (device not ready)
^G^G^G^G^G^G^G^G[   14.927637] ata1: applying PMP SRST workaround and retrying
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G[   14.938721] [drm] Initialized radeon 2.39.0 20080528 for 0000:01:05.0 on minor 0
[   14.946883] initcall radeon_init+0x0/0xb0 [radeon] returned 0 after 358429 usecs
[   14.954872] modprobe (1413) used greatest stack depth: 5436 bytes left
[   15.024215] ata2: softreset failed (device not ready)
[   15.029420] ata2: applying PMP SRST workaround and retrying
[   15.089233] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[   15.097889] ata1.00: ATA-7: Maxtor 6L080M0, BACE1G10,   15.114278] ata1.00: configured for UDMA/133
[   15.114710] scsi 0:0:0:0: Direct-Access     ATA      Maxtor 6L080M0   1G10 PQ: 0 ANSI: 5
^G^G^G^G^G^G^G^G[   15.128693] calling  crc_t10dif_mod_init+0x0/0x1000 [crc_t10dif] @ 2539
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G[   15.137418] calling  crct10dif_mod_init+0x0/0x1000 [crct10dif_generic] @ 2547
^G^G^G^G[   15.146281] initcall crct10dif_mod_init+0x0/0x1000 [crct10dif_generic] returned 0 after 67 usecs
[   15.156890] initcall crc_t10dif_mod_init+0x0/0x1000 [crc_t10dif] returned 0 after 20412 usecs
[   15.166793] calling  init_sd+0x0/0x1000 [sd_mod] @ 2539
[   15.173065] initcall init_sd+0x0/0x1000 [sd_mod] returned 0 after 868 usecs
[   15.173123] sd 0:0:0:0: [sda] 156250000 512-byte logical blocks: (80.0 GB/74.5 GiB)
[   15.173384] sd 0:0:0:0: [sda] Write Protect is off
[   15.173386] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[   15.173486] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   15.195448]  sda: sda1 sda2 < sda5 >
[   15.197416] sd 0:0:0:0: [sda] Attached SCSI disk
[   15.216206] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[   15.224755] ata2.00: ATA-7: Maxtor 6L080M0, BACE1G10, max UDMA/133
[   15.231136] ata2.00: 156250000 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   15.241135] ata2.00: configured for UDMA/133
[   15.245946] scsi 1:0:0:0: Direct-Access     ATA      Maxtor 6L080M0   1G10 P
[   15.255829] sd 1:0:0:0: [sdb] 156250000 512-byte logical blocks: (80.0 GB/74.5 GiB)
^G^G^G[   15.264010] sd 1:0:0:0: [sdb] Write Protect is off
[   15.264339] calling  init_sg+0x0/0x1000 [sg] @ 2563
[   15.264742] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   15.265058] sd 1:0:0:0: Attached scsi generic sg1 type 0
[   15.265132] initcall init_sg+0x0/0x1000 [sg] returned 0 after 773 usecs
[   15.291956] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[   15.297291] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   15.325565]  sdb: sdb1
[   15.329356] sd 1:0:0:0: [sdb] Attached SCSI disk
[   15.334527] modprobe (1442) used greatest sta^GWaiting for init.pre_custom [  OK  ]
Waiting for fb [  OK  ]
Waiting for network [  OK  ]
Bringing up loopback interface:  [  OK  ]
Bringing up interface eth0:  [   15.539188] r8169 0000:02:00.0 eth0: link down
[   15.539207] r8169 0000:02:00.0 eth0: link down
[   15.548367] IPv6: ADDRCG^G^G^G^G^G^G^G^G^G[   15.556321] device eth0 entered promiscuous mode
[  OK  ]
Bringing up interface eth1:  
Determining IP information for e[   15.593146] skge 0000:04:05.0 eth1: enabling interface
th1...[   15.606331] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   17.937285] r8169 0000:02:00.0 eth0: link up
[   17.941689] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   18.845366] skge 0000:04:05.0 eth1: Link is up at 1000 Mbps, full duplex, flow control both
[   18.853970] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
 done.
[  OK  ]
Bringing up interface switch:  
Determining IP information for s[   19.525883] switch: port 1(eth0) entered forwarding state
witch...[   19.531732] switch: p^G done.
[  OK  ]
touch: cannot touch `/var/lock/subsys/network': No such file or directory
Waiting for init.custom [  OK  ]

Starting SSHd ...

    SSH started [2995]


Waiting for SSHd [  OK  ]
WARNING: ssh currently running [2995] ignoring start request
[   25.708682] calling  crc32c_intel_mod_init+0x0/0x1000 [crc32c_intel] @ 3031
[   25.715881] initcall crc32c_intel_mod_init+0xed 0 after 79 usecs
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G[   25.749501] calling  libcrc32c_mod_init+0x0/0x1000 [libcrc32c] @ 3036
^G^G^G^G^G^G^G^G[   25.757186] initcall libcrc32c_mod_init+0x0/0x1000 [libcrc32c] returned 0 after 6 usecs
^G^G^G^G^G^G^G^G[   25.769473] calling  iscsi_transport_init+0x0/0x1000 [scsi_transport_iscsi] @ 3038
[   25.777269] Loading iSCSI transport class v2.0-870.
[   25.782948] initcall iscsi_transport_init+0x0/0x1000 [scsi_transport_iscsi] returned 0 after 5542 usecs
[   25.795469] calling  iscsi_sw_tcp_init+0x0/0x1000 [iscsi_tcp] @ 3038
[   25.802209] iscsi: registered transport (tcp)
[   25.806693] initcall iscsi_sw_tcp_init+0x0/0x1000 [iscsi_tcp] returned 0 after 4575 usecs
Could not read fw values.
Jul 14 16:07:51 tst034 syslogd 1.5.0: restart.
[0:0:0:0]    disk    ATA      Maxtor 6L080M0   1G10 ^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G00:00.0 Host bridge: Advanced Micro Devices [AMD] RS780 Host Bridge
00:01.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI ridge (int gfx)
00:06.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 2)
00:07.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 3)
00:11.0 SATA controller: ATI Technologies Inc SB700/SB800 SATA Controller [AHCI mode]
00:12.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller
00:12.1 USB Controller: ATI Technologies Inc SB700 USB OHCI1 Controller
00:12.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller
00:13.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller
00:13.1 USB Controller: ATI Technologies Inc SB700 USB OHCI1 Controller
00:13.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller
00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 3a)
00:14.3 ISA bridge: ATI Technologies Inc SB700/SB800 LPC host controller
00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge
00:14.5 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI2 Controller
00:18.0 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] HyperTransport Configuration
00:18.1 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] Address Map
00:18.2 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] DRAM Controller
00:18.3 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] Miscellaneous Control
00:18.4 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] Link Control
01:05.0 VGA compatible controller: ATI Technologies Inc Radeon HD 3200 Graphics
01:05.1 Audio device: ATI Technologies Inc RS780 Azalia controller
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)
03:00.0 SATA controller: JMicron Technology Corp. JMB361 AHCI/IDE (rev 02)
03:00.1 IDE interface: JMicron Technology Corp. JMB361 AHCI/IDE (rev 02)
04:05.0 Ethernet controller: 3Com Corporation 3c940 10/100/1000Base-T [Marvell] (rev 10)
04:07.0 Serial controller: NetMos Technology PCI 9835 Multi-I/O Controller (rev 01)
           CPU0       CPU1       CPU2       CPU3       
  0:        230         40       1930      11590   IO-APIC-edge      timer
  1:          0          0          0          2   IO-APIC-edge      i8042
  8:          0          1          1         11   IO-APIC-edge      rtc0
  9:          0          0          0          0   IO-APIC-fasteoi   acpi
 12:          0          0          0          4   IO-APIC-edge      i8042
 16:          0          0          0          2   IO-APIC-fasteoi   ohci_hcd:usb3, ohci_hcd:usb4
 17:          0          0          0          0   IO-APIC-fasteoi   ehci_hcd:usb1
 18:          0          0          0          5   IO-APIC-fasteoi   ohci_hcd:usb5, ohci_hcd:usb6, ohci_hcd:usb7, radeon
 19:          0          0          0          0   IO-APIC-fasteoi   ehci_hcd:usb2, ahci
 20:          0          2          4         19   IO-APIC-fasteoi   eth1
 22:          0          1         10        210   IO-APIC-fasteoi   serial, ahci
 42:          1          1          3         35   PCI-MSI-edge      eth0
NMI:          0          0          0          0   Non-maskable interrupts
LOC:      10549      10418       8083       1211   Local timer interrupts
SPU:          0          0          0          0   Spurious interrupts
PMI:          0          0          0          0   Performance monitoring interrupts
IWI:          0          0          0          0   IRQ work interrupts
RTR:          0          0          0          0   APIC ICR read retries
RES:       1816       2211       2535       1968   Rescheduling interrupts
CAL:        331        300        291        363   Function call interrupts
TLB:         80         96         55         74   TLB shootdowns
TRM:          0          0          0          0   Thermal event interrupts
THR:          0          0          0^G^G          0   Threshold APIC interrupts
MCE:          0          0          0          0   Machine check exceptions
MCP:          1          1          1          1   Machine check polls
THR:          0          0          0          0   Hypervisor callback interrupts
ERR:          0
MIS:          0
00000000-00000fff : reserved
00001000-0009f3ff : System RAM
0009f400-0009ffff : reserved
000a0000-000bffff : PCI Bus 0000:00
  000a0000-000bffff : Video RAM area
000c0000-000cebff : Video ROM
000cf000-000d09ff : Adapter ROM
000d1000-000d1fff : Adapter ROM
000d5000-000d57ff : Adapter ROM
000e6000-000fffff : reserved
  000f0000-000fffff : System ROM
00100000-cfeaffff : System RAM
  01000000-0161d1e6 : Kernel code
  0161d1e7-0185ab3f : Kernel data
  0194f000-01a28fff : Kernel bss
cfeb0000-cfebdfff : ACPI Tables
cfebe000-cfedffff : ACPI Non-volatile Storage
cfee0000-cfefffff : reserved
cff00000-dfffffff : PCI Bus 0000:00
  d0000000-dfffffff : PCI Bus 0000:01
    d0000000-dfffffff : 0000:01:05.0
e0000000-efffffff : PCI MMCONFIG 0000 [bus 00-ff]
  e0000000-efffffff : pnp 00:05
f0000000-febfffff : PCI Bus 0000:00
  fdf00000-fdffffff : PCI Bus 0000:02
    fdff0000-fdffffff : 0000:02:00.0
      fdff0000-fdffffff : r8169
  fe6f6000-fe6f6fff : 0000:00:14.5
    fe6f6000-fe6f6fff : ohci_hcd
  fe6f7000-fe6f7fff : 0000:00:13.1
    fe6f7000-fe6f7fff : ohci_hcd
  fe6fc000-fe6fcfff : 0000:00:13.0
    fe6fc000-fe6fcfff : ohci_hcd
  fe6fd000-fe6fdfff : 0000:00:12.1
    fe6fd000-fe6fdfff : ohci_hcd
  fe6fe000-fe6fefff : 0000:00:12.0
    fe6fe000-fe6fefff : ohci_hcd
  fe6ff400-fe6ff4ff : 0000:00:13.2
    fe6ff400-fe6ff4ff : ehci_hcd
  fe6ff800-fe6ff8ff : 0000:00:12.2
    fe6ff800-fe6ff8ff : ehci_hcd
  fe6ffc00-fe6fffff : 0000:00:11.0
    fe6ffc00-fe6fffff : ahci
  fe700000-fe8fffff : PCI Bus 0000:01
    fe700000-fe7fffff : 0000:01:05.0
    fe8e8000-fe8ebfff : 0000:01:05.1
    fe8f0000-fe8fffff : 0000:01:05.0
  fe900000-fe9fffff : PCI Bus 0000:02
    fe9c0000-fe9dffff : 0000:02:00.0
    fe9ff000-fe9fffff : 0000:02:00.0
      fe9ff000-fe9fffff : r8169
  fea00000-feafffff : PCI Bus 0000:03
    feafe000-feafffff : 0000:03:00.0
      feafe000-feafffff : ahci
  feb00000-febfffff : PCI Bus 0000:04
    febc0000-febdffff : 0000:04:05.0
    febfc000-febfffff : 0000:04:05.0
      febfc000-febfffff : skge
fec00000-fec003ff : IOAPIC 0
fec10000-fec1001f : pnp 00:03
fed00000-fed003ff : HPET 2
  fed00000-fed003ff : PNP0103:00
fee00000-fee00fff : Local APIC
  fee00000-fee00fff : pnp 00:02
ff700000-ffffffff : reserved
  ffb80000-ffbfffff : pnp 00:03
100000000-11fffffff : System RAM
MemTotal:        3882772 kB
MemFree:         3583412 kB
MemAvailable:    3494640 kB
Buffers:               0 kB
Cached:           241972 kB
SwapCached:            0 kB
Active:            41668 kB
Inactive:         201392 kB
Active(anon):      41668 kB
Inactive(anon):   201392 kB
Active(file):          0 kB
Inactive(file):        0 kB
Unevictable:        2664 kB
Mlocked:            2664 kB
HighTotal:       3017416 kB
HighFree:        2795900 kB
LowTotal:         865356 kB
LowFree:          787512 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:                 0 kB
Writeback:             0 kB
AnonPages:          3632 kB
Mapped:             5764 kB
Shmem:            241972 kB
Slab:              40596 kB
SReclaimable:       6040 kB
SUnreclaim:        34556 kB
KernelStack:         840 kB
PageTables:          132 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:     1941384 kB
Committed_AS:     247852 kB
VmallocTotal:     122880 kB
VmallocUsed:       10576 kB
VmallocChunk:     105972 kB
AnonHugePages:         0 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepages[   26.614161] mount.nfs (3083) used greatest stack depth: 5156 bytes left
ize:       2048 kB
DirectMap4k:       14328 kB
DirectMap2M:      899072 kB
Waiting for init.late [  OK  ]
+ . /etc/init.d/functions
++ TEXTDOMAIN=initscripts
++ umask 022
++ PATH=/sbin:/usr/sbin:/bin:/usr/bin
++ export PATH
++ '[' -z '' ']'
++ COLUMNS=80
++ '[' -z '' ']'
+++ /sbin/consoletype
++ CONSOLETYPE=serial
++ '[' -f /etc/sysconfig/i18n -a -z '' -a -z '' ']'
++ '[' -z '' ']'
++ '[' -f /etc/sysconfig/init ']'
++ . /etc/sysconfig/init
+++ BOOTUP=color
+++ RES_COL=60
+++ MOVE_TO_COL='echo -en \033[60G'
+++ SETCOLOR_SUCCESS='echo -en \033[0;32m'
+++ SETCOLOR_FAILURE='echo -en \033[0;31m'
+++ SETCOLOR_WARNING='echo -en \033[0;33m'
+++ SETCOLOR_NORMAL='echo -en \033[0;39m'
+++ LOGLEVEL=3
+++ PROMPT=yes
+++ AUTOSWAP=no
+++ ACTIVE_CONSOLES='/dev/tty[1-6]'
++ '[' serial = serial ']'
++ BOOTUP=serial
++ MOVE_TO_COL=
++ SETCOLOR_SUCCESS=
++ SETCOLOR_FAILURE=
++ SETCOLOR_WARNING=
++ SETCOLOR_NORMAL=
++ __sed_discard_ignored_files='/\(~\|\.bak\|\.orig\|\.rpmnew\|\.rpmorig\|\.rpmsave\)$/d'
+ mkdir -p /mnt/lab
+ echo '192.168.102.1  build'
+ ping -q -c 1 build
PING build.dumpdata.com (192.168.102.1) 56(84) bytes of data.

--- build.dumpdata.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.197/0.197/0.197/0.000 ms
+ '[' 0 -eq 0 ']'
+ mount build:/srv/tftpboot/lab /mnt/lab -o vers=3
+ iscsiadm -m discovery -t st -p build
192.168.102.1:3260,1 iqn.2003-01.org.linux-iscsi.target:sn.bd5777dc54e541e0bd772761999275e6
+ iscsiadm -m node -L all
Logging in to [iface: default, target: iqn.2003-01.org.linux-iscsi.target:sn.bd5777dc54e541e0bd772761999275e6, portal: 192.168.102.1,3260]
Jul 14 16:07:52 tst034 iscsid: transport class version 2.0-870. iscsid version 2.0-870
Jul 14 16:07:52 tst034 iscsid: iSCSI daemon with pid=3066 started!
[   26.881967] scsi8 : iSCSI Initiator over TCP/IP
[   27.145207] scsi 8:0:0:0: Direct-Access     LIO-ORG  IBLOCK           4.0  PQ: 0 ANSI: 5
[   27.156485] sd 8:0:0:0: Attached [sdc] Mode Sense: 2f 00 00 00
: iqn.2003-01.or[   27.187790] calling  dm_init+0x0/0x3f [dm_mod] @ 3105
g.linux-iscsi.ta[   27.193840] sd 8:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
rget:sn.bd5777dc[   27.204612] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
54e541e0bd772761[   27.214475] initcall dm_init+0x0/0x3f [dm_mod] returned 0 after 20506 usecs
999275e6, portal[   27.224076] calling  dm_multipath_init+0x0/0x1000 [dm_multipath] @ 3105
: 192.168.102.1,[   27.231599] device-mapper: multipath: version 1.7.0 loaded
3260]: successfu[   27.238393] initcall dm_multipath_init+0x0/0x1000 [dm_multipath] returned 0 after 6887 usecs
l
^G+ modprobe dm-multipath
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G[   27.253818]  sdc: unknown partition table
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G+ sleep 5
[   27.279174] sd 8:0:0:0: [sdc] Attached SCSI disk
Jul 14 16:07:53 tst034 iscsid: connection1:0 is operational now
+ pvscan
  PV /dev/sdc   VG guests   lvm2 [931.44 GiB / 113.44 GiB free]
  Total: 1 [931.44 GiB] / in use: 1 [931.44 GiB] / in no VG: 0 G^G^G^G  31 logical volume(s) in volume group "guests" now active
+ echo 'NFS done'
NFS done
+ xl info
xc: error: Could not obtain n libxc handle: No such file or directory
cannot init xl context
+ '[' -e /sys/kernel/debug/xen/mmu/p2m ']'
+ cat /sys/kernel/debug/xen/mmu/p2m
++ boot_parameter cpuplug
++ local param
++ local value
+++ cat /proc/cmdline
+++ tr -s ' \t' '\n'
+++ egrep '^cpuplug=|^cpuplug$'
+++ tail -1
++ param=
++ '[' -z '' ']'
++ return 1
+ HOTPLUG=
+ '[' 1 -eq 0 ']'
+ TMEM_LOADED=0
+ swapon /dev/xvda
swapon: /dev/xvda: stat failed: No such file or directory
+ '[' 255 -eq 0 ']'
++ boot_parameter run
++ local param
++ local value
+++ cat /proc/cmdline
+++ tr -s ' \t' '\n'
+++ egrep '^run=|^run$'
+++ tail -1
++ param=
++ '[' -z '' ']'
++ return 1
+ HOTPLUG=
+ '[' 1 -eq 0 ']'
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^GJul 14 16:07:58 tst034 init: starting pid 3302, tty '/dev/tty1': '/bin/sh'
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G[   34.528898] switch: port 1(eth0) entered forwarding state
Jul 14 16:08:00 tst034 init: reloading /etc/inittab
Jul 14 16:08:00 tst034 init: starting pid 3306, tty '/dev/ttyS0': '/bin/sh'


BusyBox v1.14.3 (2014-07-14 12:59:56 EDT) built-in shell (ash)
Enter 'help' for a list of built-in commands.

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

Decompressing Linux... Parsing ELF... No relocation needed... done.
Booting the kernel.
[    0.000000] Initializing cgroup subsys cpuset
[    0.0000Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.16.0-rc5upstream-00060-g8e655983b (konrad@build-external.dumpdata.com) (gcc version 4.4.4 20100503 (Red Hat 4.4.4-2) (GCC) ) #1 SMP Mon Jul 14 13:41:37 EDT 2014
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f3ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f400-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e6000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfeaffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cfeb0000-0x00000000cfebdfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000cfebe000-0x00000000cfedffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cfee0000-0x00000000cfefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff700000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fffffff] usable
[    0.000000] Malformed early option 'acpi'
[    0.000000] Early serial console at I/O port 0xe400 (options '115200n8')
[    0.000000] bootconsole [uart0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.5 present.
[    0.000000] DMI: ECS A780GM-A Ultra/A780GM-A Ultra, BIOS 080015  04/01/2010
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x120000 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFF0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000130000000 aka 4864M
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
[    0.000000] found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [c00ff780]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] initial memory mapped: [mem 0x00000000-0x01ffffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x37800000-0x379fffff]
[    0.000000]  [mem 0x37800000-0x379fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x34000000-0x377fffff]
[    0.000000]  [mem 0x34000000-0x377fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x33ffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x33ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x37a00000-0x37bfdfff]
[    0.000000]  [mem 0x37a00000-0x37bfdfff] page 4k
[    0.000000] BRK [0x01a3b000, 0x01a3bfff] PGTABLE
[    0.000000] RAMDISK: [mem 0x7aed3000-0x7fffefff]
[    0.000000] Allocated new RAMDISK: [mem 0x32ad2000-0x37bfd89e]
[    0.000000] Move RAMDISK from [mem 0x7aed3000-0x7fffe89e] to [mem 0x32ad2000-0x37bfd89e]
[    0.000000] ACPI: Early table ch0xCFEB0200 000084 (v01 040110 FACP1316 20100401 MSFT 00000097)
[    0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20140424/tbfadt-649)
[    0.000000] ACPI: DSDT 0xCFEB0450 00A65F (v01 1AAAA  1AAAA000 00000000 INTL 20051117)
[    0.000000] ACPI: FACS 0xCFEBE000 000040
[    0.000000] ACPI: APIC 0xCFEB0390 00007C (v01 040110 APIC1316 20100401 MSFT 00000097)
[    0.000000] ACPI: MCFG 0xCFEB0410 00003C (v01 040110 OEMMCFG  20100401 MSFT 00000097)
[    0.000000] ACPI: OEMB 0xCFEBE040 000072 (v01 040110 OEMB1316 20100401 MSFT 00000097)
[    0.000000] ACPI: SRAT 0xCFEBAAB0 0000E8 (v03 AMD    FAM_F_10 00000002 AMD  00000001)
[    0.000000] ACPI: HPET 0xCFEBABA0 000038 (v01 040110 OEMHPET  20100401 MSFT 00000097)
[    0.000000] ACPI: SSDT 0xCFEBABE0 00088C (v01 A M I  POWERNOW 00000001 AMD  00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 3716MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] BRK [0x01a3c000, 0x01a3cfff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   Normal   [mem 0x01000000-0x37bfdfff]
[    0.000000]   HighMem  [mem 0x37bfe000-0x1fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0xcfeaffff]
[    0.000000]   node   0: [mem 0x00000000-0x1fffffff]
[    0.000000] On node 0 totalpages: 982606
[    0.000000] free_area_init_node: node 0, pgdat c1849240, node_mem_map f06d2020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 224254 pages, LIFO batch:31
[    0.000000]   HighMem zone: 7433 pages used for memmap
[    0.000000]   HighMem zone: 754354 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
[    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 low 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: 0x8300 base: 0xfed00000
[    0.000000] smpboot: Allowing 6 CPUs, 2 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000e5fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e6000-0x000fffff]
[    0.000000] e820: [mem 0xcff00000-0xff6fffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:6 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @f066c000 s35072 r0 d22272 u57344
[    0.000000] pcpu-alloc: s35072 r0 d22272 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 980822
[    0.000000] Kernel command line: initrd=initramfs.cpio.gz acpi=debug initcall_debug loglevel=10 nofb selinux=0 console=uart8250,io,0xe400,115200n8 BOOT_IMAGE=vmlinuz 
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (00037bfe:00120000)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 3798676K/3930424K available (6267K kernel code, 434K rwdata, 1852K rodata, 940K init, 872K bss, 131748K reserved, 3017416K highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff15000 - 0xfffff000   ( 936 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc185e000 - 0xc1949000   ( 940 kB)
[    0.000000]       .data : 0xc161f0a7 - 0xc185cbc0   (2294 kB)
[    0.000000]       .text : 0xc1000000 - 0xc161f0a7   (6268 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=6.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6
[    0.000000] NR_IRQS:2304 nr_irqs:472 0
[    0.000000] CPU 0 irqstacks, hard=f0008000 soft=f000a000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3000.174 MHz processor
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000024] Calibrating delay loop (skipped), value calculated using timer frequency.. 6000.34 BogoMIPS (lpj=3000174)
[    0.011162] pid_max: default: 32768 minimum: 301
[    0.016049] ACPI: Core revision 20140424
[    0.093345] ACPI: All ACPI Tables successfully acquired
[    0.105159] Security Framework initialized
[    0.109460] SELinux:  Disabled at boot.
[    0.113665] Mount-cache hash tabler ID: 0
[    0.138084] CPU: Processor Core ID: 0
[    0.141929] mce: CPU supports 6 MCE banks
[    0.146142] LVT offset 0 assigned for vector 0xf9
[    0.151078] process: using AMD E400 aware idle routine
[    0.156467] Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
[    0.156467] Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
[    0.156467] tlb_flushall_shift: 6
[    0.172571] Freeing SMP alternatives memory: 28K (c1949000 - c1950000)
[    0.180408] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.186468] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.202753] smpboot: CPU0: AMD Phenom(tm) II X4 940 Processor (fam: 10, model: 04, stepping: 02)
[    0.313318] calling  xen_init_spinlocks_jump+0x0/0x23 @ 1
[    0.318982] initcall xen_init_spinlocks_jump+0x0/0x23 returned 0 after 0 usecs
[    0.326562] calling  set_real_mode_permissions+0x0/0x5d @ 1
[    0.332414] initcall set_real_mode_permissions+0x0/0x5d returned 0 after 0 usecs
[    0.340164] calling  trace_init_perf_perm_irq_work_exit+0x0/0x11 @ 1
[    0.346820] initcall trace_init_perf_perm_irq_work_exit+0x0/0x11 returned 0 after 0 usecs
[    0.355398] calling  trace_init_flags_sys_exit+0x0/0xe @ 1
[    0.361150] initcall trace_init_flags_sys_exit+0x0/0xe returned 0 after 0 usecs
[    0.368813] calling  trace_init_flags_sys_enter+0x0/0xe @ 1
[    0.374656] initcall trace_init_flags_sys_enter+0x0/0xe returned 0 after 0 usecs
[    0.382408] calling  init_hw_perf_events+0x0/0x52b @ 1
[    0.387797] Performance Events: AMD PMU driver.
[    0.392554] ... version:                0
[    0.396749] ... bit width:              48
[    0.401040] ... generic registers:      4
[    0.405244] ... value mask:             0000ffffffffffff
[    0.410803] ... max period:             00007fffffffffff
[    0.416371] ... fixed-purpose events:   0
[    0.420567] ... event mask:             000000000000000f
[    0.426173] initcall init_hw_perf_events+0x0/0x52b returned 0 after 8789 usecs
[    0.433749] calling  register_trigger_all_cpu_backtrace+0x0/0x13 @ 1
[    0.440411] initcall register_trigger_all_cpu_backtrace+0x0/0x13 returned 0 after 0 usecs
[    0.448984] calling  kvm_spinlock_init_jump+0x0/0x37 @ 1
[    0.454557] initcall kvm_spinlock_init_jump+0x0/0x37 returned 0 after 0 usecs
[    0.462038] calling  spawn_ksoftirqd+0x0/0x23 @ 1
[    0.466997] initcall spawn_ksoftirqd+0x0/0x23 returned 0 after 0 usecs
[    0.473845] calling  init_workqueues+0x0/0x3e6 @ 1
[    0.479281] initcall init_workqueues+0x0/0x3e6 returned 0 after 976 usecs
[    0.486401] calling  migration_init+0x0/0x5b @ 1
[    0.491232] initcall migration_init+0x0/0x5b returned 0 after 0 usecs
[    0.497986] calling  check_cpu_stall_init+0x0/0x16 @ 1
[    0.503367] initcall check_cpu_stall_init+0x0/0x16 returned 0 after 0 usecs
[    0.510671] calling  rcu_scheduler_really_started+0x0/0x11 @ 1
[    0.516788] initcall rcu_scheduler_really_started+0x0/0x11 returned 0 after 0 usecs
[    0.524814] calling  rcu_spawn_gp_kthread+0x0/0x87 @ 1
[    0.530253] initcall rcu_spawn_gp_kthread+0x0/0x87 returned 0 after 0 usecs
[    0.537553] calling  cpu_stop_init+0x0/0x5d @ 1
[    0.542331] initcall cpu_stop_init+0x0/0x5d returned 0 after 0 usecs
[    0.548991] calling  relay_init+0x0/0x11 @ 1
[    0.553458] initcall relay_init+0x0/0x11 returned 0 after 0 usecs
[    0.559848] calling  tracer_alloc_buffers+0x0/0x213 @ 1
[    0.565426] initcall tracer_alloc_buffers+0x0/0x213 returned 0 after 0 usecs
[    0.572812] calling  init_events+0x0/0x5f @ 1
[    0.577374] initcall init_events+0x0/0x5f returned 0 after 0 usecs
[    0.583852] calling  init_trace_printk+0x0/0xf @ 1
[    0.588873] initcall init_trace_printk+0x0/0xf returned 0 after 0 usecs
[    0.595814] calling  event_trace_memsetup+0x0/0x5a @ 1
[    0.601240] initcall event_trace_memsetup+0x0/0x5a returned 0 after 0 usecs
[    0.608544] calling  jump_label_init_module+0x0/0xf @ 1
[    0.614016] initcall jump_label_init_module+0x0/0xf returned 0 after 0 usecs
[    0.621407] calling  hashlib_init+0x0/0x11 @ 1
[    0.626067] initcall hashlib_init+0x0/0x11 returned 0 after 0 usecs
[    0.632640] calling  balloon_clear+0x0/0x3b @ 1
[    0.637383] initcall balloon_clear+0x0/0x3b returned 0 after 0 usecs
[    0.644055] calling  rand_initialize+0x0/0x30 @ 1
[    0.649016] initcall rand_initialize+0x0/0x30 returned 0 after 976 usecs
[    0.656043] calling  mce_amd_init+0x0/0x134 @ 1
[    0.660795] MCE: In-kernel MCE decoding enabled.
[    0.665629] initcall mce_amd_init+0x0/0x134 returned 0 after 976 usecs
[    0.672659] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.682833] CPU 1 irqstacks, hard=f02c2000 soft=ef820000
[    0.688397] x86: Booting SMP configuration:
[    0.692775] .... node  #0, CPUs:      #1
[    0.707352] Initializing CPU#1
[    0.709881] process: System has AMD C1E enabled
[    0.710447] CPU 2 irqstacks, hard=f000
[    0.734742]  #3
[    0.734742] Initializing CPU#3
[    0.737326] x86: Booted up 1 node, 4 CPUs
[    0.737327] smpboot: Total of 4 processors activated (24001.39 BogoMIPS)
[    0.737368] process: Switch to broadcast mode on CPU3
[    0.760982] process: Switch to broadcast mode on CPU1
[    0.771287] process: Switch to broadcast mode on CPU0
[    0.776911] devtmpfs: initialized
[    0.781314] calling  ipc_ns_init+0x0/0x11 @ 1
[    0.785895] initcall ipc_ns_init+0x0/0x11 returned 0 after 0 usecs
[    0.792385] calling  init_mmap_min_addr+0x0/0x20 @ 1
[    0.797596] initcall init_mmap_min_addr+0x0/0x20 returned 0 after 0 usecs
[    0.804742] calling  init_cpufreq_transition_notifier_list+0x0/0x18 @ 1
[    0.811701] initcall init_cpufreq_transition_notifier_list+0x0/0x18 returned 0 after 0 usecs
[    0.820568] calling  net_ns_init+0x0/0x100 @ 1
[    0.825378] initcall net_ns_init+0x0/0x100 returned 0 after 0 usecs
[    0.832012] calling  e820_mark_nvs_memory+0x0/0x4e @ 1
[    0.837409] PM: Registering ACPI NVS region [mem 0xcfebe000-0xcfedffff] (139264 bytes)
[    0.845797] initcall e820_mark_nvs_memory+0x0/0x4e returned 0 after 976 usecs
[    0.853277] calling  cpufreq_tsc+0x0/0x26 @ 1
[    0.857854] initcall cpufreq_tsc+0x0/0x26 returned 0 after 0 usecs
[    0.864340] calling  reboot_init+0x0/0x1a @ 1
[    0.868925] initcall reboot_init+0x0/0x1a returned 0 after 0 usecs
[    0.875415] calling  init_lapic_sysfs+0x0/0x1b @ 1
[    0.880444] initcall init_lapic_sysfs+0x0/0x1b returned 0 after 0 usecs
[    0.887386] calling  cpu_hotplug_pm_sync_init+0x0/0x29 @ 1
[    0.893140] initcall cpu_hotplug_pm_sync_init+0x0/0x29 returned 0 after 0 usecs
[    0.900814] calling  alloc_frozen_cpus+0x0/0x7 @ 1
[    0.905833] initcall alloc_frozen_cpus+0x0/0x7 returned 0 after 0 usecs
[    0.912779] calling  wq_sysfs_init+0x0/0x11 @ 1
[    0.917666] initcall wq_sysfs_init+0x0/0x11 returned 0 after 0 usecs
[    0.917792] kworker/u12:0 (30) used greatest stack depth: 6980 bytes left
[    0.931463] calling  ksysfs_init+0x0/0x74 @ 1
[    0.936119] initcall ksysfs_init+0x0/0x74 returned 0 after 0 usecs
[    0.942610] calling  pm_init+0x0/0x45 @ 1
[    0.946889] initcall pm_init+0x0/0x45 returned 0 after 0 usecs
[    0.953010] calling  pm_disk_init+0x0/0x14 @ 1
[    0.957708] initcall pm_disk_init+0x0/0x14 returned 0 after 0 usecs
[    0.964292] calling  swsusp_header_init+0x0/0x30 @ 1
[    0.969498] initcall swsusp_header_init+0x0/0x30 returned 0 after 0 usecs
[    0.976628] calling  init_jiffies_clocksource+0x0/0xf @ 1
[    0.982303] initcall init_jiffies_clocksource+0x0/0xf returned 0 after 0 usecs
[    0.989891] calling  cgroup_wq_init+0x0/0x7c @ 1
[    0.994794] initcall cgroup_wq_init+0x0/0x7c returned 0 after 0 usecs
[    1.001556] calling  event_trace_enable+0x0/0x155 @ 1
[    1.007827] initcall event_trace_enable+0x0/0x155 returned 0 after 976 usecs
[    1.015240] calling  init_zero_pfn+0x0/0x14 @ 1
[    1.019999] initcall init_zero_pfn+0x0/0x14 returned 0 after 0 usecs
[    1.026666] calling  fsnotify_init+0x0/0x24 @ 1
[    1.031436] initcall fsnotify_init+0x0/0x24 returned 0 after 0 usecs
[    1.038102] calling  filelock_init+0x0/0x74 @ 1
[    1.042887] initcall filelock_init+0x0/0x74 returned 0 after 0 usecs
[    1.049559] calling  init_misc_binfmt+0x0/0x28 @ 1
[    1.054594] initcall init_misc_binfmt+0x0/0x28 returned 0 after 0 usecs
[    1.061539] calling  init_script_binfmt+0x0/0x13 @ 1
[    1.066750] initcall init_script_binfmt+0x0/0x13 returned 0 after 0 usecs
[    1.073886] calling  init_elf_binfmt+0x0/0x13 @ 1
[    1.078820] initcall init_elf_binfmt+0x0/0x13 returned 0 after 0 usecs
[    1.085667] calling  debugfs_init+0x0/0x4a @ 1
[    1.090356] initcall debugfs_init+0x0/0x4a returned 0 after 0 usecs
[    1.096940] calling  securityfs_init+0x0/0x41 @ 1
[    1.101895] initcall securityfs_init+0x0/0x41 returned 0 after 0 usecs
[    1.108755] calling  prandom_init+0x0/0xaa @ 1
[    1.113427] initcall prandom_init+0x0/0xaa returned 0 after 0 usecs
[    1.120013] calling  virtio_init+0x0/0x30 @ 1
[    1.124675] initcall virtio_init+0x0/0x30 returned 0 after 0 usecs
[    1.131178] calling  early_resume_init+0x0/0x1a0 @ 1
[    1.136395] RTC time: 16:45:17, date: 07/14/14
[    1.141053] initcall early_resume_init+0x0/0x1a0 returned 0 after 976 usecs
[    1.148363] calling  cpufreq_core_init+0x0/0x29 @ 1
[    1.153493] initcall cpufreq_core_init+0x0/0x29 returned 0 after 0 usecs
[    1.160525] calling  cpuidle_init+0x0/0x36 @ 1
[    1.165214] initcall cpuidle_init+0x0/0x36 returned 0 after 0 usecs
[    1.171796] calling  bsp_pm_check_init+0x0/0x11 @ 1
[    1.176909] initcall bsp_pm_check_init+0x0/0x11 returned 0 after 0 usecs
[    1.183944] calling  sock_init+0x0/0x89 @ 1
[    1.188614] initcall sock_init+0x0/0x89 returned 0 after 0 usecs
[    1.194917] calling  net_inuse_init+0x0/0x24 @ 1
[    1.199788] initcall net_inuse_init+0x0/0x24 returned 0 after 0 usecs
[    1.206549] calling  netpoll_init+0x0/0x2e @ 1
[    1.211218] initcall netpoll_init+0x0/0x2e returned 0 after 0 usecs
[    1.217797] calling  netlink_proto_init+0x0/0x1a7 @ 1
[    1.223189] NET: Registered protocol family 16
[    1.227884] initcall netlink_proto_init+0x0/0x1a7 returned 0 after 1953 usecs
[    1.235383] calling  __gnttab_init+0x0/0x30 @ 1
[    1.240139] initcall __gnttab_init+0x0/0x30 returned -19 after 0 usecs
[    1.247027] calling  bdi_class_init+0x0/0x40 @ 1
[    1.252027] initcall bdi_class_init+0x0/0x40 returned 0 after 0 usecs
[    1.258791] calling  mm_sysfs_init+0x0/0x22 @ 1
[    1.263565] initcall mm_sysfs_init+0x0/0x22 returned 0 after 0 usecs
[    1.270234] calling  kobject_uevent_init+0x0/0xf @ 1
[    1.275465] initcall kobject_uevent_init+0x0/0xf returned 0 after 0 usecs
[    1.282595] calling  pcibus_class_init+0x0/0x14 @ 1
[    1.287748] initcall pcibus_class_init+0x0/0x14 returned 0 after 0 usecs
[    1.294794] calling  pci_driver_init+0x0/0xf @ 1
[    1.299727] initcall pci_driver_init+0x0/0xf returned 0 after 0 usecs
[    1.306500] calling  backlight_class_init+0x0/0x92 @ 1
[    1.311925] initcall backlight_class_init+0x0/0x92 returned 0 after 0 usecs
[    1.319241] calling  xenbus_init+0x0/0x24f @ 1
[    1.323902] initcall xenbus_init+0x0/0x24f returned -19 after 0 usecs
[    1.330670] calling  tty_class_init+0x0/0x2f @ 1
[    1.335548] initcall tty_class_init+0x0/0x2f returned 0 after 0 usecs
[    1.342317] calling  vtconsole_class_init+0x0/0xc2 @ 1
[    1.347864] initcall vtconsole_class_init+0x0/0xc2 returned 0 after 0 usecs
[    1.355186] calling  wakeup_sources_debugfs_init+0x0/0x2f @ 1
[    1.361230] initcall wakeup_sources_debugfs_init+0x0/0x2f returned 0 after 0 usecs
[    1.369167] calling  i2c_init+0x0/0x57 @ 1
[    1.373617] initcall i2c_init+0x0/0x57 returned 0 after 0 usecs
[    1.379826] calling  lguest_devices_init+0x0/0x13f @ 1
[    1.385209] initcall lguest_devices_init+0x0/0x13f returned 0 after 0 usecs
[    1.392505] calling  init_ladder+0x0/0xf @ 1
[    1.396989] cpuidle: using governor ladder
[    1.401287] initcall init_ladder+0x0/0xf returned 0 after 976 usecs
[    1.407868] calling  init_menu+0x0/0xf @ 1
[    1.412159] cpuidle: using governor menu
[    1.416279] initcall init_menu+0x0/0xf returned 0 after 976 usecs
[    1.422677] calling  amd_postcore_init+0x0/0x131 @ 1
[    1.427896] node 0 link 0: io port [1000, ffffff]
[    1.432841] TOM: 00000000d0000000 aka 3328M
[    1.437241] Fam 10h mmconf [mem 0xe0000000-0xefffffff]
[    1.442631] node 0 link 0: mmio [a0000, bffff]
[    1.447305] node 0 link 0: mmio [d0000000, efffffff] ==> [d0000000, dfffffff]
[    1.454816] node 0 link 0: mmio [f0000000, fe6fffff]
[    1.460039] node 0 link 0: mmio [fe700000, fe8fffff]
[    1.465260] node 0 link 0: mmio [fe900000, ffefffff]
[    1.470479] TOM2: 0000000130000000 aka 4864M
[    1.474960] bus: [bus 00-07] on node 0 link 0
[    1.479523] bus: 00 [io  0x0000-0xffff]
[    1.483544] bus: 00 [mem 0x000a0000-0x000bffff]
[    1.488298] bus: 00 [mem 0xd0000000-0xdfffffff]
[    1.493048] bus: 00 [mem 0xf0000000-0xffffffff]
[    1.497806] bus: 00 [mem 0x130000000-0xfcffffffff]
[    1.502848] initcall amd_postcore_init+0x0/0x131 returned 0 after 16601 usecs
[    1.510372] calling  boot_params_ksysfs_init+0x0/0x22f @ 1
[    1.516164] initcall boot_params_ksysfs_init+0x0/0x22f returned 0 after 0 usecs
[    1.523843] calling  arch_kdebugfs_init+0x0/0x2a6 @ 1
[    1.529183] initcall arch_kdebugfs_init+0x0/0x2a6 returned 0 after 0 usecs
[    1.536395] calling  init_pit_clocksource+0x0/0x36 @ 1
[    1.541791] initcall init_pit_clocksource+0x0/0x36 returned 0 after 0 usecs
[    1.549103] calling  mtrr_if_init+0x0/0x56 @ 1
[    1.553772] initcall mtrr_if_init+0x0/0x56 returned 0 after 0 usecs
[    1.560355] calling  ffh_cstate_init+0x0/0x27 @ 1
[    1.565297] initcall ffh_cstate_init+0x0/0x27 returned -1 after 0 usecs
[    1.572235] calling  kdump_buf_page_init+0x0/0x3a @ 1
[    1.577551] initcall kdump_buf_page_init+0x0/0x3a returned 0 after 0 usecs
[    1.584778] calling  activate_jump_labels+0x0/0x2d @ 1
[    1.590173] initcall activate_jump_labels+0x0/0x2d returned 0 after 0 usecs
[    1.597477] calling  acpi_pci_init+0x0/0x5b @ 1
[    1.602230] ACPI: bus type PCI registered
[    1.606444] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.613193] initcall acpi_pci_init+0x0/0x5b returned 0 after 1953 usecs
[    1.620138] calling  dma_bus_init+0x0/0xbb @ 1
[    1.624998] initcall dma_bus_init+0x0/0xbb returned 0 after 0 usecs
[    1.631576] calling  dma_channel_table_init+0x0/0xc4 @ 1
[    1.637293] initcall dma_channel_table_init+0x0/0xc4 returned 0 after 0 usecs
[    1.644787] calling  setup_vcpu_hotplug_event+0x0/0x1f @ 1
[    1.650541] initcall setup_vcpu_hotplug_event+0x0/0x1f returned -19 after 0 usecs
[    1.658394] calling  register_xen_pci_notifier+0x0/0x30 @ 1
[    1.664249] initcall register_xen_pci_notifier+0x0/0x30 returned 0 after 0 usecs
[    1.672008] calling  xen_pcpu_init+0x0/0xc8 @ 1
[    1.676767] initcall xen_pcpu_init+0x0/0xc8 returned -19 after 0 usecs
[    1.683629] calling  dmi_id_init+0x0/0x2a2 @ 1
[    1.688582] initcall dmi_id_init+0x0/0x2a2 returned 0 after 0 usecs
[    1.695171] calling  dca_init+0x0/0x21 @ 1
[    1.699465] dca service started, version 1.12.1
[    1.704265] initcall dca_init+0x0/0x21 returned 0 after 976 usecs
[    1.710665] calling  pci_arch_init+0x0/0x65 @ 1
[    1.715441] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    1.725208] PCI: not using MMCONFIG
[    1.729525] PCI : PCI BIOS area is rw and x. Use pci=nobios if you want it NX.
[    1.737170] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=4
[    1.743826] PCI: Using configuration type 1 for base access
[    1.749676] PCI: Using configuration type 1 for extended access
[    1.755901] initcall pci_arch_init+0x0/0x65 returned 0 after 5859 usecs
[    1.762876] calling  topology_init+0x0/0x36 @ 1
[    1.768048] initcall topology_init+0x0/0x36 returned 0 after 976 usecs
[    1.774904] calling  mtrr_init_finialize+0x0/0x30 @ 1
[    1.780206] initcall mtrr_init_finialize+0x0/0x30 returned 0 after 0 usecs
[    1.787436] calling  uid_cache_init+0x0/0x7e @ 1
[    1.792322] initcall uid_cache_init+0x0/0x7e returned 0 after 0 usecs
[    1.799074] calling  param_sysfs_init+0x0/0x14c @ 1
[    1.805625] kworker/u12:0 (71) used greatest stack depth: 6876 bytes left
[    1.816383] initcall param_sysfs_init+0x0/0x14c returned 0 after 11718 usecs
[    1.823782] calling  proc_schedstat_init+0x0/0x27 @ 1
[    1.829085] initcall proc_schedstat_init+0x0/0x27 returned 0 after 0 usecs
[    1.836306] calling  pm_sysrq_init+0x0/0x16 @ 1
[    1.845766] initcall pm_sysrq_init+0x0/0x16 returned 0 after 4882 usecs
[    1.852726] calling  create_proc_profile+0x0/0x1e0 @ 1
[    1.858131] initcall create_proc_profile+0x0/0x1e0 returned 0 after 0 usecs
[    1.865443] calling  crash_save_vmcoreinfo_init+0x0/0x5ad @ 1
[    1.871496] initcall crash_save_vmcoreinfo_init+0x0/0x5ad returned 0 after 0 usecs
[    1.879448] calling  crash_notes_memory_init+0x0/0x35 @ 1
[    1.885134] initcall crash_notes_memory_init+0x0/0x35 returned 0 after 0 usecs
[    1.892724] calling  hung_task_init+0x0/0x56 @ 1
[    1.897627] initcall hung_task_init+0x0/0x56 returned 0 after 0 usecs
[    1.904390] calling  default_bdi_init+0x0/0x78 @ 1
[    1.909888] initcall default_bdi_init+0x0/0x78 returned 0 after 976 usecs
[    1.917030] calling  init_reserve_notifier+0x0/0x7 @ 1
[    1.922423] initcall init_reserve_notifier+0x0/0x7 returned 0 after 0 usecs
[    1.929744] calling  init_admin_reserve+0x0/0x30 @ 1
[    1.934952] initcall init_admin_reserve+0x0/0x30 returned 0 after 0 usecs
[    1.942093] calling  init_user_reserve+0x0/0x30 @ 1
[    1.947203] initcall init_user_reserve+0x0/0x30 returned 0 after 0 usecs
[    1.954236] calling  mmu_notifier_init+0x0/0xf @ 1
[    1.959273] initcall mmu_notifier_init+0x0/0xf returned 0 after 0 usecs
[    1.966217] calling  hugepage_init+0x0/0x123 @ 1
[    1.971250] initcall hugepage_init+0x0/0x123 returned 0 after 0 usecs
[    1.978024] calling  crypto_wq_init+0x0/0x41 @ 1
[    1.982950] initcall crypto_wq_init+0x0/0x41 returned 0 after 0 usecs
[    1.989717] calling  cryptomgr_init+0x0/0xf @ 1
[    1.994472] initcall cryptomgr_init+0x0/0xf returned 0 after 0 usecs
[    2.001149] calling  init_bio+0x0/0xc5 @ 1
[    2.005843] initcall init_bio+0x0/0xc5 returned 0 after 0 usecs
[    2.012065] calling  blk_settings_init+0x0/0x21 @ 1
[    2.017184] initcall blk_settings_init+0x0/0x21 returned 0 after 0 usecs
[    2.024219] calling  blk_ioc_init+0x0/0x2f @ 1
[    2.028919] initcall blk_ioc_init+0x0/0x2f returned 0 after 0 usecs
[    2.035506] calling  blk_softirq_init+0x0/0x54 @ 1
[    2.040535] initcall blk_softirq_init+0x0/0x54 returned 0 after 0 usecs
[    2.047482] calling  blk_iopoll_setup+0x0/0x54 @ 1
[    2.052510] initcall blk_iopoll_setup+0x0/0x54 returned 0 after 0 usecs
[    2.059446] calling  blk_mq_init+0x0/0x16 @ 1
[    2.064020] initcall blk_mq_init+0x0/0x16 returned 0 after 0 usecs
[    2.070506] calling  genhd_device_init+0x0/0x6a @ 1
[    2.075815] initcall genhd_device_init+0x0/0x6a returned 0 after 0 usecs
[    2.082866] calling  blk_dev_integrity_init+0x0/0x2f @ 1
[    2.088469] initcall blk_dev_integrity_init+0x0/0x2f returned 0 after 0 usecs
[    2.095970] calling  pci_slot_init+0x0/0x40 @ 1
[    2.100743] initcall pci_slot_init+0x0/0x40 returned 0 after 0 usecs
[    2.107420] calling  fbmem_init+0x0/0x96 @ 1
[    2.111949] initcall fbmem_init+0x0/0x96 returned 0 after 0 usecs
[    2.118358] calling  acpi_init+0x0/0x26b @ 1
[    2.122931] ACPI: Added _OSI(Module Device)
[    2.127322] ACPI: Added _OSI(Processor Device)
[    2.131985] ACPI: Added _OSI(3.0 _SCP Extensions)
[    2.136929] ACPI: Added _OSI(Processor Aggregator Device)
[    2.156817] ACPI: Executed 4 blocks of module-level executable AML code
[    2.240859] ACPI: Interpreter enabled
[    2.244725] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (2014] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
[    2.264161] ACPI: (supports S0 S3 S4 S5)
[    2.268273] ACPI: Using IOAPIC for interrupt routing
[    2.273629] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    2.313391] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    2.322510] PCI: Using MMi=nocrs" and report a bug
[    2.461540] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    2.468044] acpi PNP0A03:00: _OSC: OS supports [Extendter ROM [mem 0x000cf000-0x000d09ff])
[    2.500655] PCI host bridge to bus 0000:00
[    2.504963] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.510720] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    2.517210] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    2.523702] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    2.530925] pci_bus 0000:00: root bus resource [mem 0xcff00000-0xdfffffff]
[    2.538148] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
[    2.545387] pci 0000:00:00.0: [1022:9600] type 00 class 0x060000
[    2.552491] pci 0000:00:01.0: [1022:9602] type 01 class 0x060400
[    2.559593] pci 0000:00:06.0: [1022:9606] type 01 class 0x060400
[    2.565939] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    2.572872] pci 0000:00:06.0: System wakeup disabled by ACPI
[    2.579171] pci 0000:00:07.0: [1022:9607] type 01 class 0x060400
[    2.585513] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    2.592457] pci 0000:00:07.0: System wakeup disabled by ACPI
[    2.598759] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[    2.605079] pci 0000:00:11.0: reg 0x10: [io  0x7000-0x7007]
[    2.610931] pci 0000:00:11.0: reg 0x14: [io  0x6000-0x6003]
[    2.616781] pci 0000:00:11.0: reg 0x18: [io  0x5000-0x5007]
[    2.622630] pci 0000:00:11.0: reg 0x1c: [io  0x4000-0x4003]
[    2.628479] pci 0000:00:11.0: reg 0x20: [io  0x3000-0x300f]
[    2.634328] pci 0000:00:11.0: reg 0x24: [mem 0xfe6ffc00-0xfe6fffff]
[    2.641698] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[    2.648010] pci 0000:00:12.0: reg 0x10: [mem 0xfe6fe000-0xfe6fefff]
[    2.655172] pci 0000:00:12.0: System wakeup disabled by ACPI
[    2.661473] pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
[    2.667782] pci 0000:00:12.1: reg 0x10: [mem 0xfe6fd000-0xfe6fdfff]
[    2.674937] pci 0000:00:12.1: System wakeup disabled by ACPI
[    2.681233] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[    2.687551] pci 0000:00:12.2: reg 0x10: [mem 0xfe6ff800-0xfe6ff8ff]
[    2.694201] pci 0000:00:12.2: supports D1 D2
[    2.698681] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    2.705534] pci 0000:00:12.2: System wakeup disabled by ACPI
[    2.711834] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[    2.718140] pci 0000:00:13.0: reg 0x10: [mem 0xfe6fc000-0xfe6fcfff]
[    2.725311] pci 0000:00:13.0: System wakeup disabled by ACPI
[    2.731607] pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
[    2.737919] pci 0000:00:13.1: reg 0x10: [mem 0xfe6f7000-0xfe6f7fff]
[    2.745088] pci 0000:00:13.1: System wakeup disabled by ACPI
[    2.751390] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[    2.757706] pci 0000:00:13.2: reg 0x10: [mem 0xfe6ff400-0xfe6ff4ff]
[    2.764361] pci 0000:00:13.2: supports D1 D2
[    2.768848] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    2.775699] pci 0000:00:13.2: System wakeup disabled by ACPI
[    2.782008] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[    2.789146] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[    2.796267] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[    2.803135] pci 0000:00:14.4: System wakeup disabled by ACPI
[    2.809433] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
[    2.815744] pci 0000:00:14.5: reg 0x10: [mem 0xfe6f6000-0xfe6f6fff]
[    2.822908] pci 0000:00:14.5: System wakeup disabled by ACPI
[    2.829210] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
[    2.836289] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
[    2.843318] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
[    2.850394] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
[    2.857462] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
[    2.864820] pci 0000:01:05.0: [1002:9610] type 00 class 0x030000
[    2.871120] pci 0000:01:05.0: reg 0x10: [mem 0xd0000000-0xdfffffff pref]
[    2.878151] pci 0000:01:05.0: reg 0x14: [io  0x8000-0x80ff]
[    2.883990] pci 0000:01:05.0: reg 0x18: [mem 0xfe8f0000-0xfe8fffff]
[    2.890567] pci 0000:01:05.0: reg 0x24: [mem 0xfe700000-0xfe7fffff]
[    2.897148] pci 0000:01:05.0: supports D1 D2
[    2.902046] pci 0000:01:05.1: [1002:960f] type 00 class 0x040300
[    2.908353] pci 0000:01:05.1: reg 0x10: [mem 0xfe8e8000-0xfe8ebfff]
[    2.914957] pci 0000:01:05.1: supports D1 D2
[    2.919796] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.925007] pci 0000:00:01.0:   bridge window [io  0x8000-0x8fff]
[    2.931407] pci 0000:00:01.0:   bridge window [mem 0xfe700000-0xfe8fffff]
[    2.938527] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    2.946881] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    2.953194] pci 0000:02:00.0: reg 0x10: [io  0x9800-0x98ff]
[    2.959060] pci 0000:02:00.0: reg 0x18: [mem 0xfe9ff000-0xfe9fffff 64bit]
[    2.966181] pci 0000:02:00.0: reg 0x20: [mem 0xfdff0000-0xfdffffff 64bit pref]
[    2.973761] pci 0000:02:00.0: reg 0x30: [mem 0xfe9c0000-0xfe9dffff pref]
[    2.980851] pci 0000:02:00.0: supports D1 D2
[    2.985328] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.994584] pci 0000:00:06.0: PCI bridge to [bus 02]
[    2.999786] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    3.006190] pci 0000:00:06.0:   bridge window [mem 0xfe900000-0xfe9fffff]
[    3.013330] pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
[    3.021672] pci 0000:03:00.0: [197b:2361] type 00 class 0x010601
[    3.028051] pci 0000:03:00.0: reg 0x24: [mem 0xfeafe000-0xfeafffff]
[    3.034681] pci 0000:03:00.0: PME# supported from D3hot
[    3.040609] pci 0000:03:00.1: [197b:2361] type 00 class 0x010185
[    3.046936] pci 0000:03:00.1: reg 0x10: [io  0xb800-0xb807]
[    3.052787] pci 0000:03:00.1: reg 0x14: [io  0xb400-0xb403]
[    3.058646] pci 0000:03:00.1: reg 0x18: [io  0xb000-0xb007]
[    3.064498] pci 0000:03:00.1: reg 0x1c: [io  0xa800-0xa803]
[    3.070350] pci 0000:03:00.1: reg 0x20: [io  0xa400-0xa40f]
[    3.076596] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    3.087119] pci 0000:00:07.0: PCI bridge to [bus 03]
[    3.092334] pci 0000:00:07.0:   bridge window [io  0xa000-0xbfff]
[    3.098732] pci 0000:00:07.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    3.106094] pci 0000:04:05.0: [10b7:1700] type 00 class 0x020000
[    3.112427] pci 0000:04:05.0: reg 0x10: [mem 0xfebfc000-0xfebfffff]
[    3.119016] pci 0000:04:05.0: reg 0x14: [io  0xe800-0xe8ff]
[    3.124914] pci 0000:04:05.0: reg 0x30: [mem 0xfebc0000-0xfebdffff pref]
[    3.132004] pci 0000:04:05.0: supports D1 D2
[    3.136491] pci 0000:04:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.143871] pci 0000:04:07.0: [9710:9835] type 00 class 0x070002
[    3.150193] pci 0000:04:07.0: reg 0x10: [io  0xe400-0xe407]
[    3.156051] pci 0000:04:07.0: reg 0x14: [io  0xe000-0xe007]
[    3.161903] pci 0000:04:07.0: reg 0x18: [io  0xd800-0xd807]
[    3.167753] pci 0000:04:07.0: reg 0x1c: [io  0xd400-0xd407]
[    3.173607] pci 0000:04:07.0: reg 0x20: [io  0xd000-0xd007]
[    3.179457] pci 0000:04:07.0: reg 0x24: [io  0xc800-0xc80f]
[    3.185717] pci 0000:00:14.4: PCI bridge to [bus 04] (subtractive decode)
[    3.192846] pci 0000:00:14.4:   bridge window [io  0xc000-0xefff]
[    3.199245] pci 0000:00:14.4:   bridge window [mem 0xfeb00000-0xfebfffff]
[    3.206383] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    3.214709] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    3.223030] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    3.232070] pci 0000:00:14.4:   bridge window [mem 0xcff00000-0xdfffffff] (subtractive decode)
[    3.241120] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
[    3.250165] pci_bus 0000:00: on NUMA node 0
[    3.280652] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 12 *14 15)
[    3.288153] ACPI: PCI Interrupt Link [LNKB] (IRQs  15)
[    3.295669] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 *10 11 12 14 15)
[    3.303165] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 10 *11 12 14 15)
[    3.310664] ACPI: PCI Interrupt Link [LNKE] (IRQs *4 10 11 12 14 15)
[    3.317960] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 10 11 12 14 15) *0, disabled.
[    3.326463] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 10 11 12 14 *15)
[    3.333767] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 10 11 12 14 15) *0, disabled.
[    3.342206] ACPI: Enabled 1 GPEs in block 00 to 1F
[    3.347353] initcall acpi_init+0x0/0x26b returned 0 after 458007 usecs
[    3.354211] calling  pnp_init+0x0/0xf @ 1
[    3.358499] initcall pnp_init+0x0/0xf returned 0 after 0 usecs
[    3.364628] calling  balloon_init+0x0/0x1fa @ 1
[    3.369386] initcall balloon_init+0x0/0x1fa returned -19 after 0 usecs
[    3.376261] calling  xen_setup_shutdown_event+0x0/0x30 @ 1
[    3.382023] initcall xen_setup_shutdown_event+0x0/0x30 returned -19 after 0 usecs
[    3.389886] calling  xenbus_probe_backend_init+0x0/0x23 @ 1
[    3.395813] initcall xenbus_probe_backend_init+0x0/0x23 returned 0 after 0 usecs
[    3.403579] calling  xenbus_probe_frontend_init+0x0/0x7b @ 1
[    3.409593] initcall xenbus_probe_frontend_init+0x0/0x7b returned 0 after 0 usecs
[    3.417448] calling  xen_acpi_pad_init+0x0/0x41 @ 1
[    3.422573] initcall xen_acpi_pad_init+0x0/0x41 returned -19 after 0 usecs
[    3.429788] calling  balloon_init+0x0/0xdd @ 1
[    3.434457] initcall balloon_init+0x0/0xdd returned -19 after 0 usecs
[    3.441228] calling  misc_init+0x0/0xad @ 1
[    3.445662] initcall misc_init+0x0/0xad returned 0 after 0 usecs
[    3.451975] calling  vga_arb_device_init+0x0/0xcc @ 1
[    3.457463] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    3.465969] vgaarb: loaded
[    3.468810] vgaarb: bridge control possible 0000:01:05.0
[    3.474378] initcall vga_arb_device_init+0x0/0xcc returned 0 after 16601 usecs
[    3.481960] calling  cn_init+0x0/0xb0 @ 1
[    3.486188] initcall cn_init+0x0/0xb0 returned 0 after 0 usecs
[    3.492309] calling  dma_buf_init+0x0/0x62 @ 1
[    3.496980] initcall dma_buf_init+0x0/0x62 returned 0 after 0 usecs
[    3.503559] calling  phy_init+0x0/0x2f @ 1
[    3.508073] initcall phy_init+0x0/0x2f returned 0 after 976 usecs
[    3.514467] calling  init_pcmcia_cs+0x0/0x32 @ 1
[    3.519335] initcall init_pcmcia_cs+0x0/0x32 returned 0 after 0 usecs
[    3.526091] calling  usb_init+0x0/0x14c @ 1
[    3.530481] ACPI: bus type USB registered
[    3.534891] usbcore: registered new interface driver usbfs
[    3.540741] usbcore: registered new interface driver hub
[    3.546411] usbcore: registered new device driver usb
[    3.551702] initcall usb_init+0x0/0x14c returned 0 after 20507 usecs
[    3.558360] calling  serio_init+0x0/0x2e @ 1
[    3.562923] initcall serio_init+0x0/0x2e returned 0 after 0 usecs
[    3.569308] calling  input_init+0x0/0xf1 @ 1
[    3.573837] initcall input_init+0x0/0xf1 returned 0 after 0 usecs
[    3.580235] calling  rtc_init+0x0/0x50 @ 1
[    3.584563] initcall rtc_init+0x0/0x50 returned 0 after 0 usecs
[    3.590775] calling  pps_init+0x0/0xa6 @ 1
[    3.595106] pps_core: LinuxPPS API ver. 1 registered
[    3.600307] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    3.609890] initcall pps_init+0x0/0xa6 returned 0 after 13671 usecs
[    3.616456] calling  ptp_init+0x0/0x8e @ 1
[    3.620795] PTP clock support registered
[    3.624905] initcall ptp_init+0x0/0x8e returned 0 after 4882 usecs
[    3.631386] calling  power_supply_class_init+0x0/0x39 @ 1
[    3.637074] initcall power_supply_class_init+0x0/0x39 returned 0 after 0 usecs
[    3.644651] calling  hwmon_init+0x0/0xda @ 1
[    3.649157] initcall hwmon_init+0x0/0xda returned 0 after 0 usecs
[    3.655542] calling  leds_init+0x0/0x36 @ 1
[    3.659958] initcall leds_init+0x0/0x36 returned 0 after 0 usecs
[    3.666262] calling  efisubsys_init+0x0/0x115 @ 1
[    3.671191] initcall efisubsys_init+0x0/0x115 returned 0 after 0 usecs
[    3.678029] calling  pci_subsys_init+0x0/0x48 @ 1
[    3.682961] PCI: Using ACPI for IRQ routing
[    3.687350] PCI: pci_cache_line_size set to 64 bytes
[    3.692598] e820: reserve RAM buffer [mem 0x0009f400-0x0009ffff]
[    3.698901] e820: reserve RAM buffer [mem 0xcfeb0000-0xcfffffff]
[    3.705201] initcall pci_subsys_init+0x0/0x48 returned 0 after 21484 usecs
[    3.712409] calling  proto_init+0x0/0xf @ 1
[    3.716805] initcall proto_init+0x0/0xf returned 0 after 976 usecs
[    3.723288] calling  net_dev_init+0x0/0x15d @ 1
[    3.728887] initcall net_dev_init+0x0/0x15d returned 0 after 976 usecs
[    3.735730] calling  neigh_init+0x0/0xa4 @ 1
[    3.740206] initcall neigh_init+0x0/0xa4 returned 0 after 0 usecs
[    3.746592] calling  fib_rules_init+0x0/0xbd @ 1
[    3.751434] initcall fib_rules_init+0x0/0xbd returned 0 after 0 usecs
[    3.758191] calling  pktsched_init+0x0/0x121 @ 1
[    3.763042] initcall pktsched_init+0x0/0x121 returned 0 after 0 usecs
[    3.769790] calling  tc_filter_init+0x0/0x6a @ 1
[    3.774631] initcall tc_filter_init+0x0/0x6a returned 0 after 0 usecs
[    3.781384] calling  tc_action_init+0x0/0x6a @ 1
[    3.786226] initcall tc_action_init+0x0/0x6a returned 0 after 0 usecs
[    3.792979] calling  genl_init+0x0/0x7a @ 1
[    3.797376] initcall genl_init+0x0/0x7a returned 0 after 0 usecs
[    3.803669] calling  cipso_v4_init+0x0/0x5a @ 1
[    3.808418] initcall cipso_v4_init+0x0/0x5a returned 0 after 0 usecs
[    3.815086] calling  netlbl_init+0x0/0x7d @ 1
[    3.819651] NetLabel: Initializing
[    3.823212] NetLabel:  domain hash size = 128
[    3.827774] NetLabel:  protocols = UNLABELED CIPSOv4
[    3.833030] NetLabel:  unlabeled traffic allowed by default
[    3.838868] initcall netlbl_init+0x0/0x7d returned 0 after 19531 usecs
[    3.845708] calling  rfkill_init+0x0/0x68 @ 1
[    3.850430] initcall rfkill_init+0x0/0x68 returned 0 after 0 usecs
[    3.856917] calling  xen_mcfg_late+0x0/0xa6 @ 1
[    3.861668] initcall xen_mcfg_late+0x0/0xa6 returned 0 after 0 usecs
[    3.868378] calling  xen_p2m_debugfs+0x0/0x49 @ 1
[    3.873328] initcall xen_p2m_debugfs+0x0/0x49 returned 0 after 0 usecs
[    3.880175] calling  xen_spinlock_debugfs+0x0/0x120 @ 1
[    3.885715] initcall xen_spinlock_debugfs+0x0/0x120 returned 0 after 0 usecs
[    3.893104] calling  nmi_warning_debugfs+0x0/0x26 @ 1
[    3.898411] initcall nmi_warning_debugfs+0x0/0x26 returned 0 after 0 usecs
[    3.905628] calling  hpet_late_init+0x0/0xe6 @ 1
[    3.910485] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    3.915901] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
[    3.924017] initcall hpet_late_init+0x0/0xe6 returned 0 after 13671 usecs
[    3.931143] calling  init_amd_nbs+0x0/0xb6 @ 1
[    3.935818] initcall init_amd_nbs+0x0/0xb6 returned 0 after 0 usecs
[    3.942386] calling  clocksource_done_booting+0x0/0x3b @ 1
[    3.948167] Switched to clocksource hpet
[    3.952335] initcall clocksource_done_booting+0x0/0x3b returned 0 after 4082 usecs
[    3.960301] calling  tracer_init_debugfs+0x0/0x165 @ 1
[    3.966224] initcall tracer_init_debugfs+0x0/0x165 returned 0 after 515 usecs
[    3.973710] calling  init_trace_printk_function_export+0x0/0x33 @ 1
[    3.980312] initcall init_trace_printk_function_export+0x0/0x33 returned 0 after 6 usecs
[    3.988819] calling  event_trace_init+0x0/0x1ee @ 1
[    4.014979] initcall event_trace_init+0x0/0x1ee returned 0 after 20554 usecs
[    4.022376] calling  init_kprobe_trace+0x0/0 12 usecs
[    4.034647] calling  init_pipe_fs+0x0/0x3d @ 1
[    4.039434] initcall init_pipe_fs+0x0/0x3d returned 0 after 109 usecs
[    4.046202] calling  eventpoll_init+0x0/0xd0 @ 1
[    4.051155] initcall eventpoll_init+0x0/0xd0 returned 0 after 99 usecs
[    4.058015] calling  anon_inode_init+0x0/0x56 @ 1
[    4.063073] initcall anon_inode_init+0x0/0x56 returned 0 after 119 usecs
[    4.070122] calling  proc_cmdline_init+0x0/0x27 @ 1
[    4.075249] initcall proc_cmdline_init+0x0/0x27 returned 0 after 9 usecs
[    4.082293] calling  proc_consoles_init+0x0/0x27 @ 1
[    4.087501] initcall proc_consoles_init+0x0/0x27 returned 0 after 7 usecs
[    4.094637] calling  proc_cpuinfo_init+0x0/0x27 @ 1
[    4.099760] initcall proc_cpuinfo_init+0x0/0x27 returned 0 after 6 usecs
[    4.106816] calling  proc_devices_init+0x0/0x27 @ 1
[    4.111939] initcall proc_devices_init+0x0/0x27 returned 0 after 6 usecs
[    4.118985] calling  proc_interrupts_init+0x0/0x27 @ 1
[    4.124385] initcall proc_interrupts_init+0x0/0x27 returned 0 after 6 usecs
[    4.131700] calling  proc_loadavg_init+0x0/0x27 @ 1
[    4.136828] initcall proc_loadavg_init+0x0/0x27 returned 0 after 6 usecs
[    4.143874] calling  proc_meminfo_init+0x0/0x27 @ 1
[    4.149015] initcall proc_meminfo_init+0x0/0x27 returned 0 after 6 usecs
[    4.156053] calling  proc_stat_init+0x0/0x27 @ 1
[    4.160909] initcall proc_stat_init+0x0/0x27 returned 0 after 6 usecs
[    4.167681] calling  proc_uptime_init+0x0/0x27 @ 1
[    4.172727] initcall proc_uptime_init+0x0/0x27 returned 0 after 7 usecs
[    4.179670] calling  proc_version_init+0x0/0x27 @ 1
[    4.184808] initcall proc_version_init+0x0/0x27 returned 0 after 6 usecs
[    4.191851] calling  proc_softirqs_init+0x0/0x27 @ 1
[    4.197082] initcall proc_softirqs_init+0x0/0x27 returned 0 after 7 usecs
[    4.204205] calling  proc_kcore_init+0x0/0xae @ 1
[    4.209163] initcall proc_kcore_init+0x0/0xae returned 0 after 9 usecs
[    4.216007] calling  vmcore_init+0x0/0x68b @ 1
[    4.220696] initcall vmcore_init+0x0/0x68b returned 0 after 1 usecs
[    4.227274] calling  proc_kmsg_init+0x0/0x2a @ 1
[    4.232140] initcall proc_kmsg_init+0x0/0x2a returned 0 after 7 usecs
[    4.238909] calling  proc_page_init+0x0/0x4a @ 1
[    4.243782] initcall proc_page_init+0x0/0x4a returned 0 after 12 usecs
[    4.250632] calling  init_ramfs_fs+0x0/0x44 @ 1
[    4.255471] initcall init_ramfs_fs+0x0/0x44 returned 0 after 78 usecs
[    4.262231] calling  blk_scsi_ioctl_init+0x0/0x288 @ 1
[    4.267642] initcall blk_scsi_ioctl_init+0x0/0x288 returned 0 after 1 usecs
[    4.274953] calling  acpi_event_init+0x0/0x37 @ 1
[    4.279941] initcall acpi_event_init+0x0/0x37 returned 0 after 31 usecs
[    4.286888] calling  pnp_system_init+0x0/0xf @ 1
[    4.291793] initcall pnp_system_init+0x0/0xf returned 0 after 55 usecs
[    4.298650] calling  pnpacpi_init+0x0/0x88 @ 1
[    4.303323] pnp: PnP ACPI init
[    4.306565] ACPI: bus type PNP registered
[    4.312022] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.319743] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    4.347056] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
[    4.354378] system 00:02: [mem 0xfee00000-0xf  0x04d0-0x04d1] has been reserved
[    4.376931] system 00:03: [io  0x040b] has been reserved
[    4.382516] system 00:03: [io  0x04d6] has been reserved
[    4.388105] system 00:03: [io  0x0c00-0x0c01] has been reserved
[    4.394324] system 00:03: [io  0x0c14] has been reserved
[    4.399910] system 00:03: [io  0x0c50-0x0c51] has been reserved
[    4.406135] system 00:03: [io  0x0c52] has been reserved
[    4.411729] system 00:03: [io  0x0c6c] has been reserved
[    4.417312] system 00:03: [io  0x0c6f] has been reserved
[    4.422894] system 00:03: [io  0x0cd0-0x0cd1] has been reserved
[    4.429112] system 00:03: [io  0x0cd2-0x0cd3] has been reserved
[    4.435336] system 00:03: [io  0x0cd4-0x0cd5] has been reserved
[    4.441560] system 00:03: [io  0x0cd6-0x0cd7] has been reserved
[    4.447784] system 00:03: [io  0x0cd8-0x0cdf] has been reserved
[    4.454002] system 00:03: [io  0x0800-0x089f] could not be reserved
[    4.460594] system 00:03: [io  0x0b00-0x0b0f] has been reserved
[    4.466829] system 00:03: [io  0x0b20-0x0b3f] has been reserved
[    4.473043] system 00:03: [io  0x0900-0x090f] has been reserved
[    4.479264] system 00:03: [io  0x0910-0x091f] has been reserved
[    4.485486] system 00:03: [io  0xfe00-0xfefe] has been reserved
[    4.491721] system 00:03: [mem 0xffb80000-0xffbfffff] has been reserved
[    4.498674] system 00:03: [mem 0xfec10000-0xfec1001f] has been reserved
[    4.505629] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.515289] system 00:04: [io  0x0e00-0x0e0f] has been reserved
[    4.521520] system 00:04: [io  0x0e80-0x0e8f] has been reed
[    4.533970] system 00:04: [io  0x0a30-0x0a3f] has been reserved
[    4.540175] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.547865] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[    4.554800] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.563708] system 00:06: [mem 0x00000000-0x0009ffff] could not be reserved
[    4.571029] system 00:06: [mem 0x000c0000-0x000cffff] could not be reserved
[    4.578342] system 00:06: [mem 0x000e0000-0x000fffff] could not be reserved
[    4.585672] system 00:06: [mem 0x00100000-0xcfefffff] could not be reserved
[    4.592998] system 00:06: [mem 0xfec00000-0xffffffff] could not be reserved
[    4.600304] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    4.608338] pnp: PnP ACPI: found 7 devices
[    4.612629] ACPI: bus type PNP unregistered
[    4.617019] initcall pnpacpi_init+0x0/0x88 returned 0 after 306630 usecs
[    4.624063] calling  pcistub_init+0x0/0x280 @ 1
[    4.629607] initcall pcistub_init+0x0/0x280 returned 0 after 778 usecs
[    4.636466] calling  chr_dev_init+0x0/0xc9 @ 1
[    4.644584] kworker/u12:0 (480) used greatest stack depth: 6712 bytes left
[    4.652333] initcall chr_dev_init+0x0/0xc9 returned 0 after 10938 usecs
[    4.659301] calling  firmware_class_init+0x0/0xd7 @ 1
[    4.664648] initcall firmware_class_init+0x0/0xd7 returned 0 after 37 usecs
[    4.671948] calling  init_pcmcia_bus+0x0/0x5e @ 1
[    4.676980] initcall init_pcmcia_bus+0x0/0x5e returned 0 after 84 usecs
[    4.683926] calling  thermal_init+0x0/0x78 @ 1
[    4.688643] initcall thermal_init+0x0/0x78 returned 0 after 54 usecs
[    4.695312] calling  cpufreq_gov_performance_init+0x0/0xf @ 1
[    4.701353] initcall cpufreq_gov_performance_init+0x0/0xf returned 0 after 0 usecs
[    4.709294] calling  init_acpi_pm_clocksource+0x0/0x18d @ 1
[    4.749661] initcall init_acpi_pm_clocksource+0x0/0x18d returned 0 after 33734 usecs
[    4.757782] calling  pcibios_assign_o  0x8000-0x8fff]
[    4.775191] pci 0000:00:01.0:   bridge window [mem 0xfe700000-0xfe8fffff]
[    4.782312] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    4.790450] pci 0000:00:06.0: PCI bridge to [bus 02]
[    4.795657] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    4.802066] pci 0000:00:06.0:   bridge window [mem 0xfe900000-0xfe9fffff]
[    4.809189] pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
[    4.817331] pci 0000:00:07.0: PCI bridge to [bus 03]
[    4.822536] pci 0000:00:07.0:   bridge window [io  0xa000-0xbfff]
[    4.828926] pci 0000:00:07.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    4.836053] pci 0000:00:14.4: PCI bridge to [bus 04]
[    4.841263] pci 0000:00:14.4:   bridge window [io  0xc000-0xefff]
[    4.847672] pci 0000:00:14.4:   bridge window [mem 0xfeb00000-0xfebfffff]
[    4.854807] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    4.860655] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    4.866507] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    4.873089] pci_bus 0000:00: resource 7 [mem 0xcff00000-0xdfffffff]
[    4.879652] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfebfffff]
[    4.886243] pci_bus 0000:01: resource 0 [io  0x8000-0x8fff]
[    4.892085] pci_bus 0000:01: resource 1 [mem 0xfe700000-0xfe8fffff]
[    4.898665] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    4.906263] pci_bus 0000:02: resource 0 [io  0x9000-0x9fff]
[    4.912125] pci_bus 0000:02: resource 1 [mem 0xfe900000-0xfe9fffff]
[    4.918701] pci_bus 0000:02: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
[    4.926297] pci_bus 0000:03: resource 0 [io  0xa000-0xbfff]
[    4.932139] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    4.938713] pci_bus 0000:04: resource 0 [io  0xc000-0xefff]
[    4.944567] pci_bus 0000:04: resource 1 [mem 0xfeb00000-0xfebfffff]
[    4.951132] pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7]
[    4.956978] pci_bus 0000:04: resource 5 [io  0x0d00-0xffff]
[    4.962829] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
[    4.969404] pci_bus 0000:04: resource 7 [mem 0xcff00000-0xdfffffff]
[    4.975989] pci_bus 0000:04: resource 8 [mem 0xf0000000-0xfebfffff]
[    4.982564] initcall pcibios_assign_resources+0x0/0x8f returned 0 after 214079 usecs
[    4.990702] calling  sysctl_core_init+0x0/0x23 @ 1
[    4.995749] initcall sysctl_core_init+0x0/0x23 returned 0 after 20 usecs
[    5.002793] calling  inet_init+0x0/0x25b @ 1
[    5.007492] NET: Registered protocol family 2
[    5.012854] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    5.020254] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    5.027052] TCP: Hash tables configured (established 8192 bind 8192)
[    5.033767] TCP: reno registered
[    5.037164] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    5.043397] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    5.050437] initcall inet_init+0x0/0x25b returned 0 after 42198 usecs
[    5.057196] calling  ipv4_offload_init+0x0/0x5d @ 1
[    5.062316] initcall ipv4_offload_init+0x0/0x5d returned 0 after 1 usecs
[    5.069359] calling  af_unix_init+0x0/0x4d @ 1
[    5.074065] NET: Registered protocol family 1
[    5.078655] initcall af_unix_init+0x0/0x4d returned 0 after 4536 usecs
[    5.085522] calling  ipv6_offload_init+0x0/0x7a @ 1
[    5.090638] initcall ipv6_offload_init+0x0/0x7a returned 0 after 1 usecs
[    5.097685] calling  init_sunrpc+0x0/0x5f @ 1
[    5.102639] RPC: Registered named UNIX socket transport module.
[    5.108862] RPC: Registered udp transport module.
[    5.113794] RPC: Registered tcp transport module.
[    5.118727] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.125497] initcall init_sunrpc+0x0/0x5f returned 0 after 22723 usecs
[    5.132357] calling  pci_apply_final_quirks+0x0/0x112 @ 1
[    5.138030] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    5.506241] pci 0000:01:05.0: Boot video device
[    5.511014] PCI: CLS 64 bytes, default 64
[    5.515218] initcall pci_ap.
[    7.397169] microcode: updated early to new patch_level=0x010000db
[    7.430973] Freeing initrd memory: 83120K (f2ad2000 - f7bfe000)
[    7.437192] initcall populate_rootfs+0x0/0xf9 returned 0  initcall pci_iommu_init+0x0/0x34 returned 0 after 1 usecs
[    7.456281] calling  register_kernel_offset_dumper+0x0/0x16 @ 1
[    7.462496] initcall register_kernel_offset_dumper+0x0/0x16 returned 0 after 1 usecs
[    7.470633] calling  i8259A_init_ops+0x0/0x1d @ 1
[    7.475582] initcall i8259A_init_ops+0x0/0x1d returned 0 after 1 usecs
[    7.482439] calling  sbf_init+0x0/0xf1 @ 1
[    7.486741] initcall sbf_init+0x0/0xf1 returned 0 after 0 usecs
[    7.492963] calling  init_tsc_clocksource+0x0/0xa7 @ 1
[    7.498363] initcall init_tsc_clocksource+0x0/0xa7 returned 0 after 2 usecs
[    7.505690] calling  add_rtc_cmos+0x0/0x99 @ 1
[    7.510361] initcall add_rtc_cmos+0x0/0x99 returned 0 after 2 usecs
[    7.516951] calling  i8237A_init_ops+0x0/0x11 @ 1
[    7.521897] initcall i8237A_init_ops+0x0/0x11 returned 0 after 0 usecs
[    7.528753] calling  cache_sysfs_init+0x0/0x69 @ 1
[    7.535150] initcall cache_sysfs_init+0x0/0x69 returned 0 after 1329 usecs
[    7.542375] calling  amd_uncore_init+0x0/0x111 @ 1
[    7.547409] initcall amd_uncore_init+0x0/0x111 returned -19 after 0 usecs
[    7.554543] calling  intel_uncore_init+0x0/0x3ea @ 1
[    7.559765] initcall intel_uncore_init+0x0/0x3ea returned -19 after 1 usecs
[    7.567075] calling  rapl_pmu_init+0x0/0x194 @ 1
[    7.571927] initcall rapl_pmu_init+0x0/0x194 returned 0 after 0 usecs
[    7.578689] calling  inject_init+0x0/0x30 @ 1
[    7.583267] Machine check injector initialized
[    7.587934] initcall inject_init+0x0/0x30 returned 0 after 4560 usecs
[    7.594695] calling  thermal_throttle_init_device+0x0/0x6d @ 1
[    7.600824] initcall thermal_throttle_init_device+0x0/0x6d returned 0 after 0 usecs
[    7.608874] calling  microcode_init+0x0/0x18c @ 1
[    7.613940] microcode: CPU0: patch_level=0x010000db
[    7.619099] microcode: CPU1: patch_level=0x01000086
[    7.624251] microcode: CPU2: patch_level=0x01000086
[    7.629403] microcode: CPU3: patch_level=0x01000086
[    7.634735] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    7.643985] initcall microcode_init+0x0/0x18c returned 0 after 29492 usecs
[    7.651217] calling  amd_ibs_init+0x0/0x21f @ 1
[    7.655975] LVT offset 1 assigned for vector 0x400
[    7.661019] IBS: LVT offset 1 assigned
[    7.665089] perf: AMD IBS detected (0x0000001f)
[    7.669844] initcall amd_ibs_init+0x0/0x21f returned 0 after 13556 usecs
[    7.676885] calling  msr_init+0x0/0x153 @ 1
[    7.681944] initcall msr_init+0x0/0x153 returned 0 after 656 usecs
[    7.688462] calling  cpuid_init+0x0/0x153 @ 1
[    7.693675] initcall cpuid_init+0x0/0x153 returned 0 after 608 usecs
[    7.700358] calling  ioapic_init_ops+0x0/0x11 @ 1
[    7.705307] initcall ioapic_init_ops+0x0/0x11 returned 0 after 0 usecs
[    7.712171] calling  add_pcspkr+0x0/0x3b @ 1
[    7.716753] initcall add_pcspkr+0x0/0x3b returned 0 after 80 usecs
[    7.723241] calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
[    7.729996] Scanning for low memory corruption every 60 seconds
[    7.736226] initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 6088 usecs
[    7.745189] calling  sysfb_init+0x0/0x80 @ 1
[    7.749776] initcall sysfb_init+0x0/0x80 returned 0 after 96 usecs
[    7.756289] calling  pt_dump_init+0x0/0x70 @ 1
[    7.760963] initcall pt_dump_init+0x0/0x70 returned 0 after 11 usecs
[    7.767640] calling  aes_init+0x0/0xf @ 1
[    7.771936] initcall aes_init+0x0/0xf returned 0 after 82 usecs
[    7.778168] calling  proc_execdomains_init+0x0/0x27 @ 1
[    7.783657] initcall proc_execdomains_init+0x0/0x27 returned 0 after 9 usecs
[    7.791077] calling  ioresources_init+0x0/0x44 @ 1
[    7.796120] initcall ioresources_init+0x0/0x44 returned 0 after 12 usecs
[    7.803165] calling  init_posix_timers+0x0/0x22b @ 1
[    7.808447] initcall init_posix_timers+0x0/0x22b returned 0 after 66 usecs
[    7.815677] calling  init_posix_cpu_timers+0x0/0x9b @ 1
[    7.821168] initcall init_posix_cpu_timers+0x0/0x9b returned 0 after 0 usecs
[    7.828584] calling  snapshot_device_init+0x0/0xf @ 1
[    7.834031] initcall snapshot_device_init+0x0/0xf returned 0 after 139 usecs
[    7.841441] calling  irq_pm_init_ops+0x0/0x11 @ 1
[    7.846385] initcall irq_pm_init_ops+0x0/0x11 returned 0 after 0 usecs
[    7.853241] calling  timekeeping_init_ops+0x0/0x11 @ 1
[    7.858647] initcall timekeeping_init_ops+0x0/0x11 returned 0 after 0 usecs
[    7.865965] calling  init_clocksource_sysfs+0x0/0x58 @ 1
[    7.871749] initcall init_clocksource_sysfs+0x0/0x58 returned 0 after 205 usecs
[    7.879443] calling  init_timer_list_procfs+0x0/0x30 @ 1
[    7.885034] initcall init_timer_list_procfs+0x0/0x30 returned 0 after 7 usecs
[    7.892535] calling  alarmtimer_init+0x0/0x151 @ 1
[    7.897747] initcall alarmtimer_init+0x0/0x151 returned 0 after 173 usecs
[    7.904891] calling  clockevents_init_sysfs+0x0/0xa3 @ 1
[    7.911126] initcall clockevents_init_sysfs+0x0/0xa3 returned 0 after 628 usecs
[    7.918795] calling  init_tstats_procfs+0x0/0x30 @ 1
[    7.924026] initcall init_tstats_procfs+0x0/0x30 returned 0 after 7 usecs
[    7.931155] calling  futex_init+0x0/0xe6 @ 1
[    7.935659] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    7.942275] initcall futex_init+0x0/0xe6 returned 0 after 6471 usecs
[    7.948945] calling  proc_dma_init+0x0/0x27 @ 1
[    7.953714] initcall proc_dma_init+0x0/0x27 returned 0 after 7 usecs
[    7.960390] calling  proc_modules_init+0x0/0x27 @ 1
[    7.965526] initcall proc_modules_init+0x0/0x27 returned 0 after 6 usecs
[    7.972562] calling  kallsyms_init+0x0/0x2a @ 1
[    7.977323] initcall kallsyms_init+0x0/0x2a returned 0 after 6 usecs
[    7.983993] calling  pid_namespaces_init+0x0/0x32 @ 1
[    7.989364] initcall pid_namespaces_init+0x0/0x32 returned 0 after 65 usecs
[    7.996683] calling  ikconfig_init+0x0/0x41 @ 1
[    8.001445] initcall ikconfig_init+0x0/0x41 returned 0 after 6 usecs
[    8.008125] calling  audit_init+0x0/0xed @ 1
[    8.012603] audit: initializing netlink subsys (disabled)
[    8.018321] audit: type=2000 audit(1405356321.551:1): initialized
[    8.024726] initcall audit_init+0x0/0xed returned 0 after 11849 usecs
[    8.031483] calling  audit_watch_init+0x0/0x31 @ 1
[    8.036522] initcall audit_watch_init+0x0/0x31 returned 0 after 3 usecs
[    8.043468] calling  audit_tree_init+0x0/0x3b @ 1
[    8.048409] initcall audit_tree_init+0x0/0x3b returned 0 after 3 usecs
[    8.055272] calling  init_kprobes+0x0/0x177 @ 1
[    8.060505] initcall init_kprobes+0x0/0x177 returned 0 after 466 usecs
[    8.067364] calling  utsname_sysctl_init+0x0/0x11 @ 1
[    8.072689] initcall utsname_sysctl_init+0x0/0x11 returned 0 after 15 usecs
[    8.080003] calling  init_tracepoints+0x0/0x29 @ 1
[    8.085030] initcall init_tracepoints+0x0/0x29 returned 0 after 1 usecs
[    8.091984] calling  init_blk_tracer+0x0/0x56 @ 1
[    8.096937] initcall init_blk_tracer+0x0/0x56 returned 0 after 2 usecs
[    8.103787] calling  irq_work_init_cpu_notifier+0x0/0x25 @ 1
[    8.109749] initcall irq_work_init_cpu_notifier+0x0/0x25 returned 0 after 1 usecs
[    8.117603] calling  perf_event_sysfs_init+0x0/0x8f @ 1
[    8.123866] initcall perf_event_sysfs_init+0x0/0x8f returned 0 after 744 usecs
[    8.131473] calling  init_per_zone_wmark_min+0x0/0x9d @ 1
[    8.137142] initcall init_per_zone_wmark_min+0x0/0x9d returned 0 after 4 usecs
[    8.144738] calling  kswapd_init+0x0/0x1d @ 1
[    8.149445] initcall kswapd_init+0x0/0x1d returned 0 after 137 usecs
[    8.156115] calling  extfrag_debug_init+0x0/0x7b @ 1
[    8.161368] initcall extfrag_debug_init+0x0/0x7b returned 0 after 27 usecs
[    8.168578] calling  setup_vmstat+0x0/0xcf @ 1
[    8.173283] initcall setup_vmstat+0x0/0xcf returned 0 after 27 usecs
[    8.179973] calling  mm_compute_batch_init+0x0/0x51 @ 1
[    8.185457] initcall mm_compute_batch_init+0x0/0x51 returned 0 after 0 usecs
[    8.192863] calling  slab_proc_init+0x0/0x2a @ 1
[    8.197713] initcall slab_proc_init+0x0/0x2a returned 0 after 7 usecs
[    8.204492] calling  workingset_init+0x0/0x38 @ 1
[    8.209430] initcall workingset_init+0x0/0x38 returned 0 after 5 usecs
[    8.216300] calling  proc_vmalloc_init+0x0/0x2a @ 1
[    8.221434] initcall proc_vmalloc_init+0x0/0x2a returned 0 after 7 usecs
[    8.228481] calling  procswaps_init+0x0/0x27 @ 1
[    8.233330] initcall procswaps_init+0x0/0x27 returned 0 after 6 usecs
[    8.240104] calling  init_frontswap+0x0/0x84 @ 1
[    8.244991] initcall init_frontswap+0x0/0x84 returned 0 after 33 usecs
[    8.251841] calling  hugetlb_init+0x0/0x3d8 @ 1
[    8.256597] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    8.263350] initcall hugetlb_init+0x0/0x3d8 returned 0 after 6601 usecs
[    8.270303] calling  slab_proc_init+0x0/0x7 @ 1
[    8.275073] initcall slab_proc_init+0x0/0x7 returned 0 after 0 usecs
[    8.281747] calling  cpucache_init+0x0/0x40 @ 1
[    8.286512] initcall cpucache_init+0x0/0x40 returned 0 after 1 usecs
[    8.293189] calling  init_cleancache+0x0/0xa8 @ 1
[    8.298169] initcall init_cleancache+0x0/0xa8 returned 0 after 32 usecs
[    8.305137] calling  zs_init+0x0/0x90 @ 1
[    8.309350] initcall zs_init+0x0/0x90 returned 0 after 2 usecs
[    8.315486] calling  fcntl_init+0x0/0x2f @ 1
[    8.320020] initcall fcntl_init+0x0/0x2f returned 0 after 52 usecs
[    8.326509] calling  proc_filesystems_init+0x0/0x27 @ 1
[    8.332005] initcall proc_filesystems_init+0x0/0x27 returned 0 after 7 usecs
[    8.339400] calling  dio_init+0x0/0x32 @ 1
[    8.343750] initcall dio_init+0x0/0x32 returned 0 after 51 usecs
[    8.350077] calling  fsnotify_mark_init+0x0/0x46 @ 1
[    8.355343] initcall fsnotify_mark_init+0x0/0x46 returned 0 after 57 usecs
[    8.362560] calling  dnotify_init+0x0/0x7c @ 1
[    8.367303] initcall dnotify_init+0x0/0x7c returned 0 after 77 usecs
[    8.373984] calling  inotify_user_setup+0x0/0x50 @ 1
[    8.379244] initcall inotify_user_setup+0x0/0x50 returned 0 after 43 usecs
[    8.386468] calling  aio_setup+0x0/0x7e @ 1
[    8.391059] initcall aio_setup+0x0/0x7e returned 0 after 189 usecs
[    8.397565] calling  proc_locks_init+0x0/0x27 @ 1
[    8.402507] initcall proc_locks_init+0x0/0x27 returned 0 after 7 usecs
[    8.409367] calling  dquot_init+0x0/0x116 @ 1
[    8.413939] VFS: Disk quotas dquot_6.5.2
[    8.418232] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    8.425103] initcall dquot_init+0x0/0x116 returned 0 after 10912 usecs
[    8.431956] calling  init_v2_quota_format+0x0/0x1d @ 1
[    8.437364] initcall init_v2_quota_format+0x0/0x1d returned 0 after 1 usecs
[    8.444675] calling  quota_init+0x0/0x2e @ 1
[    8.449198] initcall quota_init+0x0/0x2e returned 0 after 28 usecs
[    8.455694] calling  init_devpts_fs+0x0/0x52 @ 1
[    8.460678] initcall init_devpts_fs+0x0/0x52 returned 0 after 131 usecs
[    8.467619] calling  init_hugetlbfs_fs+0x0/0x145 @ 1
[    8.473116] initcall init_hugetlbfs_fs+0x0/0x145 returned 0 after 278 usecs
[    8.480428] calling  init_fat_fs+0x0/0x4c @ 1
[    8.485074] initcall init_fat_fs+0x0/0x4c returned 0 after 68 usecs
[    8.491670] calling  init_vfat_fs+0x0/0xf @ 1
[    8.496248] initcall init_vfat_fs+0x0/0xf returned 0 after 1 usecs
[    8.502755] calling  init_msdos_fs+0x0/0xf @ 1
[    8.507422] initcall init_msdos_fs+0x0/0xf returned 0 after 1 usecs
[    8.514014] calling  init_iso9660_fs+0x0/0x69 @ 1
[    8.519003] initcall init_iso9660_fs+0x0/0x69 returned 0 after 52 usecs
[    8.525949] calling  init_nfs_fs+0x0/0x142 @ 1
[    8.531094] initcall init_nfs_fs+0x0/0x142 returned 0 after 472 usecs
[    8.537873] calling  init_nfs_v2+0x0/0x11 @ 1
[    8.542456] initcall init_nfs_v2+0x0/0x11 returned 0 after 1 usecs
[    8.548958] calling  init_nfs_v3+0x0/0x11 @ 1
[    8.553542] initcall init_nfs_v3+0x0/0x11 returned 0 after 1 usecs
[    8.560048] calling  init_nfs_v4+0x0/0x30 @ 1
[    8.564634] NFS: Registering the id_resolver key type
[    8.569965] Key type id_resolver registered
[    8.574365] Key type id_legacy registered
[    8.578583] initcall init_nfs_v4+0x0/0x30 returned 0 after 13633 usecs
[    8.585437] calling  init_nlm+0x0/0x3b @ 1
[    8.589754] initcall init_nlm+0x0/0x3b returned 0 after 11 usecs
[    8.596066] calling  init_nls_cp437+0x0/0x11 @ 1
[    8.600918] initcall init_nls_cp437+0x0/0x11 returned 0 after 1 usecs
[    8.607687] calling  init_nls_ascii+0x0/0x11 @ 1
[    8.612542] initcall init_nls_ascii+0x0/0x11 returned 0 after 0 usecs
[    8.619304] calling  init_nls_iso8859_1+0x0/0x11 @ 1
[    8.624532] initcall init_nls_iso8859_1+0x0/0x11 returned 0 after 0 usecs
[    8.631669] calling  init_nls_utf8+0x0/0x23 @ 1
[    8.636444] initcall init_nls_utf8+0x0/0x23 returned 0 after 1 usecs
[    8.643125] calling  init_ntfs_fs+0x0/0x1c9 @ 1
[    8.647879] ntfs: driver 2.1.30 [Flags: R/W].
[    8.652651] initcall init_ntfs_fs+0x0/0x1c9 returned 0 after 4663 usecs
[    8.659607] calling  init_autofs4_fs+0x0/0x26 @ 1
[    8.664616] tsc: Refined TSC clocksource calibration: 3000.105 MHz
[    8.664715] initcall init_autofs4_fs+0x0/0x26 returned 0 after 149 usecs
[    8.664733] calling  init_pstore_fs+0x0/0x41 @ 1
[    8.664758] initcall init_pstore_fs+0x0/0x41 returned 0 after 19 usecs
[    8.664763] calling  ipc_init+0x0/0x20 @ 1
[    8.664781] msgmni has been set to 1688
[    8.664805] initcall ipc_init+0x0/0x20 returned 0 after 37 usecs
[    8.664809] calling  ipc_sysctl_init+0x0/0x11 @ 1
[    8.664826] initcall ipc_sysctl_init+0x0/0x11 returned 0 after 13 usecs
[    8.664831] calling  init_mqueue_fs+0x0/0x91 @ 1
[    8.721290] initcall init_mqueue_fs+0x0/0x91 returned 0 after 55185 usecs
[    8.728419] calling  key_proc_init+0x0/0x64 @ 1
[    8.733193] initcall key_proc_init+0x0/0x64 returned 0 after 12 usecs
[    8.739955] calling  selinux_nf_ip_init+0x0/0x65 @ 1
[    8.745176] initcall selinux_nf_ip_init+0x0/0x65 returned 0 after 0 usecs
[    8.752305] calling  init_sel_fs+0x0/0x8b @ 1
[    8.756884] initcall init_sel_fs+0x0/0x8b returned 0 after 1 usecs
[    8.763378] calling  selnl_init+0x0/0x53 @ 1
[    8.767890] initcall selnl_init+0x0/0x53 returned 0 after 18 usecs
[    8.774380] calling  sel_netif_init+0x0/0x54 @ 1
[    8.779235] initcall sel_netif_init+0x0/0x54 returned 0 after 0 usecs
[    8.785996] calling  sel_netnode_init+0x0/0x5f @ 1
[    8.791040] initcall sel_netnode_init+0x0/0x5f returned 0 after 0 usecs
[    8.797976] calling  sel_netport_init+0x0/0x5f @ 1
[    8.803020] initcall sel_netport_init+0x0/0x5f returned 0 after 0 usecs
[    8.809958] calling  aurule_init+0x0/0x2d @ 1
[    8.814536] initcall aurule_init+0x0/0x2d returned 0 after 3 usecs
[    8.821034] calling  crypto_algapi_init+0x0/0xc @ 1
[    8.826159] initcall crypto_algapi_init+0x0/0xc returned 0 after 7 usecs
[    8.833200] calling  chainiv_module_init+0x0/0xf @ 1
[    8.838413] initcall chainiv_module_init+0x0/0xf returned 0 after 1 usecs
[    8.845549] calling  eseqiv_module_init+0x0/0xf @ 1
[    8.850693] initcall eseqiv_module_init+0x0/0xf returned 0 after 0 usecs
[    8.857727] calling  hmac_module_init+0x0/0xf @ 1
[    8.862670] initcall hmac_module_init+0x0/0xf returned 0 after 0 usecs
[    8.869519] calling  md5_mod_init+0x0/0xf @ 1
[    8.874186] initcall md5_mod_init+0x0/0xf returned 0 after 93 usecs
[    8.880781] calling  sha1_generic_mod_init+0x0/0xf @ 1
[    8.886271] initcall sha1_generic_mod_init+0x0/0xf returned 0 after 90 usecs
[    8.893669] calling  crypto_cbc_module_init+0x0/0xf @ 1
[    8.899151] initcall crypto_cbc_module_init+0x0/0xf returned 0 after 1 usecs
[    8.906558] calling  des_generic_mod_init+0x0/0x14 @ 1
[    8.912104] initcall des_generic_mod_init+0x0/0x14 returned 0 after 151 usecs
[    8.919611] calling  aes_init+0x0/0xf @ 1
[    8.923898] initcall aes_init+0x0/0xf returned 0 after 78 usecs
[    8.930112] calling  zlib_mod_init+0x0/0xf @ 1
[    8.934863] initcall zlib_mod_init+0x0/0xf returned 0 after 74 usecs
[    8.941546] calling  crypto_authenc_module_init+0x0/0xf @ 1
[    8.947402] initcall crypto_authenc_module_init+0x0/0xf returned 0 after 1 usecs
[    8.955172] calling  crypto_authenc_esn_module_init+0x0/0xf @ 1
[    8.961398] initcall crypto_authenc_esn_module_init+0x0/0xf returned 0 after 0 usecs
[    8.969535] calling  krng_mod_init+0x0/0xf @ 1
[    8.974304] initcall krng_mod_init+0x0/0xf returned 0 after 93 usecs
[    8.980966] calling  proc_genhd_init+0x0/0x44 @ 1
[    8.985931] initcall proc_genhd_init+0x0/0x44 returned 0 after 14 usecs
[    8.992883] calling  init_emergency_pool+0x0/0x53 @ 1
[    8.998204] bounce: pool size: 64 pages
[    9.002227] initcall init_emergency_pool+0x0/0x53 returned 0 after 3947 usecs
[    9.009733] calling  bsg_init+0x0/0x119 @ 1
[    9.014212] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    9.021995] initcall bsg_init+0x0/0x119 returned 0 after 7696 usecs
[    9.028579] calling  noop_init+0x0/0xf @ 1
[    9.032890] io scheduler noop registered
[    9.037006] initcall noop_init+0x0/0xf returned 0 after 4022 usecs
[    9.043505] calling  deadline_init+0x0/0xf @ 1
[    9.048163] io scheduler deadline registered
[    9.052647] initcall deadline_init+0x0/0xf returned 0 after 4382 usecs
[    9.059507] calling  cfq_init+0x0/0x89 @ 1
[    9.063906] io scheduler cfq registered (default)
[    9.068856] initcall cfq_init+0x0/0x89 returned 0 after 4932 usecs
[    9.075346] calling  percpu_counter_startup+0x0/0x35 @ 1
[    9.080938] initcall percpu_counter_startup+0x0/0x35 returned 0 after 1 usecs
[    9.088431] calling  audit_classes_init+0x0/0x4f @ 1
[    9.093662] initcall audit_classes_init+0x0/0x4f returned 0 after 12 usecs
[    9.100887] calling  phy_core_init+0x0/0x45 @ 1
[    9.105679] initcall phy_core_init+0x0/0x45 returned 0 after 31 usecs
[    9.112458] calling  pci_proc_init+0x0/0x64 @ 1
[    9.117444] initcall pci_proc_init+0x0/0x64 returned 0 after 232 usecs
[    9.124292] calling  pcie_portdrv_init+0x0/0x6f @ 1
[    9.129641] pcieport 0000:00:06.0: irq 24 for MSI/MSI-X
[    9.135382] pcieport 0000:00:07.0: irq 25 for MSI/MSI-X
[    9.141104] initcall pcie_portdrv_init+0x0/0x6f returned 0 after 11413 usecs
[    9.148513] calling  aer_service_init+0x0/0x28 @ 1
[    9.153596] initcall aer_service_init+0x0/0x28 returned 0 after 45 usecs
[    9.160634] calling  pci_hotplug_init+0x0/0x1e @ 1
[    9.165672] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    9.171529] initcall pci_hotplug_init+0x0/0x1e returned 0 after 5723 usecs
[    9.178768] calling  pcied_init+0x0/0x76 @ 1
[    9.183372] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    9.190317] initcall pcied_init+0x0/0x76 returned 0 after 6899 usecs
[    9.196994] calling  pcifront_init+0x0/0x41 @ 1
[    9.201759] initcall pcifront_init+0x0/0x41 returned -19 after 0 usecs
[    9.208636] calling  genericbl_driver_init+0x0/0x11 @ 1
[    9.214166] initcall genericbl_driver_init+0x0/0x11 returned 0 after 53 usecs
[    9.221670] calling  cirrusfb_init+0x0/0xaa @ 1
[    9.226506] initcall cirrusfb_init+0x0/0xaa returned 0 after 67 usecs
[    9.233270] calling  efifb_driver_init+0x0/0x11 @ 1
[    9.238448] initcall efifb_driver_init+0x0/0x11 returned 0 after 48 usecs
[    9.245594] calling  intel_idle_init+0x0/0x2ec @ 1
[    9.250632] initcall intel_idle_init+0x0/0x2ec returned -19 after 1 usecs
[    9.257772] calling  acpi_reserve_resources+0x0/0xc8 @ 1
[    9.263368] initcall acpi_reserve_resources+0x0/0xc8 returned 0 after 14 usecs
[    9.270954] calling  acpi_ac_init+0x0/0x25 @ 1
[    9.275697] initcall acpi_ac_init+0x0/0x25 returned 0 after 73 usecs
[    9.282387] calling  acpi_button_driver_init+0x0/0xf @ 1
[    9.288358] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    9.297135] ACPI: Power Button [PWRB]
[    9.301344] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    9.309103] ACPI: Power Button [PWRF]
[    9.312996] initcall acpi_button_driver_init+0x0/0xf returned 0 after 24465 usecs
[    9.320863] calling  acpi_fan_driver_init+0x0/0xf @ 1
[    9.326227] initcall acpi_fan_driver_init+0x0/0xf returned 0 after 52 usecs
[    9.333549] calling  acpi_processor_driver_init+0x0/0x3e @ 1
[    9.339582] ACPI: processor limited to max C-state 1
[    9.345595] initcall acpi_processor_driver_init+0x0/0x3e returned 0 after 5953 usecs
[    9.353732] calling  acpi_thermal_init+0x0/0x8c @ 1
[    9.361763] thermal LNXTHERM:00: registered as thermal_zone0
[    9.367704] ACPI: Thermal Zone [THRM] (30 C)
[    9.372232] initcall acpi_thermal_init+0x0/0x8c returned 0 after 13075 usecs
[    9.379645] calling  acpi_battery_init+0x0/0x13 @ 1
[    9.384777] initcall acpi_battery_init+0x0/0x13 returned 0 after 8 usecs
[    9.384806] calling  1_acpi_battery_init_async+0x0/0x22 @ 6
[    9.384890] initcall 1_acpi_battery_init_async+0x0/0x22 returned 0 after 78 usecs
[    9.405521] calling  acpi_hed_driver_init+0x0/0xf @ 1
[    9.410888] initcall acpi_hed_driver_init+0x0/0xf returned 0 after 56 usecs
[    9.418196] calling  erst_init+0x0/0x2fa @ 1
[    9.422691] initcall erst_init+0x0/0x2fa returned 0 after 1 usecs
[    9.429098] calling  ghes_init+0x0/0x165 @ 1
[    9.433590] GHES: HEST is not enabled!
[    9.437537] initcall ghes_init+0x0/0x165 returned -22 after 3852 usecs
[    9.444395] calling  einj_init+0x0/0x4ef @ 1
[    9.448884] initcall einj_init+0x0/0x4ef returned -19 after 1 usecs
[    9.455473] calling  ioat_init_module+0x0/0xb0 @ 1
[    9.460505] ioatdma: Intel(R) QuickData Technology Driver 4.00
[    9.466830] initcall ioat_init_module+0x0/0xb0 returned 0 after 6181 usecs
[    9.474059] calling  virtio_mmio_init+0x0/0x11 @ 1
[    9.479157] initcall virtio_mmio_init+0x0/0x11 returned 0 after 55 usecs
[    9.486195] calling  virtio_balloon_driver_init+0x0/0xf @ 1
[    9.492105] initcall virtio_balloon_driver_init+0x0/0xf returned 0 after 54 usecs
[    9.499976] calling  xenbus_probe_initcall+0x0/0x35 @ 1
[    9.505474] initcall xenbus_probe_initcall+0x0/0x35 returned -19 after 0 usecs
[    9.513068] calling  xenbus_init+0x0/0x37 @ 1
[    9.517662] initcall xenbus_init+0x0/0x37 returned -19 after 0 usecs
[    9.524339] calling  xenbus_backend_init+0x0/0x48 @ 1
[    9.529649] initcall xenbus_backend_init+0x0/0x48 returned -19 after 0 usecs
[    9.537053] calling  gntdev_init+0x0/0x48 @ 1
[    9.541644] initcall gntdev_init+0x0/0x48 returned -19 after 1 usecs
[    9.548325] calling  gntalloc_init+0x0/0x37 @ 1
[    9.553097] initcall gntalloc_init+0x0/0x37 returned -19 after 0 usecs
[    9.559963] calling  hypervisor_subsys_init+0x0/0x21 @ 1
[    9.565544] initcall hypervisor_subsys_init+0x0/0x21 returned -19 after 0 usecs
[    9.573225] calling  hyper_sysfs_init+0x0/0xcc @ 1
[    9.578265] initcall hyper_sysfs_init+0x0/0xcc returned -19 after 0 usecs
[    9.585410] calling  platform_pci_module_init+0x0/0x16 @ 1
[    9.591256] initcall platform_pci_module_init+0x0/0x16 returned 0 after 74 usecs
[    9.599032] calling  xen_pcibk_init+0x0/0x110 @ 1
[    9.603988] initcall xen_pcibk_init+0x0/0x110 returned -19 after 1 usecs
[    9.611037] calling  xen_acpi_processor_init+0x0/0x1f7 @ 1
[    9.616809] initcall xen_acpi_processor_init+0x0/0x1f7 returned -19 after 0 usecs
[    9.624682] calling  pty_init+0x0/0x3d9 @ 1
[    9.697163] initcall pty_init+0x0/0x3d9 returned 0 after 66546 usecs
[    9.703842] calling  sysrq_init+0x0/0xbe @ 1
[    950_init+0x0/0x16d @ 1
[    9.731511] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    9.738419] Switc?[   10.626069] console [ttyS0] enabled
[   10.626069] console [ttyS0] enabled
[   10.633329] bootconsole [uart0] disabled
[   10.633329] bootconsole [uart0] disabled
[   10.642113] initcall serial_pci_driver_init+0x0/0x16 returned 0 after 881868 usecs
[   10.649927] calling  init_kgdboc+0x0/0x15 @ 1
[   10.654421] initcall init_kgdboc+0x0/0x15 returned 0 after 4 usecs
[   10.660792] calling  init+0x0/0xf3 @ 1
[   10.664803] initcall init+0x0/0xf3 returned 0 after 146 usecs
[   10.670725] calling  hpet_init+0x0/0x57 @ 1
[   10.675523] initcall hpet_init+0x0/0x57 returned 0 after 479 usecs
[   10.681905] calling  nvram_init+0x0/0x7e @ 1
[   10.686443] Non-volatile memory driver v1.3
[   10.690763] initcall nvram_init+0x0/0x7e returned 0 after 4346 usecs
[   10.697327] calling  mod_init+0x0/0x1b6 @ 1
[   10.701679] initcall mod_init+0x0/0x1b6 returned -19 after 40 usecs
[   10.708151] calling  mod_init+0x0/0x12d @ 1
[   10.712476] initcall mod_init+0x0/0x12d returned -19 after 19 usecs
[   10.718937] calling  mod_init+0x0/0x99 @ 1
[   10.723169] initcall mod_init+0x0/0x99 returned -19 after 3 usecs
[   10.729444] calling  mod_init+0x0/0x48 @ 1
[   10.733663] initcall mod_init+0x0/0x48 returned -19 after 0 usecs
[   10.739944] calling  rng_init+0x0/0xf @ 1
[   10.744232] initcall rng_init+0x0/0xf returned 0 after 159 usecs
[   10.750434] calling  agp_init+0x0/0x2f @ 1
[   10.754661] Linux agpgart interface v0.103
[   10.758880] initcall agp_init+0x0/0x2f returned 0 after 4124 usecs
[   10.765251] calling  agp_ali_init+0x0/0x24 @ 1
[   10.769903] initcall agp_ali_init+0x0/0x24 returned 0 after 74 usecs
[   10.776454] calling  agp_ati_init+0x0/0x24 @ 1
[   10.781106] initcall agp_ati_init+0x0/0x24 returned 0 after 75 usecs
[   10.787659] calling  agp_amdk7_init+0x0/0x24 @ 1
[   10.792487] initcall agp_amdk7_init+0x0/0x24 returned 0 after 73 usecs
[   10.799217] calling  agp_amd64_mod_init+0x0/0xa @ 1
[   10.804927] initcall agp_amd64_mod_init+0x0/0xa returned -19 after 672 usecs
[   10.812194] calling  agp_efficeon_init+0x0/0x39 @ 1
[   10.817281] initcall agp_efficeon_init+0x0/0x39 returned 0 after 65 usecs
[   10.824286] calling  agp_intel_init+0x0/0x24 @ 1
[   10.829112] initcall agp_intel_init+0x0/0x24 returned 0 after 71 usecs
[   10.835846] calling  agp_nvidia_init+0x0/0x24 @ 1
[   10.840761] initcall agp_nvidia_init+0x0/0x24 returned 0 after 69 usecs
[   10.847581] calling  agp_sis_init+0x0/0x24 @ 1
[   10.852226] initcall agp_sis_init+0x0/0x24 returned 0 after 70 usecs
[   10.858778] calling  agp_serverworks_init+0x0/0x24 @ 1
[   10.864139] initcall agp_serverworks_init+0x0/0x24 returned 0 after 69 usecs
[   10.871408] calling  agp_via_init+0x0/0x24 @ 1
[   10.876055] initcall agp_via_init+0x0/0x24 returned 0 after 70 usecs
[   10.882606] calling  drm_core_init+0x0/0x107 @ 1
[   10.887429] [drm] Initialized drm 1.1.0 20060810
[   10.892184] initcall drm_core_init+0x0/0x107 returned 0 after 4711 usecs
[   10.899098] calling  cn_proc_init+0x0/0x33 @ 1
[   10.903681] initcall cn_proc_init+0x0/0x33 returned 0 after 10 usecs
[   10.910236] calling  topology_sysfs_init+0x0/0x60 @ 1
[   10.915632] initcall topology_sysfs_init+0x0/0x60 returned 0 after 190 usecs
[   10.922902] calling  loop_init+0x0/0x12b @ 1
[   10.933527] loop: module loaded
[   10.936762] initcall loop_init+0x0/0x12b returned 0 after 9250 usecs
[   10.943317] callx0/0x2e9 returned 0 after 4844 usecs
[   10.970801] calling  mac_hid_init+0x0/0x1c @ 1
[   10.975402] initcall mac_hid_init+0x0/0x1c returned 0 after 14 usecs
[   10.981954] calling  macvlan_init_module+0x0/0x31 @ 1
[   10.987169] initcall macvlan_init_module+0x0/0x31 returned 0 after 7 usecs
[   10.994261] calling  macvtap_init+0x0/0xd0 @ 1
[   10.998884] initcall macvtap_init+0x0/0xd0 returned 0 after 38 usecs
[   11.005435] calling  net_olddevs_init+0x0/0x88 @ 1
[   11.010382] initcall net_olddevs_init+0x0/0x88 returned 0 after 7 usecs
[   11.017203] calling  fixed_mdio_bus_init+0x0/0xe3 @ 1
[   11.022610] libphy: Fixed MDIO Bus: probed
[   11.026833] initcall fixed_mdio_bus_init+0x0/0xe3 returned 0 after 4318 usecs
[   11.034193] calling  tun_init+0x0/0x8b @ 1
[   11.038413] tun: Universal TUN/TAP device driver, 1.6
[   11.043621] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[   11.050143] initcall tun_init+0x0/0x8b returned 0 after 11466 usecs
[   11.056614] calling  tg3_driver_init+0x0/0x16 @ 1
[   11.061595] initcall tg3_driver_init+0x0/0x16 returned 0 after 117 usecs
[   11.068510] calling  ixgbevf_init_module+0x0/0x49 @ 1
[   11.073719] ixgbevf: Intel(R) 10 Gigabit PCI Express Virtual Function Network Driver - version 2.12.1-k
[   11.083397] ixgbevf: Copyright (c) 2009 - 2012 Intel Corporation.
[   11.089780] initcall ixgbevf_init_module+0x0/0x49 returned 0 after 15703 usecs
[   11.097229] calling  forcedeth_pci_driver_init+0x0/0x16 @ 1
[   11.103047] initcall forcedeth_pci_driver_init+0x0/0x16 returned 0 after 78 usecs
[   11.110764] calling  netback_init+0x0/0x81 @ 1
[   11.115345] initcall netback_init+0x0/0x81 returned -19 after 0 usecs
[   11.121982] calling  fw_core_init+0x0/0xf1 @ 1
[   11.126732] initcall fw_core_init+0x0/0xf1 returned 0 after 172 usecs
[   11.133380] calling  nonstatic_sysfs_init+0x0/0xf @ 1
[   11.138595] initcall nonstatic_sysfs_init+0x0/0xf returned 0 after 0 usecs
[   11.145678] calling  yenta_cardbus_driver_init+0x0/0x16 @ 1
[   11.151531] initcall yenta_cardbus_driver_init+0x0/0x16 returned 0 after 113 usecs
[   11.159338] calling  mon_init+0x0/0xe1 @ 1
[   11.163765] initcall mon_init+0x0/0xe1 returned 0 after 207 usecs
[   11.170057] calling  ehci_hcd_init+0x0/0x58 @ 1
[   11.174737] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   11.181461] initcall ehci_hcd_init+0x0/0x58 returned 0 after 6572 usecs
[   11.188283] calling  ehci_pci_init+0x0/0x60 @ 1
[   11.192950] ehci-pci: EHCI PCI platform driver
[   11.199371] QUIRK: Enable AMD PLL fix
[   11.203174] ehci-pci 0000:00:12.2: EHCI Host Controller
[   11.208846] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[   11.216479] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[   11.225434] ehci-pci 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
[   11.233148] ehci-pci 0000:00:12.2: debug port 1
[   11.237946] ehci-pci 0000:00:12.2: irq 17, io mem 0xfe6ff800
[   11.249375] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[   11.255603] usb usb1: New USB device found, idVendor=1d6b, :12.2
[   11.288959] hub 1-0:1.0: USB hub found
[   11.292889] hub 1-0:1.0: 6 ports detected
[   11.300351] ehci-pci 0000:00:13.2: EHCI Host Controller
[   11.306030] ehci-pci 0000:00:13.2: new USB bus registered, assignSB600/SB700 USB freeze workaround
[   11.330359] ehci-pci 0000:00:13.2: debug port 1
[   11.335164] ehci-pci 0000:00:13.2: irq 19, io mem 0xfe6ff400
[   11.341293] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[   11.347512] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[   11.354502] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.361935] usb usb2: Product: EHCI Host Controller
[   11.366953] usb usb2: Manufacturer: Linux 3.16.0-rc5upstream-00060-g8e655983b ehci_hcd
[   11.375103] usb usb2: SerialNumber: 0000:00:13.2
[   11.380829] hub 2-0:1.0: USB hub found
[   11.384761] hub 2-0:1.0: 6 ports detected
[   11.390402] initcall ehci_pci_init+0x0/0x60 returned 0 after 193007 usecs
[   11.397396] calling  ohci_hcd_mod_init+0x0/0x5e @ 1
[   11.402415] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   11.408786] initcall ohci_hcd_mod_init+0x0/0x5e returned 0 after 6226 usecs
[   11.415956] calling  ohci_pci_init+0x0/0x60 @ 1
[   11.420617] ohci-pci: OHCI PCI platform driver
[   11.426981] ohci-pci 0000:00:12.0: OHCI PCI host controller
[   11.433012] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
[   11.440768] ohci-pci 0000:00:12.0: irq 16, io mem 0xfe6fe000
[   11.501472] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[   11.508481] usb usb3: New USB device strings: M-00060-g8e655983b ohci_hcd
[   11.529458] usb usb3: SerialNumber: 0000:00:12.0
[   11.535180] hub 3-0:1.0: USB hub found
[   11.539102] hub 3-0:1.0: 3 ports detected
[   11.545877] ohci-pci 0000:00:12.1: OHCI PCI host controller
[   11.551903] ohci-pci 0000:00:12.1: new USB bus registered, as[   11.620388] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[   11.627380] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.634815] usb usb4: Product: OHCI PCI host controller
[   11.640192] usb usb4: Manufacturer: Linux 3.16.0-rc5upstream-00060-g8e655983b ohci_hcd
[   11.648340] usb usb4: SerialNumber: 0000:00:12.1
[   11.654070] hub 4-0:1.0: USB hub found
[   11.657994] hub 4-0:1.0: 3 ports detected
[   11.664774] ohci-pci 0000:00:13.0: OHCI PCI host controller
[   11.670796] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 5
[   11.678551] ohci-pci 0000:00:13.0: irq 18, io mem 0xfe6fc000
[   11.739256] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[   11.746265] usb usb5: New USB device strings: Mci_hcd
[   11.767239] usb usb5: SerialNumber: 0000:00:13.0
[   11.772971] hub 5-0:1.0: USB hub found
[   11.776892] hub 5-0:1.0: 3 ports detected
[   11.783636] ohci-pci 0000:00:13.1: OHCI PCI host controller
[   11.789666] ohci-pci 0000:00:13.1: new USB bus registered, assigned bus number 6
[   11.797360] ohci-pci 0000:00:13.1: irq 18, io mem 0xfe6f7000
[   11.858166] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[   11.865158] usb usb6: New USB device strings: M11.886116] usb usb6: SerialNumber: 0000:00:13.1
[   11.891875] hub 6-0:1.0: USB hub found
[   11.895794] hub 6-0:1.0: 3 ports detected
[   11.902536] ohci-pci 0000:00:14.5: OHCI PCI host controller
[   11.908564] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 7
[   11.916263] ohci-pci 0000:00:14.5: irq 18, io mem 0xfe6f6000
[   11.977045] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
[   11.984038] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.991472] usb usb7: Product: OHCI PCI host controller
[   11.996850] usb usb7: Manufacturer: Linux 3.16.0-rc5upstream-00060-g8e655983b ohci_hcd
[   12.005000] usb usb7: SerialNumber: 0000:00:14.5
[   12.010741] hub 7-0:1.0: USB hub found
[   12.014664] hub 7-0:1.0: 2 ports detected
[   12.019624] initcall ohci_pci_init+0x0/0x60 returned 0 after 585516 usecs
[   12.026627] calling  uhci_hcd_init+0x0/0xa4 @ 1
[   12.031292] uhci_hcd: USB Universal Host Controller Interface driver
[   12.037998] initcall uhci_hcd_init+0x0/0xa4 returned 0 after 6557 usecs
[   12.044819] calling  usblp_driver_init+0x0/0x16 @ 1
[   12.049957] usbcore: registered new interface driver usblp
[   12.055603] initcall usblp_driver_init+0x0/0x16 returned 0 after 5634 usecs
[   12.062774] calling  kgdbdbgp_start_thread+0x0/0x57 @ 1
[   12.068158] initcall kgdbdbgp_start_thread+0x0/0x57 returned 0 after 0 usecs
[   12.075421] calling  i8042_init+0x0/0x3b7 @ 1
[   12.080073] i8042: PNP: No PS/2 controller found. Probing ports directly.
[   12.087606] serio: i8042 KBD port at 0x60,0x64 irq 1
[   12.092728] serio: i8042 AUX port at 0x60,0x64 irq 12
[   12.097962] initcall i8042_init+0x0/0x3b7 returned 0 after 17649 usecs
[   12.104685] calling  serport_init+0x0/0x2e @ 1
[   12.109262] initcall serport_init+0x0/0x2e returned 0 after 0 usecs
[   12.115716] calling  mousedev_init+0x0/0x54 @ 1
[   12.120593] mousedev: PS/2 mouse device common for all mice
[   12.126333] initcall mousedev_init+0x0/0x54 returned 0 after 5814 usecs
[   12.133146] calling  evdev_init+0x0/0xf @ 1
[   12.137755] initcall evdev_init+0x0/0xf returned 0 after 296 usecs
[   12.144123] calling  atkbd_init+0x0/0x20 @ 1
[   12.148593] initcall atkbd_init+0x0/0x20 returned 0 after 72 usecs
[   12.154963] calling  psmouse_init+0x0/0x8a @ 1
[   12.159739] initcall psmouse_init+0x0/0x8a returned 0 after 192 usecs
[   12.166394] calling  cmos_init+0x0/0x66 @ 1
[   12.170754] rtc_cmos 00:01: RTC can wake from S4
[   12.175954] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[   12.182287] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[   12.190209] initcall cmos_init+0x0/0x66 returned 0 after 19067 usecs
[   12.196752] calling  i2c_i801_init+0x0/0x92 @ 1
[   12.201522] initcall i2c_i801_init+0x0/0x92 returned 0 after 105 usecs
[   12.208243] calling  cpufreq_gov_dbs_init+0x0/0xf @ 1
[   12.213441] initcall cpufreq_gov_dbs_init+0x0/0xf returned 0 after 0 usecs
[   12.220524] calling  efivars_sysfs_init+0x0/0x1d0 @ 1
[   12.225724] initcall efivars_sysfs_init+0x0/0x1d0 returned -19 after 0 usecs
[   12.232983] calling  efivars_pstore_init+0x0/0x89 @ 1
[   12.238182] initcall efivars_pstore_init+0x0/0x89 returned 0 after 0 usecs
[   12.245261] calling  vhost_net_init+0x0/0x20 @ 1
[   12.250142] initcall vhost_net_init+0x0/0x20 returned 0 after 125 usecs
[   12.256961] calling  vhost_init+0x0/0x7 @ 1
[   12.261265] initcall vhost_init+0x0/0x7 returned 0 after 0 usecs
[   12.267449] calling  staging_init+0x0/0x7 @ 1
[   12.271933] initcall staging_init+0x0/0x7 returned 0 after 0 usecs
[   12.278297] calling  eeepc_laptop_init+0x0/0x4f @ 1
[   12.283472] initcall eeepc_laptop_init+0x0/0x4f returned -19 after 151 usecs
[   12.290731] calling  sock_diag_init+0x0/0xf @ 1
[   12.295410] initcall sock_diag_init+0x0/0xf returned 0 after 16 usecs
[   12.302042] calling  llc_init+0x0/0x1b @ 1
[   12.306258] initcall llc_init+0x0/0x1b returned 0 after 0 usecs
[   12.312355] calling  snap_init+0x0/0x35 @ 1
[   12.316662] initcall snap_init+0x0/0x35 returned 0 after 2 usecs
[   12.322848] calling  blackhole_module_init+0x0/0xf @ 1
[   12.328135] initcall blackhole_module_init+0x0/0xf returned 0 after 0 usecs
[   12.335306] calling  nfnetlink_init+0x0/0x4b @ 1
[   12.340056] Netfilter messages via NETLINK v0.30.
[   12.344909] initcall nfnetlink_init+0x0/0x4b returned 0 after 4743 usecs
[   12.351811] calling  nfnetlink_log_init+0x0/0x8f @ 1
[   12.356934] initcall nfnetlink_log_init+0x0/0x8f returned 0 after 11 usecs
[   12.364013] calling  nf_conntrack_standalone_init+0x0/0x70 @ 1
[   12.370017] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   12.376513] initcall nf_conntrack_standalone_init+0x0/0x70 returned 0 after 6349 usecs
[   12.384668] calling  ctnetlink_init+0x0/0x92 @ 1
[   12.389418] ctnetlink v0.93: registering with nfnetlink.
[   12.394887] initcall ctnetlink_init+0x0/0x92 returned 0 after 5344 usecs
[   12.401789] calling  nf_conntrack_ftp_init+0x0/0x195 @ 1
[   12.407261] initcall nf_conntrack_ftp_init+0x0/0x195 returned 0 after 3 usecs
[   12.414612] calling  nf_conntrack_irc_init+0x0/0x148 @ 1
[   12.420085] initcall nf_conntrack_irc_init+0x0/0x148 returned 0 after 5 usecs
[   12.427434] calling  nf_conntrack_sip_init+0x0/0x1e4 @ 1
[   12.432901] initcall nf_conntrack_sip_init+0x0/0x1e4 returned 0 after 1 usecs
[   12.440250] calling  xt_init+0x0/0xb5 @ 1
[   12.444381] initcall xt_init+0x0/0xb5 returned 0 after 7 usecs
[   12.450388] calling  tcpudp_mt_init+0x0/0x14 @ 1
[   12.455141] initcall tcpudp_mt_init+0x0/0x14 returned 0 after 0 usecs
[   12.461774] calling  connsecmark_tg_init+0x0/0xf @ 1
[   12.466883] initcall connsecmark_tg_init+0x0/0xf returned 0 after 0 usecs
[   12.473872] calling  nflog_tg_init+0x0/0xf @ 1
[   12.478446] initcall nflog_tg_init+0x0/0xf returned 0 after 0 usecs
[   12.484900] calling  secmark_tg_init+0x0/0xf @ 1
[   12.489653] initcall secmark_tg_init+0x0/0xf returned 0 after 0 usecs
[   12.496286] calling  tcpmss_tg_init+0x0/0x14 @ 1
[   12.501038] initcall tcpmss_tg_init+0x0/0x14 returned 0 after 0 usecs
[   12.507672] calling  conntrack_mt_init+0x0/0x14 @ 1
[   12.512692] initcall conntrack_mt_init+0x0/0x14 returned 0 after 0 usecs
[   12.519595] calling  policy_mt_init+0x0/0x14 @ 1
[   12.524348] initcall policy_mt_init+0x0/0x14 returned 0 after 0 usecs
[   12.530980] calling  state_mt_init+0x0/0xf @ 1
[   12.535552] initcall state_mt_init+0x0/0xf returned 0 after 0 usecs
[   12.542006] calling  gre_offload_init+0x0/0x14 @ 1
[   12.546937] initcall gre_offload_init+0x0/0x14 returned 0 after 0 usecs
[   12.553748] calling  sysctl_ipv4_init+0x0/0x44 @ 1
[   12.558721] initcall sysctl_ipv4_init+0x0/0x44 returned 0 after 42 usecs
[   12.565622] calling  tunnel4_init+0x0/0x6d @ 1
[   12.570195] initcall tunnel4_init+0x0/0x6d returned 0 after 0 usecs
[   12.576647] calling  ipv4_netfilter_init+0x0/0xf @ 1
[   12.581756] initcall ipv4_netfilter_init+0x0/0xf returned 0 after 0 usecs
[   12.588748] calling  nf_conntrack_l3proto_ipv4_init+0x0/0x150 @ 1
[   12.595214] initcall nf_conntrack_l3proto_ipv4_init+0x0/0x150 returned 0 after 188 usecs
[   12.603545] calling  nf_defrag_init+0x0/0x14 @ 1
[   12.608297] initcall nf_defrag_init+0x0/0x14 returned 0 after 0 usecs
[   12.614930] calling  ip_tables_init+0x0/0x8f @ 1
[   12.619702] ip_tables: (C) 2000-2006 Netfilter Core Team
[   12.625169] initcall ip_tables_init+0x0/0x8f returned 0 after 5364 usecs
[   12.632068] calling  iptable_filter_init+0x0/0x40 @ 1
[   12.637371] initcall iptable_filter_init+0x0/0x40 returned 0 after 102 usecs
[   12.644629] calling  iptable_mangle_init+0x0/0x40 @ 1
[   12.649906] initcall iptable_mangle_init+0x0/0x40 returned 0 after 78 usecs
[   12.657075] calling  reject_tg_init+0x0/0xf @ 1
[   12.661737] initcall reject_tg_init+0x0/0xf returned 0 after 0 usecs
[   12.668280] calling  ulog_tg_init+0x0/0x74 @ 1
[   12.672872] initcall ulog_tg_init+0x0/0x74 returned 0 after 18 usecs
[   12.679414] calling  cubictcp_register+0x0/0x72 @ 1
[   12.684433] TCP: cubic registered
[   12.687843] initcall cubictcp_register+0x0/0x72 returned 0 after 3332 usecs
[   12.695012] calling  xfrm_user_init+0x0/0x43 @ 1
[   12.699763] Initializing XFRM netlink socket
[   12.704171] initcall xfrm_user_init+0x0/0x43 returned 0 after 4308 usecs
[   12.711072] calling  inet6_init+0x0/0x2c3 @ 1
[   12.715823] NET: Registered protocol family 10
[   12.721205] initcall inet6_init+0x0/0x2c3 returned 0 after 5522 usecs
[   12.727846] calling  ah6_init+0x0/0x75 @ 1
[   12.732070] initcall ah6_init+0x0/0x75 returned 0 after 1 usecs
[   12.738171] calling  esp6_init+0x0/0x75 @ 1
[   12.742481] initcall esp6_init+0x0/0x75 returned 0 after 0 usecs
[   12.748671] calling  xfrm6_transport_init+0x0/0x14 @ 1
[   12.753961] initcall xfrm6_transport_init+0x0/0x14 returned 0 after 0 usecs
[   12.761136] calling  xfrm6_mode_tunnel_init+0x0/0x14 @ 1
[   12.766608] initcall xfrm6_mode_tunnel_init+0x0/0x14 returned 0 after 0 usecs
[   12.773960] calling  xfrm6_beet_init+0x0/0x14 @ 1
[   12.778804] initcall xfrm6_beet_init+0x0/0x14 returned 0 after 0 usecs
[   12.785529] calling  ip6_tables_init+0x0/0x8f @ 1
[   12.790397] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   12.795955] initcall ip6_tables_init+0x0/0x8f returned 0 after 5454 usecs
[   12.802951] calling  ip6table_filter_init+0x0/0x40 @ 1
[   12.808413] initcall ip6table_filter_init+0x0/0x40 returned 0 after 170 usecs
[   12.815764] calling  ip6table_mangle_init+0x0/0x40 @ 1
[   12.821193] initcall ip6table_mangle_init+0x0/0x40 returned 0 after 133 usecs
[   12.828546] calling  nf_conntrack_l3proto_ipv6_init+0x0/0x129 @ 1
[   12.834832] initcall nf_conntrack_l3proto_ipv6_init+0x0/0x129 returned 0 after 11 usecs
[   12.843079] calling  nf_defrag_init+0x0/0x4c @ 1
[   12.847860] initcall nf_defrag_init+0x0/0x4c returned 0 after 24 usecs
[   12.854586] calling  ipv6header_mt6_init+0x0/0xf @ 1
[   12.859698] initcall ipv6header_mt6_init+0x0/0xf returned 0 after 0 usecs
[   12.866693] calling  reject_tg6_init+0x0/0xf @ 1
[   12.871448] initcall reject_tg6_init+0x0/0xf returned 0 after 0 usecs
[   12.878086] calling  sit_init+0x0/0xbc @ 1
[   12.882305] sit: IPv6 over IPv4 tunneling driver
[   12.888009] initcall sit_init+0x0/0xbc returned 0 after 5573 usecs
[   12.894378] calling  packet_init+0x0/0x39 @ 1
[   12.898865] NET: Registered protocol family 17
[   12.903449] initcall packet_init+0x0/0x39 returned 0 after 4480 usecs
[   12.910081] calling  br_init+0x0/0x90 @ 1
[   12.914268] initcall br_init+0x0/0x90 returned 0 after 54 usecs
[   12.920370] calling  init_rpcsec_gss+0x0/0x54 @ 1
[   12.925277] initcall init_rpcsec_gss+0x0/0x54 returned 0 after 60 usecs
[   12.932097] calling  dcbnl_init+0x0/0x5e @ 1
[   12.936496] initcall dcbnl_init+0x0/0x5e returned 0 after 0 usecs
[   12.942772] calling  init_dns_resolver+0x0/0xcd @ 1
[   12.947808] Key type dns_resolver registered
[   12.952207] initcall init_dns_resolver+0x0/0xcd returned 0 after 4311 usecs
[   12.959381] calling  mcheck_init_device+0x0/0x177 @ 1
[   12.965474] initcall mcheck_init_device+0x0/0x177 returned 0 after 868 usecs
[   12.972786] calling  mcheck_debugfs_init+0x0/0x3e @ 1
[   12.978002] initcall mcheck_debugfs_init+0x0/0x3e returned 0 after 16 usecs
[   12.985171] calling  severities_debugfs_init+0x0/0x3e @ 1
[   12.990735] initcall severities_debugfs_init+0x0/0x3e returned 0 after 5 usecs
[   12.998173] calling  threshold_init_device+0x0/0x44 @ 1
[   13.004081] initcall threshold_init_device+0x0/0x44 returned 0 after 518 usecs
[   13.011519] calling  hpet_insert_resource+0x0/0x1e @ 1
[   13.016810] initcall hpet_insert_resource+0x0/0x1e returned 0 after 0 usecs
[   13.023981] calling  update_mp_table+0x0/0x527 @ 1
[   13.028912] initcall update_mp_table+0x0/0x527 returned 0 after 0 usecs
[   13.035725] calling  lapic_insert_resource+0x0/0x46 @ 1
[   13.041101] initcall lapic_insert_resource+0x0/0x46 returned 0 after 0 usecs
[   13.048360] calling  io_apic_bug_finalize+0x0/0x1a @ 1
[   13.053648] initcall io_apic_bug_finalize+0x0/0x1a returned 0 after 0 usecs
[   13.060819] calling  print_ICs+0x0/0x437 @ 1
[   13.065213] initcall print_ICs+0x0/0x437 returned 0 after 0 usecs
[   13.071489] calling  print_ipi_mode+0x0/0x2e @ 1
[   13.076240] Using IPI No-Shortcut mode
[   13.080098] initcall print_ipi_mode+0x0/0x2e returned 0 after 3769 usecs
[   13.087000] calling  pat_memtype_list_init+0x0/0x37 @ 1
[   13.092384] initcall pat_memtype_list_init+0x0/0x37 returned 0 after 6 usecs
[   13.099644] calling  init_oops_id+0x0/0x50 @ 1
[   13.104219] initcall init_oops_id+0x0/0x50 returned 0 after 1 usecs
[   13.110674] calling  pm_qos_power_init+0x0/0x5d @ 1
[   13.116048] initcall pm_qos_power_init+0x0/0x5d returned 0 after 345 usecs
[   13.123136] calling  pm_debugfs_init+0x0/0x2a @ 1
[   13.127991] initcall pm_debugfs_init+0x0/0x2a returned 0 after 6 usecs
[   13.134715] calling  printk_late_init+0x0/0x38 @ 1
[   13.139651] initcall printk_late_init+0x0/0x38 returned 0 after 0 usecs
[   13.146468] calling  tk_debug_sleep_time_init+0x0/0x41 @ 1
[   13.152125] initcall tk_debug_sleep_time_init+0x0/0x41 returned 0 after 6 usecs
[   13.159656] calling  debugfs_kprobe_init+0x0/0xa6 @ 1
[   13.164884] initcall debugfs_kprobe_init+0x0/0xa6 returned 0 after 23 usecs
[   13.172058] calling  taskstats_init+0x0/0x6e @ 1
[   13.176832] registered taskstats version 1
[   13.181051] initcall taskstats_init+0x0/0x6e returned 0 after 4139 usecs
[   13.187957] calling  clear_boot_tracer+0x0/0x2d @ 1
[   13.192981] initcall clear_boot_tracer+0x0/0x2d returned 0 after 0 usecs
[   13.199887] calling  kdb_ftrace_register+0x0/0x35 @ 1
[   13.205093] initcall kdb_ftrace_register+0x0/0x35 returned 0 after 3 usecs
[   13.212179] calling  fault_around_debugfs+0x0/0x3a @ 1
[   13.217478] initcall fault_around_debugfs+0x0/0x3a returned 0 after 6 usecs
[   13.224653] calling  max_swapfiles_check+0x0/0x7 @ 1
[   13.229767] initcall max_swapfiles_check+0x0/0x7 returned 0 after 0 usecs
[   13.236762] calling  set_recommended_min_free_kbytes+0x0/0xb0 @ 1
[   13.243039] initcall set_recommended_min_free_kbytes+0x0/0xb0 returned 0 after 1 usecs
[   13.251195] calling  kmemleak_late_init+0x0/0x8e @ 1
[   13.256371] kmemleak: Kernel memory leak detector initialized
[   13.256373] kmemleak: Automatic memory scanning thread started
[   13.268292] initcall kmemleak_late_init+0x0/0x8e returned 0 after 11713 usecs
[   13.275646] calling  check_early_ioremap_leak+0x0/0x5d @ 1
[   13.281298] initcall check_early_ioremap_leak+0x0/0x5d returned 0 after 0 usecs
[   13.288830] calling  init_root_keyring+0x0/0xa @ 1
[   13.293788] initcall init_root_keyring+0x0/0xa returned 0 after 23 usecs
[   13.300697] calling  fail_make_request_debugfs+0x0/0x23 @ 1
[   13.306480] initcall fail_make_request_debugfs+0x0/0x23 returned 0 after 42 usecs
[   13.314191] calling  prandom_reseed+0x0/0x3e @ 1
[   13.318960] initcall prandom_reseed+0x0/0x3e returned 0 after 12 usecs
[   13.325690] calling  pci_resource_alignment_sysfs_init+0x0/0x14 @ 1
[   13.332154] initcall pci_resource_alignment_sysfs_init+0x0/0x14 returned 0 after 7 usecs
[   13.340492] calling  pci_sysfs_init+0x0/0x44 @ 1
[   13.346570] initcall pci_sysfs_init+0x0/0x44 returned 0 after 1293 usecs
[   13.353477] calling  boot_wait_for_devices+0x0/0x28 @ 1
[   13.358860] initcall boot_wait_for_devices+0x0/0x28 returned -19 after 0 usecs
[   13.366302] calling  deferred_probe_initcall+0x0/0x80 @ 1
[   13.371954] initcall deferred_probe_initcall+0x0/0x80 returned 0 after 87 usecs
[   13.379487] calling  late_resume_init+0x0/0x190 @ 1
[   13.384507]   Magic number: 6:989:792
[   13.388341] tty ptyr0: hash matches
[   13.391984] initcall late_resume_init+0x0/0x190 returned 0 after 7307 usecs
[   13.399158] calling  firmware_memmap_init+0x0/0x29 @ 1
[   13.404763] initcall firmware_memmap_init+0x0/0x29 returned 0 after 308 usecs
[   13.412116] calling  pci_mmcfg_late_insert_resources+0x0/0x43 @ 1
[   13.418389] initcall pci_mmcfg_late_insert_resources+0x0/0x43 returned 0 after 0 usecs
[   13.426545] calling  tcp_congestion_default+0x0/0xf @ 1
[   13.431927] initcall tcp_congestion_default+0x0/0xf returned 0 after 0 usecs
[   13.439189] calling  ip_auto_config+0x0/0xeb7 @ 1
[   13.444045] initcall ip_auto_config+0x0/0xeb7 returned 0 after 8 usecs
[   13.450770] calling  software_resume+0x0/0x280 @ 1
[   13.455705] PM: Hibernation image not present or could not be loaded.
[   13.462335] initcall software_resume+0x0/0x280 returned -2 after 6480 usecs
[   13.469732] async_waiting @ 1
[   13.472800] async_continuing @ 1 after 0 usec
[   13.477560] Freeing unused kernel memory: 940K (c185e000 - c1949000)
[   13.484151] Write protecting the kernel text: 6272k
[   13.489222] Write protecting the kernel read-only data: 1856k
[   13.495139] NX-protecting the kernel data: 3968k
[   13.621399] mv (1274) used greatest stack depth: 6668 bytes left
[   13.646077] load_xen_module (1292) used greatest stack depth: 6272 bytes left
[   13.656401] udevd (1296): /proc/1296/oom_adj is deprecated, please use /proc/1296/oom_score_adj instead.
[   13.692556] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 1335
[   13.699827] calling  acpi_wmi_init+0x0/0x1000 [wm715042] initcall acpi_wmi_init+0x0/0x1000 [wmi] returned 0 after 3656 usecs
[   13.738183] calling  skge_init_module+0x0/0x1000 [skge] @ 1421
[   13.744378] skge: 1.14 addr 0xfebfc000 irq 4 chip Yukon reubsystem initialized
[   13.760892] initcall init_scsi+0x0/0x90 [scsi_mod] returned 0 after 15127 usecs
[   13.774737] initcall skge_init_module+0x0/0x1000 [skge] returned 0 after 29852 usecs
[   13.775097] calling  rtl8169_pci_driver_init+0x0/0x1000 [r8169] @ 1444
[   13.775162] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   13.775221] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[   13.775467] r8169 0000:02:00.0: irq 26 for MSI/MSI-X
[   13.776823] r8169 0000:02:00.0 eth1: RTL8168c/8111c at 0xf8412000, 00:25:11:18:a1:2e, XID 1c4000c0 IRQ 26
[   13.776825] r8169 0000:02:00.0 eth1: jumbo features [frames: 6128 bytes, tx checksumming: ko]
[   13.776971] initcall rtl8169_pci_driver_init+0x0/0x1000 [r8169] returned 0 after 1828 usecs
[   13.836808] calling  drm_fb_helper_modinit+0x0/0x1000 [drm_kms_helper] @ 1409
[   13.844331] modprobe (1444) used greatest stack depth: 6132 bytes left
[   13.852630] calling  ata_init+0x0/0x295 [libata] @ 1412
[   13.861497] libata version 3.00 loaded.
[   13.865457] initcall ata_init+0x0/0x295 [libata] returned 0 after 7264 usecs
[  _generic_pci_driver_init+0x0/0x1000 [ata_generic] returned 0 after 231 usecs
[   13.892300] calling  ahci_pci_driver_init+0x0/0x1000 [ahci] @ 1412
[   13.898739] ahci 0000:00:11.0: version 3.0
[   13.903245] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[   13.911671] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[   13.924310] ip (1881) used greatest stack depth: 6092 bytes left
[   13.928177] scsi0 : ahci
[   13.934167] scsi1 : ahci
[   13.939830] scsi2 : ahci
[   13.943867] scsi3 : ahci
[   13.947777] scsi4 : ahci
[   13.949087] initcall drm_fb_helper_modinit+0x0/0x1000 [drm_kms_helper] returned 0 after 102550 usecs
[   13.961787] calling  ttm_init+0x0/0x1000 [ttm] @ 1409
[   13.962756] scsi5 : ahci
[   13.963616] ata1: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffd00 irq 15
[   13.963618] ata2: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffd80 irq 15
[   13.963621] ata3: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffe00 irq 15
[   13.963623] ata4: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffe80 irq 15
[   13.963626] ata5: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6fff00 irq 15
[   13.963629] ata6: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6fff80 irq 15
[   13.963867] ahci 0000:03:00.0: JMB361 has only one port
[   13.963881] ahci 0000:03:00.0: forcing port_map 0x3 -> 0x1
[   13.963985] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x1 impl SATA mode
[   13.963987] ahci 0000:03:00.0: flags: 64bit ncq led clo pmp pio 
[   13.974866] scsi6 : ahci
[   13.975894] scsi7 : ahci
[   13.976737] ata7: SATA max UDMA/133 abar m8192@0xfeafe000 port 0xfeafe100 irq 11
[   13.976738] ata8: DUMMY
[   13.976897] initcall ahci_pci_driver_init+0x0/0x1000 [ahci] returned 0 after 76466 usecs
[   14.064619] initcall ttm_init+0x0/0x1000 [ttm] returned 0 after 178 usecs
[   14.072073] calling  fb_console_init+0x0/0x1000 [fbcon] @ 2176
[   14.078404] initcall fb_console_init+0x0/0x1000 [fbcon] returned 0 after 234 usecs
[   14.088771] calling  radeon_init+0x0/0xb0 [radeon] @ 1409
[   14.094329] [drm] radeon kernel modesetting enabled.
[   14.100716] [drm] initializing kernel modesetting (RS780 0x1002:0x9610 0x1019:0x2119).
[   14.108898] [drm] register mmio base: 0xFE8F0000
[   14.113651] [drm] register mmio size: 65536
[   14.119203] ATOM BIOS: 113
[   14.122106] radeon 0000:01:05.0: VRAM: 256M 0x00000000C0000000 - 0x00000000CFFFFFFF (256M used)
[   14.131060] radeon 0000:01:05.0: GTT: 512M 0x00000000A0000000 - 0x00000000BFFFFFFF
[   14.138853] [drm] Detected VRAM RAM=256M, BAR=256M
[   14.143783] [drm] RAM width 32bits DDR
[   14.148030] [TTM] Zone  kernel: Available graphics memory: 432674 kiB
[   14.154765] [TTM] Zone highmem: Available graphics memory: 1941382 kiB
[   14.161485] [TTM] Initializing pool allocator
[   14.166069] [TTM] Initializing DMA pool allocator
[   14.171125] [drm] radeon: 256M of VRAM memory ready
[   14.176158] [drm] radeon: 512M of GTT memory ready.
[   14.181370] [drm] Loading RS780 Microcode
[   14.186023] [drm] radeon: power management initialized
[   14.191320] [drm] GART: num cpu pages 131072, num gpu pages 131072
[   14.208700] [drm] PCIE GART of 512M enabled (table at 0x00000000C0040000).
[   14.215892] radeon 0000:01:05.0: WB enabled
[ver on ring 0 use gpu addr 0x00000000a0000c00 and cpu addr 0xffc89c00
[   14.230590] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   14.237397] [drm] Driver supports precise vblank timestamp query.
[   14.243710] [drm] radeon: irq initialized.
[   14.253092] random: nonblocking pool is initialized
[   14.276550] ata6: SATA link down (SStatus 0 SControl 300)
[   14.282ATA link down (SStatus 0 SControl 300)
[   14.282309] ata5: SATA link down (SStatus 0 SControl 300)
[   14.282549] [drm] ring test on 0 succeeded in 0 usecs
[   14.282832] [drm] ib test on ring 0 succeeded in 0 usecs
[   14.285971] [drm] Radeon Display Connectors
[   14.285972] [drm] Connector 0:
[   14.285972] [drm]   VGA-1
[   14.285973] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[   14.285973] [drm]   Encoders:
[   14.285974] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[   14.285974] [drm] Connector 1:
[   14.285975] [drm]   HDMI-A-1
[   14.285975] [drm]   HPD3
[   14.285976] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[   14.285976] [drm]   Encoders:
[   14.285976] [drm]     DFP3: INTERNAL_KLDSCP_LVTMA
[   14.353838] ata3: SATA link down (SStatus 0 SControl 300)
[   14.356123] radeon 0000:01:05.0: No connectors reported connected with modes
[   14.356149] [drm] Cannot find any crtc or sizes - going 1024x768
[   14.373053] ata4: SATA link down (SStatus 0 SControl 300)
[   14.381061] [drm] fb mappable at 0xD0141000
[   14.385371] [drm] vram apper at 0xD0000000
[   14.389591] [drm] size 3145728
[   14.392736] [drm] fb depth is 24
[   14.396062] [drm]    pitch is 4096
[   14.400196] fbcon: radeondrmfb (fb0) is primary device
[   14.418905] Console: switching to colour frame buffer device 128x48
[   14.427344] ata1: softreset failed (device not ready)
[   14.427369] ata1: applying PMP SRST workaround and retrying
[   14.458455] radeon 0000:01:05.0: fb0: radeondrmfb frame buffer device
[   14.465089] radeon 0000:01:05.0: registered panic notifier
[   14.475699] [drm] Initialized radeon 2.39.0 20080528 for 0000:01:05.0 on minor 0
[   14.483508] initcall radeon_init+0x0/0xb0 [radeon] returned 0 after 380392 usecs
[   14.491524] modprobe (1409) used greatest stack depth: 5436 bytes left
[   14.531261] ata2: softreset failed (device not ready)
[   14.536467] ata2: applying PMP SRST workaround and retrying
[   14.582259] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[   14.697252] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[   19.583468] ata1.00: qc timeout (cmd 0xec)
[   19.587699] ata1.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[   19.698344] ata2.00: qc timeout (cmd 0xec)
[   19.702581] ata2.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[   20.053188] ata1: softreset failed (device not ready)
[   20.058397] ata1: applying PMP SRST workaround and retrying
[   20.167911] ata2: softreset failed (device not ready)
[   20.173127] ata2: applying PMP SRST workaround and retrying
[   20.218913] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[   20.333943] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[   21.132511] irq 18: nobody cared (try booting with the "irqpoll" option)
[   21.139409] CPU: 3 PID: 0 Comm: swapper/3 Not tainted 3.16.0-rc5upstream-00060-g8e655983b #1
[   21.148094] Hardware name: ECS A780GM-A Ultra/A780GM-A Ultra, BIOS 080015  04/01/2010
[   21.156152]  ef29fe1c f02bff50 c1618506 ef29fdc0 f02bff70 c10e1627 c1741d0c 00000012
[   21.164190]  c18345e0 00000001 ef29fdc0 00000000 f02bff94 c10e18a2 00000012 d5d864e1
[   21.172226]  00000033 f02cfe40 ef29fdc0 00000000 f74573c0 f02bffd0 c10df42e c10df42e
[   21.180261] Call Trace:
[   21.182777]  [<c1618506>] dump_stack+0x48/0x60
[   21.187350]  [<c10e1627>] __report_bad_irq+0x27/0xc0
[   21.192459]  [<c10e18a2>] note_interrupt+0x1e2/0x230
[   21.197568]  [<c10df42e>] handle_irq_event_percpu+0x9e/0x1c0
[   21.203391]  [<c10df42e>] ? handle_irq_event_percpu+0x9e/0x1c0
[   21.209393]  [<c10df587>] handle_irq_event+0x37/0x60
[   21.214500]  [<c10e2028>] handle_fasteoi_irq+0x58/0xf0
[   21.219788]  [<c10e1fd0>] ? handle_percpu_irq+0x50/0x50
[   21.225165]  [<c1046cfa>] handle_irq+0x9a/0xd0
[   21.229734]  <IRQ>  [<c104618d>] do_IRQ+0x3d/0xd0
[   21.234590]  [<c1074b56>] ? lapic_next_event+0x16/0x20
[   21.239881]  [<c10f107a>] ? clockevents_program_event+0xca/0x190
[   21.246062]  [<c161d96c>] common_interrupt+0x2c/0x34
[   21.251171]  [<c1081a65>] ? native_safe_halt+0x5/0x10
[   21.256369]  [<c104e457>] default_idle+0x17/0xb0
[   21.261119]  [<c104e55f>] amd_e400_idle+0x6f/0xf0
[   21.265958]  [<c104dd79>] arch_cpu_idle+0x9/0x10
[   21.270710]  [<c10cf957>] cpu_startup_entry+0x247/0x3a0
[   21.276087]  [<c1073c7c>] start_secondary+0x18c/0x200
[   21.281284] handlers:
[   21.283619] [<c1471340>] usb_hcd_irq
[   21.287302] [<c1471340>] usb_hcd_irq
[   21.290986] [<c1471340>] usb_hcd_irq
[   21.294668] Disabling IRQ #18
[   30.215459] ata1.00: qc timeout (cmd 0xec)
[   30.219685] ata1.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[   30.2259 speed to 1.5 Gbps
[   30.330480] ata2.00: qc timeout (cmd 0xec)
[   30.334706] ata2.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[   30.3409[   30.689984] ata1: softreset failed (device not ready)
[   30.695184] ata1: applying PMP SRST workaround and retrying
[   30.805876] ata2: softreset failed (device not ready)
[   30.811079] ata2: applying PMP SRST workaround and retrying
[   30.855004] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
[   30.970916] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 310)

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

* Re: [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms
  2014-07-14 17:26 ` Konrad Rzeszutek Wilk
@ 2014-07-14 19:41   ` Konrad Rzeszutek Wilk
  2014-07-15 15:27     ` Jiang Liu
  0 siblings, 1 reply; 25+ messages in thread
From: Konrad Rzeszutek Wilk @ 2014-07-14 19:41 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, x86, linux-kernel, linux-pci, linux-acpi

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

On Mon, Jul 14, 2014 at 01:26:42PM -0400, Konrad Rzeszutek Wilk wrote:
> On Wed, Jun 25, 2014 at 04:40:31PM +0800, Jiang Liu wrote:
> > This patch set enhances IOAPIC core and ACPI drivers to support IOAPIC
> > hotplug on x86 platforms. It's based on tip/x86/apic.
> > 
> > You may pull it from 
> > https://github.com/jiangliu/linux.git ioapic/hotplug_v3
> 
> With this patchset (on top of 3.16-rc5) my USB driver gets notified
> it has interrupts but it thinks it does not have to acknowledge any.
> I can only reproduce this under a 32-bit arch so far.
> 
> Please see the good.log and the bad.log 

tglx asked for apic=debug on the line, so here they are again with
those parameters.

Please note that the 'good.log' this time is
 3.16-rc6 + tip/master + tip/x86/apic

And 'bad.log' is:

 3.16-rc6 + tip/master + tip/x86/apic + ioapic/hotplug_v3


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: good.log --]
[-- Type: text/plain; charset=utf-8, Size: 156759 bytes --]

Trying 192.168.102.15...
Connected to maxsrv2.
Escape character is '^]'.
Probing EDD (edd=off to disable)... ok
early console in decompress_kernel

Decompressing Linux... Parsing ELF... No relocation needed... done.
Booting the kernel.
[    0.000000] Initializing cgroup subsys cpuset
[    0.0000inux version 3.16.0-rc5upstream-01651-g03b9189 (konrad@build-external.dumpdata.com) (gcc version 4.4.4 20100503 (Red Hat 4.4.4-2) (GCC) ) #1 SMP Mon Jul 14 14:45:24 EDT 2014
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f3ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f400-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e6000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfeaffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cfeb0000-0x00000000cfebdfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000cfebe000-0x00000000cfedffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cfee0000-0x00000000cfefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff700000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fffffff] usable
[    0.000000] Early serial console at I/O port 0xe400 (options '115200n8')
[    0.000000] bootconsole [uart0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.5 present.
[    0.000000] DMI: ECS A780GM-A Ultra/A780GM-A Ultra, BIOS 080015  04/01/2010
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x120000 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFF0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000130000000 aka 4864M
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
[    0.000000] Scan for SMP in [mem 0x00000000-0x000003ff]
[    0.000000] Scan for SMP in [mem 0x0009fc00-0x0009ffff]
[    0.000000] Scan for SMP in [mem 0x000f0000-0x000fffff]
[    0.000000] found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [c00ff780]
[    0.000000]   mpc: e5e70-e5ffc
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] initial memory mapped: [mem 0x00000000-0x01ffffff]
[  init_memory_mapping: [mem 0x37800000-0x379fffff]
[    0.000000]  [mem 0x37800000-0x379fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x34000000-0x377fffff]
[    0.000000]  [mem 0x34000000-0x377fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x33ffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x33ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x37a00000-0x37bfdfff]
[    0.000000]  [mem 0x37a00000-0x37bfdfff] page 4k
[    0.000000] BRK [0x01a3c000, 0x01a3cfff] PGTABLE
[    0.000000] RAMDISK: [mem 0x7aed5000-0x7fffefff]
[    0.000000] Allocated new RAMDISK: [mem 0x32ad4000-0x37bfdd60]
[    0.000000] Move RAMDISK from [mem 0x7aed5000-0x7fffed60] to [mem 0x32ad4000-0x37bfdd60]
[    0.000000] ACPI: Early table ch 0.000000] ACPI: RSDT 0xCFEB0000 000040 (v01 040110 RSDT1316 20100401 MSFT 00000097)
[    0.000000] ACPI: FACP 0xCFEB0200 000084 (v01 040110 FACP1316 20100401 MSFT 00000097)
[    0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20140424/tbfadt-649)
[    0.000000] ACPI: DSDT 0xCFEB0450 00A65F (v01 1AAAA  1AAAA000 00000000 INTL 20051117)
[    0.000000] ACPI: FACS 0xCFEBE000 000040
[    0.000000] ACPI: APIC 0xCFEB0390 00007C (v01 040110 APIC1316 20100401 MSFT 00000097)
[    0.000000] ACPI: MCFG 0xCFEB0410 00003C (v01 040110 OEMMCFG  20100401 MSFT 00000097)
[    0.000000] ACPI: OEMB 0xCFEBE040 000072 (v01 040110 OEMB1316 20100401 MSFT 00000097)
[    0.000000] ACPI: SRAT 0xCFEBAAB0 0000E8 (v03 AMD    FAM_F_10 00000002 AMD  00000001)
[    0.000000] ACPI: HPET 0xCFEBABA0 000038 (v01 040110 OEMHPET  20100401 MSFT 00000097)
[    0.000000] ACPI: SSDT 0xCFEBABE0 00088C (v01 A M I  POWERNOW 00000001 AMD  00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] mapped APIC to         ffffb000 (        fee00000)
[    0.000000] 3716MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] BRK [0x01a3d000, 0x01a3dfff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   Normal   [mem 0x01000000-0x37bfdfff]
[    0.000000]   HighMem  [mem 0x37bfe000-0x1fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0xcfeaffff]
[    0.000000]   node   0: [mem 0x00000000-0x1fffffff]
[    0.000000] On node 0 totalpages: 982606
[    0.000000] free_area_init_node: node 0, pgdat c1849200, node_mem_map f06d4020
[    0.000000]   DMA zone: 32 pages used for    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 224254 pages, LIFO batch:31
[    0.000000]   HighMem zone: 7433 pages used for memmap
[    0.000000]   HighMem zone: 754354 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address APIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 00, APIC ID 4, APIC INT 02
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] Int: type 0, pol 3, trig 3, bus 00, IRQ 09, APIC ID 4, APIC INT 09
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 01, APIC ID 4, APIC INT 01
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 03, APIC ID 4, APIC INT 03
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 04, APIC ID 4, APIC INT 04
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 05, APIC ID 4, APIC INT 05
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 06, APIC ID 4, APIC INT 06
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 07, APIC ID 4, APIC INT 07
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 08, APIC ID 4, APIC INT 08
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0a, APIC ID 4, APIC INT 0a
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0b, APIC ID 4, APIC INT 0b
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0c, APIC ID 4, APIC INT 0c
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0d, APIC ID 4, APIC INT 0d
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0e, APIC ID 4, APIC INT 0e
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0f, APIC ID 4, APIC INT 0f
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8300 base: 0xfed00000
[    0.000000] smpboot: Allowing 6 CPUs, 2 hotplug CPUs
[    0.000000] mapped IOAPIC to ffffa000 (fec00000)
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000e5fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e6000-0x000fffff]
[    0.000000] e820: [mem 0xcff00000-0xff6fffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:6 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @f066e000 s35136 r0 d22208 u57344
[    0.000000] pcpu-alloc: s35136 r0 d22208 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 980822
[    0.000000] Kernel command line: initrd=initramfs.cpio.gz apic=debug initcall_debug loglevel=10 nofb selinux=0 console=uart8250,io,0xe400,115200n8 BOOT_IMAGE=vmlinuz 
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (00037bfe:00120000)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 3798680K/3930424K available (6264K ke000]     fixmap  : 0xfff15000 - 0xfffff000   ( 936 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc185e000 - 0xc194a000   ( 944 kB)
[    0.000000]       .data : 0xc161e5a7 - 0xc185cb80   (2297 kB)
[    0.000000]       .text : 0xc1000000 - 0xc161e5a7   (6265 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=6.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6
[    0.000000] NR_IRQS:2304 nr_irqs:472 0
[    0.000000] CPU 0 irqstacks, hard=f0008000 soft=f000a000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3000.037 MHz processor
[    0.000025] Calibrating delay loop (skipped), value calculated using timer frequency.. 6000.07 BogoMIPS (lpj=3000037)
[    0.011164] pid_max: default: 32768 minimum: 301
[    0.016060] ACPI: Core revision 20140424
[    0.091418] ACPI: All ACPI Tables successfully acquired
[    0.103252] Security Framework initialized
[    0.107549] SELinux:  Disabled at boot.
[    0.111758] Mount-cache hash tablehe hash table entries: 2048 (order: 1, 8192 bytes)
[    0.127259] Initializing cgroup subsys freezer
[    0.131990] CPU: Physical Processor ID: 0
[    0.136195] CPU: Processor Core ID: 0
[    0.140036] mce: CPU supports 6 MCE banks
[    0.144252] LVT offset 0 assigned for vector 0xf9
[    0.149191] process: using AMD E400 aware idle routine
[    0.154583] Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
[    0.154583] Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
[    0.154583] tlb_flushall_shift: 6
[    0.170685] Freeing SMP alternatives memory: 28K (c194a000 - c1951000)
[    0.178541] Getting VERSION: 80050010
[    0.182385] Getting VERSION: 80050010
[    0.186219] Getting ID: 0
[    0.188969] Getting ID: f000000
[    0.192263] Getting LVT0: 700
[    0.195371] Getting LVT1: 400
[    0.198486] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.204154] enabled ExtINT on CPU#0
[    0.208001] ESR value before enabling vector: 0x00000004  after: 0x00000000
[    0.215307] ENABLING IO-APIC IRQs
[    0.218794] init IO_APIC IRQs
[    0.221899]  apic 4 pin 0 not connected
[    0.225924] IOAPIC[0]: Set routing entry (4-1 -> 0x31 -> IRQ 1 Mode:0 Active:0 Dest:1)
[    0.234244] IOAPIC[0]: Set routing entry (4-2 -> 0x30 -> IRQ 0 Mode:0 Active:0 Dest:1)
[    0.242552] IOAPIC[0]: Set routing entry (4-3 -> 0x33 -> IRQ 3 Mode:0 Active:0 Dest:1)
[    0.250860] IOAPIC[0]: Set routing entry (4-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:1)
[    0.259177] IOAPIC[0]: Set routing entry (4-5 -> 0x35 -> IRQ 5 Mode:0 Active:0 Dest:1)
[    0.267479] IOAPIC[0]: Set routing entry (4-6 -> 0x36 -> IRQ 6 Mode:0 Active:0 Dest:1)
[    0.275797] IOAPIC[0]: Set routing entry (4-7 -> 0x37 -> IRQ 7 Mode:0 Active:0 Dest:1)
[    0.284112] IOAPIC[0]: Set routing entry (4-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:1)
[    0.292420] IOAPIC[0]: Set routing entry (4-9 -> 0x39 -> IRQ 9 Mode:1 Active:1 Dest:1)
[    0.300733] IOAPIC[0]: Set routing entry (4-10 -> 0x3a -> IRQ 10 Mode:0 Active:0 Dest:1)
[    0.309217] IOAPIC[0]: Set routing entry (4-11 -> 0x3b -> IRQ 11 Mode:0 Active:0 Dest:1)
[    0.317700] IOAPIC[0]: Set routing entry (4-12 -> 0x3c -> IRQ 12 Mode:0 Active:0 Dest:1)
[    0.326187] IOAPIC[0]: Set routing entry (4-13 -> 0x3d -> IRQ 13 Mode:0 Active:0 Dest:1)
[    0.334676] IOAPIC[0]: Set routing entry (4-14 -> 0x3e -> IRQ 14 Mode:0 Active:0 Dest:1)
[    0.343167] IOAPIC[0]: Set routing entry (4-15 -> 0x3f -> IRQ 15 Mode:0 Active:0 Dest:1)
[    0.351656]  apic 4 pin 16 not connected
[    0.355770]  apic 4 pin 17 not connected
[    0.359880]  apic 4 pin 18 not connected
[    0.363989]  apic 4 pin 19 not connected
[    0.368091]  apic 4 pin 20 not connected
[    0.372199]  apic 4 pin 21 not connected
[    0.376306]  apic 4 pin 22 not connected
[    0.380416]  apic 4 pin 23 not connected
[    0.384649] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.400941] smpboot: CPU0: AMD Phenom(tm) II X4 940 Processor (fam: 10, model: 04, stepping: 02)
[    0.410177] Using local [    0.520486] ... lapic delta = 1250027
[    0.524324] ... PM-Timer delta = 357950
[    0.528336] ... PM-Timer result ok
[    0.531898] ..... delta 1250027
[    0.535187] ..... mult: 53688250
[    0.538567] ..... calibration result: 200004
[    0.543037] ..... CPU clock speed is 3000.0065 MHz.
[    0.548143] ..... host bus clock speed is 200.0004 MHz.
[    0.553634] calling  xen_init_spinlocks_jump+0x0/0x23 @ 1
[    0.559302] initcall xen_init_spinlocks_jump+0x0/0x23 returned 0 after 0 usecs
[    0.566872] calling  set_real_mode_permissions+0x0/0x5d @ 1
[    0.572716] initcall set_real_mode_permissions+0x0/0x5d returned 0 after 0 usecs
[    0.580477] calling  trace_init_perf_perm_irq_work_exit+0x0/0x11 @ 1
[    0.587146] initcall trace_init_perf_perm_irq_work_exit+0x0/0x11 returned 0 after 0 usecs
[    0.595724] calling  trace_init_flags_sys_exit+0x0/0xe @ 1
[    0.601478] initcall trace_init_flags_sys_exit+0x0/0xe returned 0 after 0 usecs
[    0.609145] calling  trace_init_flags_sys_enter+0x0/0xe @ 1
[    0.614985] initcall trace_init_flags_sys_enter+0x0/0xe returned 0 after 0 usecs
[    0.622744] calling  init_hw_perf_events+0x0/0x52b @ 1
[    0.628127] Performance Events: AMD PMU driver.
[    0.632888] ... version:                0
[    0.637091] ... bit width:              48
[    0.641383] ... generic registers:      4
[    0.645585] ... value mask:             0000ffffffffffff
[    0.651149] ... max period:             00007fffffffffff
[    0.656713] ... fixed-purpose events:   0
[    0.660917] ... event mask:             000000000000000f
[    0.666524] initcall init_hw_perf_events+0x0/0x52b returned 0 after 9765 usecs
[    0.674110] calling  register_trigger_all_cpu_backtrace+0x0/0x13 @ 1
[    0.680784] initcall register_trigger_all_cpu_backtrace+0x0/0x13 returned 0 after 0 usecs
[    0.689368] calling  kvm_spinlock_init_jump+0x0/0x37 @ 1
[    0.694934] initcall kvm_spinlock_init_jump+0x0/0x37 returned 0 after 0 usecs
[    0.702427] calling  spawn_ksoftirqd+0x0/0x23 @ 1
[    0.707392] initcall spawn_ksoftirqd+0x0/0x23 returned 0 after 0 usecs
[    0.714236] calling  init_workqueues+0x0/0x3e6 @ 1
[    0.719662] initcall init_workqueues+0x0/0x3e6 returned 0 after 976 usecs
[    0.726790] calling  migration_init+0x0/0x5b @ 1
[    0.731628] initcall migration_init+0x0/0x5b returned 0 after 0 usecs
[    0.738388] calling  check_cpu_stall_init+0x0/0x16 @ 1
[    0.743768] initcall check_cpu_stall_init+0x0/0x16 returned 0 after 0 usecs
[    0.751076] calling  rcu_scheduler_really_started+0x0/0x11 @ 1
[    0.757195] initcall rcu_scheduler_really_started+0x0/0x11 returned 0 after 0 usecs
[    0.765226] calling  rcu_spawn_gp_kthread+0x0/0x87 @ 1
[    0.770668] initcall rcu_spawn_gp_kthread+0x0/0x87 returned 0 after 0 usecs
[    0.777974] calling  cpu_stop_init+0x0/0x5d @ 1
[    0.782753] initcall cpu_stop_init+0x0/0x5d returned 0 after 0 usecs
[    0.789424] calling  relay_init+0x0/0x11 @ 1
[    0.793898] initcall relay_init+0x0/0x11 returned 0 after 0 usecs
[    0.800296] calling  tracer_alloc_buffers+0x0/0x213 @ 1
[    0.805868] initcall tracer_alloc_buffers+0x0/0x213 returned 0 after 0 usecs
[    0.813263] calling  init_events+0x0/0x5f @ 1
[    0.817833] initcall init_events+0x0/0x5f returned 0 after 0 usecs
[    0.824308] calling  init_trace_printk+0x0/0xf @ 1
[    0.829323] initcall init_trace_printk+0x0/0xf returned 0 after 0 usecs
[    0.836261] calling  event_trace_memsetup+0x0/0x5a @ 1
[    0.841689] initcall event_trace_memsetup+0x0/0x5a returned 0 after 0 usecs
[    0.849001] calling  jump_label_init_module+0x0/0xf @ 1
[    0.854484] initcall jump_label_init_module+0x0/0xf returned 0 after 0 usecs
[    0.861877] calling  hashlib_init+0x0/0x11 @ 1
[    0.866535] initcall hashlib_init+0x0/0x11 returned 0 after 0 usecs
[    0.873118] calling  balloon_clear+0x0/0x3b @ 1
[    0.877869] initcall balloon_clear+0x0/0x3b returned 0 after 0 usecs
[    0.884540] calling  rand_initialize+0x0/0x30 @ 1
[    0.889506] initcall rand_initialize+0x0/0x30 returned 0 after 0 usecs
[    0.896352] calling  mce_amd_init+0x0/0x134 @ 1
[    0.901098] MCE: In-kernel MCE decoding enabled.
[    0.905938] initcall mce_amd_init+0x0/0x134 returned 0 after 976 usecs
[    0.912970] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.923135] CPU 1 irqstacks, hard=f02c2000 soft=ef820000
[    0.928713] x86: Booting SMP configuration:
[    0.933098] .... node  #0, CPUs:      #1
[    0.947667] Initializing CPU#1
[    0.948033] masked ExtINT on CPU#1
[    0.950211] process: System has AMD C1E enabled
[    0.950752] CPU 2 irqstacks, hard=f028a000 soft=f028c000
[    0.961303]  #2
[    0.961303] Initializing CPU#2
[    0.961752] masked ExtINT on CPU#2
[    0.963938] process: Switch to broadcast mode on CPU2
[    0.964466] CPU 3 irqstacks, hard=f02be000 soft=f0200000
[    0.975017]  #3
[    0.975017] Initializing CPU#3
[    0.975465] masked ExtINT on CPU#3
[    0.977599] x86: Booted up 1 node, 4 CPUs
[    0.977601] smpboot: Total of 4 processors activated (24000.29 BogoMIPS)
[    0.977643] process: Switch to broadcast mode on CPU3
[    1.012014] process: Switch to broadcast mode on CPU1
[    1.022303] process: Switch to broadcast mode on CPU0
[    1.027936] devtmpfs: initialized
[    1.032345] calling  ipc_n0/0x11 returned 0 after 0 usecs
[    1.043427] calling  init_mmap_min_addr+0x0/0x20 @ 1
[    1.048635] initcall init_mmap_min_addr+0x0/0x20 returned 0 after 0 usecs
[    1.055768] calling  init_cpufreq_transition_notifier_list+0x0/0x18 @ 1
[    1.062733] initcall init_cpufreq_transition_notifier_list+0x0/0x18 returned 0 after 0 usecs
[    1.071593] calling  net_ns_init+0x0/0x100 @ 1
[    1.076389] initcall net_ns_init+0x0/0x100 returned 0 after 0 usecs
[    1.083018] calling  e820_mark_nvs_memory+0x0/0x4e @ 1
[    1.088412] PM: Registering ACPI NVS region [mem 0xcfebe000-0xcfedffff] (139264 bytes)
[    1.096800] initcall e820_mark_nvs_memory+0x0/0x4e returned 0 after 976 usecs
[    1.104303] calling  cpufreq_tsc+0x0/0x26 @ 1
[    1.108874] initcall cpufreq_tsc+0x0/0x26 returned 0 after 0 usecs
[    1.115375] calling  reboot_init+0x0/0x1a @ 1
[    1.119956] initcall reboot_init+0x0/0x1a returned 0 after 0 usecs
[    1.126445] calling  init_lapic_sysfs+0x0/0x1b @ 1
[    1.131470] initcall init_lapic_sysfs+0x0/0x1b returned 0 after 0 usecs
[    1.138427] calling  cpu_hotplug_pm_sync_init+0x0/0x29 @ 1
[    1.144194] initcall cpu_hotplug_pm_sync_init+0x0/0x29 returned 0 after 0 usecs
[    1.151876] calling  alloc_frozen_cpus+0x0/0x7 @ 1
[    1.156897] initcall alloc_frozen_cpus+0x0/0x7 returned 0 after 0 usecs
[    1.163850] calling  wq_sysfs_init+0x0/0x11 @ 1
[    1.168745] initcall wq_sysfs_init+0x0/0x11 returned 0 after 0 usecs
[    1.168863] kworker/u12:0 (30) used greatest stack depth: 6980 bytes left
[    1.182547] calling  ksysfs_init+0x0/0x74 @ 1
[    1.187197] initcall ksysfs_init+0x0/0x74 returned 0 after 0 usecs
[    1.193681] calling  pm_init+0x0/0x45 @ 1
[    1.197956] initcall pm_init+0x0/0x45 returned 0 after 0 usecs
[    1.204076] calling  pm_disk_init+0x0/0x14 @ 1
[    1.208773] initcall pm_disk_init+0x0/0x14 returned 0 after 0 usecs
[    1.215361] calling  swsusp_header_init+0x0/0x30 @ 1
[    1.220574] initcall swsusp_header_init+0x0/0x30 returned 0 after 0 usecs
[    1.227721] calling  init_jiffies_clocksource+0x0/0xf @ 1
[    1.233394] initcall init_jiffies_clocksource+0x0/0xf returned 0 after 0 usecs
[    1.240987] calling  cgroup_wq_init+0x0/0x7c @ 1
[    1.245891] initcall cgroup_wq_init+0x0/0x7c returned 0 after 0 usecs
[    1.252656] calling  event_trace_enable+0x0/0x155 @ 1
[    1.258864] initcall event_trace_enable+0x0/0x155 returned 0 after 976 usecs
[    1.266275] calling  init_zero_pfn+0x0/0x14 @ 1
[    1.271023] initcall init_zero_pfn+0x0/0x14 returned 0 after 0 usecs
[    1.277707] calling  fsnotify_init+0x0/0x24 @ 1
[    1.282482] initcall fsnotify_init+0x0/0x24 returned 0 after 0 usecs
[    1.289162] calling  filelock_init+0x0/0x74 @ 1
[    1.293950] initcall filelock_init+0x0/0x74 returned 0 after 0 usecs
[    1.300629] calling  init_misc_binfmt+0x0/0x28 @ 1
[    1.305670] initcall init_misc_binfmt+0x0/0x28 returned 0 after 0 usecs
[    1.312625] calling  init_script_binfmt+0x0/0x13 @ 1
[    1.317836] initcall init_script_binfmt+0x0/0x13 returned 0 after 0 usecs
[    1.324965] calling  init_elf_binfmt+0x0/0x13 @ 1
[    1.329901] initcall init_elf_binfmt+0x0/0x13 returned 0 after 0 usecs
[    1.336754] calling  debugfs_init+0x0/0x4a @ 1
[    1.341438] initcall debugfs_init+0x0/0x4a returned 0 after 0 usecs
[    1.348029] calling  securityfs_init+0x0/0x41 @ 1
[    1.352988] initcall securityfs_init+0x0/0x41 returned 0 after 0 usecs
[    1.359848] calling  prandom_init+0x0/0xaa @ 1
[    1.364518] initcall prandom_init+0x0/0xaa returned 0 after 0 usecs
[    1.371106] calling  virtio_init+0x0/0x30 @ 1
[    1.375768] initcall virtio_init+0x0/0x30 returned 0 after 0 usecs
[    1.382265] calling  early_resume_init+0x0/0x1a0 @ 1
[    1.387486] RTC time: 19:21:52, date: 07/14/14
[    1.392157] initcall early_resume_init+0x0/0x1a0 returned 0 after 976 usecs
[    1.399476] calling  cpufreq_core_init+0x0/0x29 @ 1
[    1.404601] initcall cpufreq_core_init+0x0/0x29 returned 0 after 0 usecs
[    1.411643] calling  cpuidle_init+0x0/0x36 @ 1
[    1.416333] initcall cpuidle_init+0x0/0x36 returned 0 after 0 usecs
[    1.422921] calling  bsp_pm_check_init+0x0/0x11 @ 1
[    1.428041] initcall bsp_pm_check_init+0x0/0x11 returned 0 after 0 usecs
[    1.435073] calling  sock_init+0x0/0x89 @ 1
[    1.439719] initcall sock_init+0x0/0x89 returned 0 after 976 usecs
[    1.446205] calling  net_inuse_init+0x0/0x24 @ 1
[    1.451070] initcall net_inuse_init+0x0/0x24 returned 0 after 0 usecs
[    1.457834] calling  netpoll_init+0x0/0x2e @ 1
[    1.462503] initcall netpoll_init+0x0/0x2e returned 0 after 0 usecs
[    1.469100] calling  netlink_proto_init+0x0/0x1a7 @ 1
[    1.474477] NET: Registered protocol family 16
[    1.479183] initcall netlink_proto_init+0x0/0x1a7 returned 0 after 1953 usecs
[    1.486681] calling  __gnttab_init+0x0/0x30 @ 1
[    1.491440] initcall __gnttab_init+0x0/0x30 returned -19 after 0 usecs
[    1.498331] calling  bdi_class_init+0x0/0x40 @ 1
[    1.503337] initcall bdi_class_init+0x0/0x40 returned 0 after 0 usecs
[    1.510109] calling  mm_sysfs_init+0x0/0x22 @ 1
[    1.514882] initcall mm_sysfs_init+0x0/0x22 returned 0 after 0 usecs
[    1.521556] calling  kobject_uevent_init+0x0/0xf @ 1
[    1.526792] initcall kobject_uevent_init+0x0/0xf returned 0 after 0 usecs
[    1.533933] calling  pcibus_class_init+0x0/0x14 @ 1
[    1.539082] initcall pcibus_class_init+0x0/0x14 returned 0 after 0 usecs
[    1.546129] calling  pci_driver_init+0x0/0xf @ 1
[    1.551066] initcall pci_driver_init+0x0/0xf returned 0 after 0 usecs
[    1.557830] calling  backlight_class_init+0x0/0x92 @ 1
[    1.563265] initcall backlight_class_init+0x0/0x92 returned 0 after 0 usecs
[    1.570589] calling  xenbus_init+0x0/0x24f @ 1
[    1.575259] initcall xenbus_init+0x0/0x24f returned -19 after 0 usecs
[    1.582020] calling  tty_class_init+0x0/0x2f @ 1
[    1.586910] initcall tty_class_init+0x0/0x2f returned 0 after 0 usecs
[    1.593675] calling  vtconsole_class_init+0x0/0xc2 @ 1
[    1.599210] initcall vtconsole_class_init+0x0/0xc2 returned 0 after 0 usecs
[    1.606535] calling  wakeup_sources_debugfs_init+0x0/0x2f @ 1
[    1.612575] initcall wakeup_sources_debugfs_init+0x0/0x2f returned 0 after 0 usecs
[    1.620527] calling  i2c_init+0x0/0x57 @ 1
[    1.624976] initcall i2c_init+0x0/0x57 returned 0 after 0 usecs
[    1.631202] calling  lguest_devices_init+0x0/0x13f @ 1
[    1.636601] initcall lguest_devices_init+0x0/0x13f returned 0 after 0 usecs
[    1.643906] calling  init_ladder+0x0/0xf @ 1
[    1.648390] cpuidle: using governor ladder
[    1.652697] initcall init_ladder+0x0/0xf returned 0 after 976 usecs
[    1.659296] calling  init_menu+0x0/0xf @ 1
[    1.663595] cpuidle: using governor menu
[    1.667714] initcall init_menu+0x0/0xf returned 0 after 976 usecs
[    1.674126] calling  amd_postcore_init+0x0/0x131 @ 1
[    1.679347] node 0 link 0: io port [1000, ffffff]
[    1.684294] TOM: 00000000d0000000 aka 3328M
[    1.688679] Fam 10h mmconf [mem 0xe0000000-0xefffffff]
[    1.694073] node 0 link 0: mmio [a0000, bffff]
[    1.698753] node 0 link 0: mmio [d0000000, efffffff] ==> [d0000000, dfffffff]
[    1.706265] node 0 link 0: mmio [f0000000, fe6fffff]
[    1.711473] node 0 link 0: mmio [fe700000, fe8fffff]
[    1.716690] node 0 link 0: mmio [fe900000, ffefffff]
[    1.721902] TOM2: 0000000130000000 aka 4864M
[    1.726393] bus: [bus 00-07] on node 0 link 0
[    1.730967] bus: 00 [io  0x0000-0xffff]
[    1.734996] bus: 00 [mem 0x000a0000-0x000bffff]
[    1.739745] bus: 00 [mem 0xd0000000-0xdfffffff]
[    1.744491] bus: 00 [mem 0xf0000000-0xffffffff]
[    1.749244] bus: 00 [mem 0x130000000-0xfcffffffff]
[    1.754292] initcall amd_postcore_init+0x0/0x131 returned 0 after 16601 usecs
[    1.761816] calling  boot_params_ksysfs_init+0x0/0x22f @ 1
[    1.767604] initcall boot_params_ksysfs_init+0x0/0x22f returned 0 after 0 usecs
[    1.775269] calling  arch_kdebugfs_init+0x0/0x2a6 @ 1
[    1.780610] initcall arch_kdebugfs_init+0x0/0x2a6 returned 0 after 0 usecs
[    1.787837] calling  init_pit_clocksource+0x0/0x36 @ 1
[    1.793232] initcall init_pit_clocksource+0x0/0x36 returned 0 after 0 usecs
[    1.800544] calling  mtrr_if_init+0x0/0x56 @ 1
[    1.805224] initcall mtrr_if_init+0x0/0x56 returned 0 after 0 usecs
[    1.811796] calling  ffh_cstate_init+0x0/0x27 @ 1
[    1.816728] initcall ffh_cstate_init+0x0/0x27 returned -1 after 0 usecs
[    1.823680] calling  kdump_buf_page_init+0x0/0x3a @ 1
[    1.828988] initcall kdump_buf_page_init+0x0/0x3a returned 0 after 0 usecs
[    1.836203] calling  activate_jump_labels+0x0/0x2d @ 1
[    1.841592] initcall activate_jump_labels+0x0/0x2d returned 0 after 0 usecs
[    1.848899] calling  acpi_pci_init+0x0/0x5b @ 1
[    1.853650] ACPI: bus type PCI registered
[    1.857863] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.864622] initcall acpi_pci_init+0x0/0x5b returned 0 after 1953 usecs
[    1.871575] calling  dma_bus_init+0x0/0xbb @ 1
[    1.876424] initcall dma_bus_init+0x0/0xbb returned 0 after 0 usecs
[    1.883007] calling  dma_channel_table_init+0x0/0xc4 @ 1
[    1.888707] initcall dma_channel_table_init+0x0/0xc4 returned 0 after 0 usecs
[    1.896205] calling  setup_vcpu_hotplug_event+0x0/0x1f @ 1
[    1.901964] initcall setup_vcpu_hotplug_event+0x0/0x1f returned -19 after 0 usecs
[    1.909826] calling  register_xen_pci_notifier+0x0/0x30 @ 1
[    1.915675] initcall register_xen_pci_notifier+0x0/0x30 returned 0 after 0 usecs
[    1.923447] calling  xen_pcpu_init+0x0/0xc8 @ 1
[    1.928197] initcall xen_pcpu_init+0x0/0xc8 returned -19 after 0 usecs
[    1.935062] calling  dmi_id_init+0x0/0x2a2 @ 1
[    1.940009] initcall dmi_id_init+0x0/0x2a2 returned 0 after 0 usecs
[    1.946594] calling  dca_init+0x0/0x21 @ 1
[    1.950894] dca service started, version 1.12.1
[    1.955688] initcall dca_init+0x0/0x21 returned 0 after 976 usecs
[    1.962091] calling  pci_arch_init+0x0/0x65 @ 1
[    1.966867] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    1.976638] PCI: not using MMCONFIG
[    1.980953] PCI : PCI BIOS area is rw and x. Use pci=nobios if you want it NX.
[    1.988609] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=4
[    1.995275] PCI: Using configuration type 1 for base access
[    2.001129] PCI: Using configuration type 1 for extended access
[    2.007351] initcall pci_arch_init+0x0/0x65 returned 0 after 5859 usecs
[    2.014325] calling  topology_init+0x0/0x36 @ 1
[    2.019499] initcall topology_init+0x0/0x36 returned 0 after 0 usecs
[    2.026177] calling  mtrr_init_finialize+0x0/0x30 @ 1
[    2.031485] initcall mtrr_init_finialize+0x0/0x30 returned 0 after 0 usecs
[    2.038714] calling  uid_cache_init+0x0/0x7e @ 1
[    2.043596] initcall uid_cache_init+0x0/0x7e returned 0 after 0 usecs
[    2.050356] calling  param_sysfs_init+0x0/0x14c @ 1
[    2.058914] kworker/u12:0 (110) used greatest stack depth: 6864 bytes left
[    2.067902] initcall param_sysfs_init+0x0/0x14c returned 0 after 12695 usecs
[    2.075309] calling  proc_schedstat_init+0x0/0x27 @ 1
[    2.080617] initcall proc_schedstat_init+0x0/0x27 returned 0 after 0 usecs
[    2.087843] calling  pm_sysrq_init+0x0/0x16 @ 1
[    2.098070] initcall pm_sysrq_init+0x0/0x16 returned 0 after 5859 usecs
[    2.105026] calling  create_proc_profile+0x0/0x1elling  crash_save_vmcoreinfo_init+0x0/0x5ad @ 1
[    2.123799] initcall crash_save_vmcoreinfo_init+0x0/0x5ad returned 0 after 0 usecs
[    2.131746] calling  crash_notes_memory_init+0x0/0x35 @ 1
[    2.137439] initcall crash_notes_memory_init+0x0/0x35 returned 0 after 0 usecs
[    2.145024] calling  hung_task_init+0x0/0x56 @ 1
[    2.149935] initcall hung_task_init+0x0/0x56 returned 0 after 0 usecs
[    2.156699] calling  default_bdi_init+0x0/0x78 @ 1
[    2.162200] initcall default_bdi_init+0x0/0x78 returned 0 after 976 usecs
[    2.169333] calling  init_reserve_notifier+0x0/0x7 @ 1
[    2.174716] initcall init_reserve_notifier+0x0/0x7 returned 0 after 0 usecs
[    2.182041] calling  init_admin_reserve+0x0/0x30 @ 1
[    2.187257] initcall init_admin_reserve+0x0/0x30 returned 0 after 0 usecs
[    2.194387] calling  init_user_reserve+0x0/0x30 @ 1
[    2.199503] initcall init_user_reserve+0x0/0x30 returned 0 after 0 usecs
[    2.206546] calling  mmu_notifier_init+0x0/0xf @ 1
[    2.211598] initcall mmu_notifier_init+0x0/0xf returned 0 after 0 usecs
[    2.218531] calling  hugepage_init+0x0/0x123 @ 1
[    2.223578] initcall hugepage_init+0x0/0x123 returned 0 after 0 usecs
[    2.230346] calling  crypto_wq_init+0x0/0x41 @ 1
[    2.235270] initcall crypto_wq_init+0x0/0x41 returned 0 after 0 usecs
[    2.242034] calling  cryptomgr_init+0x0/0xf @ 1
[    2.246799] initcall cryptomgr_init+0x0/0xf returned 0 after 0 usecs
[    2.253468] calling  init_bio+0x0/0xc5 @ 1
[    2.258150] initcall init_bio+0x0/0xc5 returned 0 after 0 usecs
[    2.264382] calling  blk_settings_init+0x0/0x21 @ 1
[    2.269511] initcall blk_settings_init+0x0/0x21 returned 0 after 0 usecs
[    2.276542] calling  blk_ioc_init+0x0/0x2f @ 1
[    2.281236] initcall blk_ioc_init+0x0/0x2f returned 0 after 0 usecs
[    2.287824] calling  blk_softirq_init+0x0/0x54 @ 1
[    2.292864] initcall blk_softirq_init+0x0/0x54 returned 0 after 0 usecs
[    2.299809] calling  blk_iopoll_setup+0x0/0x54 @ 1
[    2.304839] initcall blk_iopoll_setup+0x0/0x54 returned 0 after 0 usecs
[    2.311792] calling  blk_mq_init+0x0/0x16 @ 1
[    2.316357] initcall blk_mq_init+0x0/0x16 returned 0 after 0 usecs
[    2.322839] calling  genhd_device_init+0x0/0x6a @ 1
[    2.328151] initcall genhd_device_init+0x0/0x6a returned 0 after 0 usecs
[    2.335200] calling  blk_dev_integrity_init+0x0/0x2f @ 1
[    2.340805] initcall blk_dev_integrity_init+0x0/0x2f returned 0 after 0 usecs
[    2.348294] calling  pci_slot_init+0x0/0x40 @ 1
[    2.353066] initcall pci_slot_init+0x0/0x40 returned 0 after 0 usecs
[    2.359733] calling  fbmem_init+0x0/0x96 @ 1
[    2.364265] initcall fbmem_init+0x0/0x96 returned 0 after 0 usecs
[    2.370666] calling  acpi_init+0x0/0x26b @ 1
[    2.375238] ACPI: Added _OSI(Module Device)
[    2.379625] ACPI: Added _OSI(Processor Device)
[    2.384286] ACPI: Added _OSI(3.0 _SCP Extensions)
[    2.389223] ACPI: Added _OSI(Processor Aggregator Device)
[    2.408761] ACPI: Executed 4 blocks of module-level executable AML code
[    2.491078] ACPI: Interpreter enabled
[    2.494943] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (2012.518520] ACPI: Using IOAPIC for interrupt routing
[    2.523883] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    2.562693] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    2.571823] PCI: Using MM PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.706737] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    2.713243] acpi PNP0A03:00: _OSC: OS supports [Extendnfig ASPM ClockPM Segments MSI]
[    2.721881] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    2.730714] acpi PNP0A03:00: ignoring host bridge window [mem 0x000d0000-0x000dffff] (conflicts with Adapter ROM [mem 0x000cf000-0x000d09ff])
[    2.745698] PCI host bridge to bus 0000:00
[    2.750008] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.755767] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    2.762266] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    2.768760] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    2.775980] pci_bus 0000:00: root bus resource [mem 0xcff00000-0xdfffffff]
[    2.783201] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
[    2.790447] pci 0000:00:00.0: [1022:9600] type 00 class 0x060000
[    2.797573] pci 0000:00:01.0: [1022:9602] type 01 class 0x060400
[    2.804698] pci 0000:00:06.0: [1022:9606] type 01 class 0x060400
[    2.811044] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    2.818004] pci 0000:00:06.0: System wakeup disabled by ACPI
[    2.824312] pci 0000:00:07.0: [1022:9607] type 01 class 0x060400
[    2.830652] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    2.837592] pci 0000:00:07.0: System wakeup disabled by ACPI
[    2.843901] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[    2.850214] pci 0000:00:11.0: reg 0x10: [io  0x7000-0x7007]
[    2.856068] pci 0000:00:11.0: reg 0x14: [io  0x6000-0x6003]
[    2.861917] pci 0000:00:11.0: reg 0x18: [io  0x5000-0x5007]
[    2.867778] pci 0000:00:11.0: reg 0x1c: [io  0x4000-0x4003]
[    2.873635] pci 0000:00:11.0: reg 0x20: [io  0x3000-0x300f]
[    2.879481] pci 0000:00:11.0: reg 0x24: [mem 0xfe6ffc00-0xfe6fffff]
[    2.886832] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[    2.893143] pci 0000:00:12.0: reg 0x10: [mem 0xfe6fe000-0xfe6fefff]
[    2.900324] pci 0000:00:12.0: System wakeup disabled by ACPI
[    2.906635] pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
[    2.912943] pci 0000:00:12.1: reg 0x10: [mem 0xfe6fd000-0xfe6fdfff]
[    2.920138] pci 0000:00:12.1: System wakeup disabled by ACPI
[    2.926451] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[    2.932771] pci 0000:00:12.2: reg 0x10: [mem 0xfe6ff800-0xfe6ff8ff]
[    2.939428] pci 0000:00:12.2: supports D1 D2
[    2.943906] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    2.950752] pci 0000:00:12.2: System wakeup disabled by ACPI
[    2.957066] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[    2.963378] pci 0000:00:13.0: reg 0x10: [mem 0xfe6fc000-0xfe6fcfff]
[    2.970562] pci 0000:00:13.0: System wakeup disabled by ACPI
[    2.976863] pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
[    2.983179] pci 0000:00:13.1: reg 0x10: [mem 0xfe6f7000-0xfe6f7fff]
[    2.990348] pci 0000:00:13.1: System wakeup disabled by ACPI
[    2.996660] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[    3.002979] pci 0000:00:13.2: reg 0x10: [mem 0xfe6ff400-0xfe6ff4ff]
[    3.009633] pci 0000:00:13.2: supports D1 D2
[    3.014115] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    3.020954] pci 0000:00:13.2: System wakeup disabled by ACPI
[    3.027263] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[    3.034422] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[    3.041572] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[    3.048464] pci 0000:00:14.4: System wakeup disabled by ACPI
[    3.054777] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
[    3.061086] pci 0000:00:14.5: reg 0x10: [mem 0xfe6f6000-0xfe6f6fff]
[    3.068267] pci 0000:00:14.5: System wakeup disabled by ACPI
[    3.074563] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
[    3.081619] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
[    3.088674] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
[    3.095728] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
[    3.102778] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
[    3.110097] pci 0000:01:05.0: [1002:9610] type 00 class 0x030000
[    3.116413] pci 0000:01:05.0: reg 0x10: [mem 0xd0000000-0xdfffffff pref]
[    3.123451] pci 0000:01:05.0: reg 0x14: [io  0x8000-0x80ff]
[    3.129290] pci 0000:01:05.0: reg 0x18: [mem 0xfe8f0000-0xfe8fffff]
[    3.135875] pci 0000:01:05.0: reg 0x24: [mem 0xfe700000-0xfe7fffff]
[    3.142469] pci 0000:01:05.0: supports D1 D2
[    3.147337] pci 0000:01:05.1: [1002:960f] type 00 class 0x040300
[    3.153645] pci 0000:01:05.1: reg 0x10: [mem 0xfe8e8000-0xfe8ebfff]
[    3.160238] pci 0000:01:05.1: supports D1 D2
[    3.165065] pci 0000:00:01.0: PCI bridge to [bus 01]
[    3.170288] pci 0000:00:01.0:   bridge window [io  0x8000-0x8fff]
[    3.176687] pci 0000:00:01.0:   bridge window [mem 0xfe700000-0xfe8fffff]
[    3.183810] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    3.192166] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    3.198479] pci 0000:02:00.0: reg 0x10: [io  0x9800-0x98ff]
[    3.204343] pci 0000:02:00.0: reg 0x18: [mem 0xfe9ff000-0xfe9fffff 64bit]
[    3.211476] pci 0000:02:00.0: reg 0x20: [mem 0xfdff0000-0xfdffffff 64bit pref]
[    3.219065] pci 0000:02:00.0: reg 0x30: [mem 0xfe9c0000-0xfe9dffff pref]
[    3.226156] pci 0000:02:00.0: supports D1 D2
[    3.230631] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.239875] pci 0000:00:06.0: PCI bridge to [bus 02]
[    3.245082] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    3.251486] pci 0000:00:06.0:   bridge window [mem 0xfe900000-0xfe9fffff]
[    3.258632] pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
[    3.266986] pci 0000:03:00.0: [197b:2361] type 00 class 0x010601
[    3.273362] pci 0000:03:00.0: reg 0x24: [mem 0xfeafe000-0xfeafffff]
[    3.280001] pci 0000:03:00.0: PME# supported from D3hot
[    3.285923] pci 0000:03:00.1: [197b:2361] type 00 class 0x010185
[    3.292258] pci 0000:03:00.1: reg 0x10: [io  0xb800-0xb807]
[    3.298119] pci 0000:03:00.1: reg 0x14: [io  0xb400-0xb403]
[    3.303968] pci 0000:03:00.1: reg 0x18: [io  0xb000-0xb007]
[    3.309828] pci 0000:03:00.1: reg 0x1c: [io  0xa800-0xa803]
[    3.315689] pci 0000:03:00.1: reg 0x20: [io  0xa400-0xa40f]
[    3.321913] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    3.332421] pci 0000:00:07.0: PCI bridge to [bus 03]
[    3.337644] pci 0000:00:07.0:   bridge window [io  0xa000-0xbfff]
[    3.344044] pci 0000:00:07.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    3.351402] pci 0000:04:05.0: [10b7:1700] type 00 class 0x020000
[    3.357732] pci 0000:04:05.0: reg 0x10: [mem 0xfebfc000-0xfebfffff]
[    3.364324] pci 0000:04:05.0: reg 0x14: [io  0xe800-0xe8ff]
[    3.370231] pci 0000:04:05.0: reg 0x30: [mem 0xfebc0000-0xfebdffff pref]
[    3.377307] pci 0000:04:05.0: supports D1 D2
[    3.381788] pci 0000:04:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.389160] pci 0000:04:07.0: [9710:9835] type 00 class 0x070002
[    3.395489] pci 0000:04:07.0: reg 0x10: [io  0xe400-0xe407]
[    3.401345] pci 0000:04:07.0: reg 0x14: [io  0xe000-0xe007]
[    3.407197] pci 0000:04:07.0: reg 0x18: [io  0xd800-0xd807]
[    3.413057] pci 0000:04:07.0: reg 0x1c: [io  0xd400-0xd407]
[    3.418916] pci 0000:04:07.0: reg 0x20: [io  0xd000-0xd007]
[    3.424781] pci 0000:04:07.0: reg 0x24: [io  0xc800-0xc80f]
[    3.430994] pci 0000:00:14.4: PCI bridge to [bus 04] (subtractive decode)
[    3.438126] pci 0000:00:14.4:   bridge window [io  0xc000-0xefff]
[    3.444521] pci 0000:00:14.4:   bridge window [mem 0xfeb00000-0xfebfffff]
[    3.451664] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    3.459994] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    3.468310] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    3.477357] pci 0000:00:14.4:   bridge window [mem 0xcff00000-0xdfffffff] (subtractive decode)
[    3.486415] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
[    3.495456] pci_bus 0000:00: on NUMA node 0
[    3.525114] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 12 *14 15)
[    3.532565] ACPI: PCI Interrupt Link [LNKB] (IRQs pt Link [LNKE] (IRQs *4 10 11 12 14 15)
[    3.562118] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 10 11 12 14 15) *0, disabled.
[    3.570582] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 10 11 12 14 *15)
[    3.577814] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 10 11 12 14 15) *0, disabled.
[    3.586235] ACPI: Enabled 1 GPEs in block 00 to 1F
[    3.591384] initcall acpi_init+0x0/0x26b returned 0 after 451171 usecs
[    3.598253] calling  pnp_init+0x0/0xf @ 1
[    3.602541] initcall pnp_init+0x0/0xf returned 0 after 0 usecs
[    3.608667] calling  balloon_init+0x0/0x1fa @ 1
[    3.613432] initcall balloon_init+0x0/0x1fa returned -19 after 0 usecs
[    3.620294] calling  xen_setup_shutdown_event+0x0/0x30 @ 1
[    3.626056] initcall xen_setup_shutdown_event+0x0/0x30 returned -19 after 0 usecs
[    3.633917] calling  xenbus_probe_backend_init+0x0/0x23 @ 1
[    3.639854] initcall xenbus_probe_backend_init+0x0/0x23 returned 0 after 0 usecs
[    3.647618] calling  xenbus_probe_frontend_init+0x0/0x7b @ 1
[    3.653650] initcall xenbus_probe_frontend_init+0x0/0x7b returned 0 after 0 usecs
[    3.661511] calling  xen_acpi_pad_init+0x0/0x41 @ 1
[    3.666635] initcall xen_acpi_pad_init+0x0/0x41 returned -19 after 0 usecs
[    3.673863] calling  balloon_init+0x0/0xdd @ 1
[    3.678531] initcall balloon_init+0x0/0xdd returned -19 after 0 usecs
[    3.685309] calling  misc_init+0x0/0xad @ 1
[    3.689756] initcall misc_init+0x0/0xad returned 0 after 0 usecs
[    3.696074] calling  vga_arb_device_init+0x0/0xcc @ 1
[    3.701559] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    3.710062] vgaarb: loaded
[    3.712893] vgaarb: bridge control possible 0000:01:05.0
[    3.718475] initcall vga_arb_device_init+0x0/0xcc returned 0 after 16601 usecs
[    3.726058] calling  cn_init+0x0/0xb0 @ 1
[    3.730289] initcall cn_init+0x0/0xb0 returned 0 after 0 usecs
[    3.736409] calling  dma_buf_init+0x0/0x62 @ 1
[    3.741081] initcall dma_buf_init+0x0/0x62 returned 0 after 0 usecs
[    3.747650] calling  phy_init+0x0/0x2f @ 1
[    3.752170] initcall phy_init+0x0/0x2f returned 0 after 0 usecs
[    3.758378] calling  init_pcmcia_cs+0x0/0x32 @ 1
[    3.763252] initcall init_pcmcia_cs+0x0/0x32 returned 0 after 0 usecs
[    3.770003] calling  usb_init+0x0/0x14c @ 1
[    3.774398] ACPI: bus type USB registered
[    3.778791] usbcore: registered new interface driver usbfs
[    3.784622] usbcore: registered new interface driver hub
[    3.790306] usbcore: registered new device driver usb
[    3.795598] initcall usb_init+0x0/0x14c returned 0 after 20507 usecs
[    3.802262] calling  serio_init+0x0/0x2e @ 1
[    3.806815] initcall serio_init+0x0/0x2e returned 0 after 0 usecs
[    3.813211] calling  input_init+0x0/0xf1 @ 1
[    3.817727] initcall input_init+0x0/0xf1 returned 0 after 0 usecs
[    3.824127] calling  rtc_init+0x0/0x50 @ 1
[    3.828444] initcall rtc_init+0x0/0x50 returned 0 after 0 usecs
[    3.834658] calling  pps_init+0x0/0xa6 @ 1
[    3.838983] pps_core: LinuxPPS API ver. 1 registered
[    3.844190] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    3.853769] initcall pps_init+0x0/0xa6 returned 0 after 14648 usecs
[    3.860341] calling  ptp_init+0x0/0x8e @ 1
[    3.864673] PTP clock support registered
[    3.868784] initcall ptp_init+0x0/0x8e returned 0 after 3906 usecs
[    3.875275] calling  power_supply_class_init+0x0/0x39 @ 1
[    3.880966] initcall power_supply_class_init+0x0/0x39 returned 0 after 0 usecs
[    3.888540] calling  hwmon_init+0x0/0xda @ 1
[    3.893049] initcall hwmon_init+0x0/0xda returned 0 after 0 usecs
[    3.899455] calling  leds_init+0x0/0x36 @ 1
[    3.903870] initcall leds_init+0x0/0x36 returned 0 after 0 usecs
[    3.910173] calling  efisubsys_init+0x0/0x115 @ 1
[    3.915108] initcall efisubsys_init+0x0/0x115 returned 0 after 0 usecs
[    3.921955] calling  pci_subsys_init+0x0/0x48 @ 1
[    3.926897] PCI: Using ACPI for IRQ routing
[    3.931281] PCI: pci_cache_line_size set to 64 bytes
[    3.936535] e820: reserve RAM buffer [mem 0x0009f400-0x0009ffff]
[    3.942830] e820: reserve RAM buffer [mem 0xcfeb0000-0xcfffffff]
[    3.949122] initcall pci_subsys_init+0x0/0x48 returned 0 after 22460 usecs
[    3.956332] calling  proto_init+0x0/0xf @ 1
[    3.960722] initcall proto_init+0x0/0xf returned 0 after 0 usecs
[    3.967024] calling  net_dev_init+0x0/0x15d @ 1
[    3.972553] initcall net_dev_init+0x0/0x15d returned 0 after 976 usecs
[    3.979396] calling  neigh_init+0x0/0xa4 @ 1
[    3.983868] initcall neigh_init+0x0/0xa4 returned 0 after 0 usecs
[    3.990256] calling  fib_rules_init+0x0/0xbd @ 1
[    3.995094] initcall fib_rules_init+0x0/0xbd returned 0 after 0 usecs
[    4.001847] calling  pktsched_init+0x0/0x121 @ 1
[    4.006695] initcall pktsched_init+0x0/0x121 returned 0 after 0 usecs
[    4.013448] calling  tc_filter_init+0x0/0x6a @ 1
[    4.018297] initcall tc_filter_init+0x0/0x6a returned 0 after 0 usecs
[    4.025052] calling  tc_action_init+0x0/0x6a @ 1
[    4.029898] initcall tc_action_init+0x0/0x6a returned 0 after 0 usecs
[    4.036655] calling  genl_init+0x0/0x7a @ 1
[    4.041062] initcall genl_init+0x0/0x7a returned 0 after 0 usecs
[    4.047361] calling  cipso_v4_init+0x0/0x5a @ 1
[    4.052108] initcall cipso_v4_init+0x0/0x5a returned 0 after 0 usecs
[    4.058776] calling  netlbl_init+0x0/0x7d @ 1
[    4.063340] NetLabel: Initializing
[    4.066904] NetLabel:  domain hash size = 128
[    4.071462] NetLabel:  protocols = UNLABELED CIPSOv4
[    4.076718] NetLabel:  unlabeled traffic allowed by default
[    4.082561] initcall netlbl_init+0x0/0x7d returned 0 after 18554 usecs
[    4.089405] calling  rfkill_init+0x0/0x68 @ 1
[    4.094125] initcall rfkill_init+0x0/0x68 returned 0 after 0 usecs
[    4.100620] calling  xen_mcfg_late+0x0/0xa6 @ 1
[    4.105369] initcall xen_mcfg_late+0x0/0xa6 returned 0 after 0 usecs
[    4.112088] calling  xen_p2m_debugfs+0x0/0x49 @ 1
[    4.117033] initcall xen_p2m_debugfs+0x0/0x49 returned 0 after 0 usecs
[    4.123884] calling  xen_spinlock_debugfs+0x0/0x120 @ 1
[    4.129420] initcall xen_spinlock_debugfs+0x0/0x120 returned 0 after 0 usecs
[    4.136826] calling  nmi_warning_debugfs+0x0/0x26 @ 1
[    4.142123] initcall nmi_warning_debugfs+0x0/0x26 returned 0 after 0 usecs
[    4.149333] calling  hpet_late_init+0x0/0xe6 @ 1
[    4.154184] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    4.159598] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
[    4.167720] initcall hpet_late_init+0x0/0xe6 returned 0 after 12695 usecs
[    4.174841] calling  init_amd_nbs+0x0/0xb6 @ 1
[    4.179509] initcall init_amd_nbs+0x0/0xb6 returned 0 after 0 usecs
[    4.186085] calling  clocksource_done_booting+0x0/0x3b @ 1
[    4.191885] Switched to clocksource hpet
[    4.196045] initcall clocksource_done_booting+0x0/0x3b returned 0 after 5056 usecs
[    4.204006] calling  tracer_init_debugfs+0x0/0x165 @ 1
[    4.209921] initcall tracer_init_debugfs+0x0/0x165 returned 0 after 499 usecs
[    4.217427] calling  init_trace_printk_function_export+0x0/0x33 @ 1
[    4.224025] initcall init_trace_printk_function_export+0x0/0x33 returned 0 after 12 usecs
[    4.232628] calling  event_trace_init+0x0/0x1ee @ 1
[    4.257711] initcall event_trace_init+0x0/0x1ee returned 0 after 19503 usecs
[    4.265126] calling  init_kprobe_trace+0x0/0    4.277432] calling  init_pipe_fs+0x0/0x3d @ 1
[    4.282216] initcall init_pipe_fs+0x0/0x3d returned 0 after 113 usecs
[    4.288986] calling  eventpoll_init+0x0/0xd0 @ 1
[    4.293931] initcall eventpoll_init+0x0/0xd0 returned 0 after 94 usecs
[    4.300787] calling  anon_inode_init+0x0/0x56 @ 1
[    4.305860] initcall anon_inode_init+0x0/0x56 returned 0 after 117 usecs
[    4.312900] calling  proc_cmdline_init+0x0/0x27 @ 1
[    4.318034] initcall proc_cmdline_init+0x0/0x27 returned 0 after 20 usecs
[    4.325168] calling  proc_consoles_init+0x0/0x27 @ 1
[    4.330408] initcall proc_consoles_init+0x0/0x27 returned 0 after 15 usecs
[    4.337647] calling  proc_cpuinfo_init+0x0/0x27 @ 1
[    4.342791] initcall proc_cpuinfo_init+0x0/0x27 returned 0 after 15 usecs
[    4.349940] calling  proc_devices_init+0x0/0x27 @ 1
[    4.355092] initcall proc_devices_init+0x0/0x27 returned 0 after 15 usecs
[    4.362238] calling  proc_interrupts_init+0x0/0x27 @ 1
[    4.367661] initcall proc_interrupts_init+0x0/0x27 returned 0 after 15 usecs
[    4.375079] calling  proc_loadavg_init+0x0/0x27 @ 1
[    4.380230] initcall proc_loadavg_init+0x0/0x27 returned 0 after 16 usecs
[    4.387378] calling  proc_meminfo_init+0x0/0x27 @ 1
[    4.392522] initcall proc_meminfo_init+0x0/0x27 returned 0 after 15 usecs
[    4.399667] calling  proc_stat_init+0x0/0x27 @ 1
[    4.404533] initcall proc_stat_init+0x0/0x27 returned 0 after 15 usecs
[    4.411403] calling  proc_uptime_init+0x0/0x27 @ 1
[    4.416456] initcall proc_uptime_init+0x0/0x27 returned 0 after 15 usecs
[    4.423507] calling  proc_version_init+0x0/0x27 @ 1
[    4.428663] initcall proc_version_init+0x0/0x27 returned 0 after 24 usecs
[    4.435810] calling  proc_softirqs_init+0x0/0x27 @ 1
[    4.441046] initcall proc_softirqs_init+0x0/0x27 returned 0 after 14 usecs
[    4.448285] calling  proc_kcore_init+0x0/0xae @ 1
[    4.453247] initcall proc_kcore_init+0x0/0xae returned 0 after 19 usecs
[    4.460200] calling  vmcore_init+0x0/0x68b @ 1
[    4.464886] initcall vmcore_init+0x0/0x68b returned 0 after 4 usecs
[    4.471475] calling  proc_kmsg_init+0x0/0x2a @ 1
[    4.476346] initcall proc_kmsg_init+0x0/0x2a returned 0 after 15 usecs
[    4.483219] calling  proc_page_init+0x0/0x4a @ 1
[    4.488096] initcall proc_page_init+0x0/0x4a returned 0 after 21 usecs
[    4.494962] calling  init_ramfs_fs+0x0/0x44 @ 1
[    4.499805] initcall init_ramfs_fs+0x0/0x44 returned 0 after 78 usecs
[    4.506590] calling  blk_scsi_ioctl_init+0x0/0x288 @ 1
[    4.511995] initcall blk_scsi_ioctl_init+0x0/0x288 returned 0 after 4 usecs
[    4.519315] calling  acpi_event_init+0x0/0x37 @ 1
[    4.524294] initcall acpi_event_init+0x0/0x37 returned 0 after 38 usecs
[    4.531245] calling  pnp_system_init+0x0/0xf @ 1
[    4.536154] initcall pnp_system_init+0x0/0xf returned 0 after 60 usecs
[    4.543025] calling  pnpacpi_init+0x0/0x88 @ 1
[    4.547709] pnp: PnP ACPI init
[    4.550957] ACPI: bus type PNP registered
[    4.556363] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.564049] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    4.591161] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
[    4.598483] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
[    4.605436] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.614796] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    4.621027] system 00:03: [io  0x040b] has been reserved
[    4.626620] system 00:03: [io  0x04d6] has been reserved
[    4.632219] system 00:03: [io  0x0c00-0x0c01] has been reserved
[    4.638461] system 00:03: [io  0x0c14] has been reserved
[    4.644057] system 00:03: [io  0x0c50-0x0c51] has been reserved
[    4.650291] system 00:03: [io  0x0c52] has been reserved
[    4.655897] system 00:03: [io  0x0c6c] has been reserved
[    4.661498] system 00:03: [io  0x0c6f] has been reserved
[    4.667089] system 00:03: [io  0x0cd0-0x0cd1] has been reserved
[    4.673324] system 00:03: [io  0x0cd2-0x0cd3] has been reserved
[    4.679554] system 00:03: [io  0x0cd4-0x0cd5] has been reserved
[    4.685790] system 00:03: [io  0x0cd6-0x0cd7] has been reserved
[    4.692027] system 00:03: [io  0x0cd8-0x0cdf] has been reserved
[    4.698268] system 00:03: [io  0x0800-0x089f] could not be reserved
[    4.704868] system 00:03: [io  0x0b00-0x0b0f] has been reserved
[    4.711105] system 00:03: [io  0x0b20-0x0b3f] has been reserved
[    4.717344] system 00:03: [io  0x0900-0x090f] has been reserved
[    4.723578] system 00:03: [io  0x0910-0x091f] has been reserved
[    4.729826] system 00:03: [io  0xfe00-0xfefe] has been reserved
[    4.736063] system 00:03: [mem 0xffb80000-0xffbfffff] has been reserved
[    4.743034] system 00:03: [mem 0xfec10000-0xfec1001f] has been reserved
[    4.749996] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.759597] system 00:04: [io  0x0e00-0x0e0f] has been reserved
[    4.765832] system 00:04: [io  0x0e80-0x0e8f] has been reserved
[    4.772075] system 00:04: [io  0x0f40-0x0f4f] has been reserved
[    4.778311] system 00:04: [io  0x0a30-0x0a3f] has been reserved
[    4.784542] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.792210] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[    4.799157] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.808009] system 00:06: [mem 0x00000000-0x0009ffff] could not be reserved
[    4.815323] system 00:06: [mem 0x000c0000-0x000cffff] could not be reserved
[    4.822653] system 00:06: [mem 0x000e0000-0x000fffff] could not be reserved
[    4.829988] system 00:06: [mem 0x00100000-0xcfefffff] could not be reserved
[    4.837319] system 00:06: [mem 0xfec00000-0xffffffff] could not be reserved
[    4.844644] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    4.852643] pnp: PnP ACPI: found 7 devices
[    4.856949] ACPI: bus type PNP unregistered
[    4.861346] initcall pnpacpi_init+0x0/0x88 returned 0 after 306575 usecs
[    4.868388] calling  pcistub_init+0x0/0x280 @ 1
[    4.873980] initcall pcistub_init+0x0/0x280 returned 0 after 803 usecs
[    4.880846] calling  chr_dev_init+0x0/0xc9 @ 1
[    4.896349] initcall chr_dev_init+0x0/0xc9 returned 0 after 10582 usecs
[    4.903311] calling  firmware_class_init+0x0/0xd7992] calling  init_pcmcia_bus+0x0/0x5e @ 1
[    4.921030] initcall init_pcmcia_bus+0x0/0x5e returned 0 after 78 usecs
[    4.927989] calling  thermal_init+0x0/0x78 @ 1
[    4.932723] initcall thermal_init+0x0/0x78 returned 0 after 58 usecs
[    4.939406] calling  cpufreq_gov_performance_init+0x0/0xf @ 1
[    4.945457] initcall cpufreq_gov_performance_init+0x0/0xf returned 0 after 5 usecs
[    4.953431] calling  init_acpi_pm_clocksource+0x0/0x18d @ 1
[    4.993807] initcall init_acpi_pm_clocksource+0x0/0x18d returned 0 after 33742 usecs
[    5.001955] calling  pcibios_assign_resources+0x0/0x8f @ 1
[    5.007761] pci 0000:00:01.0: PCI bridge to [bus 01]
[    5.012986] pci 0000:00:01.0:   bridge window [io  0x8000-0x8fff]
[    5.019411] pci 0000:00:01.0:   bridge window [mem 0xfe700000-0xfe8fffff]
[    5.026558] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    5.034709] pci 0000:00:06.0: PCI bridge to [bus 02]
[    5.039939] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    5.046352] pci 0000:00:06.0:   bridge window [mem 0xfe900000-0xfe9fffff]
[    5.053493] pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
[    5.061621] pci 0000:00:07.0: PCI bridge to [bus 03]
[    5.066849] pci 0000:00:07.0:   bridge window [io  0xa000-0xbfff]
[    5.073265] pci 0000:00:07.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    5.080413] pci 0000:00:14.4: PCI bridge to [bus 04]
[    5.085647] pci 0000:00:14.4:   bridge window [io  0xc000-0xefff]
[    5.092057] pci 0000:00:14.4:   bridge window [mem 0xfeb00000-0xfebfffff]
[    5.099206] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    5.105064] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    5.110916] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    5.117509] pci_bus 0000:00: resource 7 [mem 0xcff00000-0xdfffffff]
[    5.124096] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfebfffff]
[    5.130689] pci_bus 0000:01: resource 0 [io  0x8000-0x8fff]
[    5.136550] pci_bus 0000:01: resource 1 [mem 0xfe700000-0xfe8fffff]
[    5.143134] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    5.150724] pci_bus 0000:02: resource 0 [io  0x9000-0x9fff]
[    5.156591] pci_bus 0000:02: resource 1 [mem 0xfe900000-0xfe9fffff]
[    5.163177] pci_bus 0000:02: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
[    5.170769] pci_bus 0000:03: resource 0 [io  0xa000-0xbfff]
[    5.176640] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    5.183221] pci_bus 0000:04: resource 0 [io  0xc000-0xefff]
[    5.189074] pci_bus 0000:04: resource 1 [mem 0xfeb00000-0xfebfffff]
[    5.195657] pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7]
[    5.201526] pci_bus 0000:04: resource 5 [io  0x0d00-0xffff]
[    5.207379] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
[    5.213966] pci_bus 0000:04: resource 7 [mem 0xcff00000-0xdfffffff]
[    5.220555] pci_bus 0000:04: resource 8 [mem 0xf0000000-0xfebfffff]
[    5.227134] initcall pcibios_assign_resources+0x0/0x8f returned 0 after 214468 usecs
[    5.235281] calling  sysctl_core_init+0x0/0x23 @ 1
[    5.240345] initcall sysctl_core_init+0x0/0x23 returned 0 after 27 usecs
[    5.247398] calling  inet_init+0x0/0x25b @ 1
[    5.252105] NET: Registered protocol family 2
[    5.257436] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    5.264877] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    5.271676] TCP: Hash tables configured (established 8192 bind 8192)
[    5.278403] TCP: reno registered
[    5.281800] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    5.288046] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    5.295075] initcall inet_init+0x0/0x25b returned 0 after 42209 usecs
[    5.301848] calling  ipv4_offload_init+0x0/0x5d @ 1
[    5.306980] initcall ipv4_offload_init+0x0/0x5d returned 0 after 4 usecs
[    5.314045] calling  af_unix_init+0x0/0x4d @ 1
[    5.318763] NET: Registered protocol family 1
[    5.323363] initcall af_unix_init+0x0/0x4d returned 0 after 4530 usecs
[    5.330230] calling  ipv6_offload_init+0x0/0x7a @ 1
[    5.335366] initcall ipv6_offload_init+0x0/0x7a returned 0 after 4 usecs
[    5.342423] calling  init_sunrpc+0x0/0x5f @ 1
[    5.347383] RPC: Registered named UNIX socket transport module.
[    5.353594] RPC: Registered udp transport module.
[    5.358534] RPC: Registered tcp transport module.
[    5.363482] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.370242] initcall init_sunrpc+0x0/0x5f returned 0 after 22711 usecs
[    5.377112] calling  pci_apply_final_quirks+0x0/0x112 @ 1
[    5.382784] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    5.391478] IOAPIC[0]: Set routing entry (4-16 -> 0x41 -> IRQ 16 Mode:1 Active:1 Dest:15)
[    5.464614] IOAPIC[0]: Set routing entry (4-16 -> 0x51 -> IRQ 16 Mode:1 Active:1 Dest:15)
[    5.548462] IOAPIC[0]: Set routing entry (4-17 -> 0x61 -> IRQ 17 Mode:1 Active:1 Dest:15)
[    5.559823] IOAPIC[0]: Set routing entry (4-18 -> 0x71 -> IRQ 18 Mode:1 Active:1 Dest:15)
[    5.643434] IOAPIC[0]: Set routing entry (4-18 -> 0x81 -> IRQ 18 Mode:1 Active:1 Dest:15)
[    5.727331] IOAPIC[0]: Set routing entry (4-19 -> 0x91 -> IRQ 19 Mode:1 Active:1 Dest:15)
[    5.738726] IOAPIC[0]: Set rout[    5.820803] pci 0000:01:05.0: Boot video device
[    5.825578] PCI: CLS 64 bytes, default 64
[    5.829788] initcall pci_ap0 after 436949 usecs
[    5.837837] calling  populate_rootfs+0x0/0xf9 @ 1
[    5.842943] Unpacking initramfs...
[    7.694231] microcode: updated early to new patch_level=0x010000db
[    7.727982] Freeing initrd memory: 83112K (f2ad4000 - f7bfe000)
[    7.734211] initcall populate_rootfs+0x0/0xf9 returned 0 53317] calling  register_kernel_offset_dumper+0x0/0x16 @ 1
[    7.759535] initcall register_kernel_offset_dumper+0x0/0x16 returned 0 after 1 usecs
[    7.767682] calling  i8259A_init_ops+0x0/0x1d @ 1
[    7.772628] initcall i8259A_init_ops+0x0/0x1d returned 0 after 1 usecs
[    7.779502] calling  sbf_init+0x0/0xf1 @ 1
[    7.783810] initcall sbf_init+0x0/0xf1 returned 0 after 1 usecs
[    7.790036] calling  init_tsc_clocksource+0x0/0xa7 @ 1
[    7.795452] initcall init_tsc_clocksource+0x0/0xa7 returned 0 after 2 usecs
[    7.802767] calling  add_rtc_cmos+0x0/0x99 @ 1
[    7.807445] initcall add_rtc_cmos+0x0/0x99 returned 0 after 2 usecs
[    7.814022] calling  i8237A_init_ops+0x0/0x11 @ 1
[    7.818964] initcall i8237A_init_ops+0x0/0x11 returned 0 after 1 usecs
[    7.825828] calling  cache_sysfs_init+0x0/0x69 @ 1
[    7.832182] initcall cache_sysfs_init+0x0/0x69 returned 0 after 1290 usecs
[    7.839409] calling  amd_uncore_init+0x0/0x111 @ 1
[    7.844443] initcall amd_uncore_init+0x0/0x111 returned -19 after 0 usecs
[    7.851584] calling  intel_uncore_init+0x0/0x3ea @ 1
[    7.856797] initcall intel_uncore_init+0x0/0x3ea returned -19 after 0 usecs
[    7.864117] calling  rapl_pmu_init+0x0/0x194 @ 1
[    7.868973] initcall rapl_pmu_init+0x0/0x194 returned 0 after 2 usecs
[    7.875745] calling  inject_init+0x0/0x30 @ 1
[    7.880319] Machine check injector initialized
[    7.884994] initcall inject_init+0x0/0x30 returned 0 after 4568 usecs
[    7.891772] calling  thermal_throttle_init_device+0x0/0x6d @ 1
[    7.897905] initcall thermal_throttle_init_device+0x0/0x6d returned 0 after 0 usecs
[    7.905949] calling  microcode_init+0x0/0x18c @ 1
[    7.911027] microcode: CPU0: patch_level=0x010000db
[    7.916182] microcode: CPU1: patch_level=0x01000086
[    7.921340] microcode: CPU2: patch_level=0x01000086
[    7.926488] microcode: CPU3: patch_level=0x01000086
[    7.931792] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    7.941048] initcall microcode_init+0x0/0x18c returned 0 after 29479 usecs
[    7.948277] calling  amd_ibs_init+0x0/0x21f @ 1
[    7.953049] LVT offset 1 assigned for vector 0x400
[    7.958093] IBS: LVT offset 1 assigned
[    7.962161] perf: AMD IBS detected (0x0000001f)
[    7.966932] initcall amd_ibs_init+0x0/0x21f returned 0 after 13570 usecs
[    7.973967] calling  msr_init+0x0/0x153 @ 1
[    7.978999] initcall msr_init+0x0/0x153 returned 0 after 618 usecs
[    7.985496] calling  cpuid_init+0x0/0x153 @ 1
[    7.990930] initcall cpuid_init+0x0/0x153 returned 0 after 811 usecs
[    7.997622] calling  ioapic_init_ops+0x0/0x11 @ 1
[    8.002562] initcall ioapic_init_ops+0x0/0x11 returned 0 after 0 usecs
[    8.009434] calling  add_pcspkr+0x0/0x3b @ 1
[    8.014003] initcall add_pcspkr+0x0/0x3b returned 0 after 84 usecs
[    8.020515] calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
[    8.027285] Scanning for low memory corruption every 60 seconds
[    8.033521] initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 6096 usecs
[    8.042494] calling  sysfb_init+0x0/0x80 @ 1
[    8.047084] initcall sysfb_init+0x0/0x80 returned 0 after 99 usecs
[    8.053588] calling  pt_dump_init+0x0/0x70 @ 1
[    8.058285] initcall pt_dump_init+0x0/0x70 returned 0 after 12 usecs
[    8.064965] calling  aes_init+0x0/0xf @ 1
[    8.069285] initcall aes_init+0x0/0xf returned 0 after 108 usecs
[    8.075593] calling  proc_execdomains_init+0x0/0x27 @ 1
[    8.081105] initcall proc_execdomains_init+0x0/0x27 returned 0 after 10 usecs
[    8.088604] calling  ioresources_init+0x0/0x44 @ 1
[    8.093650] initcall ioresources_init+0x0/0x44 returned 0 after 12 usecs
[    8.100688] calling  snapshot_device_init+0x0/0xf @ 1
[    8.106136] initcall snapshot_device_init+0x0/0xf returned 0 after 134 usecs
[    8.113551] calling  irq_pm_init_ops+0x0/0x11 @ 1
[    8.118501] initcall irq_pm_init_ops+0x0/0x11 returned 0 after 0 usecs
[    8.125357] calling  init_posix_timers+0x0/0x22b @ 1
[    8.130633] initcall init_posix_timers+0x0/0x22b returned 0 after 61 usecs
[    8.137871] calling  init_posix_cpu_timers+0x0/0x9b @ 1
[    8.143351] initcall init_posix_cpu_timers+0x0/0x9b returned 0 after 1 usecs
[    8.150765] calling  timekeeping_init_ops+0x0/0x11 @ 1
[    8.156167] initcall timekeeping_init_ops+0x0/0x11 returned 0 after 5 usecs
[    8.163489] calling  init_clocksource_sysfs+0x0/0x58 @ 1
[    8.169300] initcall init_clocksource_sysfs+0x0/0x58 returned 0 after 217 usecs
[    8.176984] calling  init_timer_list_procfs+0x0/0x30 @ 1
[    8.182573] initcall init_timer_list_procfs+0x0/0x30 returned 0 after 6 usecs
[    8.190083] calling  alarmtimer_init+0x0/0x151 @ 1
[    8.195308] initcall alarmtimer_init+0x0/0x151 returned 0 after 180 usecs
[    8.202452] calling  clockevents_init_sysfs+0x0/0xa3 @ 1
[    8.208713] initcall clockevents_init_sysfs+0x0/0xa3 returned 0 after 661 usecs
[    8.216383] calling  init_tstats_procfs+0x0/0x30 @ 1
[    8.221615] initcall init_tstats_procfs+0x0/0x30 returned 0 after 7 usecs
[    8.228739] calling  futex_init+0x0/0xe6 @ 1
[    8.233240] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    8.239878] initcall futex_init+0x0/0xe6 returned 0 after 6490 usecs
[    8.246562] calling  proc_dma_init+0x0/0x27 @ 1
[    8.251339] initcall proc_dma_init+0x0/0x27 returned 0 after 6 usecs
[    8.258028] calling  proc_modules_init+0x0/0x27 @ 1
[    8.263159] initcall proc_modules_init+0x0/0x27 returned 0 after 6 usecs
[    8.270211] calling  kallsyms_init+0x0/0x2a @ 1
[    8.274983] initcall kallsyms_init+0x0/0x2a returned 0 after 6 usecs
[    8.281662] calling  pid_namespaces_init+0x0/0x32 @ 1
[    8.287030] initcall pid_namespaces_init+0x0/0x32 returned 0 after 59 usecs
[    8.294359] calling  ikconfig_init+0x0/0x41 @ 1
[    8.299131] initcall ikconfig_init+0x0/0x41 returned 0 after 7 usecs
[    8.305810] calling  audit_init+0x0/0xed @ 1
[    8.310296] audit: initializing netlink subsys (disabled)
[    8.316026] audit: type=2000 audit(1405365715.647:1): initialized
[    8.322431] initcall audit_init+0x0/0xed returned 0 after 11860 usecs
[    8.329191] calling  audit_watch_init+0x0/0x31 @ 1
[    8.334232] initcall audit_watch_init+0x0/0x31 returned 0 after 3 usecs
[    8.341178] calling  audit_tree_init+0x0/0x3b @ 1
[    8.346125] initcall audit_tree_init+0x0/0x3b returned 0 after 3 usecs
[    8.352997] calling  init_kprobes+0x0/0x177 @ 1
[    8.358188] initcall init_kprobes+0x0/0x177 returned 0 after 425 usecs
[    8.365041] calling  utsname_sysctl_init+0x0/0x11 @ 1
[    8.370369] initcall utsname_sysctl_init+0x0/0x11 returned 0 after 14 usecs
[    8.377676] calling  init_tracepoints+0x0/0x29 @ 1
[    8.382719] initcall init_tracepoints+0x0/0x29 returned 0 after 0 usecs
[    8.389678] calling  init_blk_tracer+0x0/0x56 @ 1
[    8.394627] initcall init_blk_tracer+0x0/0x56 returned 0 after 1 usecs
[    8.401479] calling  perf_event_sysfs_init+0x0/0x8f @ 1
[    8.407722] initcall perf_event_sysfs_init+0x0/0x8f returned 0 after 726 usecs
[    8.415325] calling  init_per_zone_wmark_min+0x0/0x9d @ 1
[    8.421001] initcall init_per_zone_wmark_min+0x0/0x9d returned 0 after 4 usecs
[    8.428598] calling  kswapd_init+0x0/0x1d @ 1
[    8.433321] initcall kswapd_init+0x0/0x1d returned 0 after 137 usecs
[    8.440014] calling  extfrag_debug_init+0x0/0x7b @ 1
[    8.445260] initcall extfrag_debug_init+0x0/0x7b returned 0 after 24 usecs
[    8.452481] calling  setup_vmstat+0x0/0xcf @ 1
[    8.457183] initcall setup_vmstat+0x0/0xcf returned 0 after 31 usecs
[    8.463861] calling  mm_compute_batch_init+0x0/0x51 @ 1
[    8.469359] initcall mm_compute_batch_init+0x0/0x51 returned 0 after 0 usecs
[    8.476765] calling  slab_proc_init+0x0/0x2a @ 1
[    8.481628] initcall slab_proc_init+0x0/0x2a returned 0 after 6 usecs
[    8.488389] calling  workingset_init+0x0/0x38 @ 1
[    8.493342] initcall workingset_init+0x0/0x38 returned 0 after 5 usecs
[    8.500197] calling  proc_vmalloc_init+0x0/0x2a @ 1
[    8.505332] initcall proc_vmalloc_init+0x0/0x2a returned 0 after 6 usecs
[    8.512371] calling  procswaps_init+0x0/0x27 @ 1
[    8.517230] initcall procswaps_init+0x0/0x27 returned 0 after 6 usecs
[    8.523997] calling  init_frontswap+0x0/0x84 @ 1
[    8.528881] initcall init_frontswap+0x0/0x84 returned 0 after 28 usecs
[    8.535736] calling  hugetlb_init+0x0/0x3d8 @ 1
[    8.540499] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    8.547253] initcall hugetlb_init+0x0/0x3d8 returned 0 after 6602 usecs
[    8.554211] calling  slab_proc_init+0x0/0x7 @ 1
[    8.558966] initcall slab_proc_init+0x0/0x7 returned 0 after 0 usecs
[    8.565652] calling  cpucache_init+0x0/0x40 @ 1
[    8.570411] initcall cpucache_init+0x0/0x40 returned 0 after 1 usecs
[    8.577094] calling  init_cleancache+0x0/0xa8 @ 1
[    8.582074] initcall init_cleancache+0x0/0xa8 returned 0 after 30 usecs
[    8.589019] calling  zs_init+0x0/0x90 @ 1
[    8.593244] initcall zs_init+0x0/0x90 returned 0 after 2 usecs
[    8.599372] calling  fcntl_init+0x0/0x2f @ 1
[    8.603909] initcall fcntl_init+0x0/0x2f returned 0 after 38 usecs
[    8.610407] calling  proc_filesystems_init+0x0/0x27 @ 1
[    8.615898] initcall proc_filesystems_init+0x0/0x27 returned 0 after 6 usecs
[    8.623310] calling  dio_init+0x0/0x32 @ 1
[    8.627665] initcall dio_init+0x0/0x32 returned 0 after 48 usecs
[    8.633971] calling  fsnotify_mark_init+0x0/0x46 @ 1
[    8.639263] initcall fsnotify_mark_init+0x0/0x46 returned 0 after 73 usecs
[    8.646493] calling  dnotify_init+0x0/0x7c @ 1
[    8.651255] initcall dnotify_init+0x0/0x7c returned 0 after 87 usecs
[    8.657924] calling  inotify_user_setup+0x0/0x50 @ 1
[    8.663186] initcall inotify_user_setup+0x0/0x50 returned 0 after 50 usecs
[    8.670411] calling  aio_setup+0x0/0x7e @ 1
[    8.674980] initcall aio_setup+0x0/0x7e returned 0 after 170 usecs
[    8.681466] calling  proc_locks_init+0x0/0x27 @ 1
[    8.686426] initcall proc_locks_init+0x0/0x27 returned 0 after 6 usecs
[    8.693282] calling  dquot_init+0x0/0x116 @ 1
[    8.697860] VFS: Disk quotas dquot_6.5.2
[    8.702139] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    8.708993] initcall dquot_init+0x0/0x116 returned 0 after 10882 usecs
[    8.715850] calling  init_v2_quota_format+0x0/0x1d @ 1
[    8.721250] initcall init_v2_quota_format+0x0/0x1d returned 0 after 1 usecs
[    8.728575] calling  quota_init+0x0/0x2e @ 1
[    8.733080] initcall quota_init+0x0/0x2e returned 0 after 26 usecs
[    8.739581] calling  init_devpts_fs+0x0/0x52 @ 1
[    8.744550] initcall init_devpts_fs+0x0/0x52 returned 0 after 110 usecs
[    8.751506] calling  init_hugetlbfs_fs+0x0/0x145 @ 1
[    8.756973] initcall init_hugetlbfs_fs+0x0/0x145 returned 0 after 230 usecs
[    8.764286] calling  init_fat_fs+0x0/0x4c @ 1
[    8.768943] initcall init_fat_fs+0x0/0x4c returned 0 after 68 usecs
[    8.775530] calling  init_vfat_fs+0x0/0xf @ 1
[    8.780102] initcall init_vfat_fs+0x0/0xf returned 0 after 1 usecs
[    8.786606] calling  init_msdos_fs+0x0/0xf @ 1
[    8.791273] initcall init_msdos_fs+0x0/0xf returned 0 after 1 usecs
[    8.797872] calling  init_iso9660_fs+0x0/0x69 @ 1
[    8.802857] initcall init_iso9660_fs+0x0/0x69 returned 0 after 49 usecs
[    8.809798] calling  init_nfs_fs+0x0/0x142 @ 1
[    8.814936] initcall init_nfs_fs+0x0/0x142 returned 0 after 454 usecs
[    8.821707] calling  init_nfs_v2+0x0/0x11 @ 1
[    8.826300] initcall init_nfs_v2+0x0/0x11 returned 0 after 1 usecs
[    8.832786] calling  init_nfs_v3+0x0/0x11 @ 1
[    8.837371] initcall init_nfs_v3+0x0/0x11 returned 0 after 1 usecs
[    8.843865] calling  init_nfs_v4+0x0/0x30 @ 1
[    8.848455] NFS: Registering the id_resolver key type
[    8.853780] Key type id_resolver registered
[    8.858172] Key type id_legacy registered
[    8.862394] initcall init_nfs_v4+0x0/0x30 returned 0 after 13624 usecs
[    8.869268] calling  init_nlm+0x0/0x3b @ 1
[    8.873578] initcall init_nlm+0x0/0x3b returned 0 after 12 usecs
[    8.879901] calling  init_nls_cp437+0x0/0x11 @ 1
[    8.884750] initcall init_nls_cp437+0x0/0x11 returned 0 after 0 usecs
[    8.891525] calling  init_nls_ascii+0x0/0x11 @ 1
[    8.896390] initcall init_nls_ascii+0x0/0x11 returned 0 after 1 usecs
[    8.903159] calling  init_nls_iso8859_1+0x0/0x11 @ 1
[    8.908384] initcall init_nls_iso8859_1+0x0/0x11 returned 0 after 0 usecs
[    8.915521] calling  init_nls_utf8+0x0/0x23 @ 1
[    8.920287] initcall init_nls_utf8+0x0/0x23 returned 0 after 2 usecs
[    8.926966] calling  init_ntfs_fs+0x0/0x1c9 @ 1
[    8.931737] ntfs: driver 2.1.30 [Flags: R/W].
[    8.936517] initcall init_ntfs_fs+0x0/0x1c9 returned 0 after 4671 usecs
[    8.943476] calling  init_autofs4_fs+0x0/0x26 @ 1
[    8.948492] tsc: Refined TSC clocksource calibration: 3000.106 MHz
[    8.948613] initcall init_autofs4_fs+0x0/0x26 returned 0 after 169 usecs
[    8.948620] calling  init_pstore_fs+0x0/0x41 @ 1
[    8.948641] initcall init_pstore_fs+0x0/0x41 returned 0 after 17 usecs
[    8.948645] calling  ipc_init+0x0/0x20 @ 1
[    8.948661] msgmni has been set to 1688
[    8.948681] initcall ipc_init+0x0/0x20 returned 0 after 31 usecs
[    8.948685] calling  ipc_sysctl_init+0x0/0x11 @ 1
[    8.948706] initcall ipc_sysctl_init+0x0/0x11 returned 0 after 17 usecs
[    8.948710] calling  init_mqueue_fs+0x0/0x91 @ 1
[    9.005183] initcall init_mqueue_fs+0x0/0x91 returned 0 after 55197 usecs
[    9.012337] calling  key_proc_init+0x0/0x64 @ 1
[    9.017118] initcall key_proc_init+0x0/0x64 returned 0 after 11 usecs
[    9.023877] calling  selinux_nf_ip_init+0x0/0x65 @ 1
[    9.029101] initcall selinux_nf_ip_init+0x0/0x65 returned 0 after 0 usecs
[    9.036221] calling  init_sel_fs+0x0/0x8b @ 1
[    9.040801] initcall init_sel_fs+0x0/0x8b returned 0 after 0 usecs
[    9.047304] calling  selnl_init+0x0/0x53 @ 1
[    9.051811] initcall selnl_init+0x0/0x53 returned 0 after 14 usecs
[    9.058317] calling  sel_netif_init+0x0/0x54 @ 1
[    9.063185] initcall sel_netif_init+0x0/0x54 returned 0 after 0 usecs
[    9.069948] calling  sel_netnode_init+0x0/0x5f @ 1
[    9.074990] initcall sel_netnode_init+0x0/0x5f returned 0 after 0 usecs
[    9.081943] calling  sel_netport_init+0x0/0x5f @ 1
[    9.086979] initcall sel_netport_init+0x0/0x5f returned 0 after 0 usecs
[    9.093929] calling  aurule_init+0x0/0x2d @ 1
[    9.098513] initcall aurule_init+0x0/0x2d returned 0 after 2 usecs
[    9.105005] calling  crypto_algapi_init+0x0/0xc @ 1
[    9.110143] initcall crypto_algapi_init+0x0/0xc returned 0 after 7 usecs
[    9.117182] calling  chainiv_module_init+0x0/0xf @ 1
[    9.122403] initcall chainiv_module_init+0x0/0xf returned 0 after 1 usecs
[    9.129534] calling  eseqiv_module_init+0x0/0xf @ 1
[    9.134655] initcall eseqiv_module_init+0x0/0xf returned 0 after 0 usecs
[    9.141691] calling  hmac_module_init+0x0/0xf @ 1
[    9.146640] initcall hmac_module_init+0x0/0xf returned 0 after 1 usecs
[    9.153504] calling  md5_mod_init+0x0/0xf @ 1
[    9.158177] initcall md5_mod_init+0x0/0xf returned 0 after 92 usecs
[    9.164760] calling  sha1_generic_mod_init+0x0/0xf @ 1
[    9.170265] initcall sha1_generic_mod_init+0x0/0xf returned 0 after 99 usecs
[    9.177676] calling  crypto_cbc_module_init+0x0/0xf @ 1
[    9.183181] initcall crypto_cbc_module_init+0x0/0xf returned 0 after 3 usecs
[    9.190597] calling  des_generic_mod_init+0x0/0x14 @ 1
[    9.196149] initcall des_generic_mod_init+0x0/0x14 returned 0 after 161 usecs
[    9.203636] calling  aes_init+0x0/0xf @ 1
[    9.207941] initcall aes_init+0x0/0xf returned 0 after 94 usecs
[    9.214176] calling  zlib_mod_init+0x0/0xf @ 1
[    9.218941] initcall zlib_mod_init+0x0/0xf returned 0 after 92 usecs
[    9.225623] calling  crypto_authenc_module_init+0x0/0xf @ 1
[    9.231482] initcall crypto_authenc_module_init+0x0/0xf returned 0 after 0 usecs
[    9.239265] calling  crypto_authenc_esn_module_init+0x0/0xf @ 1
[    9.245485] initcall crypto_authenc_esn_module_init+0x0/0xf returned 0 after 0 usecs
[    9.253624] calling  krng_mod_init+0x0/0xf @ 1
[    9.258368] initcall krng_mod_init+0x0/0xf returned 0 after 80 usecs
[    9.265054] calling  proc_genhd_init+0x0/0x44 @ 1
[    9.270011] initcall proc_genhd_init+0x0/0x44 returned 0 after 13 usecs
[    9.276970] calling  init_emergency_pool+0x0/0x53 @ 1
[    9.282293] bounce: pool size: 64 pages
[    9.286322] initcall init_emergency_pool+0x0/0x53 returned 0 after 3951 usecs
[    9.293817] calling  bsg_init+0x0/0x119 @ 1
[    9.298289] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    9.306059] initcall bsg_init+0x0/0x119 returned 0 after 7663 usecs
[    9.312658] calling  noop_init+0x0/0xf @ 1
[    9.316956] io scheduler noop registered
[    9.321089] initcall noop_init+0x0/0xf returned 0 after 4040 usecs
[    9.327580] calling  deadline_init+0x0/0xf @ 1
[    9.332247] io scheduler deadline registered
[    9.336741] initcall deadline_init+0x0/0xf returned 0 after 4392 usecs
[    9.343602] calling  cfq_init+0x0/0x89 @ 1
[    9.347989] io scheduler cfq registered (default)
[    9.352934] initcall cfq_init+0x0/0x89 returned 0 after 4920 usecs
[    9.359430] calling  percpu_counter_startup+0x0/0x35 @ 1
[    9.365010] initcall percpu_counter_startup+0x0/0x35 returned 0 after 1 usecs
[    9.372528] calling  audit_classes_init+0x0/0x4f @ 1
[    9.377763] initcall audit_classes_init+0x0/0x4f returned 0 after 12 usecs
[    9.384989] calling  phy_core_init+0x0/0x45 @ 1
[    9.389792] initcall phy_core_init+0x0/0x45 returned 0 after 30 usecs
[    9.396578] calling  pci_proc_init+0x0/0x64 @ 1
[    9.401531] initcall pci_proc_init+0x0/0x64 returned 0 after 197 usecs
[    9.408397] calling  pcie_portdrv_init+0x0/0x6f @ 1
[    9.415451] IOAPIC[0]: Set routing entry (4-18 -> 0xb1 -> IRQ 18 Mode:1 Active:1 Dest:15)
[    9.424087] pcieport 0000:00:068] IOAPIC[0]: Set routing entry (4-19 -> 0xd1 -> IRQ 19 Mode:1 Active:1 Dest:15)
[    9.440096] pcieport 0000:00:07.0: irq 25 for MSI/MSI-X
[    9.445812] initcall pcie_portdrv_init+0x0/0x6f returned 0 after 31553 usecs
[    9.453213] calling  aer_service_init+0x0/0x28 @ 1
[    9.458301] initcall aer_service_init+0x0/0x28 returned 0 after 48 usecs
[    9.465341] calling  pci_hotplug_init+0x0/0x1e @ 1
[    9.470375] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    9.476239] initcall pci_hotplug_init+0x0/0x1e returned 0 after 5731 usecs
[    9.483468] calling  pcied_init+0x0/0x76 @ 1
[    9.488077] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    9.495037] initcall pcied_init+0x0/0x76 returned 0 after 6921 usecs
[    9.501711] calling  pcifront_init+0x0/0x41 @ 1
[    9.506479] initcall pcifront_init+0x0/0x41 returned -19 after 1 usecs
[    9.513332] calling  genericbl_driver_init+0x0/0x11 @ 1
[    9.518888] initcall genericbl_driver_init+0x0/0x11 returned 0 after 54 usecs
[    9.526392] calling  cirrusfb_init+0x0/0xaa @ 1
[    9.531226] initcall cirrusfb_init+0x0/0xaa returned 0 after 65 usecs
[    9.537999] calling  efifb_driver_init+0x0/0x11 @ 1
[    9.543166] initcall efifb_driver_init+0x0/0x11 returned 0 after 47 usecs
[    9.550297] calling  intel_idle_init+0x0/0x2ec @ 1
[    9.555349] initcall intel_idle_init+0x0/0x2ec returned -19 after 2 usecs
[    9.562481] calling  acpi_reserve_resources+0x0/0xc8 @ 1
[    9.568076] initcall acpi_reserve_resources+0x0/0xc8 returned 0 after 12 usecs
[    9.575667] calling  acpi_ac_init+0x0/0x25 @ 1
[    9.580404] initcall acpi_ac_init+0x0/0x25 returned 0 after 69 usecs
[    9.587096] calling  acpi_button_driver_init+0x0/0xf @ 1
[    9.593064] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    9.601843] ACPI: Power Button [PWRB]
[    9.606052] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    9.613828] ACPI: Power Button [PWRF]
[    9.617719] initcall acpi_button_driver_init+0x0/0xf returned 0 after 24474 usecs
[    9.625585] calling  acpi_fan_driver_init+0x0/0xf @ 1
[    9.630962] initcall acpi_fan_driver_init+0x0/0xf returned 0 after 51 usecs
[    9.638285] calling  acpi_processor_driver_init+0x0/0x3e @ 1
[    9.644318] ACPI: processor limited to max C-state 1
[    9.650312] initcall acpi_processor_driver_init+0x0/0x3e returned 0 after 5936 usecs
[    9.658456] calling  acpi_thermal_init+0x0/0x8c @ 1
[    9.666435] thermal LNXTHERM:00: registered as thermal_zone0
[    9.672392] ACPI: Thermal Zone [THRM] (30 C)
[    9.676924] initcall acpi_thermal_init+0x0/0x8c returned 0 after 13029 usecs
[    9.684336] calling  acpi_battery_init+0x0/0x13 @ 1
[    9.689478] initcall acpi_battery_init+0x0/0x13 returned 0 after 8 usecs
[    9.689501] calling  1_acpi_battery_init_async+0x0/0x22 @ 6
[    9.689578] initcall 1_acpi_battery_init_async+0x0/0x22 returned 0 after 71 usecs
[    9.710227] calling  acpi_hed_driver_init+0x0/0xf @ 1
[    9.715595] initcall acpi_hed_driver_init+0x0/0xf returned 0 after 57 usecs
[    9.715697] kworker/u12:0 (617) used greatest stack depth: 6828 bytes left
[    9.730121] calling  erst_init+0x0/0x2fa @ 1
[    9.734622] initcall erst_init+0x0/0x2fa returned 0 after 1 usecs
[    9.741041] calling  ghes_init+0x0/0x165 @ 1
[    9.745531] GHES: HEST is not enabled!
[    9.749471] initcall ghes_init+0x0/0x165 returned -22 after 3850 usecs
[    9.756337] calling  einj_init+0x0/0x4ef @ 1
[    9.760822] initcall einj_init+0x0/0x4ef returned -19 after 1 usecs
[    9.767406] calling  ioat_init_module+0x0/0xb0 @ 1
[    9.772448] ioatdma: Intel(R) QuickData Technology Driver 4.00
[    9.778787] initcall ioat_init_module+0x0/0xb0 returned 0 after 6195 usecs
[    9.786017] calling  virtio_mmio_init+0x0/0x11 @ 1
[    9.791114] initcall virtio_mmio_init+0x0/0x11 returned 0 after 51 usecs
[    9.798163] calling  virtio_balloon_driver_init+0x0/0xf @ 1
[    9.804075] initcall virtio_balloon_driver_init+0x0/0xf returned 0 after 49 usecs
[    9.811945] calling  xenbus_probe_initcall+0x0/0x35 @ 1
[    9.817448] initcall xenbus_probe_initcall+0x0/0x35 returned -19 after 0 usecs
[    9.825048] calling  xenbus_init+0x0/0x37 @ 1
[    9.829635] initcall xenbus_init+0x0/0x37 returned -19 after 0 usecs
[    9.836320] calling  xenbus_backend_init+0x0/0x48 @ 1
[    9.841638] initcall xenbus_backend_init+0x0/0x48 returned -19 after 0 usecs
[    9.849052] calling  gntdev_init+0x0/0x48 @ 1
[    9.853646] initcall gntdev_init+0x0/0x48 returned -19 after 0 usecs
[    9.860339] calling  gntalloc_init+0x0/0x37 @ 1
[    9.865105] initcall gntalloc_init+0x0/0x37 returned -19 after 0 usecs
[    9.871981] calling  hypervisor_subsys_init+0x0/0x21 @ 1
[    9.877578] initcall hypervisor_subsys_init+0x0/0x21 returned -19 after 0 usecs
[    9.885272] calling  hyper_sysfs_init+0x0/0xcc @ 1
[    9.890313] initcall hyper_sysfs_init+0x0/0xcc returned -19 after 0 usecs
[    9.897458] calling  platform_pci_module_init+0x0/0x16 @ 1
[    9.903291] initcall platform_pci_module_init+0x0/0x16 returned 0 after 67 usecs
[    9.911066] calling  xen_pcibk_init+0x0/0x110 @ 1
[    9.916028] initcall xen_pcibk_init+0x0/0x110 returned -19 after 0 usecs
[    9.923077] calling  xen_acpi_processor_init+0x0/0x1f7 @ 1
[    9.928856] initcall xen_acpi_processor_init+0x0/0x1f7 returned -19 after 1 usecs
[    9.936722] calling  pty_init+0x0/0x3d9 @ 1
[   10.003623] Switched to clocksource tsc
[   10.005àhvc_init+0x0/0x1d5 @ 1
[   10.005974] initcall xen_hvc_init+0x0/0x1d5 returned -19 after 0 usecs
[   10.005979] calling  serial8250_init+0x0/0x16d @ 1
[   10.005980] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[   10.007704] initcall serial8250_init+0x0/0x16d returned 0 after 1683 usecs
[   10.007709] calling  serial_pci_driver_init+0x0/0x16 @ 1
[   10.008354] IOAPIC[0]: Set routing entry (4-22 -> 0x22 -> IRQ 22 Mode:1 Active:1 Dest:15)
[   10.029605] 0000:04:07.0: ttyS0 at I/O 0xe400 (irq = 22, base_baud = 115200) is a 16550A
[   10.080112] console [ttyS0] enabled
[   10.080112] console [ttyS0] enabled
[   10.087386] bootconsole [uart0] disabled
[   10.087386] bootconsole [uart0] disabled
[   10.096125] initcall serial_pci_driver_init+0x0/0x16 returned 0 after 86421 usecs
[   10.103875] calling  init_kgdboc+0x0/0x15 @ 1
[   10.108362] initcall init_kgdboc+0x0/0x15 returned 0 after 0 usecs
[   10.114732] calling  init+0x0/0xf3 @ 1
[   10.118738] initcall init+0x0/0xf3 returned 0 after 139 usecs
[   10.124661] calling  hpet_init+0x0/0x57 @ 1
[   10.129489] initcall hpet_init+0x0/0x57 returned 0 after 505 usecs
[   10.135873] calling  nvram_init+0x0/0x7e @ 1
[   10.140396] Non-volatile memory driver v1.3
[   10.144702] initcall nvram_init+0x0/0x7e returned 0 after 4334 usecs
[   10.151246] calling  mod_init+0x0/0x1b6 @ 1
[   10.155582] initcall mod_init+0x0/0x1b6 returned -19 after 30 usecs
[   10.162036] calling  mod_init+0x0/0x12d @ 1
[   10.166347] initcall mod_init+0x0/0x12d returned -19 after 5 usecs
[   10.172712] calling  mod_init+0x0/0x99 @ 1
[   10.176930] initcall mod_init+0x0/0x99 returned -19 after 3 usecs
[   10.183207] calling  mod_init+0x0/0x48 @ 1
[   10.187421] initcall mod_init+0x0/0x48 returned -19 after 0 usecs
[   10.193698] calling  rng_init+0x0/0xf @ 1
[   10.197971] initcall rng_init+0x0/0xf returned 0 after 142 usecs
[   10.204163] calling  agp_init+0x0/0x2f @ 1
[   10.208376] Linux agpgart interface v0.103
[   10.212593] initcall agp_init+0x0/0x2f returned 0 after 4120 usecs
[   10.218957] calling  agp_ali_init+0x0/0x24 @ 1
[   10.223595] initcall agp_ali_init+0x0/0x24 returned 0 after 62 usecs
[   10.230140] calling  agp_ati_init+0x0/0x24 @ 1
[   10.234778] initcall agp_ati_init+0x0/0x24 returned 0 after 64 usecs
[   10.241324] calling  agp_amdk7_init+0x0/0x24 @ 1
[   10.246141] initcall agp_amdk7_init+0x0/0x24 returned 0 after 64 usecs
[   10.252863] calling  agp_amd64_mod_init+0x0/0xa @ 1
[   10.258567] initcall agp_amd64_mod_init+0x0/0xa returned -19 after 668 usecs
[   10.265828] calling  agp_efficeon_init+0x0/0x39 @ 1
[   10.270917] initcall agp_efficeon_init+0x0/0x39 returned 0 after 65 usecs
[   10.277908] calling  agp_intel_init+0x0/0x24 @ 1
[   10.282731] initcall agp_intel_init+0x0/0x24 returned 0 after 69 usecs
[   10.289454] calling  agp_nvidia_init+0x0/0x24 @ 1
[   10.294357] initcall agp_nvidia_init+0x0/0x24 returned 0 after 61 usecs
[   10.301171] calling  agp_sis_init+0x0/0x24 @ 1
[   10.305813] initcall agp_sis_init+0x0/0x24 returned 0 after 65 usecs
[   10.312357] calling  agp_serverworks_init+0x0/0x24 @ 1
[   10.317715] initcall agp_serverworks_init+0x0/0x24 returned 0 after 66 usecs
[   10.324975] calling  agp_via_init+0x0/0x24 @ 1
[   10.329618] initcall agp_via_init+0x0/0x24 returned 0 after 67 usecs
[   10.336162] calling  drm_core_init+0x0/0x107 @ 1
[   10.340975] [drm] Initialized drm 1.1.0 20060810
[   10.345728] initcall drm_core_init+0x0/0x107 returned 0 after 4705 usecs
[   10.352630] calling  cn_proc_init+0x0/0x33 @ 1
[   10.357206] initcall cn_proc_init+0x0/0x33 returned 0 after 3 usecs
[   10.363661] calling  topology_sysfs_init+0x0/0x60 @ 1
[   10.369066] initcall topology_sysfs_init+0x0/0x60 returned 0 after 195 usecs
[   10.376327] calling  loop_init+0x0/0x12b @ 1
[   10.386653] loop: module loaded
[   10.389905] initcall loop_init+0x0/0x12b returned 0 after 8973 usecs
[   10.396463] calling  xen_blkif_init+0x0/0x21 @ 1
[   10.401220] initcall xen_blkif_init+0x0/0x21 returned -19 after 0 usecs
[   10.408037] calling  zram_init+0x0/0x2e9 @ 1
[   10.413225] zram: Created 1 device(s) ...
[   10.417367] initcall zram_init+0x0/0x2e9 returned 0 after 4824 usecs
[   10.423921] calling  mac_hid_init+0x0/0x1c @ 1
[   10.428515] initcall mac_hid_init+0x0/0x1c returned 0 after 15 usecs
[   10.435065] calling  macvlan_init_module+0x0/0x31 @ 1
[   10.440282] initcall macvlan_init_module+0x0/0x31 returned 0 after 11 usecs
[   10.447465] calling  macvtap_init+0x0/0xd0 @ 1
[   10.452083] initcall macvtap_init+0x0/0xd0 returned 0 after 37 usecs
[   10.458636] calling  net_olddevs_init+0x0/0x88 @ 1
[   10.463582] initcall net_olddevs_init+0x0/0x88 returned 0 after 10 usecs
[   10.470490] calling  fixed_mdio_bus_init+0x0/0xe3 @ 1
[   10.475878] libphy: Fixed MDIO Bus: probed
[   10.480099] initcall fixed_mdio_bus_init+0x0/0xe3 returned 0 after 4306 usecs
[   10.487452] calling  tun_init+0x0/0x8b @ 1
[   10.491672] tun: Universal TUN/TAP device driver, 1.6
[   10.496873] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[   10.503375] initcall tun_init+0x0/0x8b returned 0 after 11441 usecs
[   10.509844] calling  tg3_driver_init+0x0/0x16 @ 1
[   10.514812] initcall tg3_driver_init+0x0/0x16 returned 0 after 107 usecs
[   10.521722] calling  ixgbevf_init_module+0x0/0x49 @ 1
[   10.526929] ixgbevf: Intel(R) 10 Gigabit PCI Express Virtual Function Network Driver - version 2.12.1-k
[   10.536602] ixgbevf: Copyright (c) 2009 - 2012 Intel Corporation.
[   10.542981] initcall ixgbevf_init_module+0x0/0x49 returned 0 after 15694 usecs
[   10.550425] calling  forcedeth_pci_driver_init+0x0/0x16 @ 1
[   10.556234] initcall forcedeth_pci_driver_init+0x0/0x16 returned 0 after 70 usecs
[   10.563943] calling  netback_init+0x0/0x81 @ 1
[   10.568520] initcall netback_init+0x0/0x81 returned -19 after 0 usecs
[   10.575160] calling  fw_core_init+0x0/0xf1 @ 1
[   10.579913] initcall fw_core_init+0x0/0xf1 returned 0 after 174 usecs
[   10.586564] calling  nonstatic_sysfs_init+0x0/0xf @ 1
[   10.591768] initcall nonstatic_sysfs_init+0x0/0xf returned 0 after 4 usecs
[   10.598855] calling  yenta_cardbus_driver_init+0x0/0x16 @ 1
[   10.604709] initcall yenta_cardbus_driver_init+0x0/0x16 returned 0 after 109 usecs
[   10.612509] calling  mon_init+0x0/0xe1 @ 1
[   10.616926] initcall mon_init+0x0/0xe1 returned 0 after 195 usecs
[   10.623217] calling  ehci_hcd_init+0x0/0x58 @ 1
[   10.627896] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   10.634616] initcall ehci_hcd_init+0x0/0x58 returned 0 after 6568 usecs
[   10.641434] calling  ehci_pci_init+0x0/0x60 @ 1
[   10.646107] ehci-pci: EHCI PCI platform driver
[   10.652420] IOAPIC[0]: Set routing entry (4-17 -> 0x42 -> IRQ 17 Mode:1 Active:1 Dest:15)
[   10.660861] QUIRK: Enable AMD PLL fix
[   10.664670] ehci-pci 0000:00:12.2: EHCI Host Controller
[   10.670316] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[   10.677956] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[   10.686927] ehci-pci 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
[   10.694655] ehci-pci 0000:00:12.2: debug port 1
[   10.699461] ehci-pci 0000:00:12.2: irq 17, io mem 0xfe6ff800
[   10.705846] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[   10.712057] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[   10.719047] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   10.726483] usb usb1: Product: EHCI Host Controller
[   10.731502] usb usb1: Manufacturer: Linux 3.16.0-rc5upstream-01651-g03b9189 ehci_hcd
[   10.739474] usb usb1: SerialNumber: 0000:00:12.2
[   10.745142] hub 1-0:1.0: USB hub found
[   10.749062] hub 1-0:1.0: 6 ports detected
[   10.756192] ehci-pci 0000:00:13.2: EHCI Host Controller
[   10.761843] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[   10.769467] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[   10.778422] ehci-pci 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
[   10.786136] ehci-pci 0000:00:13.2: debug port 1
[   10.790930] ehci-pci 0000:00:13.2: irq 19, io mem 0xfe6ff400
[   10.802739] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[   10.808950] usb usb2: New USB device found, idVendor=1d6b, urer: Linux 3.16.0-rc5upstream-01651-g03b9189 ehci_hcd
[   10.836367] usb usb2: SerialNumber: 0000:00:13.2
[   10.842041] hub 2-0:1.0: USB hub found
[   10.845960] hub 2-0:1.0: 6 ports detected
[   10.851457] initcall ehci_pci_init+0x0/0x60 returned 0 after 200728 usecs
[   10.858464] calling  ohci_hcd_mod_init+0x0/0x5e @ 1
[   10.863494] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   10.869876] initcall ohci_hcd_mod_init+0x0/0x5e returned 0 after 6242 usecs
[   10.877056] calling  ohci_pci_init+0x0/0x60 @ 1
[   10.881724] ohci-pci: OHCI PCI platform driver
[   10.888075] IOAPIC[0]: Set routing entry (4-16 -> 0x52 -> IRQ 16 Mode:1 Active:1 Dest:15)
[   10.896538] ohci-pci 0000:00:12.0: OHCI PCI host controller
[   10.902556] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
[   10.910319] ohci-pci 0000:00:12.0: irq 16, io mem 0xfe6fe000
[   10.964925] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[   10.971917] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   10.979352] usb usb3: Product: OHCI PCI host controller
[   10.984730] usb usb3: Manufacturer: Linux 3.16.0-rc5upstream-01651-g03b9189 ohci_hcd
[   10.992700] usb usb3: SerialNumber: 0000:00:12.0
[   10.998360] hub 3-0:1.0: USB hub found
[   11.002300] hub 3-0:1.0: 3 ports detected
[   11.009030] ohci-pci 0000:00:12.1: OHCI PCI host controller
[   11.015044] ohci-pci 0000:00:12.1: new USB bus registered, assigned bus number 4
[   11.022732] ohci-pci 0000:00:12.1: irq 16, io mem 0xfe6fd000
[   11.083814] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[   11.090808] usb usb4: New USB device strings: M_hcd
[   11.111592] usb usb4: SerialNumber: 0000:00:12.1
[   11.117260] hub 4-0:1.0: USB hub found
[   11.121193] hub 4-0:1.0: 3 ports detected
[   11.127916] ohci-pci 0000:00:13.0: OHCI PCI host controller
[   11.133919] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 5
[   11.141686] ohci-pci 0000:00:13.0: irq 18, io mem 0xfe6fc000
[   11.196708] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[   11.203700] usb usb5: New USB device strings: M
[   11.211133] usb usb5: Product: OHCI PCI host controller
[   11.216511] usb usb5: Manufacturer: Linux 3.16.0-rc5upstream-01651-g03b9189 ohci_hcd
[   11.224481] usb usb5: SerialNumber: 0000:00:13.0
[   11.230136] hub 5-0:1.0: USB hub found
[   11.234079] hub 5-0:1.0: 3 ports detected
[   11.240826] ohci-pci 0000:00:13.1: OHCI PCI host controller
[   11.246838] ohci-pci 0000:00:13.1: new USB bus registered, as[   11.315594] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[   11.322585] usb usb6: New USB device strings: M0:1.0: USB hub found
[   11.352993] hub 6-0:1.0: 3 ports detected
[   11.359714] ohci-pci 0000:00:14.5: OHCI PCI host controller
[   11.365728] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 7
[   11.373434] ohci-pci 0000:00:14.5: irq 18, io mem 0xfe6f6000
[   11.428485] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
[   11.435476] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.442910] usb usb7: Product: OHCI PCI host controller
[   11.448287] usb usb7: Manufacturer: Linux 3.16.0-rc5upstream-01651-g03b9189 ohci_hcd
[   11.456258] usb usb7: SerialNumber: 0000:00:14.5
[   11.461912] hub 7-0:1.0: USB hub found
[   11.465854] hub 7-0:1.0: 2 ports detected
[   11.470776] initcall ohci_pci_init+0x0/0x60 returned 0 after 575789 usecs
[   11.477773] calling  uhci_hcd_init+0x0/0xa4 @ 1
[   11.482434] uhci_hcd: USB Universal Host Controller Interface driver
[   11.489138] initcall uhci_hcd_init+0x0/0xa4 returned 0 after 6552 usecs
[   11.495949] calling  usblp_driver_init+0x0/0x16 @ 1
[   11.501080] usbcore: registered new interface driver usblp
[   11.506725] initcall usblp_driver_init+0x0/0x16 returned 0 after 5625 usecs
[   11.513895] calling  kgdbdbgp_start_thread+0x0/0x57 @ 1
[   11.519274] initcall kgdbdbgp_start_thread+0x0/0x57 returned 0 after 0 usecs
[   11.526531] calling  i8042_init+0x0/0x3b7 @ 1
[   11.531162] i8042: PNP: No PS/2 controller found. Probing ports directly.
[   11.538660] serio: i8042 KBD port at 0x60,0x64 irq 1
[   11.543789] serio: i8042 AUX port at 0x60,0x64 irq 12
[   11.549020] initcall i8042_init+0x0/0x3b7 returned 0 after 17598 usecs
[   11.555746] calling  serport_init+0x0/0x2e @ 1
[   11.560319] initcall serport_init+0x0/0x2e returned 0 after 0 usecs
[   11.566776] calling  mousedev_init+0x0/0x54 @ 1
[   11.571643] mousedev: PS/2 mouse device common for all mice
[   11.577390] initcall mousedev_init+0x0/0x54 returned 0 after 5812 usecs
[   11.584216] calling  evdev_init+0x0/0xf @ 1
[   11.588825] initcall evdev_init+0x0/0xf returned 0 after 296 usecs
[   11.595208] calling  atkbd_init+0x0/0x20 @ 1
[   11.599693] initcall atkbd_init+0x0/0x20 returned 0 after 83 usecs
[   11.606071] calling  psmouse_init+0x0/0x8a @ 1
[   11.610848] initcall psmouse_init+0x0/0x8a returned 0 after 196 usecs
[   11.617485] calling  cmos_init+0x0/0x66 @ 1
[   11.621839] rtc_cmos 00:01: RTC can wake from S4
[   11.627054] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[   11.633373] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[   11.641287] initcall cmos_init+0x0/0x66 returned 0 after 19058 usecs
[   11.647831] calling  i2c_i801_init+0x0/0x92 @ 1
[   11.652605] initcall i2c_i801_init+0x0/0x92 returned 0 after 107 usecs
[   11.659327] calling  cpufreq_gov_dbs_init+0x0/0xf @ 1
[   11.664526] initcall cpufreq_gov_dbs_init+0x0/0xf returned 0 after 0 usecs
[   11.671607] calling  efivars_sysfs_init+0x0/0x1d0 @ 1
[   11.676806] initcall efivars_sysfs_init+0x0/0x1d0 returned -19 after 0 usecs
[   11.684065] calling  efivars_pstore_init+0x0/0x89 @ 1
[   11.689266] initcall efivars_pstore_init+0x0/0x89 returned 0 after 0 usecs
[   11.696347] calling  vhost_net_init+0x0/0x20 @ 1
[   11.701210] initcall vhost_net_init+0x0/0x20 returned 0 after 109 usecs
[   11.708023] calling  vhost_init+0x0/0x7 @ 1
[   11.712328] initcall vhost_init+0x0/0x7 returned 0 after 0 usecs
[   11.718513] calling  staging_init+0x0/0x7 @ 1
[   11.722996] initcall staging_init+0x0/0x7 returned 0 after 0 usecs
[   11.729360] calling  eeepc_laptop_init+0x0/0x4f @ 1
[   11.734529] initcall eeepc_laptop_init+0x0/0x4f returned -19 after 145 usecs
[   11.741789] calling  sock_diag_init+0x0/0xf @ 1
[   11.746468] initcall sock_diag_init+0x0/0xf returned 0 after 15 usecs
[   11.753101] calling  llc_init+0x0/0x1b @ 1
[   11.757318] initcall llc_init+0x0/0x1b returned 0 after 0 usecs
[   11.763416] calling  snap_init+0x0/0x35 @ 1
[   11.767724] initcall snap_init+0x0/0x35 returned 0 after 2 usecs
[   11.773909] calling  blackhole_module_init+0x0/0xf @ 1
[   11.779199] initcall blackhole_module_init+0x0/0xf returned 0 after 0 usecs
[   11.786368] calling  nfnetlink_init+0x0/0x4b @ 1
[   11.791121] Netfilter messages via NETLINK v0.30.
[   11.795976] initcall nfnetlink_init+0x0/0x4b returned 0 after 4745 usecs
[   11.802877] calling  nfnetlink_log_init+0x0/0x8f @ 1
[   11.807997] initcall nfnetlink_log_init+0x0/0x8f returned 0 after 10 usecs
[   11.815078] calling  nf_conntrack_standalone_init+0x0/0x70 @ 1
[   11.821083] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   11.827587] initcall nf_conntrack_standalone_init+0x0/0x70 returned 0 after 6356 usecs
[   11.835742] calling  ctnetlink_init+0x0/0x92 @ 1
[   11.840493] ctnetlink v0.93: registering with nfnetlink.
[   11.845961] initcall ctnetlink_init+0x0/0x92 returned 0 after 5343 usecs
[   11.852864] calling  nf_conntrack_ftp_init+0x0/0x195 @ 1
[   11.858336] initcall nf_conntrack_ftp_init+0x0/0x195 returned 0 after 3 usecs
[   11.865684] calling  nf_conntrack_irc_init+0x0/0x148 @ 1
[   11.871157] initcall nf_conntrack_irc_init+0x0/0x148 returned 0 after 5 usecs
[   11.878507] calling  nf_conntrack_sip_init+0x0/0x1e4 @ 1
[   11.883976] initcall nf_conntrack_sip_init+0x0/0x1e4 returned 0 after 0 usecs
[   11.891324] calling  xt_init+0x0/0xb5 @ 1
[   11.895457] initcall xt_init+0x0/0xb5 returned 0 after 6 usecs
[   11.901463] calling  tcpudp_mt_init+0x0/0x14 @ 1
[   11.906215] initcall tcpudp_mt_init+0x0/0x14 returned 0 after 0 usecs
[   11.912848] calling  connsecmark_tg_init+0x0/0xf @ 1
[   11.917958] initcall connsecmark_tg_init+0x0/0xf returned 0 after 0 usecs
[   11.924948] calling  nflog_tg_init+0x0/0xf @ 1
[   11.929522] initcall nflog_tg_init+0x0/0xf returned 0 after 0 usecs
[   11.935976] calling  secmark_tg_init+0x0/0xf @ 1
[   11.940728] initcall secmark_tg_init+0x0/0xf returned 0 after 0 usecs
[   11.947362] calling  tcpmss_tg_init+0x0/0x14 @ 1
[   11.952116] initcall tcpmss_tg_init+0x0/0x14 returned 0 after 0 usecs
[   11.958750] calling  conntrack_mt_init+0x0/0x14 @ 1
[   11.963771] initcall conntrack_mt_init+0x0/0x14 returned 0 after 0 usecs
[   11.970671] calling  policy_mt_init+0x0/0x14 @ 1
[   11.975424] initcall policy_mt_init+0x0/0x14 returned 0 after 0 usecs
[   11.982057] calling  state_mt_init+0x0/0xf @ 1
[   11.986630] initcall state_mt_init+0x0/0xf returned 0 after 0 usecs
[   11.993087] calling  gre_offload_init+0x0/0x14 @ 1
[   11.998019] initcall gre_offload_init+0x0/0x14 returned 0 after 0 usecs
[   12.004832] calling  sysctl_ipv4_init+0x0/0x44 @ 1
[   12.009803] initcall sysctl_ipv4_init+0x0/0x44 returned 0 after 38 usecs
[   12.016704] calling  tunnel4_init+0x0/0x6d @ 1
[   12.021278] initcall tunnel4_init+0x0/0x6d returned 0 after 0 usecs
[   12.027732] calling  ipv4_netfilter_init+0x0/0xf @ 1
[   12.032841] initcall ipv4_netfilter_init+0x0/0xf returned 0 after 0 usecs
[   12.039831] calling  nf_conntrack_l3proto_ipv4_init+0x0/0x150 @ 1
[   12.046305] initcall nf_conntrack_l3proto_ipv4_init+0x0/0x150 returned 0 after 197 usecs
[   12.054638] calling  nf_defrag_init+0x0/0x14 @ 1
[   12.059390] initcall nf_defrag_init+0x0/0x14 returned 0 after 0 usecs
[   12.066022] calling  ip_tables_init+0x0/0x8f @ 1
[   12.070793] ip_tables: (C) 2000-2006 Netfilter Core Team
[   12.076260] initcall ip_tables_init+0x0/0x8f returned 0 after 5363 usecs
[   12.083161] calling  iptable_filter_init+0x0/0x40 @ 1
[   12.088475] initcall iptable_filter_init+0x0/0x40 returned 0 after 113 usecs
[   12.095734] calling  iptable_mangle_init+0x0/0x40 @ 1
[   12.101006] initcall iptable_mangle_init+0x0/0x40 returned 0 after 71 usecs
[   12.108174] calling  reject_tg_init+0x0/0xf @ 1
[   12.112837] initcall reject_tg_init+0x0/0xf returned 0 after 0 usecs
[   12.119379] calling  ulog_tg_init+0x0/0x74 @ 1
[   12.123969] initcall ulog_tg_init+0x0/0x74 returned 0 after 16 usecs
[   12.130513] calling  cubictcp_register+0x0/0x72 @ 1
[   12.135533] TCP: cubic registered
[   12.138944] initcall cubictcp_register+0x0/0x72 returned 0 after 3334 usecs
[   12.146114] calling  xfrm_user_init+0x0/0x43 @ 1
[   12.150865] Initializing XFRM netlink socket
[   12.155270] initcall xfrm_user_init+0x0/0x43 returned 0 after 4305 usecs
[   12.162170] calling  inet6_init+0x0/0x2c3 @ 1
[   12.166879] NET: Registered protocol family 10
[   12.172229] initcall inet6_init+0x0/0x2c3 returned 0 after 5447 usecs
[   12.178869] calling  ah6_init+0x0/0x75 @ 1
[   12.183086] initcall ah6_init+0x0/0x75 returned 0 after 0 usecs
[   12.189180] calling  esp6_init+0x0/0x75 @ 1
[   12.193484] initcall esp6_init+0x0/0x75 returned 0 after 0 usecs
[   12.199670] calling  xfrm6_transport_init+0x0/0x14 @ 1
[   12.204957] initcall xfrm6_transport_init+0x0/0x14 returned 0 after 0 usecs
[   12.212127] calling  xfrm6_mode_tunnel_init+0x0/0x14 @ 1
[   12.217594] initcall xfrm6_mode_tunnel_init+0x0/0x14 returned 0 after 0 usecs
[   12.224941] calling  xfrm6_beet_init+0x0/0x14 @ 1
[   12.229781] initcall xfrm6_beet_init+0x0/0x14 returned 0 after 0 usecs
[   12.236504] calling  ip6_tables_init+0x0/0x8f @ 1
[   12.241366] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   12.246922] initcall ip6_tables_init+0x0/0x8f returned 0 after 5450 usecs
[   12.253911] calling  ip6table_filter_init+0x0/0x40 @ 1
[   12.259372] initcall ip6table_filter_init+0x0/0x40 returned 0 after 169 usecs
[   12.266719] calling  ip6table_mangle_init+0x0/0x40 @ 1
[   12.272156] initcall ip6table_mangle_init+0x0/0x40 returned 0 after 145 usecs
[   12.279504] calling  nf_conntrack_l3proto_ipv6_init+0x0/0x129 @ 1
[   12.285788] initcall nf_conntrack_l3proto_ipv6_init+0x0/0x129 returned 0 after 11 usecs
[   12.294031] calling  nf_defrag_init+0x0/0x4c @ 1
[   12.298810] initcall nf_defrag_init+0x0/0x4c returned 0 after 25 usecs
[   12.305534] calling  ipv6header_mt6_init+0x0/0xf @ 1
[   12.310642] initcall ipv6header_mt6_init+0x0/0xf returned 0 after 0 usecs
[   12.317632] calling  reject_tg6_init+0x0/0xf @ 1
[   12.322384] initcall reject_tg6_init+0x0/0xf returned 0 after 0 usecs
[   12.329016] calling  sit_init+0x0/0xbc @ 1
[   12.333230] sit: IPv6 over IPv4 tunneling driver
[   12.338855] initcall sit_init+0x0/0xbc returned 0 after 5496 usecs
[   12.345219] calling  packet_init+0x0/0x39 @ 1
[   12.349701] NET: Registered protocol family 17
[   12.354281] initcall packet_init+0x0/0x39 returned 0 after 4476 usecs
[   12.360913] calling  br_init+0x0/0x90 @ 1
[   12.365100] initcall br_init+0x0/0x90 returned 0 after 59 usecs
[   12.371195] calling  init_rpcsec_gss+0x0/0x54 @ 1
[   12.376095] initcall init_rpcsec_gss+0x0/0x54 returned 0 after 56 usecs
[   12.382906] calling  dcbnl_init+0x0/0x5e @ 1
[   12.387300] initcall dcbnl_init+0x0/0x5e returned 0 after 0 usecs
[   12.393573] calling  init_dns_resolver+0x0/0xcd @ 1
[   12.398606] Key type dns_resolver registered
[   12.403000] initcall init_dns_resolver+0x0/0xcd returned 0 after 4307 usecs
[   12.410171] calling  mcheck_init_device+0x0/0x174 @ 1
[   12.416249] initcall mcheck_init_device+0x0/0x174 returned 0 after 856 usecs
[   12.423571] calling  mcheck_debugfs_init+0x0/0x3e @ 1
[   12.428806] initcall mcheck_debugfs_init+0x0/0x3e returned 0 after 14 usecs
[   12.435992] calling  severities_debugfs_init+0x0/0x3e @ 1
[   12.441571] initcall severities_debugfs_init+0x0/0x3e returned 0 after 10 usecs
[   12.449112] calling  threshold_init_device+0x0/0x44 @ 1
[   12.454986] initcall threshold_init_device+0x0/0x44 returned 0 after 468 usecs
[   12.462440] calling  hpet_insert_resource+0x0/0x1e @ 1
[   12.467739] initcall hpet_insert_resource+0x0/0x1e returned 0 after 5 usecs
[   12.474917] calling  update_mp_table+0x0/0x527 @ 1
[   12.479860] initcall update_mp_table+0x0/0x527 returned 0 after 4 usecs
[   12.486684] calling  lapic_insert_resource+0x0/0x46 @ 1
[   12.492070] initcall lapic_insert_resource+0x0/0x46 returned 0 after 4 usecs
[   12.499342] calling  io_apic_bug_finalize+0x0/0x1a @ 1
[   12.504636] initcall io_apic_bug_finalize+0x0/0x1a returned 0 after 4 usecs
[   12.511812] calling  print_ICs+0x0/0x437 @ 1
[   12.516211] 
[   12.516211] printing PIC contents
[   12.521153] ... PIC  IMR: ffff
[   12.524294] ... PIC  IRR: 0001
[   12.527441] ... PIC  ISR: 0000
[   12.530586] ... PIC ELCR: ce90
[   12.533734] printing local APIC contents on CPU#0/0:
[   12.538842] ... APIC ID:      00000000 (0)
[   12.543054] ... APIC VERSION: 80050010
[   12.546907] ... APIC TASKPRI: 00000000 (00)
[   12.551209] ... APIC ARBPRI: 000000e0 (e0)
[   12.555421] ... APIC PROCPRI: 00000000
[   12.559275] ... APIC LDR: 01000000
[   12.562772] ... APIC DFR: ffffffff
[   12.566269] ... APIC SPIV: 000001ff
[   12.569853] ... APIC ISR field:
[   12.573083] 0000000000000000000000000000000000000000000000000000000000000000
[   12.580405] ... APIC TMR field:
[   12.583633] 0000000000000000000000000000000000000000000000000000000000000000
[   12.590955] ... APIC IRR field:
[   12.594183] 0000000000010000000000000000000000000000000000000000000000008000
[   12.601502] ... APIC ESR: 00000000
[   12.604998] ... APIC ICR: 000208ef
[   12.608495] ... APIC ICR2: 0e000000
[   12.612080] ... APIC LVTT: 000000ef
[   12.615667] ... APIC LVTPC: 00000400
[   12.619344] ... APIC LVT0: 00010700
[   12.622929] ... APIC LVT1: 00000400
[   12.626514] ... APIC LVTERR: 000000fe
[   12.630279] ... APIC TMICT: 00000dc1
[   12.633954] ... APIC TMCCT: 00000000
[   12.637628] ... APIC TDCR: 00000003
[   12.641216] ... APIC EFEAT: 00040007
[   12.644891] ... APIC ECTRL: 00000000
[   12.648567] ... APIC EILVT0: 000000f9
[   12.652332] ... APIC EILVT1: 00000400
[   12.656098] ... APIC EILVT2: 00010000
[   12.659862] ... APIC EILVT3: 00010000
[   12.663627] 
[   12.665158] number of MP IRQ sources: 15.
[   12.669292] number of IO-APIC #4 registers: 24.
[   12.673959] testing the IO APIC.......................
[   12.679254] IO APIC #4......
[   12.682219] .... register #00: 04000000
[   12.686174] .......    : physical APIC id: 04
[   12.690662] .......    : Delivery Type: 0
[   12.694787] .......    : LTS          : 0
[   12.698916] .... register #01: 00178021
[   12.702867] .......     : max redirection entries: 17
[   12.708070] .......     : PRQ implemented: 1
[   12.712467] .......     : IO APIC version: 21
[   12.716951] .... register #02: 04000000
[   12.720901] .......     : arbitration: 04
[   12.725031] .... register #03: 04178021
[   12.728981] .......     : Boot DT    : 1
[   12.733019] .... IRQ redirection table:
[   12.736980] 1    0    0   0   0    0    0    00
[   12.741645] 0    0    0   0   0    1    1    31
[   12.746310] 0    0    0   0   0    1    1    30
[   12.750978] 0    0    0   0   0    1    1    33
[   12.755647] 0    0    0   0   0    1    1    34
[   12.760312] 0    0    0   0   0    1    1    35
[   12.764976] 0    0    0   0   0    1    1    36
[   12.769641] 0    0    0   0   0    1    1    37
[   12.774306] 0    0    0   0   0    1    1    38
[   12.778972] 0    1    0   1   0    1    1    39
[   12.783637] 0    0    0   0   0    1    1    3A
[   12.788302] 0    0    0   0   0    1    1    3B
[   12.792970] 0    0    0   0   0    1    1    3C
[   12.797634] 0    0    0   0   0    1    1    3D
[   12.802301] 0    0    0   0   0    1    1    3E
[   12.806967] 0    0    0   0   0    1    1    3F
[   12.811632] 0    1    0   1   0    1    1    52
[   12.816297] 0    1    0   1   0    1    1    42
[   12.820962] 0    1    0   1   0    1    1    B1
[   12.825627] 0    1    0   1   0    1    1    D1
[   12.830292] 1    0    0   0   0    0    0    00
[   12.834957] 1    0    0   0   0    0    0    00
[   12.839622] 1    1    0   1   0    1    1    22
[   12.844287] 1    0    0   0   0    0    0    00
[   12.848948] IRQ to pin mappings:
[   12.852274] IRQ0 -> 0:2
[   12.854810] IRQ1 -> 0:1
[   12.857344] IRQ3 -> 0:3
[   12.859883] IRQ4 -> 0:4
[   12.862416] IRQ5 -> 0:5
[   12.864950] IRQ6 -> 0:6
[   12.867482] IRQ7 -> 0:7
[   12.870017] IRQ8 -> 0:8
[   12.872548] IRQ9 -> 0:9
[   12.875081] IRQ10 -> 0:10
[   12.877793] IRQ11 -> 0:11
[   12.880506] IRQ12 -> 0:12
[   12.883223] IRQ13 -> 0:13
[   12.885937] IRQ14 -> 0:14
[   12.888650] IRQ15 -> 0:15
[   12.891362] IRQ16 -> 0:16
[   12.894081] IRQ17 -> 0:17
[   12.896793] IRQ18 -> 0:18
[   12.899501] IRQ19 -> 0:19
[   12.902214] IRQ22 -> 0:22
[   12.904932] .................................... done.
[   12.910223] initcall print_ICs+0x0/0x437 returned 0 after 385139 usecs
[   12.916952] calling  print_ipi_mode+0x0/0x2e @ 1
[   12.921706] Using IPI No-Shortcut mode
[   12.925569] initcall print_ipi_mode+0x0/0x2e returned 0 after 3778 usecs
[   12.932485] calling  pat_memtype_list_init+0x0/0x37 @ 1
[   12.937880] initcall pat_memtype_list_init+0x0/0x37 returned 0 after 15 usecs
[   12.945241] calling  init_oops_id+0x0/0x50 @ 1
[   12.949825] initcall init_oops_id+0x0/0x50 returned 0 after 9 usecs
[   12.956292] calling  pm_qos_power_init+0x0/0x5d @ 1
[   12.961657] initcall pm_qos_power_init+0x0/0x5d returned 0 after 336 usecs
[   12.968758] calling  pm_debugfs_init+0x0/0x2a @ 1
[   12.973627] initcall pm_debugfs_init+0x0/0x2a returned 0 after 6 usecs
[   12.980365] calling  printk_late_init+0x0/0x38 @ 1
[   12.985317] initcall printk_late_init+0x0/0x38 returned 0 after 1 usecs
[   12.992146] calling  tk_debug_sleep_time_init+0x0/0x41 @ 1
[   12.997812] initcall tk_debug_sleep_time_init+0x0/0x41 returned 0 after 18 usecs
[   13.005435] calling  debugfs_kprobe_init+0x0/0xa6 @ 1
[   13.010670] initcall debugfs_kprobe_init+0x0/0xa6 returned 0 after 30 usecs
[   13.017846] calling  taskstats_init+0x0/0x6e @ 1
[   13.022625] registered taskstats version 1
[   13.026841] initcall taskstats_init+0x0/0x6e returned 0 after 4148 usecs
[   13.033751] calling  clear_boot_tracer+0x0/0x2d @ 1
[   13.038775] initcall clear_boot_tracer+0x0/0x2d returned 0 after 4 usecs
[   13.045688] calling  kdb_ftrace_register+0x0/0x35 @ 1
[   13.050903] initcall kdb_ftrace_register+0x0/0x35 returned 0 after 15 usecs
[   13.058083] calling  fault_around_debugfs+0x0/0x3a @ 1
[   13.063387] initcall fault_around_debugfs+0x0/0x3a returned 0 after 15 usecs
[   13.070660] calling  max_swapfiles_check+0x0/0x7 @ 1
[   13.075779] initcall max_swapfiles_check+0x0/0x7 returned 0 after 4 usecs
[   13.082781] calling  set_recommended_min_free_kbytes+0x0/0xb0 @ 1
[   13.089063] initcall set_recommended_min_free_kbytes+0x0/0xb0 returned 0 after 10 usecs
[   13.097313] calling  kmemleak_late_init+0x0/0x8e @ 1
[   13.102493] kmemleak: Kernel memory leak detector initialized
[   13.102495] kmemleak: Automatic memory scanning thread started
[   13.114430] initcall kmemleak_late_init+0x0/0x8e returned 0 after 11736 usecs
[   13.121793] calling  check_early_ioremap_leak+0x0/0x5d @ 1
[   13.127455] initcall check_early_ioremap_leak+0x0/0x5d returned 0 after 4 usecs
[   13.134993] calling  init_root_keyring+0x0/0xa @ 1
[   13.139963] initcall init_root_keyring+0x0/0xa returned 0 after 34 usecs
[   13.146877] calling  fail_make_request_debugfs+0x0/0x23 @ 1
[   13.152672] initcall fail_make_request_debugfs+0x0/0x23 returned 0 after 53 usecs
[   13.160392] calling  prandom_reseed+0x0/0x3e @ 1
[   13.165171] initcall prandom_reseed+0x0/0x3e returned 0 after 21 usecs
[   13.171910] calling  pci_resource_alignment_sysfs_init+0x0/0x14 @ 1
[   13.178378] initcall pci_resource_alignment_sysfs_init+0x0/0x14 returned 0 after 10 usecs
[   13.186805] calling  pci_sysfs_init+0x0/0x44 @ 1
[   13.192863] initcall pci_sysfs_init+0x0/0x44 returned 0 after 1270 usecs
[   13.199769] calling  boot_wait_for_devices+0x0/0x28 @ 1
[   13.205153] initcall boot_wait_for_devices+0x0/0x28 returned -19 after 4 usecs
[   13.212604] calling  deferred_probe_initcall+0x0/0x80 @ 1
[   13.218251] initcall deferred_probe_initcall+0x0/0x80 returned 0 after 86 usecs
[   13.225796] calling  late_resume_init+0x0/0x190 @ 1
[   13.230827]   Magic number: 6:895:394
[   13.234713] initcall late_resume_init+0x0/0x190 returned 0 after 3801 usecs
[   13.241891] calling  firmware_memmap_init+0x0/0x29 @ 1
[   13.247497] initcall firmware_memmap_init+0x0/0x29 returned 0 after 306 usecs
[   13.254853] calling  pci_mmcfg_late_insert_resources+0x0/0x43 @ 1
[   13.261136] initcall pci_mmcfg_late_insert_resources+0x0/0x43 returned 0 after 2 usecs
[   13.269299] calling  tcp_congestion_default+0x0/0xf @ 1
[   13.274685] initcall tcp_congestion_default+0x0/0xf returned 0 after 2 usecs
[   13.281952] calling  ip_auto_config+0x0/0xeb7 @ 1
[   13.286813] initcall ip_auto_config+0x0/0xeb7 returned 0 after 15 usecs
[   13.293636] calling  software_resume+0x0/0x280 @ 1
[   13.298572] PM: Hibernation image not present or could not be loaded.
[   13.305205] initcall software_resume+0x0/0x280 returned -2 after 6484 usecs
[   13.312614] async_waiting @ 1
[   13.315680] async_continuing @ 1 after 0 usec
[   13.320514] Freeing unused kernel memory: 944K (c185e000 - c194a000)
[   13.327102] Write protecting the kernel text: 6268k
[   13.332172] Write protecting the kernel read-only data: 1856k
[   13.338104] NX-protecting the kernel data: 3972k
\rinit started: BusyBox v1.14.3 (2014-07-14 12:59:56 EDT)
Mounting directories  [  OK  ]
[   13.461407] mv (1275) used greatest stack depth: 6668 bytes left
mount: mount point /proc/bus/usb does not exist
mount: mount point /proc/xen does not exist
mount: mount point /sys/kernel/con unary operator expected
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G[   13.527207] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 1335
[   13.534528] acpi-cpufreq: overriding BIOS provide_mod] @ 1356
^G^G^G^G^G^G^G^G[   13.551527] SCSI subsystem initialized
[   13.554661] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned 0 after 20171 usecs
^G^G^G^G^G[   13.564257] initcall init_scsi+0x0/0x90 [scsi_mod] returned 0 after 13808 usecs
udevd-work[1352][   13.572819] modprobe (1335) used greatest stack depth: 6384 bytes left
: error opening [   13.581664] calling  ata_init+0x0/0x295 [libata] @ 1361
ATTR{/sys/devices/system/cpu/cpu[   13.589383] calling  rtl8169_pci_driver_init+0x0/0x1000 [r8169] @ 1391
[   13.591040] calling  acpi_wmi_init+0x0/0x1000 [wmi] @ 1357
0/online} for wr[   13.591709] wmi: Mapper loaded
[   13.591711] initcall acpi_wmi_init+0x0/0x1000 [wmi] returned 0 after 653 usecs
iting: Permissio[   13.614985] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
n denied

[   13.622113] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[   13.633324] r8169 0000:02:00.0: irq 26 for MSI/MSI-X
[   13.638871] calling  drm_fb_helper_modinit+0x0/0x1000 [drm_kms_helper] @ 1873
[   13.645212] libata version 3.00 loaded.
[   13.645224] initcall ata_init+0x0/0x295 [libata] returned 0 after 56222 usecs
[   13.660844] calling  ahci_pci_driver_init+0x0/0x1000 [ahci] @ 1366
[   13.667369] ahci 0000:00:11.0: version 3.0
[   13.670869] calling  ata_generic_pci_driver_init+0x0/0x1000 [ata_generic] @ 1361
[   13.671076] initcall ata_generic_pci_driver_init+0x0/0x1000 [ata_generic] returned 0 after 200 usecs
[   13.689492] calling  skge_init_module+0x0/0x1000 [skge] @ 1867
[   13.691171] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[   13.691173] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[   13.691786] r8169 0000:02:00.0 eth0: RTL8168c/8111c at 0xf844e000, 00:25:11:18:a1:2e, XID 1c4000c0 IRQ 26
[   13.691788] r8169 0000:02:00.0 eth0: jumbo features [frames: 6128 bytes, tx checksumming: ko]
[   13.691962] initcall rtl8169_pci_driver_init+0x0/0x1000 [r8169] returned 0 after 75321 usecs
[   13.740850] IOAPIC[0]: Set routing entry (4-20 -> 0x72 -> IRQ 20 Mode:1 Active:1 Dest:15)
[   13.741685] modprobe (1391) used greatest stack depth: 5484 bytes left
Waiting for devi[   13.756092] skge: 1.14 addr 0xfebfc000 irq 20 chip Yukon rev 1
ces [  OK  ]
[   13.765414] skge 0000:04:05.0 eth1: addr 00:0a:5e:5c:f5:72
[   13.766159] scsi0 : ahci
[   13.774546] initcall skge_init_module+0x0/0x1000 [skge] returned 0 after 33755 usecs
[   13.778717] scsi1 : ahci
[   13.781375] scsi2 : ahci
[   13.784426] scsi3 : ahci
[   13.793463] scsi4 : ahci
[   13.798995] scsi5 : ahci
[   13.802643] initcall drm_fb_helper_modinit+0x0/0x1000 [drm_kms_helper] returned 0 after 141360 usecs
[   13.803228] ata1: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffd00 irq 22
[   13.803232] ata2: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffd80 irq 22
[   13.803234] ata3: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffe00 irq 22
[   13.803237] ata4: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffe80 irq 22
[   13.803240] ata5: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6fff00 irq 22
[   13.803242] ata6: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6fff80 irq 22
[   13.805598] ahci 0000:03:00.0: JMB361 has only one port
[   13.805611] ahci 0000:03:00.0: forcing port_map 0x3 -> 0x1
[   13.805712] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x1 impl SATA mode
[   13.805715] ahci 0000:03:00.0: flags: 64bit ncq led clo pmp pio 
[   13.809568] scsi6 : ahci
[   13.810861] scsi7 : ahci
[   13.811661] ata7: SATA max UDMA/133 abar m8192@0xfeafe000 port 0xfeafe100 irq 19
[   13.811661] ata8: DUMMY
[   13.811823] initcall ahci_pci_driver_init+0x0/0x1000 [ahci] returned 0 after 141342 usecs
[   13.909518] calling  ttm_init+0x0/0x1000 [ttm] @ 1873
[   13.914887] initcall ttm_init+0x0/0x1000 [ttm] returned 0 after 158 usecs
[   13.915086] calling  fb_console_init+0x0/0x1000 [fbcon] @ 2156
[   13.928054] initcall fb_console_init+0x0/0x1000 [fbcon] returned 0 after 12671 usecs
[   13.940680] calling  radeon_init+0x0/0xb0 [radeon] @ 1873
[   13.946239] [drm] radeon kernel modesetting enabled.
[   13.952981] [drm] initializing kernel modesetting (RS780 0x1002:0x9610 0x1019:0x2119).
[   13.961191] [drm] register mmio base: 0xFE8F0000
[   13.965942] [drm] register mmio size: 65536
[   13.971494] ATOM BIOS: 113
[   13.974392] radeon 0000:01:05.0: VRAM: 256M 0x00000000C0000000 - 0x00000000CFFFFFFF (256M used)
[   13.983347] radeon 0000:01:05.0: GTT: 512M 0x00000000A0000000 - 0x00000000BFFFFFFF
[   13.991142] [drm] Detected VRAM RAM=256M, BAR=256M
[   13.996071] [drm] RAM width 32bits DDR
[   14.000326] [TTM] Zone  kernel: Available graphics memory: 432674 kiB
[   14.006995] [TTM] Zone highmem: Available graphics memory: 1941382 kiB
[   14.013716] [TTM] Initializing pool allocator
[   14.018295] [TTM] Initializing DMA pool allocator
[   14.023336] [drm] radeon: 256M of VRAM memory ready
[   14.028361] [drm] radeon: 512M of GTT memory ready.
[   14.033535] [drm] Loading RS780 Microcode
[   14.038147] [drm] radeon: power management initialized
[   14.043436] [drm] GART: num cpu pages 131072, num gpu pages 131072
[   14.067686] [drm] PCIE GART of 512M enabled (table at 0x00000000C0040000).
[   14.074877] radeon 0000:01:05.0: WB enabled
[   14.079182] radeon 0000:01:05.0: fence driver on ring 0 use gpu addr 0x00000000a0000c00 and cpu addr 0xffca8c00
[   14.089578] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   14.096388] [drm] Driver supports precise vblank timestamp query.
[   14.102692] [drm] radeon: irq initialized.
[   14.113578] ata4: SATA link down (SStatus 0 SControl 300)
[   14.119205] ata5: SATA link down (SStatus 0 SControl 300)
[   4.140787] [drm] ib test on ring 0 succeeded in 0 usecs
[   14.144114] [drm] Radeon Display Connectors
[   14.144114] [drm] Connector 0:
[   14.144114] [drm]   VGA-1
[   14.144116] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[   14.144116] [drm]   Encoders:
[   14.144117] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[   14.144117] [drm] Connector 1:
[   14.144117] [drm]   HDMI-A-1
[   14.144118] [drm]   HPD3
[   14.144118] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[   14.144119] [drm]   Encoders:
[   14.144119] [drm]     DFP3: INTERNAL_KLDSCP_LVTMA
[   14.152870] radeon 0000:01:05.0: No connectors reported connected with modes
[   14.152894] [drm] Cannot find any crtc or sizes - going 1024x768
[   14.166912] [drm] fb mappable at 0xD0141000
[   14.166913] [drm] vram apper at 0xD0000000
[   14.166913] [drm] size 3145728
[   14.166913] [drm] fb depth is 24
G^G^G^G^G^G^G[   14.166914] [drm]    pitch is 4096
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G[   14.236926] fbcon: radeondrmfb (fb0) is primary device
[   14.245343] Console: switching to colour frame buffer device 128x4ondrmfb frame buffer device
[   14.270950] radeon 0000:01:05.0: registered panic notifier
^G^G^G^G^G^G^G^G^G^G^G^G[   14.283807] [drm] Initialized radeon 2.39.0 20080528 for 0000:01:05.0 on minor 0
[   14.291611] initcall radeon_init+0x0/0xbG^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G[   14.389370] ata2: softreset failed (device not ready)
[   14.394581] ata2: applying PMP SRST workaround and retrying
[   14g PMP SRST workaround and retrying
[   14.411357] ttyS0: 4 input overrun(s)
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G[   14.564221] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[   14.570621] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[   14.578013] ata2.00: ATA-7: Maxtor 6L080M0, BACE1G10, max UDMA/133
[   14.584377] ata2.00: 156250000 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   14.592496] ata1.00: ATA-7: Maxtor 6L080M0, BACE1G10, max UDMA/133
[   14.598858] ata1.00: 156250000 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   14.607994] ata2.00: configured for UDMA/133
[   14.612401] ata1.00: configured for UDMA/133
[   14.617237] scsi 0:0:0:0: Direct-Access     ATA      Maxtor 6L080M0   1G10 PQ: 0 ANSI: 5
[   14.627258] scsi 1:0:0:0: Direct-Access     ATA      Maxtor 6L080M0   1G10 PQ: 0 ANSI: 5
[   14.636538] calling  crc_t10dif_mod_init+0x0/0x1000 [crc_t10dif] @ 2527
[   14.643688] modprobe (1366) used greatest stack depth: 5384 bytes left
[   14.650737] calling  crct10dif_mod_init+0x0/0x1000 [crct10dif_generic] @ 2537
[   14.658165] initcall crct10dif_mod_init+0x0/0x1000 [crct10dif_generic] returned 0 after 77 usecs
[   14.668118] initcall crc_t10dif_mod_init+0x0/0x1000 [crc_t10dif] returned 0 after 24206 usecs
[   14.678003] calling  init_sd+0x0/0x1000 [sd_mod] @ 2527
[   14.684308] sd 0:0:0:0: [sda] 156250000 512-byte logical blocks: (80.0 GB/74.5 GiB)
[   14.684702] initcall init_sd+0x0/0x1000 [sd_mod] returned 0 after 1287 usecs
[   14.684734] sd 1:0:0:0: [sdb] 156250000 512-byte logical blocks: (80.0 GB/74.5 GiB)
[   14.684991] sd 1:0:0:0: [sdb] Write Protect is off
[   14.684993] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[   14.685092] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.708253]  sdb: sdb1
[   14.709513] sd 1:0:0:0: [sdb] Attached SCSI disk
[   14.734177] sd 0:0:0:0: [sda] Write Protect is off
[   14.739126] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[   14.744465] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.744882] calling  init_sg+0x0/0x1000 [sg] @ 2550
[   14.745277] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   14.745579] sd 1:0:0:0: Attached scsi generic sg1 type 0
[   14.745654] initcall init_sg+0x0/0x1000 [sg] returned 0 after 751 usecs
[   14.782252] random: nonblocking pool is initialized
[   14.812754]  sda: sda1 sda2 < sda5 >
[   14.818469] sd 0:0:0:0: [sda] Attached SCSI disk
Waiting for init.pre_custom [  OK  ]
Waiting for fb [  OK  ]
Waiting for network [  OK  ]
Bringing up loopback interface:  [  OK  ]
Bringing up interface eth0:  [   15.043040] r8169 0000:02:00.0 eth0: link down
[   15.043055] r8169 0000:02:00.0 eth0: link down
[   15.052229] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   15.060202] device eth0 entered promiscuous mode
[  OK  ]
Bringing up interface eth1:  
Determining IP information for e[   15.096708] skge 0000:04:05.0 eth1: enabling interface
th1...[   15.110056] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   17.374054] r8169 0000:02:00.0 eth0: link up
[   17.378454] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   18.312362] skge 0000:04:05.0 eth1: Link is up at 1000 Mbps, full duplex, flow control both
[   18.320965] IPv6: ADDRCONF(NE^G done.
[  OK  ]
Bringing up interface switch:  
Determining IP information for s[   19.249453] switch: port 1(eth0) entered forwarding state
witch...[   19.255350] switch: p^G^G^G^G done.
[  OK  ]
touch: cannot touch `/var/lock/subsys/network': No such file or directory
Waiting for init.custom [  OK  ]

Starting SSHd ...

    SSH started [2981]


Waiting for SSHd [  OK  ]
WARNING: ssh currently running [2981] ignoring start request
[   21.605219] calling  crc32c_intel_mod_init+0x0/0x1000 [crc32c_intel] @ 3017
[   21.612398] initcall crc32c_intel_mod_init+0x^G^G^G^G^G^G^G^G^G^G^G^G^G[   21.624274] calling  crc32c_mod_init+0x0/0x1000 [crc32c_generic] @ 3017
[   21.631169] initcall crc32c_mod_init+0x0/0x1000 [crc32c_generic] returned 0 after 74 usecs
[   21.641390] calling  libcrc32c_mod_init+0x0/0x1000 [libcrc32c] @ 3022
[   21.648042] initcall libcrc32c_mod_init+0x0/0x1000 [libcrc32c] returned 0 after 6 usecs
[   21.658921] calling  iscsi_transport_init+0x0/0x1000 [scsi_transport_iscsi] @ 3024
[   21.666719] Loading iSCSI transport class v2.0-870.
[   21.672392] initcall iscsi_transport_init+0x0/0x1000 [scsi_transport_iscsi] returned 0 after 5540 usecs
[   21.684765] calling  iscsi_sw_tcp_init+0x0/0x1000 [iscsi_tcp] @ 3024
[   21.691511] iscsi: registered transport (tcp)
[   21.696002] initcall iscsi_sw_tcp_init+0x0/0x1000 [iscsi_tcp] returned 0 after 4567 usecs
Could not read fw values.
Jul 14 19:22:12 tst034 syslogd 1.5.0: restart.
[0:0:0:0]    disk    ATA      Maxtor 6L080M0   1G10  /dev/sda 
[1:0:0:0]    disk    ATA      Maxtor 6L080M0   1G10  /dev/sdb 
00:00.0 Host bridge: Advanced Micro Devices [AMD] RS780 Host Bridge
00:01.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI 07.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 3)
00:11.0 SATA controller: ATI Technologies Inc SB700/SB800 SATA Controller [AHCI mode]
00:12.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller
00:12.1 USB Controller: ATI Technologies Inc SB700 USB OHCI1 Controller
00:12.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller
00:13.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller
00:13.1 USB Controller: ATI Technologies Inc SB700 USB OHCI1 Controller
00:13.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller
00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 3a)
00:14.3 ISA bridge: ATI Technologies Inc SB700/SB800 LPC host controller
00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge
00:14.5 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI2 Controller
00:18.0 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] HyperTransport Configuration
00:18.1 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] Address Map
00:18.2 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] DRAM Controller
00:18.3 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] Miscellaneous Control
00:18.4 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] Link Control
01:05.0 VGA compatible controller: ATI Technologies Inc Radeon HD 3200 Graphics
01:05.1 Audio device: ATI Technologies Inc RS780 Azalia controller
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)
03:00.0 SATA controller: JMicron Technology Corp. JMB361 AHCI/IDE (rev 02)
03:00.1 IDE interface: JMicron Technology Corp. JMB361 AHCI/IDE (rev 02)
04:05.0 Ethernet controller: 3Com Corporation 3c940 10/100/1000Base-T [Marvell] (rev 10)
04:07.0 Serial controller: NetMos Technology PCI 9835 Multi-I/O Controller (rev 01)
           CPU0       CPU1       CPU2       CPU3       
  0:       8521          0          0          0   IO-APIC-edge      timer
  1:          0          0          0          2   IO-APIC-edge      i8042
  8:          0          1          2         34   IO-APIC-edge      rtc0
  9:          0          0          0          0   IO-APIC-fasteoi   acpi
 12:          0          0          0          4   IO-APIC-edge      i8042
 16:          0          0          0          2   IO-APIC  16-fasteoi   ohci_hcd:usb3, ohci_hcd:usb4
 17:          0          0          0          0   IO-APIC  17-fasteoi   ehci_hcd:usb1
 18:          0          0          2          4   IO-APIC  18-fasteoi   ohci_hcd:usb5, ohci_hcd:usb6, ohci_hcd:usb7, radeon
 19:          0          0          0          0   IO-APIC  19-fasteoi   ehci_hcd:usb2, ahci
 20:          0          0          3         18   IO-APIC  20-fasteoi   eth1
 22:          0          0          2        192   IO-APIC  22-fasteoi   serial, ahci
 26:          0          0          2        131   PCI-MSI-edge      eth0
NMI:          0          0          0          0   Non-maskable interrupts
LOC:       1651       5578       7400       6544   Local timer interrupts
SPU:          0          0          0          0   Spurious interrupts
PMI:          0          0          0          0   Performance monitoring interrupts
IWI:          0          0          0          0   IRQ work interrupts
RTR:          0          0          0          0   APIC ICR read retries
RES:       1594       2640       2149       2261   Rescheduling interrupts
CAL:        273        332        342        365   Function call interrupts
TLB:         69         53        104         88   TLB shootdowns
TRM:          0          0          0          0   Thermal event interrupts
THR:         ^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G 0          0          0          0   Threshold APIC interrupts
MCE:          0          0          0          0   Machine check exceptions
MCP:          1          1          1          1   Machine check polls
THR:          0          0          0          0   Hypervisor callback interrupts
ERR:          0
MIS:          0
00000000-00000fff : reserved
00001000-0009f3ff : System RAM
0009f400-0009ffff : reserved
000a0000-000bffff : PCI Bus 0000:00
  000a0000-000bffff : Video RAM area
000c0000-000cebff : Video ROM
000cf000-000d09ff : Adapter ROM
000d1000-000d1fff : Adapter ROM
000d5000-000d57ff : Adapter ROM
000e6000-000fffff : reserved
  000f0000-000fffff : System ROM
00100000-cfeaffff : System RAM
  01000000-0161e5a6 : Kernel code
  0161e5a7-0185cb7f : Kernel data
  01951000-01a2afff : Kernel bss
cfeb0000-cfebdfff : ACPI Tables
cfebe000-cfedffff : ACPI Non-volatile Storage
cfee0000-cfefffff : reserved
cff00000-dfffffff : PCI Bus 0000:00
  d0000000-dfffffff : PCI Bus 0000:01
    d0000000-dfffffff : 0000:01:05.0
e0000000-efffffff : PCI MMCONFIG 0000 [bus 00-ff]
  e0000000-efffffff : pnp 00:05
f0000000-febfffff : PCI Bus 0000:00
  fdf00000-fdffffff : PCI Bus 0000:02
    fdff0000-fdffffff : 0000:02:00.0
      fdff0000-fdffffff : r8169
  fe6f6000-fe6f6fff : 0000:00:14.5
    fe6f6000-fe6f6fff : ohci_hcd
  fe6f7000-fe6f7fff : 0000:00:13.1
    fe6f7000-fe6f7fff : ohci_hcd
  fe6fc000-fe6fcfff : 0000:00:13.0
    fe6fc000-fe6fcfff : ohci_hcd
  fe6fd000-fe6fdfff : 0000:00:12.1
    fe6fd000-fe6fdfff : ohci_hcd
  fe6fe000-fe6fefff : 0000:00:12.0
    fe6fe000-fe6fefff : ohci_hcd
  fe6ff400-fe6ff4ff : 0000:00:13.2
    fe6ff400-fe6ff4ff : ehci_hcd
  fe6ff800-fe6ff8ff : 0000:00:12.2
    fe6ff800-fe6ff8ff : ehci_hcd
  fe6ffc00-fe6fffff : 0000:00:11.0
    fe6ffc00-fe6fffff : ahci
  fe700000-fe8fffff : PCI Bus 0000:01
    fe700000-fe7fffff : 0000:01:05.0
    fe8e8000-fe8ebfff : 0000:01:05.1
    fe8f0000-fe8fffff : 0000:01:05.0
  fe900000-fe9fffff : PCI Bus 0000:02
    fe9c0000-fe9dffff : 0000:02:00.0
    fe9ff000-fe9fffff : 0000:02:00.0
      fe9ff000-fe9fffff : r8169
  fea00000-feafffff : PCI Bus 0000:03
    feafe000-feafffff : 0000:03:00.0
      feafe000-feafffff : ahci
  feb00000-febfffff : PCI Bus 0000:04
    febc0000-febdffff : 0000:04:05.0
    febfc000-febfffff : 0000:04:05.0
      febfc000-febfffff : skge
fec00000-fec003ff : IOAPIC 0
fec10000-fec1001f : pnp 00:03
fed00000-fed003ff : HPET 2
  fed00000-fed003ff : PNP0103:00
fee00000-fee00fff : Local APIC
  fee00000-fee00fff : pnp 00:02
ff700000-ffffffff : reserved
  ffb80000-ffbfffff : pnp 00:03
100000000-11fffffff : System RAM
MemTotal:        3882764 kB
MemFree:         3582768 kB
MemAvailable:    3494004 kB
Buffers:               0 kB
Cached:           241964 kB
SwapCached:            0 kB
Active:            41724 kB
Inactive:         201532 kB
Active(anon):      41724 kB
Inactive(anon):   201532 kB
Active(file):          0 kB
Inactive(file):        0 kB
Unevictable:        2664 kB
Mlocked:            2664 kB
HighTotal:       3017416 kB
HighFree:        2795548 kB
LowTotal:         865348 kB
LowFree:          787220 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:                 0 kB
Writeback:             0 kB
AnonPages:          3624 kB
Mapped:             5792 kB
Shmem:            241964 kB
Slab:              40980 kB
SReclaimable:       6060 kB
SUnreclaim:        34920 kB
KernelStack:         784 kB
PageTables:          452 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:     1941380 kB
Committed_AS:     250980 kB
VmallocTotal:     122880 kB
VmallocUsed:       10576 kB
VmallocChunk:     105972 kB
AnonHugePages:         0 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:       12280 kB
DirectMap2M:      901120 kB
Waiting for init.late [  OK  ]
+ . /etc/init.d/functions
++ TEXTDOMAIN=initscripts
++ umask 022
++ PATH=/sbin:/usr/sbin:/bin:/usr/bin
++ export PATH
++ '[' -z '' ']'
++ COLUMNS=80
++ '[' -z '' ']'
+++ /sbin/consoletype
++ CONSOLETYPE=serial
++ '[' -f /etc/sysconfig/i18n -a -z '' -a -z '' ']'
++ '[' -z '' ']'
++ '[' -f /etc/sysconfig/init ']'
++ . /etc/sysconfig/init
+++ BOOTUP=color
+++ RES_COL=60
+++ MOVE_TO_COL='echo -en \033[60G'
+++ SETCOLOR_SUCCESS='echo -[   22.581011] mount.nfs (3069) used greatest stack depth: 5372 bytes left
en \033[0;32m'
+++ SETCOLOR_FAILURE='echo -en \033[0;31m'
+++ SETCOLOR_WARNING='echo -en \033[0;33m'
+++ SETCOLOR_NORMAL='echo -en \033[0;39m'
+++ LOGLEVEL=3
+++ PROMPT=yes
+++ AUTOSWAP=no
+++ ACTIVE_CONSOLES='/dev/tty[1-6]'
++ '[' serial = serial ']'
++ BOOTUP=serial
++ MOVE_TO_COL=
++ SETCOLOR_SUCCESS=
++ SETCOLOR_FAILURE=
++ SETCOLOR_WARNING=
++ SETCOLOR_NORMAL=
++ __sed_discard_ignored_files='/\(~\|\.bak\|\.orig\|\.rpmnew\|\.rpmorig\|\.rpmsave\)$/d'
+ mkdir -p /mnt/lab
+ echo '192.168.102.1  build'
+ ping -q -c 1 build
PING build.dumpdata.com (192.168.102.1) 56(84) bytes of data.

--- build.dumpdata.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.260/0.260/0.260/0.000 ms
+ '[' 0 -eq 0 ']'
+ mount build:/srv/tftpboot/lab /mnt/lab -o vers=3
+ iscsiadm -m discovery -t st -p build
192.168.102.1:3260,1 iqn.2003-01.org.linux-iscsi.target:sn.bd5777dc54e541e0bd772761999275e6
+ iscsiadm -m node -L all
Logging in to [iface: default, target: iqn.2003-01.org.linux-iscsi.target:sn.bd5777dc54e541e0bd772761999275e6, portal: 192.168.102.1,3260]
Jul 14 19:22:13 tst034 iscsid: transport class version 2.0-870. iscsid version 2.0-870
Jul 14 19:22:13 tst034 iscsid: iSCSI daemon with pid=3052 started!
[   22.847498] scsi8 : iSCSI Initiator over TCP/IP
[   23.110152] scsi 8:0:0:0: Direct-Access     LIO-ORG  IBLOCK           4.0  PQ: 0 ANSI: 5
[   23.120814] sd 8:0:0:0: [sdc] 19get[   23.140048] sd 8:0:0:0: [sdc] Write Protect is off
[   23.145839] sd 8:0:0:0: [sdc] Mode Sense: 2f 00 00 00
: iqn.2003-01.or[   23.151761] sd 8:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   23.151924] calling  dm_init+0x0/0x3f [dm_mod] @ 3091
g.linux-iscsi.ta[   23.167549] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
rget:sn.bd5777dc[   23.177219] initcall dm_init+0x0/0x3f [dm_mod] returned 0 after 24720 usecs
54e541e0bd772761[   23.186704] calling  dm_multipath_init+0x0/0x1000 [dm_multipath] @ 3091
999275e6, portal[   23.194282] device-mapper: multipath: version 1.7.0 loaded
: 192.168.102.1,[   23.201109] initcall dm_multipath_init+0x0/0x1000 [dm_multipath] returned 0 after 6894 usecs
3260]: successful
^G+ modprobe dm-multipath
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G+ sleep 5
[   23.224678]  sdc: unknown partition table
[   23.236944] sd 8:0:0:0: [sdc] Attached SCSI disk
Jul 14 19:22:14 tst034 iscsid: connection1:0 is operational now
+ pvscan
  PV /dev/sdc   VG guests   lvm2 [931.44 GiB / 113.44 GiB free]
  Total: 1 [931.44 GiB] / in use: 1 [931.44 GiB] / in no VG: 0 ge -aly
^G^G^G^G  31 logical volume(s) in volume group "guests" now active
+ echo 'NFS done'
NFS done
+ xl info
xc: error: Could not obtain handle on privileged command interface (2 = No such file or directory): Internal error
libxl: error: libxl.c:99:libxl_ctx_alloc: cannot open libxc handle: No such file or directory
cannot init xl context
+ '[' -e /sys/kernel/debug/xen/mmu/p2m ']'
+ cat /sys/kernel/debug/xen/mmu/p2m
++ boot_parameter cpuplug
++ local param
++ local value
+++ cat /proc/cmdline
+++ tr -s ' \t' '\n'
+++ egrep '^cpuplug=|^cpuplug$'
+++ tail -1
++ param=
++ '[' -z '' ']'
++ return 1
+ HOTPLUG=
+ '[' 1 -eq 0 ']'
+ TMEM_LOADED=0
+ swapon /dev/xvda
swapon: /dev/xvda: stat failed: No such file or directory
+ '[' 255 -eq 0 ']'
++ boot_parameter run
++ local param
++ local value
+++ cat /proc/cmdline
+++ tr -s ' \t' '\n'
+++ egrep '^run=|^run$'
+++ tail -1
++ param=
++ '[' -z '' ']'
++ return 1
+ HOTPLUG=
+ '[' 1 -eq 0 ']'
Jul 14 19:22:19 tst034 init: starting pid 3287, tty '/dev/tty1': '/bin/sh'
Jul 14 19:22:21 tst034 init: reloading /etc/inittab
Jul 14 19:22:21 tst034 init: starting pid 3291, tty '/dev/ttyS0': '/bin/sh'


BusyBox v1.14.3 (2014-07-14 12:59:56 EDT) built-in shell (ash)
Enter 'help' for a list of built-in commands.

# \a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a
\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a
\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a
\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\a[   34.291619] switch: port 1(eth0) entered forwarding state
Jul 14 19:24:12 tst034 sshd[3293]: WARNING: /etc/ssh/moduli does not exist, using fixed modulus
Jul 14 19:24:12 tst034 sshd[3293]: Accepted publickey for root from 192.168.102.1 port 47599 ssh2
Jul 14 19:24:12 tst034 sshd[3293]: Received disconnect from 192.168.102.1: 11: disconnected by user

# reboot
# Jul 14 19:31:17 tst034 init: starting pid 3297, tty '': '/etc/init.d/halt'
Usage: /etc/init.d/halt {start}
\rThe system is going down NOW!
Jul 14 19:31:17 tst034 init: The system is going down NOW!
\rSent SIGTERM to all processes
Jul 14 19:31:17 tst034 exiting on signal 15
\rSent SIGKILL to[  568.399114] sd 8:0:0:0: shutdown
[  568.402457] sd 1:0:0:0: shutdown
[  568.405782] sd 1:0:0:0: [sdb] Synchronizing SCSI ca
[  568.436455] serio serio1: shutdown
[  568.439988] serio serio0: shutdown
[  568.443489] i8042 i8042: shutdown
[  568.446921] ttyS0: 1 input overrun(s)
[  568.447012] system 00:06: shutdown
[  568.447013] system 00:05: shutdown
[  568.447014] system 00:04: shutdown
[  568.447015] system 00:03: shutdown
[  568.447016] system 00:02: shutdown
[  568.447017] rtc_cmos 00:01: shutdown
[  568.447033] system 00:00: shutdown
[  568.447036] serial 0000:04:07.0: shutdown
[  568.447038] skge 0000:04:05.0: shutdown
[  568.448248] pci 0000:00:14.4: System wakeup enabled by ACPI
[  568.489181] pci 0000:03:00.1: shutdown
[  568.493044] ahci 0000:03:00.0: shutdown
[  568.496993] r8169 0000:02:00.0: shutdown
[  568.502241] pci 0000:01:05.1: shutdown
[  568.506100] radeon 0000:01:05.0: shutdown
[  568.510226] pci 0000:00:18.4: shutdown
[  568.514084] pci 0000:00:18.3: shutdown
[  568.517943] pci 0000:00:18.2: shutdown
[  568.521806] pci 0000:00:18.1: shutdown
[  568.525669] pci 0000:00:18.0: shutdown
[  568.529531] ohci-pci 0000:00:14.5: shutdown
[  568.535207] pci 0000:00:14.4: shutdown
[  568.539070] pci 0000:00:14.3: shutdown
[  568.542932] pci 0000:00:14.0: shutdown
[  568.546793] ehci-pci 0000:00:13.2: shutdown
[  568.552451] ohci-pci 0000:00:13.1: shutdown
[  568.558112] ohci-pci 0000:00:13.0: shutdown
[  568.563775] ehci-pci 0000:00:12.2: shutdown
[  568.569923] ------------[ cut here ]------------
[  568.574684] WARNING: CPU: 1 PID: 3300 at /home/konrad/ssd/konrad/xtt-i386/bootstrap/linux-usb/fs/proc/generic.c:521 remove_proc_entry+0x165/0x170()
[  568.588294] remove_proc_entry: removing non-empty directory 'irq/17', leaking at least 'ehci_hcd:usb1'
[  568.597878] Modules linked in: dm_multipath dm_mod iscsi_boot_sysfs iscsi_tcp libiscsi_tcp libiscsi scsi_transport_iscsi libcrc32c crc32c_generic sg sd_mod crct10dif_generic crc_t10dif crct10dif_common radeon fbcon tileblit ttm font bitblit softcursor ata_generic ahci libahci drm_kms_helper skge r8169 libata mii scsi_mod wmi acpi_cpufreq
[  568.629013] CPU: 1 PID: 3300 Comm: init Not tainted 3.16.0-rc5upstream-01651-g03b9189 #1
[  568.637347] Hardware name: ECS A780GM-A Ultra/A780GM-A Ultra, BIOS 080015  04/01/2010
[  568.645411]  00000209 ed0f1cd0 c1617946 c175403c ed0f1d00 c1090c3f c1754084 ed0f1d2c
[  568.653458]  00000ce4 c175403c 00000209 c11f22a5 c11f22a5 ef39d1c0 ed0f1d78 ef39d20d
[  568.661514]  ed0f1d18 c1090cde 00000009 ed0f1d10 c1754084 ed0f1d2c ed0f1d60 c11f22a5
[  568.669570] Call Trace:
[  568.672088]  [<c1617946>] dump_stack+0x48/0x60
[  568.676668]  [<c1090c3f>] warn_slowpath_common+0x7f/0xa0
[  568.682140]  [<c11f22a5>] ? remove_proc_entry+0x165/0x170
[  568.687703]  [<c11f22a5>] ? remove_proc_entry+0x165/0x170
[  568.693266]  [<c1090cde>] warn_slowpath_fmt+0x2e/0x30
[  568.698470]  [<c11f22a5>] remove_proc_entry+0x165/0x170
[  568.703855]  [<c10da6ca>] unregister_irq_proc+0xaa/0xc0
[  568.709240]  [<c10d582f>] free_desc+0x1f/0x60
[  568.713727]  [<c10d58aa>] irq_free_descs+0x3a/0x80
[  568.718664]  [<c10d9e9d>] irq_dispose_mapping+0x2d/0x50
[  568.724048]  [<c1078fd3>] mp_unmap_irq+0x73/0xa0
[  568.728804]  [<c107196b>] acpi_unregister_gsi_ioapic+0x2b/0x40
[  568.734814]  [<c107180f>] acpi_unregister_gsi+0xf/0x20
[  568.740103]  [<c1339cad>] acpi_pci_irq_disable+0x4b/0x50
[  568.745579]  [<c14daa38>] pcibios_disable_device+0x18/0x20
[  568.751232]  [<c130123d>] do_pci_disable_device+0x4d/0x60
[  568.756794]  [<c13012b7>] pci_disable_device+0x47/0xb0
[  568.762087]  [<c10e4741>] ? hrtimer_cancel+0x11/0x20
[  568.767198]  [<c1489667>] ? ehci_shutdown+0x57/0xb0
[  568.772222]  [<c14800b1>] usb_hcd_pci_shutdown+0x31/0x40
[  568.777694]  [<c1304b19>] pci_device_shutdown+0x19/0x50
[  568.783078]  [<c13fda64>] device_shutdown+0x14/0x120
[  568.788188]  [<c10ac29d>] kernel_restart_prepare+0x2d/0x30
[  568.793839]  [<c10ac41e>] kernel_restart+0xe/0x60
[  568.798684]  [<c1619790>] ? mutex_lock+0x20/0x40
[  568.803441]  [<c10ac611>] SYSC_reboot+0x191/0x220
[  568.808287]  [<c115446c>] ? free_pages_prepare+0xdc/0x170
[  568.813850]  [<c10dd077>] ? call_rcu_sched+0x17/0x20
[  568.818964]  [<c1199263>] ? put_object+0x23/0x40
[  568.823720]  [<c119932d>] ? delete_object_full+0x1d/0x30
[  568.829193]  [<c16162e0>] ? kmemleak_free+0x20/0x50
[  568.834217]  [<c10887c5>] ? pgd_free+0x115/0x130
[  568.838971]  [<c108e877>] ? __mmdrop+0x57/0xd0
[  568.843549]  [<c108e877>] ? __mmdrop+0x57/0xd0
[  568.848121]  [<c10b0f6f>] ? finish_task_switch+0xdf/0x130
[  568.853683]  [<c10ac6ba>] SyS_reboot+0x1a/0x20
[  568.858262]  [<c161c718>] sysenter_do_call+0x12/0x16
[  568.863376] ---[ end trace ccc1ec4471c289c8 ]---
[  568.868148] ohci-pci 0000:00:12.1: shutdown
[  568.873813] ohci-pci 0000:00:12.0: shutdown
[  568.879482] ------------[ cut here ]------------
[  568.884236] WARNING: CPU: 1 PID: 3300 at /home/konrad/ssd/konrad/xtt-i386/bootstrap/linux-usb/fs/proc/generic.c:521 remove_proc_entry+0x165/0x170()
[  568.897846] remove_proc_entry: removing non-empty directory 'irq/16', leaking at least 'ohci_hcd:usb4'
[  568.907430] Modules linked in: dm_multipath dm_mod iscsi_boot_sysfs iscsi_tcp libiscsi_tcp libiscsi scsi_transport_iscsi libcrc32c crc32c_generic sg sd_mod crct10dif_generic crc_t10dif crct10dif_common radeon fbcon tileblit ttm font bitblit softcursor ata_generic ahci libahci drm_kms_helper skge r8169 libata mii scsi_mod wmi acpi_cpufreq
[  568.938539] CPU: 1 PID: 3300 Comm: init Tainted: G        W     3.16.0-rc5upstream-01651-g03b9189 #1
[  568.947946] Hardware name: ECS A780GM-A Ultra/A780GM-A Ultra, BIOS 080015  04/01/2010
[  568.956008]  00000209 ed0f1cd0 c1617946 c175403c ed0f1d00 c1090c3f c1754084 ed0f1d2c
[  568.964068]  00000ce4 c175403c 00000209 c11f22a5 c11f22a5 f755e8c0 ed0f1d78 f755e90d
[  568.972128]  ed0f1d18 c1090cde 00000009 ed0f1d10 c1754084 ed0f1d2c ed0f1d60 c11f22a5
[  568.980194] Call Trace:
[  568.982715]  [<c1617946>] dump_stack+0x48/0x60
[  568.987294]  [<c1090c3f>] warn_slowpath_common+0x7f/0xa0
[  568.992767]  [<c11f22a5>] ? remove_proc_entry+0x165/0x170
[  568.998328]  [<c11f22a5>] ? remove_proc_entry+0x165/0x170
[  569.003887]  [<c1090cde>] warn_slowpath_fmt+0x2e/0x30
[  569.009092]  [<c11f22a5>] remove_proc_entry+0x165/0x170
[  569.014476]  [<c10da6ca>] unregister_irq_proc+0xaa/0xc0
[  569.019858]  [<c10d582f>] free_desc+0x1f/0x60
[  569.024346]  [<c10d58aa>] irq_free_descs+0x3a/0x80
[  569.029283]  [<c10d9e9d>] irq_dispose_mapping+0x2d/0x50
[  569.034666]  [<c1078fd3>] mp_unmap_irq+0x73/0xa0
[  569.039423]  [<c107196b>] acpi_unregister_gsi_ioapic+0x2b/0x40
[  569.045431]  [<c107180f>] acpi_unregister_gsi+0xf/0x20
[  569.050725]  [<c1339cad>] acpi_pci_irq_disable+0x4b/0x50
[  569.056196]  [<c14daa38>] pcibios_disable_device+0x18/0x20
[  569.061848]  [<c130123d>] do_pci_disable_device+0x4d/0x60
[  569.067410]  [<c13012b7>] pci_disable_device+0x47/0xb0
[  569.072701]  [<c12e08be>] ? __const_udelay+0x1e/0x20
[  569.077814]  [<c14800b1>] usb_hcd_pci_shutdown+0x31/0x40
[  569.083285]  [<c1304b19>] pci_device_shutdown+0x19/0x50
[  569.088667]  [<c13fda64>] device_shutdown+0x14/0x120
[  569.093777]  [<c10ac29d>] kernel_restart_prepare+0x2d/0x30
[  569.099429]  [<c10ac41e>] kernel_restart+0xe/0x60
[  569.104275]  [<c1619790>] ? mutex_lock+0x20/0x40
[  569.109028]  [<c10ac611>] SYSC_reboot+0x191/0x220
[  569.113874]  [<c115446c>] ? free_pages_prepare+0xdc/0x170
[  569.119437]  [<c10dd077>] ? call_rcu_sched+0x17/0x20
[  569.124552]  [<c1199263>] ? put_object+0x23/0x40
[  569.129308]  [<c119932d>] ? delete_object_full+0x1d/0x30
[  569.134779]  [<c16162e0>] ? kmemleak_free+0x20/0x50
[  569.139800]  [<c10887c5>] ? pgd_free+0x115/0x130
[  569.144556]  [<c108e877>] ? __mmdrop+0x57/0xd0
[  569.149134]  [<c108e877>] ? __mmdrop+0x57/0xd0
[  569.153708]  [<c10b0f6f>] ? finish_task_switch+0xdf/0x130
[  569.159269]  [<c10ac6ba>] SyS_reboot+0x1a/0x20
[  569.163843]  [<c161c718>] sysenter_do_call+0x12/0x16
[  569.168951] ---[ end trace ccc1ec4471c289c9 ]---
[  569.173709] ahci 0000:00:11.0: shutdown
[  569.177657] pcieport 0000:00:07.0: shutdown
[  569.181963] pcieport 0000:00:06.0: shutdown
[  569.186273] pci 0000:00:01.0: shutdown
[  569.190136] pci 0000:00:00.0: shutdown
[  569.194034] PM: Calling mce_syscore_shutdown+0x0/0x60

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

Decompressing Linux... Parsing ELF... No relocation needed... done.
Booting the kernel.
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.16.0-rc5upstream-01668-g6d2265b (konrad@build-external.dumpdata.com) (gcc version 4.4.4 20100503 (Red Hat 4.4.4-2) (GCC) ) #1 SMP Mon Jul 14 16:25:04 EDT 2014
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f3ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f400-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e6000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfeaffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cfeb0000-0x00000000cfebdfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000cfebe000-0x00000000cfedffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cfee0000-0x00000000cfefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff700000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fffffff] usable
[    0.000000] Early serial console at I/O port 0xe400 (options '115200n8')
[    0.000000] bootconsole [uart0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.5 present.
[    0.000000] DMI: ECS A780GM-A Ultra/A780GM-A Ultra, BIOS 080015  04/01/2010
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fft type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-E
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFF0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000130000000 aka 4864M
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
[    0.000000] Scan for SMP in [mem 0x00000000-0x000003ff]
[    0.000000] Scan for SMP in [mem 0x0009fc00-0x0009ffff]
[    0.000000] Scan for SMP in [mem 0x000f0000-0x000fffff]
[    0.000000] found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [c00ff780]
[    0.000000]   mpc: e5e70-e5ffc
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] initial memory mapped: [mem 0x00000000-0x01ffffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x37800000-0x379fffff]
[    0.000000]  [mem 0x37800000-0x379fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x34000000-0x377fffff]
[    0.000000]  [mem 0x34000000-0x377fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x33ffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x33ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x37a00000-0x37bfdfff]
[    0.000000]  [mem 0x37a00000-0x37bfdfff] page 4k
[    0.000000] BRK [0x01a3b000, 0x01a3bfff] PGTABLE
[    0.000000] RAMDISK: [mem 0x7aeda000-0x7fffefff]
[    0.000000] Allocated new RAMDISK: [mem 0x32ad9000-0x37bfd3af]
[    0.000000] Move RAMDISK from [mem 0x7aeda000-0x7fffe3af] to [mem 0x32ad9000-0x37bfd3af]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000FB100 000014 (v00 ACPIAM)
[    0.000000] ACPI: RSDT 0xCFEB0000 000040 (v01 040110 RSDT1316 20100401 MSFT 00000097)
[    0.000000] ACPI: FACP 0xCFEB0200 000084 (v01 040110 FACP1316 20100401 MSFT 00000097)
[    0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20140424/tbfadt-649)
[    0.000000] ACPI: DSDT 0xCFEB0450 00A65F (v01 1AAAA  1AAAA000 00000000 INTL 20051117)
[    0.000000] ACPI: FACS 0xCFEBE000 000040
[    0.000000] ACPI: APIC 0xCFEB0390 00007C (v01 040110 APIC1316 20100401 MSFT 00000097)
[    0.000000] ACPI: MCFG 0xCFEB0410 00003C (v01 040110 OEMMCFG  20100401 MSFT 00000097)
[    0.000000] ACPI: OEMB 0xCFEBE040 000072 (v01 040110 OEMB1316 20100401 MSFT 00000097)
[    0.000000] ACPI: SRAT 0xCFEBAAB0 0000E8 (v03 AMD    FAM_F_10 00000002 AMD  00000001)
[    0.000000] ACPI: HPET 0xCFEBABA0 000038 (v01 040110 OEMHPET  20100401 MSFT 00000097)
[    0.000000] ACPI: SSDT 0xCFEBABE0 00088C (v01 A M I  POWERNOW 00000001 AMD  00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] mapped APIC to         ffffb000 (        fee00000)
[    0.000000] 3716MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] BRK [0x01a3c000, 0x01a3cfff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   Normal   [mem 0x01000000-0x37bfdfff]
[    0.000000]   HighMem  [mem 0x37bfe000-0x1fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0xcfeaffff]
[    0.000000]   node   0: [mem 0x00000000-0x1fffffff]
[    0.000000] On node 0 totalpages: 982606
[    0.000000] free_area_init_node: node 0, pgdat c1849240, node_mem_map f06d9020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 224254 pages, LIFO batch:31
[    0.000000]   HighMem zone: 7433 pages used for memmap
[    0.000000]   HighMem zone: 754354 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] mapped APIC to         ffffb000 (        fee00000)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 00, APIC ID 4, APIC INT 02
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] Int: type 0, pol 3, trig 3, bus 00, IRQ 09, APIC ID 4, APIC INT 09
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 01, APIC ID 4, APIC INT 01
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 03, APIC ID 4, APIC INT 03
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 04, APIC ID 4, APIC INT 04
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 05, APIC ID 4, APIC INT 05
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 06, APIC ID 4, APIC INT 06
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 07, APIC ID 4, APIC INT 07
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 08, APIC ID 4, APIC INT 08
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0a, APIC ID 4, APIC INT 0a
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0b, APIC ID 4, APIC INT 0b
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0c, APIC ID 4, APIC INT 0c
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0d, APIC ID 4, APIC INT 0d
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0e, APIC ID 4, APIC INT 0e
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0f, APIC ID 4, APIC INT 0f
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8300 base: 0xfed00000
[    0.000000] smpboot: Allowing 6 CPUs, 2 hotplug CPUs
[    0.000000] mapped IOAPIC to ffffa000 (fec00000)
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000e5fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e6000-0x000fffff]
[    0.000000] e820: [mem 0xcff00000-0xff6fffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:6 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @f0673000 s35136 r0 d22208 u57344
[    0.000000] pcpu-alloc: s35136 r0 d22208 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 980822
[    0.000000] Kernel command line: initrd=initramfs.cpio.gz apic=debug initcall_debug loglevel=10 nofb selinux=0 console=uart8250,io,0xe400,115200n8 BOOT_IMAGE=vmlinuz 
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (00037bfe:00120000)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 3798704K/3930424K available (6268K kernel code, 434K rwdata, 1852K rodata, 940K init, 872K bss, 131720K reserved, 3017416K highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff15000 - 0xfffff000   ( 936 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc185e000 - 0xc1949000   ( 940 kB)
[    0.000000]       .data : 0xc161f5e7 - 0xc185cbc0   (2293 kB)
[    0.000000]       .text : 0xc1000000 - 0xc161f5e7   (6269 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=6.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6
[    0.000000] NR_IRQS:2304 nr_irqs:472 0
[    0.000000] CPU 0 irqstacks, hard=f0008000 soft=f000a000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2999.984 MHz processor
[    0.000024] Calibrat[    0.091093] ACPI: All ACPI Tables successfully acquired
[    0.102909] Security Framework initialized
[    0.107206] SELinux:  Disabled at boot.
[    0.111409] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.118361] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.126904] Initializing cgroup subsys freezer
[    0.131630] CPU: Physical Processor ID: 0
[    0.135843] CPU: Processor Core ID: 0
[    0.139687] mce: CPU supports 6 MCE banks
[    0.143898] LVT offset 0 assigned for vector 0xf9
[    0.148844] spurious 8259A interrupt: IRQ7.
[    0.153241] process: using AMD E400 aware idle routine
[    0.158635] Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
[    0.158635] Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
[    0.158635] tlb_flushall_shift: 6
[    0.174746] Freeing SMP alternatives memory: 28K (c1949000 - c1950000)
[    0.182605] Getting VERSION: 80050010
[    0.186450] Getting VERSION: 80050010
[    0.190294] Getting ID: 0
[    0.193044] Getting ID: f000000
[    0.196339] Getting LVT0: 700
[    0.199451] Getting LVT1: 400
[    0.202570] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.208236] enabled ExtINT on CPU#0
[    0.212083] ESR value before enabling vector: 0x00000004  after: 0x00000000
[    0.219389] ENABLING IO-APIC IRQs
[    0.222872] init IO_APIC IRQs
[    0.225984]  apic 4 pin 0 not connected
[    0.230009] IOAPIC[0]: Set routing entry (4-1 -> 0x31 -> IRQ 1 Mode:0 Active:0 Dest:1)
[    0.238324] IOAPIC[0]: Set routing entry (4-2 -> 0x30 -> IRQ 0 Mode:0 Active:0 Dest:1)
[    0.246636] IOAPIC[0]: Set routing entry (4-3 -> 0x33 -> IRQ 3 Mode:0 Active:0 Dest:1)
[    0.254938] IOAPIC[0]: Set routing entry (4-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:1)
[    0.263240] IOAPIC[0]: Set routing entry (4-5 -> 0x35 -> IRQ 5 Mode:0 Active:0 Dest:1)
[    0.271540] IOAPIC[0]: Set routing entry (4-6 -> 0x36 -> IRQ 6 Mode:0 Active:0 Dest:1)
[    0.279854] IOAPIC[0]: Set routing entry (4-7 -> 0x37 -> IRQ 7 Mode:0 Active:0 Dest:1)
[    0.288169] IOAPIC[0]: Set routing entry (4-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:1)
[    0.296472] IOAPIC[0]: Set routing entry (4-9 -> 0x39 -> IRQ 9 Mode:1 Active:1 Dest:1)
[    0.304782] IOAPIC[0]: Set routing entry (4-10 -> 0x3a -> IRQ 10 Mode:0 Active:0 Dest:1)
[    0.313271] IOAPIC[0]: Set routing entry (4-11 -> 0x3b -> IRQ 11 Mode:0 Active:0 Dest:1)
[    0.321761] IOAPIC[0]: Set routing entry (4-12 -> 0x3c -> IRQ 12 Mode:0 Active:0 Dest:1)
[    0.330251] IOAPIC[0]: Set routing entry (4-13 -> 0x3d -> IRQ 13 Mode:0 Active:0 Dest:1)
[    0.338734] IOAPIC[0]: Set routing entry (4-14 -> 0x3e -> IRQ 14 Mode:0 Active:0 Dest:1)
[    0.347226] IOAPIC[0]: Set routing entry (4-15 -> 0x3f -> IRQ 15 Mode:0 Active:0 Dest:1)
[    0.355709]  apic 4 pin 16 not connected
[    0.359821]  apic 4 pin 17 not connected
[    0.363934]  apic 4 pin 18 not connected
[    0.368039]  apic 4 pin 19 not connected
[    0.372149]  apic 4 pin 20 not connected
[    0.376261]  apic 4 pin 21 not connected
[    0.380366]  apic 4 pin 22 not connected
[    0.384472]  apic 4 pin 23 not connected
[    0.388715] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.405012] smpboot: CPU0: AMD Phenom(tm) II X4 940 Processor (fam: 10, model: 04, stepping: 02)
[    0.414255] Using local PIC timer ...
[    0.524481] ... lapic delta = 1250027
[    0.528317] ... PM-Timer delta = 357949
[    0.532335] ... PM-Timer result ok
[  lt: 53688250
[    0.542563] ..... calibration result: 200004
[    0.547037] ..... CPU clock speed is 3000.0061 MHz.
[    0.552144] ..... host bus clock speed is 200.0004 MHz.
[    0.557631] calling  xen_init_spinlocks_jump+0x0/0x23 @ 1
[    0.563292] initcall xen_init_spinlocks_jump+0x0/0x23 returned 0 after 0 usecs
[    0.570860] calling  set_real_mode_permissions+0x0/0x5d @ 1
[    0.576720] initcall set_real_mode_permissions+0x0/0x5d returned 0 after 0 usecs
[    0.584479] calling  trace_init_perf_perm_irq_work_exit+0x0/0x11 @ 1
[    0.591143] initcall trace_init_perf_perm_irq_work_exit+0x0/0x11 returned 0 after 0 usecs
[    0.599719] calling  trace_init_flags_sys_exit+0x0/0xe @ 1
[    0.605478] initcall trace_init_flags_sys_exit+0x0/0xe returned 0 after 0 usecs
[    0.613140] calling  trace_init_flags_sys_enter+0x0/0xe @ 1
[    0.618987] initcall trace_init_flags_sys_enter+0x0/0xe returned 0 after 0 usecs
[    0.626745] calling  init_hw_perf_events+0x0/0x52b @ 1
[    0.632136] Performance Events: AMD PMU driver.
[    0.636895] ... version:                0
[    0.641098] ... bit width:              48
[    0.645384] ... generic registers:      4
[    0.649583] ... value mask:             0000ffffffffffff
[    0.655153] ... max period:             00007fffffffffff
[    0.660723] ... fixed-purpose events:   0
[    0.664922] ... event mask:             000000000000000f
[    0.670529] initcall init_hw_perf_events+0x0/0x52b returned 0 after 9765 usecs
[    0.678116] calling  register_trigger_all_cpu_backtrace+0x0/0x13 @ 1
[    0.684782] initcall register_trigger_all_cpu_backtrace+0x0/0x13 returned 0 after 0 usecs
[    0.693363] calling  kvm_spinlock_init_jump+0x0/0x37 @ 1
[    0.698929] initcall kvm_spinlock_init_jump+0x0/0x37 returned 0 after 0 usecs
[    0.706415] calling  spawn_ksoftirqd+0x0/0x23 @ 1
[    0.711377] initcall spawn_ksoftirqd+0x0/0x23 returned 0 after 0 usecs
[    0.718221] calling  init_workqueues+0x0/0x3e6 @ 1
[    0.723633] initcall init_workqueues+0x0/0x3e6 returned 0 after 976 usecs
[    0.730760] calling  migration_init+0x0/0x5b @ 1
[    0.735599] initcall migration_init+0x0/0x5b returned 0 after 0 usecs
[    0.742357] calling  check_cpu_stall_init+0x0/0x16 @ 1
[    0.747742] initcall check_cpu_stall_init+0x0/0x16 returned 0 after 0 usecs
[    0.755057] calling  rcu_scheduler_really_started+0x0/0x11 @ 1
[    0.761179] initcall rcu_scheduler_really_started+0x0/0x11 returned 0 after 0 usecs
[    0.769209] calling  rcu_spawn_gp_kthread+0x0/0x87 @ 1
[    0.774650] initcall rcu_spawn_gp_kthread+0x0/0x87 returned 0 after 0 usecs
[    0.781955] calling  cpu_stop_init+0x0/0x5d @ 1
[    0.786743] initcall cpu_stop_init+0x0/0x5d returned 0 after 0 usecs
[    0.793409] calling  relay_init+0x0/0x11 @ 1
[    0.797887] initcall relay_init+0x0/0x11 returned 0 after 0 usecs
[    0.804284] calling  tracer_alloc_buffers+0x0/0x213 @ 1
[    0.809858] initcall tracer_alloc_buffers+0x0/0x213 returned 0 after 0 usecs
[    0.817263] calling  init_events+0x0/0x5f @ 1
[    0.821832] initcall init_events+0x0/0x5f returned 0 after 0 usecs
[    0.828316] calling  init_trace_printk+0x0/0xf @ 1
[    0.833339] initcall init_trace_printk+0x0/0xf returned 0 after 0 usecs
[    0.840269] calling  event_trace_memsetup+0x0/0x5a @ 1
[    0.845691] initcall event_trace_memsetup+0x0/0x5a returned 0 after 0 usecs
[    0.852997] calling  jump_label_init_module+0x0/0xf @ 1
[    0.858480] initcall jump_label_init_module+0x0/0xf returned 0 after 0 usecs
[    0.865877] calling  hashlib_init+0x0/0x11 @ 1
[    0.870534] initcall hashlib_init+0x0/0x11 returned 0 after 0 usecs
[    0.877117] calling  balloon_clear+0x0/0x3b @ 1
[    0.881867] initcall balloon_clear+0x0/0x3b returned 0 after 0 usecs
[    0.888542] calling  rand_initialize+0x0/0x30 @ 1
[    0.893498] initcall rand_initialize+0x0/0x30 returned 0 after 0 usecs
[    0.900346] calling  mce_amd_init+0x0/0x134 @ 1
[    0.905093] MCE: In-kernel MCE decoding enabled.
[    0.909928] initcall mce_amd_init+0x0/0x134 returned 0 after 976 usecs
[    0.916953] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.927110] CPU 1 irqstacks, hard=f02c2000 soft=ef820000
[    0.932676] x86: Booting SMP configuration:
[    0.937056] .... node  #0, CPUs:      #1
[    0.951657] Initializing CPU#1
[    0.951998] masked ExtINT on CPU#1
[    0.954173] process: System has AMD C1E enabled
[    0.954698] CPU 2 irqstacks, hard=f028a000 soft=f028c000
[    0.965247]  #2
[    0.965248] Initializing CPU#2
[    0.965696] masked ExtINT on CPU#2
[    0.967885] process: Switch to broadcast mode on CPU2
[    0.968425] CPU 3 irqstacks, hard=f02be000 soft=f0200000
[    0.978975]  #3
[    0.978975] Initializing CPU#3
[    0.979424] masked ExtINT on CPU#3
[    0.981559] x86: Booted up 1 node, 4 CPUs
[    0.981561] smpboot: Total of 4 processors activated (23999.87 BogoMIPS)
[    0.981605] process: Switch to broadcast mode on CPU3
[    1.015941] process: Switch to broadcast mode on CPU1
[    1.026234] process: Switch to broadcast mode on CPU0
[    1.031867] devtmpfs: initialized
[    1.036287] calling  ipc_ns_i1] calling  init_cpufreq_transition_notifier_list+0x0/0x18 @ 1
[    1.066680] initcall init_cpufreq_transition_notifier_list+0x0/0x18 returned 0 after 0 usecs
[    1.075536] calling  net_ns_init+0x0/0x100 @ 1
[    1.080340] initcall net_ns_init+0x0/0x100 returned 0 after 0 usecs
[    1.086964] calling  e820_mark_nvs_memory+0x0/0x4e @ 1
[    1.092361] PM: Registering ACPI NVS region [mem 0xcfebe000-0xcfedffff] (139264 bytes)
[    1.100743] initcall e820_mark_nvs_memory+0x0/0x4e returned 0 after 976 usecs
[    1.108243] calling  cpufreq_tsc+0x0/0x26 @ 1
[    1.112821] initcall cpufreq_tsc+0x0/0x26 returned 0 after 0 usecs
[    1.119308] calling  reboot_init+0x0/0x1a @ 1
[    1.123889] initcall reboot_init+0x0/0x1a returned 0 after 0 usecs
[    1.130386] calling  init_lapic_sysfs+0x0/0x1b @ 1
[    1.135420] initcall init_lapic_sysfs+0x0/0x1b returned 0 after 0 usecs
[    1.142382] calling  cpu_hotplug_pm_sync_init+0x0/0x29 @ 1
[    1.148144] initcall cpu_hotplug_pm_sync_init+0x0/0x29 returned 0 after 0 usecs
[    1.155825] calling  alloc_frozen_cpus+0x0/0x7 @ 1
[    1.160851] initcall alloc_frozen_cpus+0x0/0x7 returned 0 after 0 usecs
[    1.167803] calling  wq_sysfs_init+0x0/0x11 @ 1
[    1.172689] initcall wq_sysfs_init+0x0/0x11 returned 0 after 0 usecs
[    1.172808] kworker/u12:0 (30) used greatest stack depth: 6980 bytes left
[    1.186490] calling  ksysfs_init+0x0/0x74 @ 1
[    1.191137] initcall ksysfs_init+0x0/0x74 returned 0 after 0 usecs
[    1.197630] calling  pm_init+0x0/0x45 @ 1
[    1.201896] initcall pm_init+0x0/0x45 returned 0 after 0 usecs
[    1.208019] calling  pm_disk_init+0x0/0x14 @ 1
[    1.212713] initcall pm_disk_init+0x0/0x14 returned 0 after 0 usecs
[    1.219309] calling  swsusp_header_init+0x0/0x30 @ 1
[    1.224516] initcall swsusp_header_init+0x0/0x30 returned 0 after 0 usecs
[    1.231652] calling  init_jiffies_clocksource+0x0/0xf @ 1
[    1.237324] initcall init_jiffies_clocksource+0x0/0xf returned 0 after 0 usecs
[    1.244908] calling  cgroup_wq_init+0x0/0x7c @ 1
[    1.249806] initcall cgroup_wq_init+0x0/0x7c returned 0 after 0 usecs
[    1.256572] calling  event_trace_enable+0x0/0x155 @ 1
[    1.262795] initcall event_trace_enable+0x0/0x155 returned 0 after 976 usecs
[    1.270203] calling  init_zero_pfn+0x0/0x14 @ 1
[    1.274956] initcall init_zero_pfn+0x0/0x14 returned 0 after 0 usecs
[    1.281627] calling  fsnotify_init+0x0/0x24 @ 1
[    1.286400] initcall fsnotify_init+0x0/0x24 returned 0 after 0 usecs
[    1.293074] calling  filelock_init+0x0/0x74 @ 1
[    1.297864] initcall filelock_init+0x0/0x74 returned 0 after 0 usecs
[    1.304537] calling  init_misc_binfmt+0x0/0x28 @ 1
[    1.309574] initcall init_misc_binfmt+0x0/0x28 returned 0 after 0 usecs
[    1.316518] calling  init_script_binfmt+0x0/0x13 @ 1
[    1.321733] initcall init_script_binfmt+0x0/0x13 returned 0 after 0 usecs
[    1.328862] calling  init_elf_binfmt+0x0/0x13 @ 1
[    1.333800] initcall init_elf_binfmt+0x0/0x13 returned 0 after 0 usecs
[    1.340649] calling  debugfs_init+0x0/0x4a @ 1
[    1.345339] initcall debugfs_init+0x0/0x4a returned 0 after 0 usecs
[    1.351920] calling  securityfs_init+0x0/0x41 @ 1
[    1.356875] initcall securityfs_init+0x0/0x41 returned 0 after 0 usecs
[    1.363741] calling  prandom_init+0x0/0xaa @ 1
[    1.368411] initcall prandom_init+0x0/0xaa returned 0 after 0 usecs
[    1.375001] calling  virtio_init+0x0/0x30 @ 1
[    1.379654] initcall virtio_init+0x0/0x30 returned 0 after 0 usecs
[    1.386150] calling  early_resume_init+0x0/0x1a0 @ 1
[    1.391374] RTC time: 19:32:12, date: 07/14/14
[    1.396045] initcall early_resume_init+0x0/0x1a0 returned 0 after 976 usecs
[    1.403360] calling  cpufreq_core_init+0x0/0x29 @ 1
[    1.408483] initcall cpufreq_core_init+0x0/0x29 returned 0 after 0 usecs
[    1.415519] calling  cpuidle_init+0x0/0x36 @ 1
[    1.420211] initcall cpuidle_init+0x0/0x36 returned 0 after 0 usecs
[    1.426795] calling  bsp_pm_check_init+0x0/0x11 @ 1
[    1.431908] initcall bsp_pm_check_init+0x0/0x11 returned 0 after 0 usecs
[    1.438947] calling  sock_init+0x0/0x89 @ 1
[    1.443600] initcall sock_init+0x0/0x89 returned 0 after 976 usecs
[    1.450095] calling  net_inuse_init+0x0/0x24 @ 1
[    1.454962] initcall net_inuse_init+0x0/0x24 returned 0 after 0 usecs
[    1.461730] calling  netpoll_init+0x0/0x2e @ 1
[    1.466401] initcall netpoll_init+0x0/0x2e returned 0 after 0 usecs
[    1.472978] calling  netlink_proto_init+0x0/0x1a7 @ 1
[    1.478356] NET: Registered protocol family 16
[    1.483058] initcall netlink_proto_init+0x0/0x1a7 returned 0 after 976 usecs
[    1.490460] calling  __gnttab_init+0x0/0x30 @ 1
[    1.495207] initcall __gnttab_init+0x0/0x30 returned -19 after 0 usecs
[    1.502104] calling  bdi_class_init+0x0/0x40 @ 1
[    1.507110] initcall bdi_class_init+0x0/0x40 returned 0 after 0 usecs
[    1.513874] calling  mm_sysfs_init+0x0/0x22 @ 1
[    1.518644] initcall mm_sysfs_init+0x0/0x22 returned 0 after 0 usecs
[    1.525320] calling  kobject_uevent_init+0x0/0xf @ 1
[    1.530554] initcall kobject_uevent_init+0x0/0xf returned 0 after 0 usecs
[    1.537688] calling  pcibus_class_init+0x0/0x14 @ 1
[    1.542842] initcall pcibus_class_init+0x0/0x14 returned 0 after 0 usecs
[    1.549886] calling  pci_driver_init+0x0/0xf @ 1
[    1.554816] initcall pci_driver_init+0x0/0xf returned 0 after 0 usecs
[    1.561586] calling  backlight_class_init+0x0/0x92 @ 1
[    1.567009] initcall backlight_class_init+0x0/0x92 returned 0 after 0 usecs
[    1.574328] calling  xenbus_init+0x0/0x24f @ 1
[    1.578993] initcall xenbus_init+0x0/0x24f returned -19 after 0 usecs
[    1.585761] calling  tty_class_init+0x0/0x2f @ 1
[    1.590647] initcall tty_class_init+0x0/0x2f returned 0 after 0 usecs
[    1.597411] calling  vtconsole_class_init+0x0/0xc2 @ 1
[    1.602950] initcall vtconsole_class_init+0x0/0xc2 returned 0 after 0 usecs
[    1.610261] calling  wakeup_sources_debugfs_init+0x0/0x2f @ 1
[    1.616299] initcall wakeup_sources_debugfs_init+0x0/0x2f returned 0 after 0 usecs
[    1.624252] calling  i2c_init+0x0/0x57 @ 1
[    1.628710] initcall i2c_init+0x0/0x57 returned 0 after 0 usecs
[    1.634931] calling  lguest_devices_init+0x0/0x13f @ 1
[    1.640327] initcall lguest_devices_init+0x0/0x13f returned 0 after 0 usecs
[    1.647643] calling  init_ladder+0x0/0xf @ 1
[    1.652125] cpuidle: using governor ladder
[    1.656430] initcall init_ladder+0x0/0xf returned 0 after 976 usecs
[    1.663009] calling  init_menu+0x0/0xf @ 1
[    1.667303] cpuidle: using governor menu
[    1.671428] initcall init_menu+0x0/0xf returned 0 after 976 usecs
[    1.677833] calling  amd_postcore_init+0x0/0x131 @ 1
[    1.683056] node 0 link 0: io port [1000, ffffff]
[    1.688000] TOM: 00000000d0000000 aka 3328M
[    1.692393] Fam 10h mmconf [mem 0xe0000000-0xefffffff]
[    1.697789] node 0 link 0: mmio [a0000, bffff]
[    1.702467] node 0 link 0: mmio [d0000000, efffffff] ==> [d0000000, dfffffff]
[    1.709978] node 0 link 0: mmio [f0000000, fe6fffff]
[    1.715201] node 0 link 0: mmio [fe700000, fe8fffff]
[    1.720423] node 0 link 0: mmio [fe900000, ffefffff]
[    1.725635] TOM2: 0000000130000000 aka 4864M
[    1.730124] bus: [bus 00-07] on node 0 link 0
[    1.734702] bus: 00 [io  0x0000-0xffff]
[    1.738723] bus: 00 [mem 0x000a0000-0x000bffff]
[    1.743472] bus: 00 [mem 0xd0000000-0xdfffffff]
[    1.748230] bus: 00 [mem 0xf0000000-0xffffffff]
[    1.752985] bus: 00 [mem 0x130000000-0xfcffffffff]
[    1.758029] initcall amd_postcore_init+0x0/0x131 returned 0 after 16601 usecs
[    1.765557] calling  boot_params_ksysfs_init+0x0/0x22f @ 1
[    1.771352] initcall boot_params_ksysfs_init+0x0/0x22f returned 0 after 0 usecs
[    1.779036] calling  arch_kdebugfs_init+0x0/0x2a6 @ 1
[    1.784378] initcall arch_kdebugfs_init+0x0/0x2a6 returned 0 after 0 usecs
[    1.791602] calling  init_pit_clocksource+0x0/0x36 @ 1
[    1.796995] initcall init_pit_clocksource+0x0/0x36 returned 0 after 0 usecs
[    1.804309] calling  mtrr_if_init+0x0/0x56 @ 1
[    1.808988] initcall mtrr_if_init+0x0/0x56 returned 0 after 0 usecs
[    1.815570] calling  ffh_cstate_init+0x0/0x27 @ 1
[    1.820509] initcall ffh_cstate_init+0x0/0x27 returned -1 after 0 usecs
[    1.827462] calling  kdump_buf_page_init+0x0/0x3a @ 1
[    1.832780] initcall kdump_buf_page_init+0x0/0x3a returned 0 after 0 usecs
[    1.840005] calling  activate_jump_labels+0x0/0x2d @ 1
[    1.845399] initcall activate_jump_labels+0x0/0x2d returned 0 after 0 usecs
[    1.852710] calling  acpi_pci_init+0x0/0x5b @ 1
[    1.857461] ACPI: bus type PCI registered
[    1.861670] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.868425] initcall acpi_pci_init+0x0/0x5b returned 0 after 1953 usecs
[    1.875378] calling  dma_bus_init+0x0/0xbb @ 1
[    1.880235] initcall dma_bus_init+0x0/0xbb returned 0 after 0 usecs
[    1.886812] calling  dma_channel_table_init+0x0/0xc4 @ 1
[    1.892515] initcall dma_channel_table_init+0x0/0xc4 returned 0 after 0 usecs
[    1.900011] calling  setup_vcpu_hotplug_event+0x0/0x1f @ 1
[    1.905766] initcall setup_vcpu_hotplug_event+0x0/0x1f returned -19 after 0 usecs
[    1.913630] calling  register_xen_pci_notifier+0x0/0x30 @ 1
[    1.919483] initcall register_xen_pci_notifier+0x0/0x30 returned 0 after 0 usecs
[    1.927245] calling  xen_pcpu_init+0x0/0xc8 @ 1
[    1.931999] initcall xen_pcpu_init+0x0/0xc8 returned -19 after 0 usecs
[    1.938864] calling  dmi_id_init+0x0/0x2a2 @ 1
[    1.943832] initcall dmi_id_init+0x0/0x2a2 returned 0 after 0 usecs
[    1.950419] calling  dca_init+0x0/0x21 @ 1
[    1.954718] dca service started, version 1.12.1
[    1.959508] initcall dca_init+0x0/0x21 returned 0 after 976 usecs
[    1.965910] calling  pci_arch_init+0x0/0x65 @ 1
[    1.970683] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    1.980461] PCI: not using MMCONFIG
[    1.984792] PCI : PCI BIOS area is rw and x. Use pci=nobios if you want it NX.
[    1.992442] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=4
[    1.999106] PCI: Using configuration type 1 for base access
[    2.004956] PCI: Using configuration type 1 for extended access
[    2.011181] initcall pci_arch_init+0x0/0x65 returned 0 after 5859 usecs
[    2.018168] calling  topology_init+0x0/0x36 @ 1
[    2.023349] initcall topology_init+0x0/0x36 returned 0 after 0 usecs
[    2.030031] calling  mtrr_init_finialize+0x0/0x30 @ 1
[    2.035335] initcall mtrr_init_finialize+0x0/0x30 returned 0 after 0 usecs
[    2.042556] calling  uid_cache_init+0x0/0x7e @ 1
[    2.047433] initcall uid_cache_init+0x0/0x7e returned 0 after 0 usecs
[    2.054200] calling  param_sysfs_init+0x0/0x14c @ 1
[    2.072043] initcall param_sysfs_init+0x0/0x14c returned 0 after 12695 usecs
[    2.079456] calling  proc_schedstat_init+0x0[    2.103016] initcall pm_sysrq_init+0x0/0x16 returned 0 after 6835 usecs
[    2.109978] calling  create_proc_profile+0x0/0x1ememory_init+0x0/0x35 @ 1
[    2.142383] initcall crash_notes_memory_init+0x0/0x35 returned 0 after 0 usecs
[    2.149959] calling  hung_task_init+0x0/0x56 @ 1
[    2.154872] initcall hung_task_init+0x0/0x56 returned 0 after 0 usecs
[    2.161642] calling  default_bdi_init+0x0/0x78 @ 1
[    2.167161] initcall default_bdi_init+0x0/0x78 returned 0 after 976 usecs
[    2.174299] calling  init_reserve_notifier+0x0/0x7 @ 1
[    2.179689] initcall init_reserve_notifier+0x0/0x7 returned 0 after 0 usecs
[    2.187000] calling  init_admin_reserve+0x0/0x30 @ 1
[    2.192209] initcall init_admin_reserve+0x0/0x30 returned 0 after 0 usecs
[    2.199333] calling  init_user_reserve+0x0/0x30 @ 1
[    2.204459] initcall init_user_reserve+0x0/0x30 returned 0 after 0 usecs
[    2.211505] calling  mmu_notifier_init+0x0/0xf @ 1
[    2.216555] initcall mmu_notifier_init+0x0/0xf returned 0 after 0 usecs
[    2.223500] calling  hugepage_init+0x0/0x123 @ 1
[    2.228543] initcall hugepage_init+0x0/0x123 returned 0 after 0 usecs
[    2.235327] calling  crypto_wq_init+0x0/0x41 @ 1
[    2.240247] initcall crypto_wq_init+0x0/0x41 returned 0 after 0 usecs
[    2.247018] calling  cryptomgr_init+0x0/0xf @ 1
[    2.251791] initcall cryptomgr_init+0x0/0xf returned 0 after 0 usecs
[    2.258469] calling  init_bio+0x0/0xc5 @ 1
[    2.263148] initcall init_bio+0x0/0xc5 returned 0 after 0 usecs
[    2.269369] calling  blk_settings_init+0x0/0x21 @ 1
[    2.274493] initcall blk_settings_init+0x0/0x21 returned 0 after 0 usecs
[    2.281525] calling  blk_ioc_init+0x0/0x2f @ 1
[    2.286217] initcall blk_ioc_init+0x0/0x2f returned 0 after 0 usecs
[    2.292796] calling  blk_softirq_init+0x0/0x54 @ 1
[    2.297826] initcall blk_softirq_init+0x0/0x54 returned 0 after 0 usecs
[    2.304769] calling  blk_iopoll_setup+0x0/0x54 @ 1
[    2.309800] initcall blk_iopoll_setup+0x0/0x54 returned 0 after 0 usecs
[    2.316752] calling  blk_mq_init+0x0/0x16 @ 1
[    2.321328] initcall blk_mq_init+0x0/0x16 returned 0 after 0 usecs
[    2.327825] calling  genhd_device_init+0x0/0x6a @ 1
[    2.333153] initcall genhd_device_init+0x0/0x6a returned 0 after 0 usecs
[    2.340205] calling  blk_dev_integrity_init+0x0/0x2f @ 1
[    2.345826] initcall blk_dev_integrity_init+0x0/0x2f returned 0 after 0 usecs
[    2.353327] calling  pci_slot_init+0x0/0x40 @ 1
[    2.358092] initcall pci_slot_init+0x0/0x40 returned 0 after 0 usecs
[    2.364768] calling  fbmem_init+0x0/0x96 @ 1
[    2.369302] initcall fbmem_init+0x0/0x96 returned 0 after 0 usecs
[    2.375699] calling  acpi_init+0x0/0x26b @ 1
[    2.380274] ACPI: Added _OSI(Module Device)
[    2.384668] ACPI: Added _OSI(Processor Device)
[    2.389327] ACPI: Added _OSI(3.0 _SCP Extensions)
[    2.394270] ACPI: Added _OSI(Processor Aggregator Device)
[    2.413911] ACPI: Executed 4 blocks of module-level executable AML code
[    2.497107] ACPI: Interpreter enabled
[    2.500966] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
[    2.510686] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
[    2.520419] ACPI: (supports S0 S3 S4 S5)
[    2.524536] ACPI: Using IOAPIC for interrupt routing
[    2.529900] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    2.568827] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    2.577956] PCI: Using MMCONFIG for extended config space
[    2.583708] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.604349] kworker/u12:0 (310) used greatest stack depth: 6852 bytes left
[    2.715903] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    2.722403] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    2.731041] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    2.739946] acpi PNP0A03:00: ignoring host bridge window [mem 0x000d0000-0x000dffff] (conflicts with Adapter ROM [mem 0x000cf000-0x000d09ff])
[    2.755000] PCI host bridge to bus 0000:00
[    2.759303] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.765075] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    2.771563] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    2.778056] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    2.785274] pci_bus 0000:00: root bus resource [mem 0xcff00000-0xdfffffff]
[    2.792502] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
[    2.799738] pci 0000:00:00.0: [1022:9600] type 00 class 0x060000
[    2.806876] pci 0000:00:01.0: [1022:9602] type 01 class 0x060400
[    2.814000] pci 0000:00:06.0: [1022:9606] type 01 class 0x060400
[    2.820341] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    2.827304] pci 0000:00:06.0: System wakeup disabled by ACPI
[    2.833613] pci 0000:00:07.0: [1022:9607] type 01 class 0x060400
[    2.839970] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    2.846923] pci 0000:00:07.0: System wakeup disabled by ACPI
[    2.853255] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[    2.859583] pci 0000:00:11.0: reg 0x10: [io  0x7000-0x7007]
[    2.865437] pci 0000:00:11.0: reg 0x14: [io  0x6000-0x6003]
[    2.871287] pci 0000:00:11.0: reg 0x18: [io  0x5000-0x5007]
[    2.877138] pci 0000:00:11.0: reg 0x1c: [io  0x4000-0x4003]
[    2.882994] pci 0000:00:11.0: reg 0x20: [io  0x3000-0x300f]
[    2.888841] pci 0000:00:11.0: reg 0x24: [mem 0xfe6ffc00-0xfe6fffff]
[    2.896246] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[    2.902555] pci 0000:00:12.0: reg 0x10: [mem 0xfe6fe000-0xfe6fefff]
[    2.909737] pci 0000:00:12.0: System wakeup disabled by ACPI
[    2.916053] pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
[    2.922360] pci 0000:00:12.1: reg 0x10: [mem 0xfe6fd000-0xfe6fdfff]
[    2.929554] pci 0000:00:12.1: System wakeup disabled by ACPI
[    2.935868] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[    2.942184] pci 0000:00:12.2: reg 0x10: [mem 0xfe6ff800-0xfe6ff8ff]
[    2.948840] pci 0000:00:12.2: supports D1 D2
[    2.953317] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    2.960188] pci 0000:00:12.2: System wakeup disabled by ACPI
[    2.966499] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[    2.972812] pci 0000:00:13.0: reg 0x10: [mem 0xfe6fc000-0xfe6fcfff]
[    2.980007] pci 0000:00:13.0: System wakeup disabled by ACPI
[    2.986314] pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
[    2.992629] pci 0000:00:13.1: reg 0x10: [mem 0xfe6f7000-0xfe6f7fff]
[    2.999806] pci 0000:00:13.1: System wakeup disabled by ACPI
[    3.006134] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[    3.012447] pci 0000:00:13.2: reg 0x10: [mem 0xfe6ff400-0xfe6ff4ff]
[    3.019101] pci 0000:00:13.2: supports D1 D2
[    3.023579] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    3.030454] pci 0000:00:13.2: System wakeup disabled by ACPI
[    3.036752] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[    3.043937] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[    3.051086] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[    3.057978] pci 0000:00:14.4: System wakeup disabled by ACPI
[    3.064294] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
[    3.070601] pci 0000:00:14.5: reg 0x10: [mem 0xfe6f6000-0xfe6f6fff]
[    3.077795] pci 0000:00:14.5: System wakeup disabled by ACPI
[    3.084103] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
[    3.091157] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
[    3.098215] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
[    3.105256] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
[    3.112308] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
[    3.119650] pci 0000:01:05.0: [1002:9610] type 00 class 0x030000
[    3.125956] pci 0000:01:05.0: reg 0x10: [mem 0xd0000000-0xdfffffff pref]
[    3.132992] pci 0000:01:05.0: reg 0x14: [io  0x8000-0x80ff]
[    3.138838] pci 0000:01:05.0: reg 0x18: [mem 0xfe8f0000-0xfe8fffff]
[    3.145415] pci 0000:01:05.0: reg 0x24: [mem 0xfe700000-0xfe7fffff]
[    3.151999] pci 0000:01:05.0: supports D1 D2
[    3.156878] pci 0000:01:05.1: [1002:960f] type 00 class 0x040300
[    3.163183] pci 0000:01:05.1: reg 0x10: [mem 0xfe8e8000-0xfe8ebfff]
[    3.169782] pci 0000:01:05.1: supports D1 D2
[    3.174628] pci 0000:00:01.0: PCI bridge to [bus 01]
[    3.179844] pci 0000:00:01.0:   bridge window [io  0x8000-0x8fff]
[    3.186243] pci 0000:00:01.0:   bridge window [mem 0xfe700000-0xfe8fffff]
[    3.193365] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    3.201723] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    3.208033] pci 0000:02:00.0: reg 0x10: [io  0x9800-0x98ff]
[    3.213908] pci 0000:02:00.0: reg 0x18: [mem 0xfe9ff000-0xfe9fffff 64bit]
[    3.221033] pci 0000:02:00.0: reg 0x20: [mem 0xfdff0000-0xfdffffff 64bit pref]
[    3.228616] pci 0000:02:00.0: reg 0x30: [mem 0xfe9c0000-0xfe9dffff pref]
[    3.235709] pci 0000:02:00.0: supports D1 D2
[    3.240193] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.248797] pci 0000:00:06.0: PCI bridge to [bus 02]
[    3.254005] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    3.260404] pci 0000:00:06.0:   bridge window [mem 0xfe900000-0xfe9fffff]
[    3.267557] pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
[    3.275909] pci 0000:03:00.0: [197b:2361] type 00 class 0x010601
[    3.282283] pci 0000:03:00.0: reg 0x24: [mem 0xfeafe000-0xfeafffff]
[    3.288922] pci 0000:03:00.0: PME# supported from D3hot
[    3.294857] pci 0000:03:00.1: [197b:2361] type 00 class 0x010185
[    3.301175] pci 0000:03:00.1: reg 0x10: [io  0xb800-0xb807]
[    3.307028] pci 0000:03:00.1: reg 0x14: [io  0xb400-0xb403]
[    3.312895] pci 0000:03:00.1: reg 0x18: [io  0xb000-0xb007]
[    3.318752] pci 0000:03:00.1: reg 0x1c: [io  0xa800-0xa803]
[    3.324615] pci 0000:03:00.1: reg 0x20: [io  0xa400-0xa40f]
[    3.330844] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    3.341355] pci 0000:00:07.0: PCI bridge to [bus 03]
[    3.346573] pci 0000:00:07.0:   bridge window [io  0xa000-0xbfff]
[    3.352966] pci 0000:00:07.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    3.360321] pci 0000:04:05.0: [10b7:1700] type 00 class 0x020000
[    3.366648] pci 0000:04:05.0: reg 0x10: [mem 0xfebfc000-0xfebfffff]
[    3.373235] pci 0000:04:05.0: reg 0x14: [io  0xe800-0xe8ff]
[    3.379136] pci 0000:04:05.0: reg 0x30: [mem 0xfebc0000-0xfebdffff pref]
[    3.386220] pci 0000:04:05.0: supports D1 D2
[    3.390704] pci 0000:04:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.398109] pci 0000:04:07.0: [9710:9835] type 00 class 0x070002
[    3.404433] pci 0000:04:07.0: reg 0x10: [io  0xe400-0xe407]
[    3.410299] pci 0000:04:07.0: reg 0x14: [io  0xe000-0xe007]
[    3.416156] pci 0000:04:07.0: reg 0x18: [io  0xd800-0xd807]
[    3.422017] pci 0000:04:07.0: reg 0x1c: [io  0xd400-0xd407]
[    3.427868] pci 0000:04:07.0: reg 0x20: [io  0xd000-0xd007]
[    3.433728] pci 0000:04:07.0: reg 0x24: [io  0xc800-0xc80f]
[    3.439943] pci 0000:00:14.4: PCI bridge to [bus 04] (subtractive decode)
[    3.447073] pci 0000:00:14.4:   bridge window [io  0xc000-0xefff]
[    3.453478] pci 0000:00:14.4:   bridge window [mem 0xfeb00000-0xfebfffff]
[    3.460620] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    3.468935] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    3.477250] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    3.486291] pci 0000:00:14.4:   bridge window [mem 0xcff00000-0xdfffffff] (subtractive decode)
[    3.495338] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
[    3.504396] pci_bus 0000:00: on NUMA node 0
[    3.534282] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 12 *14 15)
[    3.541744] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 *7 10 11 12 14 15)
[    3.549184] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 *10 11 12 14 15)
[    3.556629] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 10 *11 12 14 15)
[    3.564072] ACPI: PCI Interrupt Link [LNKE] (IRQs *4 10 11 12 14 15)
[    3.571327] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 10 11 12 14 15) *0, disabled.
[    3.579785] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 10 11 12 14 *15)
[    3.587042] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 10 11 12 14 15) *0, disabled.
[    3.595489] ACPI: Enabled 1 GPEs in block 00 to 1F
[    3.600640] initcall acpi_init+0x0/0x26b returned 0 after 456054 usecs
[    3.607499] calling  pnp_init+0x0/0xf @ 1
[    3.611800] initcall pnp_init+0x0/0xf returned 0 after 0 usecs
[    3.617939] calling  balloon_init+0x0/0x1fa @ 1
[    3.622700] initcall balloon_init+0x0/0x1fa returned -19 after 0 usecs
[    3.629573] calling  xen_setup_shutdown_event+0x0/0x30 @ 1
[    3.635341] initcall xen_setup_shutdown_event+0x0/0x30 returned -19 after 0 usecs
[    3.643203] calling  xenbus_probe_backend_init+0x0/0x23 @ 1
[    3.649137] initcall xenbus_probe_backend_init+0x0/0x23 returned 0 after 0 usecs
[    3.656913] calling  xenbus_probe_frontend_init+0x0/0x7b @ 1
[    3.662941] initcall xenbus_probe_frontend_init+0x0/0x7b returned 0 after 0 usecs
[    3.670816] calling  xen_acpi_pad_init+0x0/0x41 @ 1
[    3.675945] initcall xen_acpi_pad_init+0x0/0x41 returned -19 after 0 usecs
[    3.683161] calling  balloon_init+0x0/0xdd @ 1
[    3.687821] initcall balloon_init+0x0/0xdd returned -19 after 0 usecs
[    3.694597] calling  misc_init+0x0/0xad @ 1
[    3.699039] initcall misc_init+0x0/0xad returned 0 after 0 usecs
[    3.705358] calling  vga_arb_device_init+0x0/0xcc @ 1
[    3.710840] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    3.719343] vgaarb: loaded
[    3.722175] vgaarb: bridge control possible 0000:01:05.0
[    3.727745] initcall vga_arb_device_init+0x0/0xcc returned 0 after 16601 usecs
[    3.735325] calling  cn_init+0x0/0xb0 @ 1
[    3.739551] initcall cn_init+0x0/0xb0 returned 0 after 0 usecs
[    3.745674] calling  dma_buf_init+0x0/0x62 @ 1
[    3.750350] initcall dma_buf_init+0x0/0x62 returned 0 after 0 usecs
[    3.756917] calling  phy_init+0x0/0x2f @ 1
[    3.761441] initcall phy_init+0x0/0x2f returned 0 after 976 usecs
[    3.767836] calling  init_pcmcia_cs+0x0/0x32 @ 1
[    3.772714] initcall init_pcmcia_cs+0x0/0x32 returned 0 after 0 usecs
[    3.779473] calling  usb_init+0x0/0x14c @ 1
[    3.783872] ACPI: bus type USB registered
[    3.788291] usbcore: registered new interface driver usbfs
[    3.794139] usbcore: registered new interface driver hub
[    3.794230] kworker/u12:0 (428) used greatest stack depth: 6844 bytes left
[    3.807028] usbcore: registered new device driver usb
[    3.812324] initcall usb_init+0x0/0x14c returned 0 after 28320 usecs
[    3.818986] calling  serio_init+0x0/0x2e @ 1
[    3.823532] initcall serio_init+0x0/0x2e returned 0 after 0 usecs
[    3.829928] calling  input_init+0x0/0xf1 @ 1
[    3.834446] initcall input_init+0x0/0xf1 returned 0 after 0 usecs
[    3.840841] calling  rtc_init+0x0/0x50 @ 1
[    3.845180] initcall rtc_init+0x0/0x50 returned 0 after 976 usecs
[    3.851577] calling  pps_init+0x0/0xa6 @ 1
[    3.855900] pps_core: LinuxPPS API ver. 1 registered
[    3.861106] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    3.870684] initcall pps_init+0x0/0xa6 returned 0 after 14648 usecs
[    3.877262] calling  ptp_init+0x0/0x8e @ 1
[    3.881591] PTP clock support registered
[    3.885700] initcall ptp_init+0x0/0x8e returned 0 after 3906 usecs
[    3.892192] calling  power_supply_class_init+0x0/0x39 @ 1
[    3.897887] initcall power_supply_class_init+0x0/0x39 returned 0 after 0 usecs
[    3.905474] calling  hwmon_init+0x0/0xda @ 1
[    3.909983] initcall hwmon_init+0x0/0xda returned 0 after 0 usecs
[    3.916371] calling  leds_init+0x0/0x36 @ 1
[    3.920789] initcall leds_init+0x0/0x36 returned 0 after 0 usecs
[    3.927097] calling  efisubsys_init+0x0/0x115 @ 1
[    3.932028] initcall efisubsys_init+0x0/0x115 returned 0 after 0 usecs
[    3.938878] calling  pci_subsys_init+0x0/0x48 @ 1
[    3.943811] PCI: Using ACPI for IRQ routing
[    3.948195] PCI: pci_cache_line_size set to 64 bytes
[    3.953447] e820: reserve RAM buffer [mem 0x0009f400-0x0009ffff]
[    3.959751] e820: reserve RAM buffer [mem 0xcfeb0000-0xcfffffff]
[    3.966059] initcall pci_subsys_init+0x0/0x48 returned 0 after 22460 usecs
[    3.973274] calling  proto_init+0x0/0xf @ 1
[    3.977668] initcall proto_init+0x0/0xf returned 0 after 0 usecs
[    3.983967] calling  net_dev_init+0x0/0x15d @ 1
[    3.989524] initcall net_dev_init+0x0/0x15d returned 0 after 976 usecs
[    3.996374] calling  neigh_init+0x0/0xa4 @ 1
[    4.000849] initcall neigh_init+0x0/0xa4 returned 0 after 0 usecs
[    4.007242] calling  fib_rules_init+0x0/0xbd @ 1
[    4.012078] initcall fib_rules_init+0x0/0xbd returned 0 after 0 usecs
[    4.018834] calling  pktsched_init+0x0/0x121 @ 1
[    4.023685] initcall pktsched_init+0x0/0x121 returned 0 after 0 usecs
[    4.030447] calling  tc_filter_init+0x0/0x6a @ 1
[    4.035287] initcall tc_filter_init+0x0/0x6a returned 0 after 0 usecs
[    4.042046] calling  tc_action_init+0x0/0x6a @ 1
[    4.046882] initcall tc_action_init+0x0/0x6a returned 0 after 0 usecs
[    4.053639] calling  genl_init+0x0/0x7a @ 1
[    4.058044] initcall genl_init+0x0/0x7a returned 0 after 0 usecs
[    4.064349] calling  cipso_v4_init+0x0/0x5a @ 1
[    4.069102] initcall cipso_v4_init+0x0/0x5a returned 0 after 0 usecs
[    4.075764] calling  netlbl_init+0x0/0x7d @ 1
[    4.080327] NetLabel: Initializing
[    4.083894] NetLabel:  domain hash size = 128
[    4.088457] NetLabel:  protocols = UNLABELED CIPSOv4
[    4.093712] NetLabel:  unlabeled traffic allowed by default
[    4.099562] initcall netlbl_init+0x0/0x7d returned 0 after 18554 usecs
[    4.106411] calling  rfkill_init+0x0/0x68 @ 1
[    4.111108] initcall rfkill_init+0x0/0x68 returned 0 after 0 usecs
[    4.117596] calling  xen_mcfg_late+0x0/0xa6 @ 1
[    4.122343] initcall xen_mcfg_late+0x0/0xa6 returned 0 after 0 usecs
[    4.129052] calling  xen_p2m_debugfs+0x0/0x49 @ 1
[    4.134001] initcall xen_p2m_debugfs+0x0/0x49 returned 0 after 0 usecs
[    4.140863] calling  xen_spinlock_debugfs+0x0/0x120 @ 1
[    4.146401] initcall xen_spinlock_debugfs+0x0/0x120 returned 0 after 0 usecs
[    4.153804] calling  nmi_warning_debugfs+0x0/0x26 @ 1
[    4.159109] initcall nmi_warning_debugfs+0x0/0x26 returned 0 after 0 usecs
[    4.166321] calling  hpet_late_init+0x0/0xe6 @ 1
[    4.171176] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    4.176600] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
[    4.184717] initcall hpet_late_init+0x0/0xe6 returned 0 after 12695 usecs
[    4.191839] calling  init_amd_nbs+0x0/0xb6 @ 1
[    4.196511] initcall init_amd_nbs+0x0/0xb6 returned 0 after 0 usecs
[    4.203089] calling  clocksource_done_booting+0x0/0x3b @ 1
[    4.208858] Switched to clocksource hpet
[    4.212990] initcall clocksource_done_booting+0x0/0x3b returned 0 after 4042 usecs
[    4.220935] calling  tracer_init_debugfs+0x0/0x165 @ 1
[    4.226818] initcall tracer_init_debugfs+0x0/0x165 returned 0 after 476 usecs
[    4.234316] calling  init_trace_printk_function_export+0x0/0x33 @ 1
[    4.240918] initcall init_trace_printk_function_export+0x0/0x33 returned 0 after 8 usecs
[    4.249420] calling  event_trace_init+0x0/0x1ee @ 1
[    4.275136] initcall event_trace_init+0x0/0x1ee returned 0 after 20127 usecs
[    4.282545] calling  init_kprobe_trace+0x0/0_fs+0x0/0x3d @ 1
[    4.299597] initcall init_pipe_fs+0x0/0x3d returned 0 after 105 usecs
[    4.306364] calling  eventpoll_init+0x0/0xd0 @ 1
[    4.311303] initcall eventpoll_init+0x0/0xd0 returned 0 after 88 usecs
[    4.318152] calling  anon_inode_init+0x0/0x56 @ 1
[    4.323189] initcall anon_inode_init+0x0/0x56 returned 0 after 94 usecs
[    4.330135] calling  proc_cmdline_init+0x0/0x27 @ 1
[    4.335265] initcall proc_cmdline_init+0x0/0x27 returned 0 after 7 usecs
[    4.342309] calling  proc_consoles_init+0x0/0x27 @ 1
[    4.347537] initcall proc_consoles_init+0x0/0x27 returned 0 after 6 usecs
[    4.354666] calling  proc_cpuinfo_init+0x0/0x27 @ 1
[    4.359798] initcall proc_cpuinfo_init+0x0/0x27 returned 0 after 6 usecs
[    4.366836] calling  proc_devices_init+0x0/0x27 @ 1
[    4.371971] initcall proc_devices_init+0x0/0x27 returned 0 after 5 usecs
[    4.379014] calling  proc_interrupts_init+0x0/0x27 @ 1
[    4.384420] initcall proc_interrupts_init+0x0/0x27 returned 0 after 6 usecs
[    4.391744] calling  proc_loadavg_init+0x0/0x27 @ 1
[    4.396868] initcall proc_loadavg_init+0x0/0x27 returned 0 after 6 usecs
[    4.403911] calling  proc_meminfo_init+0x0/0x27 @ 1
[    4.409040] initcall proc_meminfo_init+0x0/0x27 returned 0 after 6 usecs
[    4.416070] calling  proc_stat_init+0x0/0x27 @ 1
[    4.420927] initcall proc_stat_init+0x0/0x27 returned 0 after 6 usecs
[    4.427700] calling  proc_uptime_init+0x0/0x27 @ 1
[    4.432734] initcall proc_uptime_init+0x0/0x27 returned 0 after 5 usecs
[    4.439684] calling  proc_version_init+0x0/0x27 @ 1
[    4.444816] initcall proc_version_init+0x0/0x27 returned 0 after 6 usecs
[    4.451852] calling  proc_softirqs_init+0x0/0x27 @ 1
[    4.457070] initcall proc_softirqs_init+0x0/0x27 returned 0 after 6 usecs
[    4.464200] calling  proc_kcore_init+0x0/0xae @ 1
[    4.469157] initcall proc_kcore_init+0x0/0xae returned 0 after 9 usecs
[    4.476013] calling  vmcore_init+0x0/0x68b @ 1
[    4.480686] initcall vmcore_init+0x0/0x68b returned 0 after 1 usecs
[    4.487280] calling  proc_kmsg_init+0x0/0x2a @ 1
[    4.492133] initcall proc_kmsg_init+0x0/0x2a returned 0 after 6 usecs
[    4.498900] calling  proc_page_init+0x0/0x4a @ 1
[    4.503762] initcall proc_page_init+0x0/0x4a returned 0 after 11 usecs
[    4.510621] calling  init_ramfs_fs+0x0/0x44 @ 1
[    4.515451] initcall init_ramfs_fs+0x0/0x44 returned 0 after 71 usecs
[    4.522214] calling  blk_scsi_ioctl_init+0x0/0x288 @ 1
[    4.527626] initcall blk_scsi_ioctl_init+0x0/0x288 returned 0 after 1 usecs
[    4.534936] calling  acpi_event_init+0x0/0x37 @ 1
[    4.539919] initcall acpi_event_init+0x0/0x37 returned 0 after 30 usecs
[    4.546870] calling  pnp_system_init+0x0/0xf @ 1
[    4.551767] initcall pnp_system_init+0x0/0xf returned 0 after 52 usecs
[    4.558624] calling  pnpacpi_init+0x0/0x88 @ 1
[    4.563291] pnp: PnP ACPI init
[    4.566550] ACPI: bus type PNP registered
[    4.571974] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.579673] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    4.606649] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
[    4.613977] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
[    4.620921] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.630292] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    4.636533] system 00:03: [io  0x040b] has been reserved
[    4.642132] system 00:03: [io  0x04d6] has been reserved
[    4.647716] system 00:03: [io  0x0c00-0x0c01] has been reserved
[    4.653937] system 00:03: [io  0x0c14] has been reserved
[    4.659523] system 00:03: [io  0x0c50-0x0c51] has been reserved
[    4.665750] system 00:03: [io  0x0c52] has been reserved
[    4.671340] system 00:03: [io  0x0c6c] has been reserved
[    4.676927] system 00:03: [io  0x0c6f] has been reserved
[    4.682508] system 00:03: [io  0x0cd0-0x0cd1] has been reserved
[    4.688731] system 00:03: [io  0x0cd2-0x0cd3] has been reserved
[    4.694956] system 00:03: [io  0x0cd4-0x0cd5] has been reserved
[    4.701181] system 00:03: [io  0x0cd6-0x0cd7] has been reserved
[    4.707418] system 00:03: [io  0x0cd8-0x0cdf] has been reserved
[    4.713652] system 00:03: [io  0x0800-0x089f] could not be reserved
[    4.720241] system 00:03: [io  0x0b00-0x0b0f] has been reserved
[    4.726476] system 00:03: [io  0x0b20-0x0b3f] has been reserved
[    4.732709] system 00:03: [io  0x0900-0x090f] has been reserved
[    4.738934] system 00:03: [io  0x0910-0x091f] has been reserved
[    4.745174] system 00:03: [io  0xfe00-0xfefe] has been reserved
[    4.751406] system 00:03: [mem 0xffb80000-0xffbfffff] has been reserved
[    4.758363] system 00:03: [mem 0xfec10000-0xfec1001f] has been reserved
[    4.765340] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.775009] system 00:04: [io  0x0e00-0x0e0f] has been reserved
[    4.781229] system 00:04: [io  0x0e80-0x0e8f] has been reserved
[    4.787454] system 00:04: [io  0x0f40-0x0f4f] has been reserved
[    4.793679] system 00:04: [io  0x0a30-0x0a3f] has been reserved
[    4.799909] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.807594] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[    4.814552] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.823436] system 00:06: [mem 0x00000000-0x0009ffff] could not be reserved
[    4.830764] system 00:06: [mem 0x000c0000-0x000cffff] could not be reserved
[    4.838092] system 00:06: [mem 0x000e0000-0x000fffff] could not be reserved
[    4.845416] system 00:06: [mem 0x00100000-0xcfefffff] could not be reserved
[    4.852734] system 00:06: [mem 0xfec00000-0xffffffff] could not be reserved
[    4.860054] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    4.868070] pnp: PnP ACPI: found 7 devices
[    4.872370] ACPI: bus type PNP unregistered
[    4.876763] initcall pnpacpi_init+0x0/0x88 returned 0 after 306411 usecs
[    4.883802] calling  pcistub_init+0x0/0x280 @ 1
[    4.889359] initcall pcistub_init+0x0/0x280 returned 0 after 773 usecs
[    4.896217] calling  chr_dev_init+0x0/0xc9 @ 1
[    4.912172] initcall chr_dev_init+0x0/0xc9 returned 0 after 11025 usecs
[    4.919126] calling  firmware_class_init+0x0/0xd736829] initcall init_pcmcia_bus+0x0/0x5e returned 0 after 86 usecs
[    4.943783] calling  thermal_init+0x0/0x78 @ 1
[    4.948509] initcall thermal_init+0x0/0x78 returned 0 after 53 usecs
[    4.955192] calling  cpufreq_gov_performance_init+0x0/0xf @ 1
[    4.961243] initcall cpufreq_gov_performance_init+0x0/0xf returned 0 after 1 usecs
[    4.969207] calling  init_acpi_pm_clocksource+0x0/0x18d @ 1
[    5.009568] initcall init_acpi_pm_clocksource+0x0/0x18d returned 0 after 33736 usecs
[    5.017717] calling  pcibios_assign_resources+0x0/0x8f @ 1
[    5.023509] pci 0000:00:01.0: PCI bridge to [bus 01]
[    5.028726] pci 0000:00:01.0:   bridge window [io  0x8000-0x8fff]
[    5.035138] pci 0000:00:01.0:   bridge window [mem 0xfe700000-0xfe8fffff]
[    5.042268] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    5.050401] pci 0000:00:06.0: PCI bridge to [bus 02]
[    5.055614] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    5.062031] pci 0000:00:06.0:   bridge window [mem 0xfe900000-0xfe9fffff]
[    5.069148] pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
[    5.077297] pci 0000:00:07.0: PCI bridge to [bus 03]
[    5.082503] pci 0000:00:07.0:   bridge window [io  0xa000-0xbfff]
[    5.088913] pci 0000:00:07.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    5.096045] pci 0000:00:14.4: PCI bridge to [bus 04]
[    5.101267] pci 0000:00:14.4:   bridge window [io  0xc000-0xefff]
[    5.107671] pci 0000:00:14.4:   bridge window [mem 0xfeb00000-0xfebfffff]
[    5.114818] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    5.120670] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    5.126529] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    5.133116] pci_bus 0000:00: resource 7 [mem 0xcff00000-0xdfffffff]
[    5.139703] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfebfffff]
[    5.146298] pci_bus 0000:01: resource 0 [io  0x8000-0x8fff]
[    5.152151] pci_bus 0000:01: resource 1 [mem 0xfe700000-0xfe8fffff]
[    5.158735] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    5.166324] pci_bus 0000:02: resource 0 [io  0x9000-0x9fff]
[    5.172177] pci_bus 0000:02: resource 1 [mem 0xfe900000-0xfe9fffff]
[    5.178755] pci_bus 0000:02: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
[    5.186336] pci_bus 0000:03: resource 0 [io  0xa000-0xbfff]
[    5.192193] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    5.198783] pci_bus 0000:04: resource 0 [io  0xc000-0xefff]
[    5.204640] pci_bus 0000:04: resource 1 [mem 0xfeb00000-0xfebfffff]
[    5.211218] pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7]
[    5.217074] pci_bus 0000:04: resource 5 [io  0x0d00-0xffff]
[    5.222915] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
[    5.229515] pci_bus 0000:04: resource 7 [mem 0xcff00000-0xdfffffff]
[    5.236096] pci_bus 0000:04: resource 8 [mem 0xf0000000-0xfebfffff]
[    5.242691] initcall pcibios_assign_resources+0x0/0x8f returned 0 after 214267 usecs
[    5.250826] calling  sysctl_core_init+0x0/0x23 @ 1
[    5.255888] initcall sysctl_core_init+0x0/0x23 returned 0 after 29 usecs
[    5.262942] calling  inet_init+0x0/0x25b @ 1
[    5.267663] NET: Registered protocol family 2
[    5.273011] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    5.280448] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    5.287234] TCP: Hash tables configured (established 8192 bind 8192)
[    5.293948] TCP: reno registered
[    5.297337] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    5.303562] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    5.310583] initcall inet_init+0x0/0x25b returned 0 after 42178 usecs
[    5.317363] calling  ipv4_offload_init+0x0/0x5d @ 1
[    5.322487] initcall ipv4_offload_init+0x0/0x5d returned 0 after 1 usecs
[    5.329533] calling  af_unix_init+0x0/0x4d @ 1
[    5.334231] NET: Registered protocol family 1
[    5.338824] initcall af_unix_init+0x0/0x4d returned 0 after 4521 usecs
[    5.345679] calling  ipv6_offload_init+0x0/0x7a @ 1
[    5.350814] initcall ipv6_offload_init+0x0/0x7a returned 0 after 3 usecs
[    5.357853] calling  init_sunrpc+0x0/0x5f @ 1
[    5.362815] RPC: Registered named UNIX socket transport module.
[    5.369029] RPC: Registered udp transport module.
[    5.373978] RPC: Registered tcp transport module.
[    5.378927] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.385691] initcall init_sunrpc+0x0/0x5f returned 0 after 22730 usecs
[    5.392546] calling  pci_apply_final_quirks+0x0/0x112 @ 1
[    5.398215] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    5.766860] pci 0000:01:05.0: Boot video device
[    5.771642] PCI: CLS 64 bytes, default 64
[    5.775863] initcall pci_apply_final_quirks+0x0/0x112 returned 0 after 369146 usecs
[    5.783911] calling  populate_rootfs+0x0/0xf9 @ 1
[    5.789023] Unpacking initramfs...
[    7.642758] microcode: updated early to new patch_level=0x010000db
[    7.676706] Freeing initrd memory: 83092K (f2ad9000 - f7bfe000)
[    7.682929] initcall populate_rootfs+0x0/0xf9 returned 0 
[    7.695201] initcall pci_iommu_init+0x0/0x34 returned 0 after 2 usecs
[    7.702026] calling  register_kernel_offset_dumper+0x0/0x16 @ 1
[    7.708256] initcall register_kernel_offset_dumper+0x0/0x16 returned 0 after 2 usecs
[    7.716387] calling  i8259A_init_ops+0x0/0x1d @ 1
[    7.721336] initcall i8259A_init_ops+0x0/0x1d returned 0 after 2 usecs
[    7.728197] calling  sbf_init+0x0/0xf1 @ 1
[    7.732501] initcall sbf_init+0x0/0xf1 returned 0 after 1 usecs
[    7.738718] calling  init_tsc_clocksource+0x0/0xa7 @ 1
[    7.744121] initcall init_tsc_clocksource+0x0/0xa7 returned 0 after 2 usecs
[    7.751447] calling  add_rtc_cmos+0x0/0x99 @ 1
[    7.756121] initcall add_rtc_cmos+0x0/0x99 returned 0 after 2 usecs
[    7.762706] calling  i8237A_init_ops+0x0/0x11 @ 1
[    7.767659] initcall i8237A_init_ops+0x0/0x11 returned 0 after 1 usecs
[    7.774522] calling  cache_sysfs_init+0x0/0x69 @ 1
[    7.780885] initcall cache_sysfs_init+0x0/0x69 returned 0 after 1295 usecs
[    7.788110] calling  amd_uncore_init+0x0/0x111 @ 1
[    7.793155] initcall amd_uncore_init+0x0/0x111 returned -19 after 1 usecs
[    7.800293] calling  intel_uncore_init+0x0/0x3ea @ 1
[    7.805514] initcall intel_uncore_init+0x0/0x3ea returned -19 after 0 usecs
[    7.812838] calling  rapl_pmu_init+0x0/0x194 @ 1
[    7.817686] initcall rapl_pmu_init+0x0/0x194 returned 0 after 1 usecs
[    7.824464] calling  inject_init+0x0/0x30 @ 1
[    7.829048] Machine check injector initialized
[    7.833725] initcall inject_init+0x0/0x30 returned 0 after 4571 usecs
[    7.840498] calling  thermal_throttle_init_device+0x0/0x6d @ 1
[    7.846629] initcall thermal_throttle_init_device+0x0/0x6d returned 0 after 0 usecs
[    7.854685] calling  microcode_init+0x0/0x18c @ 1
[    7.859762] microcode: CPU0: patch_level=0x010000db
[    7.864913] microcode: CPU1: patch_level=0x01000086
[    7.870072] microcode: CPU2: patch_level=0x01000086
[    7.875231] microcode: CPU3: patch_level=0x01000086
[    7.880548] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    7.889808] initcall microcode_init+0x0/0x18c returned 0 after 29500 usecs
[    7.897043] calling  amd_ibs_init+0x0/0x21f @ 1
[    7.901815] LVT offset 1 assigned for vector 0x400
[    7.906861] IBS: LVT offset 1 assigned
[    7.910911] perf: AMD IBS detected (0x0000001f)
[    7.915673] initcall amd_ibs_init+0x0/0x21f returned 0 after 13546 usecs
[    7.922713] calling  msr_init+0x0/0x153 @ 1
[    7.927818] initcall msr_init+0x0/0x153 returned 0 after 690 usecs
[    7.934327] calling  cpuid_init+0x0/0x153 @ 1
[    7.939493] initcall cpuid_init+0x0/0x153 returned 0 after 574 usecs
[    7.946175] calling  ioapic_init_ops+0x0/0x11 @ 1
[    7.951135] initcall ioapic_init_ops+0x0/0x11 returned 0 after 1 usecs
[    7.957989] calling  add_pcspkr+0x0/0x3b @ 1
[    7.962570] initcall add_pcspkr+0x0/0x3b returned 0 after 84 usecs
[    7.969066] calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
[    7.975846] Scanning for low memory corruption every 60 seconds
[    7.982065] initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 6077 usecs
[    7.991032] calling  sysfb_init+0x0/0x80 @ 1
[    7.995617] initcall sysfb_init+0x0/0x80 returned 0 after 94 usecs
[    8.002115] calling  pt_dump_init+0x0/0x70 @ 1
[    8.006813] initcall pt_dump_init+0x0/0x70 returned 0 after 10 usecs
[    8.013489] calling  aes_init+0x0/0xf @ 1
[    8.017801] initcall aes_init+0x0/0xf returned 0 after 89 usecs
[    8.024027] calling  proc_execdomains_init+0x0/0x27 @ 1
[    8.029527] initcall proc_execdomains_init+0x0/0x27 returned 0 after 11 usecs
[    8.037042] calling  ioresources_init+0x0/0x44 @ 1
[    8.042082] initcall ioresources_init+0x0/0x44 returned 0 after 11 usecs
[    8.049131] calling  snapshot_device_init+0x0/0xf @ 1
[    8.054573] initcall snapshot_device_init+0x0/0xf returned 0 after 127 usecs
[    8.061974] calling  irq_pm_init_ops+0x0/0x11 @ 1
[    8.066931] initcall irq_pm_init_ops+0x0/0x11 returned 0 after 0 usecs
[    8.073790] calling  init_posix_timers+0x0/0x22b @ 1
[    8.079088] initcall init_posix_timers+0x0/0x22b returned 0 after 69 usecs
[    8.086310] calling  init_posix_cpu_timers+0x0/0x9b @ 1
[    8.091802] initcall init_posix_cpu_timers+0x0/0x9b returned 0 after 0 usecs
[    8.099208] calling  timekeeping_init_ops+0x0/0x11 @ 1
[    8.104620] initcall timekeeping_init_ops+0x0/0x11 returned 0 after 0 usecs
[    8.111940] calling  init_clocksource_sysfs+0x0/0x58 @ 1
[    8.117728] initcall init_clocksource_sysfs+0x0/0x58 returned 0 after 199 usecs
[    8.125415] calling  init_timer_list_procfs+0x0/0x30 @ 1
[    8.130991] initcall init_timer_list_procfs+0x0/0x30 returned 0 after 6 usecs
[    8.138503] calling  alarmtimer_init+0x0/0x151 @ 1
[    8.143718] initcall alarmtimer_init+0x0/0x151 returned 0 after 172 usecs
[    8.150871] calling  clockevents_init_sysfs+0x0/0xa3 @ 1
[    8.157109] initcall clockevents_init_sysfs+0x0/0xa3 returned 0 after 645 usecs
[    8.164792] calling  init_tstats_procfs+0x0/0x30 @ 1
[    8.170025] initcall init_tstats_procfs+0x0/0x30 returned 0 after 6 usecs
[    8.177163] calling  futex_init+0x0/0xe6 @ 1
[    8.181654] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    8.188259] initcall futex_init+0x0/0xe6 returned 0 after 6460 usecs
[    8.194935] calling  proc_dma_init+0x0/0x27 @ 1
[    8.199709] initcall proc_dma_init+0x0/0x27 returned 0 after 6 usecs
[    8.206379] calling  proc_modules_init+0x0/0x27 @ 1
[    8.211506] initcall proc_modules_init+0x0/0x27 returned 0 after 6 usecs
[    8.218544] calling  kallsyms_init+0x0/0x2a @ 1
[    8.223303] initcall kallsyms_init+0x0/0x2a returned 0 after 7 usecs
[    8.229979] calling  pid_namespaces_init+0x0/0x32 @ 1
[    8.235332] initcall pid_namespaces_init+0x0/0x32 returned 0 after 37 usecs
[    8.242641] calling  ikconfig_init+0x0/0x41 @ 1
[    8.247414] initcall ikconfig_init+0x0/0x41 returned 0 after 6 usecs
[    8.254091] calling  audit_init+0x0/0xed @ 1
[    8.258578] audit: initializing netlink subsys (disabled)
[    8.264287] audit: type=2000 audit(1405366335.595:1): initialized
[    8.270680] initcall audit_init+0x0/0xed returned 0 after 11828 usecs
[    8.277448] calling  audit_watch_init+0x0/0x31 @ 1
[    8.282478] initcall audit_watch_init+0x0/0x31 returned 0 after 3 usecs
[    8.289440] calling  audit_tree_init+0x0/0x3b @ 1
[    8.294378] initcall audit_tree_init+0x0/0x3b returned 0 after 3 usecs
[    8.301246] calling  init_kprobes+0x0/0x177 @ 1
[    8.306447] initcall init_kprobes+0x0/0x177 returned 0 after 431 usecs
[    8.313323] calling  utsname_sysctl_init+0x0/0x11 @ 1
[    8.318635] initcall utsname_sysctl_init+0x0/0x11 returned 0 after 12 usecs
[    8.325966] calling  init_tracepoints+0x0/0x29 @ 1
[    8.331001] initcall init_tracepoints+0x0/0x29 returned 0 after 3 usecs
[    8.337958] calling  init_blk_tracer+0x0/0x56 @ 1
[    8.342896] initcall init_blk_tracer+0x0/0x56 returned 0 after 1 usecs
[    8.349768] calling  perf_event_sysfs_init+0x0/0x8f @ 1
[    8.356011] initcall perf_event_sysfs_init+0x0/0x8f returned 0 after 745 usecs
[    8.363604] calling  init_per_zone_wmark_min+0x0/0x9d @ 1
[    8.369293] initcall init_per_zone_wmark_min+0x0/0x9d returned 0 after 4 usecs
[    8.376884] calling  kswapd_init+0x0/0x1d @ 1
[    8.381618] initcall kswapd_init+0x0/0x1d returned 0 after 152 usecs
[    8.388296] calling  extfrag_debug_init+0x0/0x7b @ 1
[    8.393551] initcall extfrag_debug_init+0x0/0x7b returned 0 after 23 usecs
[    8.400769] calling  setup_vmstat+0x0/0xcf @ 1
[    8.405483] initcall setup_vmstat+0x0/0xcf returned 0 after 37 usecs
[    8.412163] calling  mm_compute_batch_init+0x0/0x51 @ 1
[    8.417658] initcall mm_compute_batch_init+0x0/0x51 returned 0 after 0 usecs
[    8.425065] calling  slab_proc_init+0x0/0x2a @ 1
[    8.429930] initcall slab_proc_init+0x0/0x2a returned 0 after 9 usecs
[    8.436702] calling  workingset_init+0x0/0x38 @ 1
[    8.441653] initcall workingset_init+0x0/0x38 returned 0 after 5 usecs
[    8.448505] calling  proc_vmalloc_init+0x0/0x2a @ 1
[    8.453637] initcall proc_vmalloc_init+0x0/0x2a returned 0 after 6 usecs
[    8.460683] calling  procswaps_init+0x0/0x27 @ 1
[    8.465532] initcall procswaps_init+0x0/0x27 returned 0 after 6 usecs
[    8.472299] calling  init_frontswap+0x0/0x84 @ 1
[    8.477179] initcall init_frontswap+0x0/0x84 returned 0 after 30 usecs
[    8.484032] calling  hugetlb_init+0x0/0x3d8 @ 1
[    8.488794] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    8.495540] initcall hugetlb_init+0x0/0x3d8 returned 0 after 6595 usecs
[    8.502503] calling  slab_proc_init+0x0/0x7 @ 1
[    8.507262] initcall slab_proc_init+0x0/0x7 returned 0 after 0 usecs
[    8.513940] calling  cpucache_init+0x0/0x40 @ 1
[    8.518698] initcall cpucache_init+0x0/0x40 returned 0 after 1 usecs
[    8.525371] calling  init_cleancache+0x0/0xa8 @ 1
[    8.530349] initcall init_cleancache+0x0/0xa8 returned 0 after 31 usecs
[    8.537304] calling  zs_init+0x0/0x90 @ 1
[    8.541511] initcall zs_init+0x0/0x90 returned 0 after 2 usecs
[    8.547640] calling  fcntl_init+0x0/0x2f @ 1
[    8.552159] initcall fcntl_init+0x0/0x2f returned 0 after 34 usecs
[    8.558665] calling  proc_filesystems_init+0x0/0x27 @ 1
[    8.564151] initcall proc_filesystems_init+0x0/0x27 returned 0 after 7 usecs
[    8.571563] calling  dio_init+0x0/0x32 @ 1
[    8.575892] initcall dio_init+0x0/0x32 returned 0 after 36 usecs
[    8.582198] calling  fsnotify_mark_init+0x0/0x46 @ 1
[    8.587486] initcall fsnotify_mark_init+0x0/0x46 returned 0 after 71 usecs
[    8.594720] calling  dnotify_init+0x0/0x7c @ 1
[    8.599479] initcall dnotify_init+0x0/0x7c returned 0 after 89 usecs
[    8.606165] calling  inotify_user_setup+0x0/0x50 @ 1
[    8.611429] initcall inotify_user_setup+0x0/0x50 returned 0 after 53 usecs
[    8.618649] calling  aio_setup+0x0/0x7e @ 1
[    8.623224] initcall aio_setup+0x0/0x7e returned 0 after 163 usecs
[    8.629724] calling  proc_locks_init+0x0/0x27 @ 1
[    8.634680] initcall proc_locks_init+0x0/0x27 returned 0 after 6 usecs
[    8.641550] calling  dquot_init+0x0/0x116 @ 1
[    8.646125] VFS: Disk quotas dquot_6.5.2
[    8.650418] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    8.657292] initcall dquot_init+0x0/0x116 returned 0 after 10915 usecs
[    8.664154] calling  init_v2_quota_format+0x0/0x1d @ 1
[    8.669557] initcall init_v2_quota_format+0x0/0x1d returned 0 after 1 usecs
[    8.676868] calling  quota_init+0x0/0x2e @ 1
[    8.681385] initcall quota_init+0x0/0x2e returned 0 after 26 usecs
[    8.687869] calling  init_devpts_fs+0x0/0x52 @ 1
[    8.692831] initcall init_devpts_fs+0x0/0x52 returned 0 after 111 usecs
[    8.699790] calling  init_hugetlbfs_fs+0x0/0x145 @ 1
[    8.705231] initcall init_hugetlbfs_fs+0x0/0x145 returned 0 after 225 usecs
[    8.712543] calling  init_fat_fs+0x0/0x4c @ 1
[    8.717212] initcall init_fat_fs+0x0/0x4c returned 0 after 78 usecs
[    8.723792] calling  init_vfat_fs+0x0/0xf @ 1
[    8.728364] initcall init_vfat_fs+0x0/0xf returned 0 after 1 usecs
[    8.734858] calling  init_msdos_fs+0x0/0xf @ 1
[    8.739531] initcall init_msdos_fs+0x0/0xf returned 0 after 1 usecs
[    8.746124] calling  init_iso9660_fs+0x0/0x69 @ 1
[    8.751135] initcall init_iso9660_fs+0x0/0x69 returned 0 after 64 usecs
[    8.758096] calling  init_nfs_fs+0x0/0x142 @ 1
[    8.763189] initcall init_nfs_fs+0x0/0x142 returned 0 after 421 usecs
[    8.769966] calling  init_nfs_v2+0x0/0x11 @ 1
[    8.774546] initcall init_nfs_v2+0x0/0x11 returned 0 after 1 usecs
[    8.781041] calling  init_nfs_v3+0x0/0x11 @ 1
[    8.785623] initcall init_nfs_v3+0x0/0x11 returned 0 after 1 usecs
[    8.792118] calling  init_nfs_v4+0x0/0x30 @ 1
[    8.796697] NFS: Registering the id_resolver key type
[    8.802011] Key type id_resolver registered
[    8.806414] Key type id_legacy registered
[    8.810629] initcall init_nfs_v4+0x0/0x30 returned 0 after 13618 usecs
[    8.817495] calling  init_nlm+0x0/0x3b @ 1
[    8.821805] initcall init_nlm+0x0/0x3b returned 0 after 11 usecs
[    8.828129] calling  init_nls_cp437+0x0/0x11 @ 1
[    8.832979] initcall init_nls_cp437+0x0/0x11 returned 0 after 1 usecs
[    8.839756] calling  init_nls_ascii+0x0/0x11 @ 1
[    8.844605] initcall init_nls_ascii+0x0/0x11 returned 0 after 0 usecs
[    8.851378] calling  init_nls_iso8859_1+0x0/0x11 @ 1
[    8.856591] initcall init_nls_iso8859_1+0x0/0x11 returned 0 after 0 usecs
[    8.863732] calling  init_nls_utf8+0x0/0x23 @ 1
[    8.868491] initcall init_nls_utf8+0x0/0x23 returned 0 after 1 usecs
[    8.875177] calling  init_ntfs_fs+0x0/0x1c9 @ 1
[    8.879942] ntfs: driver 2.1.30 [Flags: R/W].
[    8.881524] tsc: Refined TSC clocksource calibration: 3000.106 MHz
[    8.891208] initcall init_ntfs_fs+0x0/0x1c9 returned 0 after 11010 usecs
[    8.898251] calling  init_autofs4_fs+0x0/0x26 @ 1
[    8.903334] initcall init_autofs4_fs+0x0/0x26 returned 0 after 137 usecs
[    8.910392] calling  init_pstore_fs+0x0/0x41 @ 1
[    8.915260] initcall init_pstore_fs+0x0/0x41 returned 0 after 15 usecs
[    8.922127] calling  ipc_init+0x0/0x20 @ 1
[    8.926447] msgmni has been set to 1688
[    8.930504] initcall ipc_init+0x0/0x20 returned 0 after 3981 usecs
[    8.937012] calling  ipc_sysctl_init+0x0/0x11 @ 1
[    8.941962] initcall ipc_sysctl_init+0x0/0x11 returned 0 after 10 usecs
[    8.948926] calling  init_mqueue_fs+0x0/0x91 @ 1
[    8.953918] initcall init_mqueue_fs+0x0/0x91 returned 0 after 141 usecs
[    8.960858] calling  key_proc_init+0x0/0x64 @ 1
[    8.965636] initcall key_proc_init+0x0/0x64 returned 0 after 12 usecs
[    8.972407] calling  selinux_nf_ip_init+0x0/0x65 @ 1
[    8.977626] initcall selinux_nf_ip_init+0x0/0x65 returned 0 after 1 usecs
[    8.984762] calling  init_sel_fs+0x0/0x8b @ 1
[    8.989340] initcall init_sel_fs+0x0/0x8b returned 0 after 0 usecs
[    8.995836] calling  selnl_init+0x0/0x53 @ 1
[    9.000349] initcall selnl_init+0x0/0x53 returned 0 after 22 usecs
[    9.006855] calling  sel_netif_init+0x0/0x54 @ 1
[    9.011701] initcall sel_netif_init+0x0/0x54 returned 0 after 0 usecs
[    9.018482] calling  sel_netnode_init+0x0/0x5f @ 1
[    9.023510] initcall sel_netnode_init+0x0/0x5f returned 0 after 0 usecs
[    9.030470] calling  sel_netport_init+0x0/0x5f @ 1
[    9.035501] initcall sel_netport_init+0x0/0x5f returned 0 after 0 usecs
[    9.042455] calling  aurule_init+0x0/0x2d @ 1
[    9.047041] initcall aurule_init+0x0/0x2d returned 0 after 3 usecs
[    9.053550] calling  crypto_algapi_init+0x0/0xc @ 1
[    9.058685] initcall crypto_algapi_init+0x0/0xc returned 0 after 6 usecs
[    9.065732] calling  chainiv_module_init+0x0/0xf @ 1
[    9.070947] initcall chainiv_module_init+0x0/0xf returned 0 after 1 usecs
[    9.078092] calling  eseqiv_module_init+0x0/0xf @ 1
[    9.083225] initcall eseqiv_module_init+0x0/0xf returned 0 after 0 usecs
[    9.090269] calling  hmac_module_init+0x0/0xf @ 1
[    9.095222] initcall hmac_module_init+0x0/0xf returned 0 after 0 usecs
[    9.102076] calling  md5_mod_init+0x0/0xf @ 1
[    9.106740] initcall md5_mod_init+0x0/0xf returned 0 after 78 usecs
[    9.113335] calling  sha1_generic_mod_init+0x0/0xf @ 1
[    9.118828] initcall sha1_generic_mod_init+0x0/0xf returned 0 after 90 usecs
[    9.126245] calling  crypto_cbc_module_init+0x0/0xf @ 1
[    9.131738] initcall crypto_cbc_module_init+0x0/0xf returned 0 after 0 usecs
[    9.139133] calling  des_generic_mod_init+0x0/0x14 @ 1
[    9.144695] initcall des_generic_mod_init+0x0/0x14 returned 0 after 149 usecs
[    9.152209] calling  aes_init+0x0/0xf @ 1
[    9.156513] initcall aes_init+0x0/0xf returned 0 after 82 usecs
[    9.162737] calling  zlib_mod_init+0x0/0xf @ 1
[    9.167493] initcall zlib_mod_init+0x0/0xf returned 0 after 81 usecs
[    9.174169] calling  crypto_authenc_module_init+0x0/0xf @ 1
[    9.180034] initcall crypto_authenc_module_init+0x0/0xf returned 0 after 0 usecs
[    9.187808] calling  crypto_authenc_esn_module_init+0x0/0xf @ 1
[    9.194033] initcall crypto_authenc_esn_module_init+0x0/0xf returned 0 after 0 usecs
[    9.202175] calling  krng_mod_init+0x0/0xf @ 1
[    9.206952] initcall krng_mod_init+0x0/0xf returned 0 after 94 usecs
[    9.213628] calling  proc_genhd_init+0x0/0x44 @ 1
[    9.218583] initcall proc_genhd_init+0x0/0x44 returned 0 after 14 usecs
[    9.225531] calling  init_emergency_pool+0x0/0x53 @ 1
[    9.230850] bounce: pool size: 64 pages
[    9.234870] initcall init_emergency_pool+0x0/0x53 returned 0 after 3941 usecs
[    9.242372] calling  bsg_init+0x0/0x119 @ 1
[    9.246854] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    9.254634] initcall bsg_init+0x0/0x119 returned 0 after 7689 usecs
[    9.261209] calling  noop_init+0x0/0xf @ 1
[    9.265516] io scheduler noop registered
[    9.269638] initcall noop_init+0x0/0xf returned 0 after 4028 usecs
[    9.276139] calling  deadline_init+0x0/0xf @ 1
[    9.280809] io scheduler deadline registered
[    9.285304] initcall deadline_init+0x0/0xf returned 0 after 4392 usecs
[    9.292163] calling  cfq_init+0x0/0x89 @ 1
[    9.296545] io scheduler cfq registered (default)
[    9.301494] initcall cfq_init+0x0/0x89 returned 0 after 4911 usecs
[    9.307979] calling  percpu_counter_startup+0x0/0x35 @ 1
[    9.313574] initcall percpu_counter_startup+0x0/0x35 returned 0 after 1 usecs
[    9.321073] calling  audit_classes_init+0x0/0x4f @ 1
[    9.326307] initcall audit_classes_init+0x0/0x4f returned 0 after 11 usecs
[    9.333538] calling  phy_core_init+0x0/0x45 @ 1
[    9.338325] initcall phy_core_init+0x0/0x45 returned 0 after 30 usecs
[    9.345108] calling  pci_proc_init+0x0/0x64 @ 1
[    9.350090] initcall pci_proc_init+0x0/0x64 returned 0 after 212 usecs
[    9.356953] calling  pcie_portdrv_init+0x0/0x6f @ 1
[    9.362284] pcieport 0000:00:06.0: irq 24 for MSI/MSI-X
[    9.368026] pcieport 0000:00:07.0: irq 25 for MSI/MSI-X
[    9.373748] initcall pcie_portdrv_init+0x0/0x6f returned 0 after 11402 usecs
[    9.381157] calling  aer_service_init+0x0/0x28 @ 1
[    9.386239] initcall aer_service_init+0x0/0x28 returned 0 after 47 usecs
[    9.393282] calling  pci_hotplug_init+0x0/0x1e @ 1
[    9.398316] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    9.404170] initcall pci_hotplug_init+0x0/0x1e returned 0 after 5722 usecs
[    9.411398] calling  pcied_init+0x0/0x76 @ 1
[    9.416007] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    9.422965] initcall pcied_init+0x0/0x76 returned 0 after 6925 usecs
[    9.429656] calling  pcifront_init+0x0/0x41 @ 1
[    9.434420] initcall pcifront_init+0x0/0x41 returned -19 after 0 usecs
[    9.441290] calling  genericbl_driver_init+0x0/0x11 @ 1
[    9.446847] initcall genericbl_driver_init+0x0/0x11 returned 0 after 52 usecs
[    9.454357] calling  cirrusfb_init+0x0/0xaa @ 1
[    9.459187] initcall cirrusfb_init+0x0/0xaa returned 0 after 65 usecs
[    9.465968] calling  efifb_driver_init+0x0/0x11 @ 1
[    9.471137] initcall efifb_driver_init+0x0/0x11 returned 0 after 47 usecs
[    9.478267] calling  intel_idle_init+0x0/0x2ec @ 1
[    9.483292] initcall intel_idle_init+0x0/0x2ec returned -19 after 1 usecs
[    9.490430] calling  acpi_reserve_resources+0x0/0xc8 @ 1
[    9.496046] initcall acpi_reserve_resources+0x0/0xc8 returned 0 after 12 usecs
[    9.503640] calling  acpi_ac_init+0x0/0x25 @ 1
[    9.508386] initcall acpi_ac_init+0x0/0x25 returned 0 after 71 usecs
[    9.515063] calling  acpi_button_driver_init+0x0/0xf @ 1
[    9.521024] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    9.529801] ACPI: Power Button [PWRB]
[    9.534022] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    9.541810] ACPI: Power Button [PWRF]
[    9.545701] initcall acpi_button_driver_init+0x0/0xf returned 0 after 24480 usecs
[    9.553562] calling  acpi_fan_driver_init+0x0/0xf @ 1
[    9.558942] initcall acpi_fan_driver_init+0x0/0xf returned 0 after 52 usecs
[    9.566263] calling  acpi_processor_driver_init+0x0/0x3e @ 1
[    9.572285] ACPI: processor limited to max C-state 1
[    9.578284] initcall acpi_processor_driver_init+0x0/0x3e returned 0 after 5938 usecs
[    9.586434] calling  acpi_thermal_init+0x0/0x8c @ 1
[    9.594431] thermal LNXTHERM:00: registered as thermal_zone0
[    9.600391] ACPI: Thermal Zone [THRM] (30 C)
[    9.604942]9.612362] calling  acpi_battery_init+0x0/0x13 @ 1
[    9.617508] initcall acpi_battery_init+0x0/0x13 returned 0 after 17 usecs
[    9.617528] calling  1_acpi_battery_init_async+0x0/0x22 @ 6
[    9.617606] initcall 1_acpi_battery_init_async+0x0/0x22 returned 0 after 72 usecs
[    9.638357] calling  acpi_hed_driver_init+0x0/0xf @ 1
[    9.643733] initcall acpi_hed_driver_init+0x0/0xf returned 0 after 63 usecs
[    9.651058] calling  erst_init+0x0/0x2fa @ 1
[    9.655550] initcall erst_init+0x0/0x2fa returned 0 after 4 usecs
[    9.661968] calling  ghes_init+0x0/0x165 @ 1
[    9.666466] GHES: HEST is not enabled!
[    9.670415] initcall ghes_init+0x0/0x165 returned -22 after 3860 usecs
[    9.677278] calling  einj_init+0x0/0x4ef @ 1
[    9.681775] initcall einj_init+0x0/0x4ef returned -19 after 4 usecs
[    9.688377] calling  ioat_init_module+0x0/0xb0 @ 1
[    9.693420] ioatdma: Intel(R) QuickData Technology Driver 4.00
[    9.699770] initcall ioat_init_module+0x0/0xb0 returned 0 after 6209 usecs
[    9.707001] calling  virtio_mmio_init+0x0/0x11 @ 1
[    9.712098] initcall virtio_mmio_init+0x0/0x11 returned 0 after 58 usecs
[    9.719143] calling  virtio_balloon_driver_init+0x0/0xf @ 1
[    9.725057] initcall virtio_balloon_driver_init+0x0/0xf returned 0 after 55 usecs
[    9.732936] calling  xenbus_probe_initcall+0x0/0x35 @ 1
[    9.738436] initcall xenbus_probe_initcall+0x0/0x35 returned -19 after 4 usecs
[    9.746034] calling  xenbus_init+0x0/0x37 @ 1
[    9.750628] initcall xenbus_init+0x0/0x37 returned -19 after 0 usecs
[    9.757311] calling  xenbus_backend_init+0x0/0x48 @ 1
[    9.762637] initcall xenbus_backend_init+0x0/0x48 returned -19 after 0 usecs
[    9.770058] calling  gntdev_init+0x0/0x48 @ 1
[    9.774651] initcall gntdev_init+0x0/0x48 returned -19 after 4 usecs
[    9.781340] calling  gntalloc_init+0x0/0x37 @ 1
[    9.786112] initcall gntalloc_init+0x0/0x37 returned -19 after 0 usecs
[    9.792985] calling  hypervisor_subsys_init+0x0/0x21 @ 1
[    9.798581] initcall hypervisor_subsys_init+0x0/0x21 returned -19 after 0 usecs
[    9.806267] calling  hyper_sysfs_init+0x0/0xcc @ 1
[    9.811322] initcall hyper_sysfs_init+0x0/0xcc returned -19 after 3 usecs
[    9.818468] calling  platform_pci_module_init+0x0/0x16 @ 1
[    9.824317] initcall platform_pci_module_init+0x0/0x16 returned 0 after 75 usecs
[    9.832096] calling  xen_pcibk_init+0x0/0x110 @ 1
[    9.837057] initcall xen_pcibk_init+0x0/0x110 returned -19 after 4 usecs
[    9.844114] calling  xen_acpi_processor_init+0x0/0x1f7 @ 1
[    9.849896] initcall xen_acpi_processor_init+0x0/0x1f7 returned -19 after 4 usecs
[    9.857781] calling  pty_init+0x0/0x3d9 @ 1
[    9.867628] kworker/u12:0 (662) used greatest stack depth: 6828 bytes left
[    9.874903] kworker/u12:0 (708) used greatest [    9.902507] kworker/u12:0 (945) used greatest stack depth: 6712 bytes left
[    9.924829] initcall pty_init+0x0/0x3d9 returncalling  sysrq_init+0x0/0xbe @ 1
[    9.935992] initcall sysrq_init+0x0/0xbe returned 0 after 9 usecs
[    9.942390] calling  xen_hvc_init+0x0/0x1d5 @ 1
[    9.947145] initcall xen_hvc_init+0x0/0x1d5 returned -19 after 0 usecs
[    9.953988] calling  serial8250_init+0x0/0x16d @ 1
[    9.959010] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    9.967300] initcall serial8250_init+0x0/0x16d returned 0 after 8102 usecs
[    9.974524] calling  serial_pci_driver_init+0x0/0x16 @ 1
[   10.000847] 0000:04:07.0: ttyS0 at I/O 0xe400 (irq = 15, base_baud = 115200) is a 16550A
[   10.009351] console [ttyS0] enabled
[   10.009351] console [ttyS0] enabled
[   10.016601] bootconsole [uart0] disabled
[   10.016601] bootconsole [uart0] disabled
[   10.025337] initcall serial_pci_driver_init+0x0/0x16 returned 0 after 44216 usecs
[   10.033050] calling  init_kgdboc+0x0/0x15 @ 1
[   10.037535] initcall init_kgdboc+0x0/0x15 returned 0 after 0 usecs
[   10.043899] calling  init+0x0/0xf3 @ 1
[   10.047907] initcall init+0x0/0xf3 returned 0 after 147 usecs
[   10.053827] calling  hpet_init+0x0/0x57 @ 1
[   10.058632] initcall hpet_init+0x0/0x57 returned 0 after 487 usecs
[   10.065000] calling  nvram_init+0x0/0x7e @ 1
[   10.069514] Non-volatile memory driver v1.3
[   10.073823] initcall nvram_init+0x0/0x7e returned 0 after 4329 usecs
[   10.080368] calling  mod_init+0x0/0x1b6 @ 1
[   10.084706] initcall mod_init+0x0/0x1b6 returned -19 after 31 usecs
[   10.091162] calling  mod_init+0x0/0x12d @ 1
[   10.095473] initcall mod_init+0x0/0x12d returned -19 after 5 usecs
[   10.101840] calling  mod_init+0x0/0x99 @ 1
[   10.106059] initcall mod_init+0x0/0x99 returned -19 after 3 usecs
[   10.112336] calling  mod_init+0x0/0x48 @ 1
[   10.116552] initcall mod_init+0x0/0x48 returned -19 after 0 usecs
[   10.122829] calling  rng_init+0x0/0xf @ 1
[   10.127111] initcall rng_init+0x0/0xf returned 0 after 152 usecs
[   10.133303] calling  agp_init+0x0/0x2f @ 1
[   10.137519] Linux agpgart interface v0.103
[   10.141735] initcall agp_init+0x0/0x2f returned 0 after 4119 usecs
[   10.148101] calling  agp_ali_init+0x0/0x24 @ 1
[   10.152743] initcall agp_ali_init+0x0/0x24 returned 0 after 67 usecs
[   10.159288] calling  agp_ati_init+0x0/0x24 @ 1
[   10.163928] initcall agp_ati_init+0x0/0x24 returned 0 after 65 usecs
[   10.170471] calling  agp_amdk7_init+0x0/0x24 @ 1
[   10.175299] initcall agp_amdk7_init+0x0/0x24 returned 0 after 74 usecs
[   10.182023] calling  agp_amd64_mod_init+0x0/0xa @ 1
[   10.187732] initcall agp_amd64_mod_init+0x0/0xa returned -19 after 673 usecs
[   10.194992] calling  agp_efficeon_init+0x0/0x39 @ 1
[   10.200079] initcall agp_efficeon_init+0x0/0x39 returned 0 after 65 usecs
[   10.207071] calling  agp_intel_init+0x0/0x24 @ 1
[   10.211893] initcall agp_intel_init+0x0/0x24 returned 0 after 68 usecs
[   10.218617] calling  agp_nvidia_init+0x0/0x24 @ 1
[   10.223523] initcall agp_nvidia_init+0x0/0x24 returned 0 after 61 usecs
[   10.230336] calling  agp_sis_init+0x0/0x24 @ 1
[   10.234979] initcall agp_sis_init+0x0/0x24 returned 0 after 67 usecs
[   10.241523] calling  agp_serverworks_init+0x0/0x24 @ 1
[   10.246878] initcall agp_serverworks_init+0x0/0x24 returned 0 after 65 usecs
[   10.254136] calling  agp_via_init+0x0/0x24 @ 1
[   10.258777] initcall agp_via_init+0x0/0x24 returned 0 after 67 usecs
[   10.265320] calling  drm_core_init+0x0/0x107 @ 1
[   10.270134] [drm] Initialized drm 1.1.0 20060810
[   10.274887] initcall drm_core_init+0x0/0x107 returned 0 after 4705 usecs
[   10.281788] calling  cn_proc_init+0x0/0x33 @ 1
[   10.286364] initcall cn_proc_init+0x0/0x33 returned 0 after 3 usecs
[   10.292818] calling  topology_sysfs_init+0x0/0x60 @ 1
[   10.298215] initcall topology_sysfs_init+0x0/0x60 returned 0 after 194 usecs
[   10.305475] calling  loop_init+0x0/0x12b @ 1
[   10.315970] loop: module loaded
[   10.319211] initcall loop_init+0x0/0x12b returned 0 after 9128 usecs
[   10.325761] calling  xen_blkif_init+0x0/0x21 @ 1
[   10.330514] initcall xen_blkif_init+0x0/0x21 returned -19 after 0 usecs
[   10.337325] calling  zram_init+0x0/0x2e9 @ 1
[   10.342547] zram: Created 1 device(s) ...
[   10.346678] initcall zram_init+0x0/0x2e9 returned 0 after 4842 usecs
[   10.353223] calling  mac_hid_init+0x0/0x1c @ 1
[   10.357812] initcall mac_hid_init+0x0/0x1c returned 0 after 10 usecs
[   10.364356] calling  macvlan_init_module+0x0/0x31 @ 1
[   10.369561] initcall macvlan_init_module+0x0/0x31 returned 0 after 2 usecs
[   10.376649] calling  macvtap_init+0x0/0xd0 @ 1
[   10.381262] initcall macvtap_init+0x0/0xd0 returned 0 after 37 usecs
[   10.387811] calling  net_olddevs_init+0x0/0x88 @ 1
[   10.392750] initcall net_olddevs_init+0x0/0x88 returned 0 after 2 usecs
[   10.399566] calling  fixed_mdio_bus_init+0x0/0xe3 @ 1
[   10.404965] libphy: Fixed MDIO Bus: probed
[   10.409181] initcall fixed_mdio_bus_init+0x0/0xe3 returned 0 after 4312 usecs
[   10.416533] calling  tun_init+0x0/0x8b @ 1
[   10.420753] tun: Universal TUN/TAP device driver, 1.6
[   10.425956] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[   10.432454] initcall tun_init+0x0/0x8b returned 0 after 11437 usecs
[   10.438915] calling  tg3_driver_init+0x0/0x16 @ 1
[   10.443872] initcall tg3_driver_init+0x0/0x16 returned 0 after 108 usecs
[   10.450779] calling  ixgbevf_init_module+0x0/0x49 @ 1
[   10.455978] ixgbevf: Intel(R) 10 Gigabit PCI Express Virtual Function Network Driver - version 2.12.1-k
[   10.465652] ixgbevf: Copyright (c) 2009 - 2012 Intel Corporation.
[   10.472038] initcall ixgbevf_init_module+0x0/0x49 returned 0 after 15698 usecs
[   10.479480] calling  forcedeth_pci_driver_init+0x0/0x16 @ 1
[   10.485282] initcall forcedeth_pci_driver_init+0x0/0x16 returned 0 after 64 usecs
[   10.492989] calling  netback_init+0x0/0x81 @ 1
[   10.497567] initcall netback_init+0x0/0x81 returned -19 after 0 usecs
[   10.504201] calling  fw_core_init+0x0/0xf1 @ 1
[   10.508968] initcall fw_core_init+0x0/0xf1 returned 0 after 184 usecs
[   10.515604] calling  nonstatic_sysfs_init+0x0/0xf @ 1
[   10.520803] initcall nonstatic_sysfs_init+0x0/0xf returned 0 after 0 usecs
[   10.527884] calling  yenta_cardbus_driver_init+0x0/0x16 @ 1
[   10.533731] initcall yenta_cardbus_driver_init+0x0/0x16 returned 0 after 108 usecs
[   10.541524] calling  mon_init+0x0/0xe1 @ 1
[   10.545962] initcall mon_init+0x0/0xe1 returned 0 after 218 usecs
[   10.552240] calling  ehci_hcd_init+0x0/0x58 @ 1
[   10.556905] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   10.563625] initcall ehci_hcd_init+0x0/0x58 returned 0 after 6567 usecs
[   10.570437] calling  ehci_pci_init+0x0/0x60 @ 1
[   10.575100] ehci-pci: EHCI PCI platform driver
[   10.581451] IOAPIC[0]: Set routing entry (4-17 -> 0x61 -> IRQ 17 Mode:1 Active:1 Dest:15)
[   10.589887] QUIRK: Enable AMD PLL fix
[   10.593686] ehci-pci 0000:00:12.2: EHCI Host Controller
[   10.599349] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[   10.606974] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[   10.615928] ehci-pci 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
[   10.623642] ehci-pci 0000:00:12.2: debug port 1
[   10.628440] ehci-pci 0000:00:12.2: irq 17, io mem 0xfe6ff800
[   10.639895] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[   10.646121] usb usb1: New USB device found, idVendor=1d6b, oduct=0002
[   10.653113] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   10.660548] usb usb1: Product: EHCI Host Controller
[   10.665567] usb usb1: Manufacturer: Linux 3.16.0-rc5upstream-01668-g6d2265b ehci_hcd
[   10.673537] usb usb1: SerialNumber: 0000:00:12.2
[   10.679236] hub 1-0:1.0: USB hub found
[   10.683155] hub 1-0:1.0: 6 ports detected
[   10.690402] IOAPIC[0]: Set routing entry (4-19 -> 0x71 -> IRQ 19 Mode:1 Active:1 Dest:15)
[   10.698862] ehci-pci 0000:00:13.2: EHCI Host Controller
[   10.704524] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[   10.712148] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[   10.721103] ehci-pci 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
[   10.728818] ehci-pci 0000:00:13.2: debug port 1
[   10.733607] ehci-pci 0000:00:13.2: irq 19, io mem 0xfe6ff400
[   10.744795] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[   10.751004] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[   10.757998] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   10.765431] usb usb2: Product: EHCI Host Controller
[   10.770450] usb usb2: Manufacturer: Linux 3.16.0-rc5upstream-01668-g6d2265b ehci_hcd
[   10.778420] usb usb2: SerialNumber: 0000:00:13.2
[   10.784099] hub 2-0:1.0: USB hub found
[   10.788032] hub 2-0:1.0: 6 ports detected
[   10.793565] initcall ehci_pci_init+0x0/0x60 returned 0 after 213543 usecs
[   10.800576] calling  ohci_hcd_mod_init+0x0/0x5e @ 1
[   10.805601] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   10.811985] initcall ohci_hcd_mod_init+0x0/0x5e returned 0 after 6238 usecs
[   10.819167] calling  ohci_pci_init+0x0/0x60 @ 1
[   10.823834] ohci-pci: OHCI PCI platform driver
[   10.830189] IOAPIC[0]: Set routing entry (4-16 -> 0x81 -> IRQ 16 Mode:1 Active:1 Dest:15)
[   10.838654] ohci-pci 0000:00:12.0: OHCI PCI host controller
[   10.844671] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
[   10.852428] ohci-pci 0000:00:12.0: irq 16, io mem 0xfe6fe000
[   10.906982] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[   10.913975] usb usb3: New USB device strings: Mupstream-01668-g6d2265b ohci_hcd
[   10.934761] usb usb3: SerialNumber: 0000:00:12.0
[   10.940477] hub 3-0:1.0: USB hub found
[   10.944420] hub 3-0:1.0: 3 ports detected
[   10.951199] ohci-pci 0000:00:12.1: OHCI PCI host controller
[   10.957230] ohci-pci 0000:00:12.1: new USB bus registered, assigned bus number 4
[   10.964919] ohci-pci 0000:00:12.1: irq 16, io mem 0xfe6fd000
[   11.025872] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[   11.032864] usb usb4: New USB device strings: M6d2265b ohci_hcd
[   11.053647] usb usb4: SerialNumber: 0000:00:12.1
[   11.059328] hub 4-0:1.0: USB hub found
[   11.063263] hub 4-0:1.0: 3 ports detected
[   11.070071] IOAPIC[0]: Set routing entry (4-18 -> 0x91 -> IRQ 18 Mode:1 Active:1 Dest:15)
[   11.078534] ohci-pci 0000:00:13ber 5
[   11.092315] ohci-pci 0000:00:13.0: irq 18, io mem 0xfe6fc000
[   11.146761] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[   11.153753] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.161186] usb usb5: Product: OHCI PCI host controller
[   11.166563] usb usb5: Manufacturer: Linux 3.16.0-rc5upstream-01668-g6d2265b ohci_hcd
[   11.174533] usb usb5: SerialNumber: 0000:00:13.0
[   11.180241] hub 5-0:1.0: USB hub found
[   11.184185] hub 5-0:1.0: 3 ports detected
[   11.190978] ohci-pci 0000:00:13.1: OHCI PCI host controller
[   11.197002] ohci-pci 0000:00:13.1: new USB bus registered, assigned bus number 6
[   11.204693] ohci-pci 0000:00:13.1: irq 18, io mem 0xfe6f7000
[   11.265643] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[   11.272636] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.280069] usb usb6: Product: OHCI PCI host controller
[   11.285447] usb usb6: Manufacturer: Linux 3.16.0-rc5upstream-01668-g6d2265b ohci_hcd
[   11.293417] usb usb6: SerialNumber: 0000:00:13.1
[   11.299103] hub 6-0:1.0: USB hub found
[   11.303034] hub 6-0:1.0: 3 ports detected
[   11.309824] ohci-pci 0000:00:14.5: OHCI PCI host controller
[   11.315848] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 7
[   11.323554] ohci-pci 0000:00:14.5: irq 18, io mem 0xfe6f6000
[   11.378556] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
[   11.385566] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.393017] usb usb7: Product: OHCI PCI host controller
[   11.398396] usb usb7: Manufacturer: Linux 3.16.0-rc5upstream-01668-g6d2265b ohci_hcd
[   11.406371] usb usb7: SerialNumber: 0000:00:14.5
[   11.412079] hub 7-0:1.0: USB hub found
[   11.416009] hub 7-0:1.0: 2 ports detected
[   11.420944] initcall ohci_pci_init+0x0/0x60 returned 0 after 583665 usecs
[   11.427943] calling  uhci_hcd_init+0x0/0xa4 @ 1
[   11.432604] uhci_hcd: USB Universal Host Controller Interface driver
[   11.439293] initcall uhci_hcd_init+0x0/0xa4 returned 0 after 6537 usecs
[   11.446104] calling  usblp_driver_init+0x0/0x16 @ 1
[   11.451229] usbcore: registered new interface driver usblp
[   11.456874] initcall usblp_driver_init+0x0/0x16 returned 0 after 5620 usecs
[   11.464047] calling  kgdbdbgp_start_thread+0x0/0x57 @ 1
[   11.469426] initcall kgdbdbgp_start_thread+0x0/0x57 returned 0 after 0 usecs
[   11.476685] calling  i8042_init+0x0/0x3b7 @ 1
[   11.481321] i8042: PNP: No PS/2 controller found. Probing ports directly.
[   11.488819] serio: i8042 KBD port at 0x60,0x64 irq 1
[   11.493942] serio: i8042 AUX port at 0x60,0x64 irq 12
[   11.499179] initcall i8042_init+0x0/0x3b7 returned 0 after 17602 usecs
[   11.505905] calling  serport_init+0x0/0x2e @ 1
[   11.510483] initcall serport_init+0x0/0x2e returned 0 after 0 usecs
[   11.516940] calling  mousedev_init+0x0/0x54 @ 1
[   11.521820] mousedev: PS/2 mouse device common for all mice
[   11.527579] initcall mousedev_init+0x0/0x54 returned 0 after 5835 usecs
[   11.534400] calling  evdev_init+0x0/0xf @ 1
[   11.539012] initcall evdev_init+0x0/0xf returned 0 after 297 usecs
[   11.545428] calling  atkbd_init+0x0/0x20 @ 1
[   11.549910] initcall atkbd_init+0x0/0x20 returned 0 after 82 usecs
[   11.556284] calling  psmouse_init+0x0/0x8a @ 1
[   11.561070] initcall psmouse_init+0x0/0x8a returned 0 after 205 usecs
[   11.567717] calling  cmos_init+0x0/0x66 @ 1
[   11.572071] rtc_cmos 00:01: RTC can wake from S4
[   11.577265] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[   11.583588] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[   11.591506] initcall cmos_init+0x0/0x66 returned 0 after 19046 usecs
[   11.598051] calling  i2c_i801_init+0x0/0x92 @ 1
[   11.602828] initcall i2c_i801_init+0x0/0x92 returned 0 after 111 usecs
[   11.609552] calling  cpufreq_gov_dbs_init+0x0/0xf @ 1
[   11.614752] initcall cpufreq_gov_dbs_init+0x0/0xf returned 0 after 0 usecs
[   11.621834] calling  efivars_sysfs_init+0x0/0x1d0 @ 1
[   11.627033] initcall efivars_sysfs_init+0x0/0x1d0 returned -19 after 0 usecs
[   11.634293] calling  efivars_pstore_init+0x0/0x89 @ 1
[   11.639492] initcall efivars_pstore_init+0x0/0x89 returned 0 after 0 usecs
[   11.646574] calling  vhost_net_init+0x0/0x20 @ 1
[   11.651449] initcall vhost_net_init+0x0/0x20 returned 0 after 120 usecs
[   11.658270] calling  vhost_init+0x0/0x7 @ 1
[   11.662576] initcall vhost_init+0x0/0x7 returned 0 after 0 usecs
[   11.668762] calling  staging_init+0x0/0x7 @ 1
[   11.673246] initcall staging_init+0x0/0x7 returned 0 after 0 usecs
[   11.679611] calling  eeepc_laptop_init+0x0/0x4f @ 1
[   11.684804] initcall eeepc_laptop_init+0x0/0x4f returned -19 after 169 usecs
[   11.692066] calling  sock_diag_init+0x0/0xf @ 1
[   11.696745] initcall sock_diag_init+0x0/0xf returned 0 after 16 usecs
[   11.703379] calling  llc_init+0x0/0x1b @ 1
[   11.707594] initcall llc_init+0x0/0x1b returned 0 after 0 usecs
[   11.713691] calling  snap_init+0x0/0x35 @ 1
[   11.717998] initcall snap_init+0x0/0x35 returned 0 after 2 usecs
[   11.724184] calling  blackhole_module_init+0x0/0xf @ 1
[   11.729473] initcall blackhole_module_init+0x0/0xf returned 0 after 0 usecs
[   11.736643] calling  nfnetlink_init+0x0/0x4b @ 1
[   11.741395] Netfilter messages via NETLINK v0.30.
[   11.746248] initcall nfnetlink_init+0x0/0x4b returned 0 after 4743 usecs
[   11.753151] calling  nfnetlink_log_init+0x0/0x8f @ 1
[   11.758271] initcall nfnetlink_log_init+0x0/0x8f returned 0 after 10 usecs
[   11.765353] calling  nf_conntrack_standalone_init+0x0/0x70 @ 1
[   11.771358] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   11.777863] initcall nf_conntrack_standalone_init+0x0/0x70 returned 0 after 6358 usecs
[   11.786017] calling  ctnetlink_init+0x0/0x92 @ 1
[   11.790769] ctnetlink v0.93: registering with nfnetlink.
[   11.796237] initcall ctnetlink_init+0x0/0x92 returned 0 after 5344 usecs
[   11.803141] calling  nf_conntrack_ftp_init+0x0/0x195 @ 1
[   11.808613] initcall nf_conntrack_ftp_init+0x0/0x195 returned 0 after 3 usecs
[   11.815964] calling  nf_conntrack_irc_init+0x0/0x148 @ 1
[   11.821438] initcall nf_conntrack_irc_init+0x0/0x148 returned 0 after 5 usecs
[   11.828788] calling  nf_conntrack_sip_init+0x0/0x1e4 @ 1
[   11.834255] initcall nf_conntrack_sip_init+0x0/0x1e4 returned 0 after 0 usecs
[   11.841603] calling  xt_init+0x0/0xb5 @ 1
[   11.845735] initcall xt_init+0x0/0xb5 returned 0 after 4 usecs
[   11.851742] calling  tcpudp_mt_init+0x0/0x14 @ 1
[   11.856494] initcall tcpudp_mt_init+0x0/0x14 returned 0 after 0 usecs
[   11.863129] calling  connsecmark_tg_init+0x0/0xf @ 1
[   11.868238] initcall connsecmark_tg_init+0x0/0xf returned 0 after 0 usecs
[   11.875229] calling  nflog_tg_init+0x0/0xf @ 1
[   11.879803] initcall nflog_tg_init+0x0/0xf returned 0 after 0 usecs
[   11.886257] calling  secmark_tg_init+0x0/0xf @ 1
[   11.891009] initcall secmark_tg_init+0x0/0xf returned 0 after 0 usecs
[   11.897642] calling  tcpmss_tg_init+0x0/0x14 @ 1
[   11.902393] initcall tcpmss_tg_init+0x0/0x14 returned 0 after 0 usecs
[   11.909026] calling  conntrack_mt_init+0x0/0x14 @ 1
[   11.914046] initcall conntrack_mt_init+0x0/0x14 returned 0 after 0 usecs
[   11.920948] calling  policy_mt_init+0x0/0x14 @ 1
[   11.925699] initcall policy_mt_init+0x0/0x14 returned 0 after 0 usecs
[   11.932332] calling  state_mt_init+0x0/0xf @ 1
[   11.936905] initcall state_mt_init+0x0/0xf returned 0 after 0 usecs
[   11.943358] calling  gre_offload_init+0x0/0x14 @ 1
[   11.948289] initcall gre_offload_init+0x0/0x14 returned 0 after 0 usecs
[   11.955101] calling  sysctl_ipv4_init+0x0/0x44 @ 1
[   11.960074] initcall sysctl_ipv4_init+0x0/0x44 returned 0 after 41 usecs
[   11.966973] calling  tunnel4_init+0x0/0x6d @ 1
[   11.971549] initcall tunnel4_init+0x0/0x6d returned 0 after 0 usecs
[   11.978003] calling  ipv4_netfilter_init+0x0/0xf @ 1
[   11.983112] initcall ipv4_netfilter_init+0x0/0xf returned 0 after 0 usecs
[   11.990103] calling  nf_conntrack_l3proto_ipv4_init+0x0/0x150 @ 1
[   11.996577] initcall nf_conntrack_l3proto_ipv4_init+0x0/0x150 returned 0 after 197 usecs
[   12.004909] calling  nf_defrag_init+0x0/0x14 @ 1
[   12.009661] initcall nf_defrag_init+0x0/0x14 returned 0 after 0 usecs
[   12.016292] calling  ip_tables_init+0x0/0x8f @ 1
[   12.021063] ip_tables: (C) 2000-2006 Netfilter Core Team
[   12.026531] initcall ip_tables_init+0x0/0x8f returned 0 after 5364 usecs
[   12.033431] calling  iptable_filter_init+0x0/0x40 @ 1
[   12.038727] initcall iptable_filter_init+0x0/0x40 returned 0 after 93 usecs
[   12.045896] calling  iptable_mangle_init+0x0/0x40 @ 1
[   12.051169] initcall iptable_mangle_init+0x0/0x40 returned 0 after 71 usecs
[   12.058339] calling  reject_tg_init+0x0/0xf @ 1
[   12.062999] initcall reject_tg_init+0x0/0xf returned 0 after 0 usecs
[   12.069543] calling  ulog_tg_init+0x0/0x74 @ 1
[   12.074139] initcall ulog_tg_init+0x0/0x74 returned 0 after 19 usecs
[   12.080682] calling  cubictcp_register+0x0/0x72 @ 1
[   12.085700] TCP: cubic registered
[   12.089111] initcall cubictcp_register+0x0/0x72 returned 0 after 3333 usecs
[   12.096279] calling  xfrm_user_init+0x0/0x43 @ 1
[   12.101030] Initializing XFRM netlink socket
[   12.105441] initcall xfrm_user_init+0x0/0x43 returned 0 after 4310 usecs
[   12.112341] calling  inet6_init+0x0/0x2c3 @ 1
[   12.117051] NET: Registered protocol family 10
[   12.122382] initcall inet6_init+0x0/0x2c3 returned 0 after 5433 usecs
[   12.129017] calling  ah6_init+0x0/0x75 @ 1
[   12.133234] initcall ah6_init+0x0/0x75 returned 0 after 1 usecs
[   12.139331] calling  esp6_init+0x0/0x75 @ 1
[   12.143636] initcall esp6_init+0x0/0x75 returned 0 after 0 usecs
[   12.149821] calling  xfrm6_transport_init+0x0/0x14 @ 1
[   12.155110] initcall xfrm6_transport_init+0x0/0x14 returned 0 after 0 usecs
[   12.162279] calling  xfrm6_mode_tunnel_init+0x0/0x14 @ 1
[   12.167745] initcall xfrm6_mode_tunnel_init+0x0/0x14 returned 0 after 0 usecs
[   12.175093] calling  xfrm6_beet_init+0x0/0x14 @ 1
[   12.179933] initcall xfrm6_beet_init+0x0/0x14 returned 0 after 0 usecs
[   12.186656] calling  ip6_tables_init+0x0/0x8f @ 1
[   12.191518] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   12.197075] initcall ip6_tables_init+0x0/0x8f returned 0 after 5450 usecs
[   12.204066] calling  ip6table_filter_init+0x0/0x40 @ 1
[   12.209511] initcall ip6table_filter_init+0x0/0x40 returned 0 after 152 usecs
[   12.216860] calling  ip6table_mangle_init+0x0/0x40 @ 1
[   12.222299] initcall ip6table_mangle_init+0x0/0x40 returned 0 after 147 usecs
[   12.229649] calling  nf_conntrack_l3proto_ipv6_init+0x0/0x129 @ 1
[   12.235934] initcall nf_conntrack_l3proto_ipv6_init+0x0/0x129 returned 0 after 11 usecs
[   12.244176] calling  nf_defrag_init+0x0/0x4c @ 1
[   12.248950] initcall nf_defrag_init+0x0/0x4c returned 0 after 23 usecs
[   12.255673] calling  ipv6header_mt6_init+0x0/0xf @ 1
[   12.260782] initcall ipv6header_mt6_init+0x0/0xf returned 0 after 0 usecs
[   12.267771] calling  reject_tg6_init+0x0/0xf @ 1
[   12.272522] initcall reject_tg6_init+0x0/0xf returned 0 after 0 usecs
[   12.279155] calling  sit_init+0x0/0xbc @ 1
[   12.283370] sit: IPv6 over IPv4 tunneling driver
[   12.289039] initcall sit_init+0x0/0xbc returned 0 after 5540 usecs
[   12.295406] calling  packet_init+0x0/0x39 @ 1
[   12.299888] NET: Registered protocol family 17
[   12.304468] initcall packet_init+0x0/0x39 returned 0 after 4476 usecs
[   12.311100] calling  br_init+0x0/0x90 @ 1
[   12.315274] initcall br_init+0x0/0x90 returned 0 after 47 usecs
[   12.321372] calling  init_rpcsec_gss+0x0/0x54 @ 1
[   12.326282] initcall init_rpcsec_gss+0x0/0x54 returned 0 after 66 usecs
[   12.333096] calling  dcbnl_init+0x0/0x5e @ 1
[   12.337490] initcall dcbnl_init+0x0/0x5e returned 0 after 0 usecs
[   12.343766] calling  init_dns_resolver+0x0/0xcd @ 1
[   12.348798] Key type dns_resolver registered
[   12.353193] initcall init_dns_resolver+0x0/0xcd returned 0 after 4307 usecs
[   12.360364] calling  mcheck_init_device+0x0/0x174 @ 1
[   12.366439] initcall mcheck_init_device+0x0/0x174 returned 0 after 857 usecs
[   12.373749] calling  mcheck_debugfs_init+0x0/0x3e @ 1
[   12.378970] initcall mcheck_debugfs_init+0x0/0x3e returned 0 after 19 usecs
[   12.386139] calling  severities_debugfs_init+0x0/0x3e @ 1
[   12.391701] initcall severities_debugfs_init+0x0/0x3e returned 0 after 5 usecs
[   12.399143] calling  threshold_init_device+0x0/0x44 @ 1
[   12.405009] initcall threshold_init_device+0x0/0x44 returned 0 after 475 usecs
[   12.412447] calling  hpet_insert_resource+0x0/0x1e @ 1
[   12.417737] initcall hpet_insert_resource+0x0/0x1e returned 0 after 0 usecs
[   12.424909] calling  update_mp_table+0x0/0x527 @ 1
[   12.429840] initcall update_mp_table+0x0/0x527 returned 0 after 0 usecs
[   12.436653] calling  lapic_insert_resource+0x0/0x46 @ 1
[   12.442032] initcall lapic_insert_resource+0x0/0x46 returned 0 after 0 usecs
[   12.449293] calling  io_apic_bug_finalize+0x0/0x1a @ 1
[   12.454582] initcall io_apic_bug_finalize+0x0/0x1a returned 0 after 0 usecs
[   12.461752] calling  print_ICs+0x0/0x437 @ 1
[   12.466146] 
[   12.466146] printing PIC contents
[   12.471079] ... PIC  IMR: ffff
[   12.474220] ... PIC  IRR: 0001
[   12.477365] ... PIC  ISR: 0000
[   12.480509] ... PIC ELCR: ce90
[   12.483659] printing local APIC contents on CPU#0/0:
[   12.488768] ... APIC ID:      00000000 (0)
[   12.492981] ... APIC VERSION: 80050010
[   12.496835] ... APIC TASKPRI: 00000000 (00)
[   12.501137] ... APIC ARBPRI: 00000030 (30)
[   12.505348] ... APIC PROCPRI: 00000000
[   12.509202] ... APIC LDR: 01000000
[   12.512698] ... APIC DFR: ffffffff
[   12.516194] ... APIC SPIV: 000001ff
[   12.519781] ... APIC ISR field:
[   12.523011] 0000000000000000000000000000000000000000000000000000000000000000
[   12.530329] ... APIC TMR field:
[   12.533556] 0000000000000000000000000000000000000000000000000000000000000000
[   12.540877] ... APIC IRR field:
[   12.544104] 0000000000010000000000000000000000000000000000000000000000000000
[   12.551424] ... APIC ESR: 00000000
[   12.554922] ... APIC ICR: 000208ef
[   12.558420] ... APIC ICR2: 0a000000
[   12.562005] ... APIC LVTT: 000000ef
[   12.565592] ... APIC LVTPC: 00000400
[   12.569267] ... APIC LVT0: 00010700
[   12.572853] ... APIC LVT1: 00000400
[   12.576440] ... APIC LVTERR: 000000fe
[   12.580204] ... APIC TMICT: 00000000
[   12.583880] ... APIC TMCCT: 00000000
[   12.587554] ... APIC TDCR: 00000003
[   12.591141] ... APIC EFEAT: 00040007
[   12.594816] ... APIC ECTRL: 00000000
[   12.598490] ... APIC EILVT0: 000000f9
[   12.602256] ... APIC EILVT1: 00000400
[   12.606022] ... APIC EILVT2: 00010000
[   12.609786] ... APIC EILVT3: 00010000
[   12.613550] 
[   12.615081] number of MP IRQ sources: 15.
[   12.619207] number of IO-APIC #4 registers: 24.
[   12.623868] testing the IO APIC.......................
[   12.629159] IO APIC #4......
[   12.632123] .... register #00: 04000000
[   12.636070] .......    : physical APIC id: 04
[   12.640553] .......    : Delivery Type: 0
[   12.644679] .......    : LTS          : 0
[   12.648804] .... register #01: 00178021
[   12.652749] .......     : max redirection entries: 17
[   12.657946] .......     : PRQ implemented: 1
[   12.662338] .......     : IO APIC version: 21
[   12.666822] .... register #02: 04000000
[   12.670769] .......     : arbitration: 04
[   12.674902] .... register #03: 04178021
[   12.678850] .......     : Boot DT    : 1
[   12.682890] .... IRQ redirection table:
[   12.686840] 1    0    0   0   0    0    0    00
[   12.691505] 0    0    0   0   0    1    1    31
[   12.696170] 0    0    0   0   0    1    1    30
[   12.700833] 0    0    0   0   0    1    1    33
[   12.705498] 0    0    0   0   0    1    1    34
[   12.710163] 0    0    0   0   0    1    1    35
[   12.714827] 0    0    0   0   0    1    1    36
[   12.719492] 0    0    0   0   0    1    1    37
[   12.724156] 0    0    0   0   0    1    1    38
[   12.728821] 0    1    0   1   0    1    1    39
[   12.733484] 0    0    0   0   0    1    1    3A
[   12.738148] 0    0    0   0   0    1    1    3B
[   12.742814] 0    0    0   0   0    1    1    3C
[   12.747479] 0    0    0   0   0    1    1    3D
[   12.752142] 0    0    0   0   0    1    1    3E
[   12.756809] 0    0    0   0   0    1    1    3F
[   12.761472] 0    1    0   1   0    1    1    81
[   12.766138] 0    1    0   1   0    1    1    61
[   12.770801] 0    1    0   1   0    1    1    91
[   12.775466] 0    1    0   1   0    1    1    71
[   12.780131] 1    0    0   0   0    0    0    00
[   12.784803] 1    0    0   0   0    0    0    00
[   12.789466] 1    0    0   0   0    0    0    00
[   12.794129] 1    0    0   0   0    0    0    00
[   12.798790] IRQ to pin mappings:
[   12.802111] IRQ0 -> 0:2
[   12.804643] IRQ1 -> 0:1
[   12.807177] IRQ3 -> 0:3
[   12.809707] IRQ4 -> 0:4
[   12.812243] IRQ5 -> 0:5
[   12.814777] IRQ6 -> 0:6
[   12.817309] IRQ7 -> 0:7
[   12.819840] IRQ8 -> 0:8
[   12.822375] IRQ9 -> 0:9
[   12.824908] IRQ10 -> 0:10
[   12.827617] IRQ11 -> 0:11
[   12.830329] IRQ12 -> 0:12
[   12.833040] IRQ13 -> 0:13
[   12.835754] IRQ14 -> 0:14
[   12.838463] IRQ15 -> 0:15
[   12.841175] IRQ16 -> 0:16
[   12.843886] IRQ17 -> 0:17
[   12.846599] IRQ18 -> 0:18
[   12.849311] IRQ19 -> 0:19
[   12.852025] .................................... done.
[   12.857312] initcall print_ICs+0x0/0x437 returned 0 after 382357 usecs
[   12.864037] calling  print_ipi_mode+0x0/0x2e @ 1
[   12.868787] Using IPI No-Shortcut mode
[   12.872645] initcall print_ipi_mode+0x0/0x2e returned 0 after 3769 usecs
[   12.879547] calling  pat_memtype_list_init+0x0/0x37 @ 1
[   12.884931] initcall pat_memtype_list_init+0x0/0x37 returned 0 after 6 usecs
[   12.892193] calling  init_oops_id+0x0/0x50 @ 1
[   12.896767] initcall init_oops_id+0x0/0x50 returned 0 after 1 usecs
[   12.903222] calling  pm_qos_power_init+0x0/0x5d @ 1
[   12.908597] initcall pm_qos_power_init+0x0/0x5d returned 0 after 347 usecs
[   12.915688] calling  pm_debugfs_init+0x0/0x2a @ 1
[   12.920537] initcall pm_debugfs_init+0x0/0x2a returned 0 after 8 usecs
[   12.927260] calling  printk_late_init+0x0/0x38 @ 1
[   12.932193] initcall printk_late_init+0x0/0x38 returned 0 after 0 usecs
[   12.939005] calling  tk_debug_sleep_time_init+0x0/0x41 @ 1
[   12.944657] initcall tk_debug_sleep_time_init+0x0/0x41 returned 0 after 6 usecs
[   12.952184] calling  debugfs_kprobe_init+0x0/0xa6 @ 1
[   12.957411] initcall debugfs_kprobe_init+0x0/0xa6 returned 0 after 26 usecs
[   12.964580] calling  taskstats_init+0x0/0x6e @ 1
[   12.969347] registered taskstats version 1
[   12.973563] initcall taskstats_init+0x0/0x6e returned 0 after 4136 usecs
[   12.980464] calling  clear_boot_tracer+0x0/0x2d @ 1
[   12.985482] initcall clear_boot_tracer+0x0/0x2d returned 0 after 0 usecs
[   12.992383] calling  kdb_ftrace_register+0x0/0x35 @ 1
[   12.997585] initcall kdb_ftrace_register+0x0/0x35 returned 0 after 3 usecs
[   13.004665] calling  fault_around_debugfs+0x0/0x3a @ 1
[   13.009958] initcall fault_around_debugfs+0x0/0x3a returned 0 after 6 usecs
[   13.017128] calling  max_swapfiles_check+0x0/0x7 @ 1
[   13.022237] initcall max_swapfiles_check+0x0/0x7 returned 0 after 0 usecs
[   13.029228] calling  set_recommended_min_free_kbytes+0x0/0xb0 @ 1
[   13.035501] initcall set_recommended_min_free_kbytes+0x0/0xb0 returned 0 after 1 usecs
[   13.043656] calling  kmemleak_late_init+0x0/0x8e @ 1
[   13.048817] kmemleak: Kernel memory leak detector initialized
[   13.048820] kmemleak: Automatic memory scanning thread started
[   13.060737] initcall kmemleak_late_init+0x0/0x8e returned 0 after 11702 usecs
[   13.068087] calling  check_early_ioremap_leak+0x0/0x5d @ 1
[   13.073735] initcall check_early_ioremap_leak+0x0/0x5d returned 0 after 0 usecs
[   13.081264] calling  init_root_keyring+0x0/0xa @ 1
[   13.086218] initcall init_root_keyring+0x0/0xa returned 0 after 22 usecs
[   13.093120] calling  fail_make_request_debugfs+0x0/0x23 @ 1
[   13.098900] initcall fail_make_request_debugfs+0x0/0x23 returned 0 after 43 usecs
[   13.106607] calling  prandom_reseed+0x0/0x3e @ 1
[   13.111372] initcall prandom_reseed+0x0/0x3e returned 0 after 13 usecs
[   13.118097] calling  pci_resource_alignment_sysfs_init+0x0/0x14 @ 1
[   13.124557] initcall pci_resource_alignment_sysfs_init+0x0/0x14 returned 0 after 6 usecs
[   13.132889] calling  pci_sysfs_init+0x0/0x44 @ 1
[   13.138936] initcall pci_sysfs_init+0x0/0x44 returned 0 after 1264 usecs
[   13.145838] calling  boot_wait_for_devices+0x0/0x28 @ 1
[   13.151217] initcall boot_wait_for_devices+0x0/0x28 returned -19 after 0 usecs
[   13.158656] calling  deferred_probe_initcall+0x0/0x80 @ 1
[   13.164312] initcall deferred_probe_initcall+0x0/0x80 returned 0 after 96 usecs
[   13.171846] calling  late_resume_init+0x0/0x190 @ 1
[   13.176873]   Magic number: 6:551:546
[   13.180733] mem null: hash matches
[   13.184263] initcall late_resume_init+0x0/0x190 returned 0 after 7222 usecs
[   13.191438] calling  firmware_memmap_init+0x0/0x29 @ 1
[   13.197035] initcall firmware_memmap_init+0x0/0x29 returned 0 after 296 usecs
[   13.204394] calling  pci_mmcfg_late_insert_resources+0x0/0x43 @ 1
[   13.210673] initcall pci_mmcfg_late_insert_resources+0x0/0x43 returned 0 after 0 usecs
[   13.218831] calling  tcp_congestion_default+0x0/0xf @ 1
[   13.224214] initcall tcp_congestion_default+0x0/0xf returned 0 after 0 usecs
[   13.231477] calling  ip_auto_config+0x0/0xeb7 @ 1
[   13.236331] initcall ip_auto_config+0x0/0xeb7 returned 0 after 8 usecs
[   13.243058] calling  software_resume+0x0/0x280 @ 1
[   13.247994] PM: Hibernation image not present or could not be loaded.
[   13.254630] initcall software_resume+0x0/0x280 returned -2 after 6486 usecs
[   13.262028] async_waiting @ 1
[   13.265106] async_continuing @ 1 after 0 usec
[   13.269892] Freeing unused kernel memory: 940K (c185e000 - c1949000)
[   13.276482] Write protecting the kernel text: 6272k
[   13.281547] Write protecting the kernel read-only data: 1856k
[   13.287477] NX-protecting the kernel data: 3968k
[   13.295666] consoletype (1261) used greatest stack depth: 6452 bytes left
[   13.305313] random: nonblocking pool is initialized
[   13.421749] rm (1276) used greatest stack depth: 6436 bytes left
[   13.450879] udevd (1297): /proc/1297/oom_adj is deprecated, please use /proc/1297/oom_score_adj instead.
[   13.487357] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 1354
[   13.494627] calling  acpi_wmi_init+0x0/0x1000 [wmi] @ 1371
[   13.494659] acpi-cpufreq: overriding BIOS provided _PSD data
[   13.506811] wmi: Mapper loaded
[   13.507231] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned 0 after 12765 usecs
[   13.507366] calling  init_scsi+0x0/0x90 [scsi_mod] @ 1390
[   13.524303] initcall acpi_wmi_init+0x0/0x1000 [wmi] returned 0 after 17774 usecs
[   13.524388] modprobe (1354) used greatest stack depth: 6396 bytes left
[   13.539915] SCSI subsystem initialized
[   13.543782] initcall init_scsi+0x0/0x90 [scsi_mod] returned 0 after 35589 usecs
[   13.556262] calling  ata_init+0x0/0x295 [libata] @ 1385
[   13.562131] calling  skge_init_module+0x0/0x1000 [skge] @ 1500
[] skge: 1.14 addr 0xfebfc000 irq 4 chip Yukon rev 1
[   13.568573] calling  drm_fb_helper_modinit+0x0/0x1000 [drm_kms_helper] @ 1505
[   13.584276] skge 0000:04:05.0 eth0: addr 00:0a:5e:5c:f5:72
[   13.594109] calling  rtl8169_pci_driver_init+0x0/0x1000 [r8169] @ 1395
[   13.595012] initcall skge_init_module+0x0/0x1000 [13.608889] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   13.608943] modprobe (1500) used greatest stack depth: 6336 bytes left
[   13.611922] libata version 3.00 loaded.
[   13.611932] initcall ata_init+0x0/0x295 [libata] returned 0 after 49141 usecs
[   13.632707] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[   13.640595] r8169 0000:02:00.0: irq 26 for MSI/MSI-X
[   13.640738] calling  ata_generic_pci_driver_init+0x0/0x1000 [ata_generic] @ 1385
[   13.640967] initcall ata_generic_pci_driver_init+0x0/0x1000 [ata_generic] returned 0 after 221 usecs
[   13.663674] calling  ahci_pci_driver_init+0x0/0x1000 [ahci] @ 1390
[   13.665004] r8169 0000:02:00.0 eth1: RTL8168c/8111c at 0xf844e000, 00:25:11:18:a1:2e, XID 1c4000c0 IRQ 26
[   13.665006] r8169 0000:02:00.0 eth1: jumbo features [frames: 6128 bytes, tx checksumming: ko]
[   13.665177] initcall rtl8169_pci_driver_init+0x0/0x1000 [r8169] returned 0 after 55100 usecs
[   13.697427] ahci 0000:00:11.0: version 3.0
[   13.697537] modprobe (1395) used greatest stack depth: 6120 bytes left
[   13.708646] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[   13.717072] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[   13.736190] scsi0 : ahci
[   13.740271] scsi1 : ahci
[   13.746654] scsi2 : ahci
[   13.749815] initcall drm_fb_helper_modinit+0x0/0x1000 [drm_kms_helper] returned 0 after 177152 usecs
[   13.750607] scsi3 : ahci
[   13.751945] scsi4 : ahci
[   13.753495] scsi5 : ahci
[   13.754298] ata1: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffd00 irq 15
[   13.754301] ata2: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffd80 irq 15
[   13.754304] ata3: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffe00 irq 15
[   13.754306] ata4: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffe80 irq 15
[   13.754309] ata5: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6fff00 irq 15
[   13.754312] ata6: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6fff80 irq 15
[   13.754467] ahci 0000:03:00.0: JMB361 has only one port
[   13.754478] ahci 0000:03:00.0: forcing port_map 0x3 -> 0x1
[   13.754576] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x1 impl SATA mode
[   13.754578] ahci 0000:03:00.0: flags: 64bit ncq led clo pmp pio 
[   13.757281] scsi6 : ahci
[   13.758602] scsi7 : ahci
[   13.759424] ata7: SATA max UDMA/133 abar m8192@0xfeafe000 port 0xfeafe100 irq 11
[   13.759425] ata8: DUMMY
[   13.759587] initcall ahci_pci_driver_init+0x0/0x1000 [ahci] returned 0 after 60829 usecs
[   13.863888] calling  ttm_init+0x0/0x1000 [ttm] @ 1505
[   13.869251] initcall ttm_init+0x0/0x1000 [ttm] returned 0 after 1turned 0 after 188 usecs
[   13.893252] calling  radeon_init+0x0/0xb0 [radeon] @ 1505
[   13.898813] [drm] radeon kernel modesetting enabled.
[   13.905208] [drm] initializing kernel modesetting (RS780 0x1002:0x9610 0x1019:0x2119).
[   13.913394] [drm] register mmio base: 0xFE8F0000
[   13.918163] [drm] register mmio size: 65536
[   13.923762] ATOM BIOS: 113
[   13.926663] radeon 0000:01:05.0: VRAM: 256M 0x00000000C0000000 - 0x00000000CFFFFFFF (256M used)
[   13.935619] radeon 0000:01:05.0: GTT: 512M 0x00000000A0000000 - 0x00000000BFFFFFFF
[   13.943413] [drm] Detected VRAM RAM=256M, BAR=256M
[   13.948344] [drm] RAM width 32bits DDR
[   13.952601] [TTM] Zone  kernel: Available graphics memory: 432674 kiB
[   13.959232] [TTM] Zone highmem: Available graphics memory: 1941382 kiB
[   13.965950] [TTM] Initializing pool allocator
[   13.970534] [TTM] Initializing DMA pool allocator
[   13.975580] [drm] radeon: 256M of VRAM memory ready
[   13.980608] [drm] radeon: 512M of GTT memory ready.
[   13.985793] [drm] Loading RS780 Microcode
[   13.990406] [drm] radeon: power management initialized
[   13.995696] [drm] GART: num cpu pages 131072, num gpu pages 131072
[   14.009801] [drm] PCIE GART of 512M enabled (table at 0x00000000C0040000).
[   14.016990] radeon 0000:01:05.0: WB enabled
[[   14.083874] [drm] ring test on 0 succeeded in 0 usecs
[   14.089346] [drm] ib test on ring 0 succeeded in 0 usecs
[   14.097918] [drm] Radeon Display Connectors
[   14.102230] [drm] Connector 0:
[   14.105376] [drm]   VGA-1
[   14.108072] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[   14.115690] [drm]   Encoders:
[   14.118748] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[   14.123505] [drm] Connector 1:
[   14.126652] [drm]   HDMI-A-1
[   14.129621] [drm]   HPD3
[   14.132232] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[   14.139851] [drm]   Encoders:
[   14.142911] [drm]     DFP3: INTERNAL_KLDSCP_LVTMA
[   14.156270] radeon 0000:01:05.0: No connectors reported connected with modes
[   14.163553] [drm] Cannot find any crtc or sizes - going 1024x768
[   14.166555] ata3: SATA link down (SStatus 0 SControl 300)
[   14.167553] ata7: SATA link down (SStatus 0 SControl 300)
[   14.169547] ata4: SATA link down (SStatus 0 SControl 300)
[   14.170655] ata6: SATA link down (SStatus 0 SControl 300)
[   14.170837] ata5: SATA link down (SStatus 0 SControl 300)
[   14.214520] [drm] fb mappable at 0xD0141000
[   14.218830] [drm] vram apper at 0xD0000000
[   14.223049] [drm] size 3145728
[   14.226196] [drm] fb depth is 24
[   14.229522] [drm]    pitch is 4096
[   14.233651] fbcon: radeondrmfb (fb0) is primary device
[   14.252412] Console: switching to colour frame buffer device 128x4on 0000:01:05.0: registered panic notifier
[   14.297800] [drm] Initialized radeon 2.39.0 20080528 for 0000:01:05.0 on minor 0
[   14.305606] initcall radeon_init+0x0/0xb0 [radeon] returned 0 after 397610 usecs
[   14.313637] modprobe (1505) used greatest stack depth: 5436 bytes left
[   14.349452] ata2: softreset failed (device not ready)
[   14.354670] ata2: applying PMP SRST workaround and retrying
[   14.360432] ata1: softreset failed (device not ready)
[   14.365639] ata1: applying PMP SRST workaround and retrying
[   14.524259] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[   14.530675] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[   18.335276] irq 18: nobody cared (try booting with the "irqpoll" option)
[   18.342176] CPU: 3 PID: 0 Comm: swapper/3 Not tainted 3.16.0-rc5upstream-01668-g6d2265b #1
[   18.350680] Hardware name: ECS A780GM-A Ultra/A780GM-A Ultra, BIOS 080015  04/01/2010
[   18.358739]  f02cc5dc f02bff50 c1618986 f02cc580 f02bff70 c10d87e7 c1741950 00000012
[   18.366780]  c18345e0 00000001 f02cc580 00000000 f02bff94 c10d8a62 00000012 c2f397be
[   18.374819]  0000002f f02f0b80 f02cc580 00000000 ef2ddd80 f02bffd0 c10d65ee c10d65ee
[   18.382857] Call Trace:
[   18.385375]  [<c1618986>] dump_stack+0x48/0x60
[   18.389948]  [<c10d87e7>] __report_bad_irq+0x27/0xc0
[   18.395055]  [<c10d8a62>] note_interrupt+0x1e2/0x230
[   18.400164]  [<c10d65ee>] handle_irq_event_percpu+0x9e/0x1c0
[   18.405987]  [<c10d65ee>] ? handle_irq_event_percpu+0x9e/0x1c0
[   18.411988]  [<c10d6747>] handle_irq_event+0x37/0x60
[   18.417095]  [<c10d91e8>] handle_fasteoi_irq+0x58/0xf0
[   18.422380]  [<c10d9190>] ? handle_percpu_irq+0x50/0x50
[   18.427756]  [<c1046d2a>] handle_irq+0x9a/0xd0
[   18.432327]  <IRQ>  [<c10461bd>] do_IRQ+0x3d/0xd0
[   18.437183]  [<c1074d36>] ? lapic_next_event+0x16/0x20
[   18.442469]  [<c10f14da>] ? clockevents_program_event+0xca/0x190
[   18.448649]  [<c161ddec>] common_interrupt+0x2c/0x34
[   18.453756]  [<c1081c45>] ? native_safe_halt+0x5/0x10
[   18.458955]  [<c104e4b7>] default_idle+0x17/0xb0
[   18.463703]  [<c104e5bf>] amd_e400_idle+0x6f/0xf0
[   18.468543]  [<c104dda9>] arch_cpu_idle+0x9/0x10
[   18.473293]  [<c10c6a2e>] cpu_startup_entry+0x23e/0x3a0
[   18.478668]  [<c1073e5c>] start_secondary+0x18c/0x200
[   18.483863] handlers:
[   18.486199] [<c14717c0>] usb_hcd_irq
[   18.489886] [<c14717c0>] usb_hcd_irq
[   18.493571] [<c14717c0>] usb_hcd_irq
[   18.497256] Disabling IRQ #18
[   19.525576] ata2.00: qc timeout (cmd 0xec)
[   19.529807] ata2.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[   19.5361FY (I/O error, err_mask=0x4)
[   20.004031] ata2: softreset failed (device not ready)
[   20.009236] ata2: applying PMP SRST workaround and retrying
[   20[   20.177831] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[   20.184238] ata1: SATA link up 1.5 Gbps (SStatus 113 S[   30.174487] ata2.00: qc timeout (cmd 0xec)
[   30.178715] ata2.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[   30.1849)
[   30.194534] ata1.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[   30.200808] ata1: limiting SATA link speed to 1.5 Gbps
[   30.663099] ata2: softreset failed (device not ready)
[   30.668302] ata2: applying PMP SRST workaround and retrying
[   30.674057] ata1: softreset failed (device not ready)
[   30.679259] ata1: applying PMP SRST workaround and retrying
[   30.837971] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
[   30.844378] ata1: SATA link up 1.5 Gbps (SStatus 113 S
telnet> Connection closed.
[Connecting to system 34 ]

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

* Re: [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms
  2014-07-14 19:41   ` Konrad Rzeszutek Wilk
@ 2014-07-15 15:27     ` Jiang Liu
  2014-07-15 16:10       ` Konrad Rzeszutek Wilk
  0 siblings, 1 reply; 25+ messages in thread
From: Jiang Liu @ 2014-07-15 15:27 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk
  Cc: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, x86, linux-kernel, linux-pci, linux-acpi

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

Hi Konrad,
	Thanks for testing the patch set! After analyzing the log
files, I feel something is wrong with the Radeon driver. With good
configuration, IRQ18 is shared by OHCI controllers and Radeon GPU
card. With bad configuration, only OHCI controllers are bound to
IRQ18. Radeon GPU card may have been bound to another wrong IRQ,
which then causes the interrupt storm.
	But I have no hardware available to verify the hypothesis,
so could you please help to apply the attached patch and run the
test again?
	Thanks!
	Gerry

On 2014/7/15 3:41, Konrad Rzeszutek Wilk wrote:
> On Mon, Jul 14, 2014 at 01:26:42PM -0400, Konrad Rzeszutek Wilk wrote:
>> On Wed, Jun 25, 2014 at 04:40:31PM +0800, Jiang Liu wrote:
>>> This patch set enhances IOAPIC core and ACPI drivers to support IOAPIC
>>> hotplug on x86 platforms. It's based on tip/x86/apic.
>>>
>>> You may pull it from 
>>> https://github.com/jiangliu/linux.git ioapic/hotplug_v3
>>
>> With this patchset (on top of 3.16-rc5) my USB driver gets notified
>> it has interrupts but it thinks it does not have to acknowledge any.
>> I can only reproduce this under a 32-bit arch so far.
>>
>> Please see the good.log and the bad.log 
> 
> tglx asked for apic=debug on the line, so here they are again with
> those parameters.
> 
> Please note that the 'good.log' this time is
>  3.16-rc6 + tip/master + tip/x86/apic
> 
> And 'bad.log' is:
> 
>  3.16-rc6 + tip/master + tip/x86/apic + ioapic/hotplug_v3
> 

[-- Attachment #2: tmp2.patch --]
[-- Type: text/plain, Size: 1475 bytes --]

diff --git a/drivers/acpi/pci_irq.c b/drivers/acpi/pci_irq.c
index 9d2ebd5fd9aa..4b30023ccefe 100644
--- a/drivers/acpi/pci_irq.c
+++ b/drivers/acpi/pci_irq.c
@@ -404,6 +404,7 @@ int acpi_pci_irq_enable(struct pci_dev *dev)
 	char *link = NULL;
 	char link_desc[16];
 	int rc;
+	int irq = 0;
 
 	pin = dev->pin;
 	if (!pin) {
@@ -413,8 +414,11 @@ int acpi_pci_irq_enable(struct pci_dev *dev)
 		return 0;
 	}
 
-	if (dev->irq > 0)
-		return 0;
+	if (dev->irq > 0) {
+		dev_warn(&dev->dev, "already assigned IRQ%d\n", dev->irq);
+		irq = dev->irq;
+		//return 0;
+	}
 
 	entry = acpi_pci_irq_lookup(dev, pin);
 	if (!entry) {
@@ -459,6 +463,8 @@ int acpi_pci_irq_enable(struct pci_dev *dev)
 		return rc;
 	}
 	dev->irq = rc;
+	if (irq != dev->irq)
+		dev_warn(&dev->dev, "assigned new IRQ%d\n", dev->irq);
 
 	if (link)
 		snprintf(link_desc, sizeof(link_desc), " -> Link[%s]", link);
diff --git a/drivers/gpu/drm/radeon/radeon_irq_kms.c b/drivers/gpu/drm/radeon/radeon_irq_kms.c
index 16807afab362..be1c133eac5b 100644
--- a/drivers/gpu/drm/radeon/radeon_irq_kms.c
+++ b/drivers/gpu/drm/radeon/radeon_irq_kms.c
@@ -287,6 +287,8 @@ int radeon_irq_kms_init(struct radeon_device *rdev)
 	INIT_WORK(&rdev->reset_work, radeon_irq_reset_work_func);
 
 	rdev->irq.installed = true;
+	dev_warn(&rdev->ddev->pdev->dev, "Radeon device interrupt IRQ%d\n",
+		 rdev->ddev->pdev->irq);
 	r = drm_irq_install(rdev->ddev, rdev->ddev->pdev->irq);
 	if (r) {
 		rdev->irq.installed = false;

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

* Re: [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms
  2014-07-15 15:27     ` Jiang Liu
@ 2014-07-15 16:10       ` Konrad Rzeszutek Wilk
  2014-07-16  3:01         ` Jiang Liu
  0 siblings, 1 reply; 25+ messages in thread
From: Konrad Rzeszutek Wilk @ 2014-07-15 16:10 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, x86, linux-kernel, linux-pci, linux-acpi

On Tue, Jul 15, 2014 at 11:27:50PM +0800, Jiang Liu wrote:
> Hi Konrad,
> 	Thanks for testing the patch set! After analyzing the log
> files, I feel something is wrong with the Radeon driver. With good
> configuration, IRQ18 is shared by OHCI controllers and Radeon GPU
> card. With bad configuration, only OHCI controllers are bound to
> IRQ18. Radeon GPU card may have been bound to another wrong IRQ,
> which then causes the interrupt storm.
> 	But I have no hardware available to verify the hypothesis,
> so could you please help to apply the attached patch and run the
> test again?

Here is the serial log:

Trying 192.168.102.15...
Connected to maxsrv2.
Escape character is '^]'.
Probing EDD (edd=off to disable)... ok
early console in decompress_kernel

Decompressing Linux... Parsing ELF... No relocation needed... done.
Booting the kernel.
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.16.0-rc5upstream-01669-g4f5f437 (konrad@build-external.dumpdata.com) (gcc version 4.4.4 20100503 (Red Hat 4.4.4-2) (GCC) ) #1 SMP Tue Jul 15 12:43:50 EDT 2014
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f3ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f400-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e6000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfeaffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cfeb0000-0x00000000cfebdfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000cfebe000-0x00000000cfedffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cfee0000-0x00000000cfefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff700000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fffffff] usable
[    0.000000] Early serial console at I/O port 0xe400 (options '115200n8')
[    0.000000] bootconsole [uart0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.5 present.
[    0.000000] DMI: ECS A780GM-A Ultra/A780GM-A Ultra, BIOS 080015  04/01/2010
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000ff]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFF0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000130000000 aka 4864M
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: update [mem 0xd0000000-0xf   0.000000] Scan for SMP in [mem 0x00000000-0x000003ff]
[    0.000000] Scan for SMP in [mem 0x0009fc00-0x0009ffff]
[    0.000000] Scan for SMP in [mem 0x000f0000-0x000fffff]
[    0.000000] found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [c00ff780]
[    0.000000]   mpc: e5e70-e5ffc
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] initial memory mapped: [mem 0x00000000-0x01ffffff]
[ m 0x00000000-0x000fffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x37800000-0x379fffff]
[    0.000000]  [mem 0x37800000-0x379fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x34000000-0x377fffff]
[    0.000000]  [mem 0x34000000-0x377fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x33ffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x33ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x37a00000-0x37bfdfff]
[    0.000000]  [mem 0x37a00000-0x37bfdfff] page 4k
[    0.000000] BRK [0x01a3b000, 0x01a3bfff] PGTABLE
[    0.000000] RAMDISK: [mem 0x7aee0000-0x7fffefff]
[    0.000000] Allocated new RAMDISK: [mem 0x32adf000-0x37bfdb9a]
[    0.000000] Move RAMDISK from [mem 0x7aee0000-0x7fffeb9a] to [mem 0x32adf000-0x37bfdb9a]
[    0.000000] ACPI: Early table ch.000000] ACPI: RSDP 0x000FB100 000014 (v00 ACPIAM)
[    0.000000] ACPI: RSDT 0xCFEB0000 000040 (v01 040110 RSDT1316 20100401 MSFT 00000097)
[    0.000000] ACPI: FACP 0xCFEB0200 000084 (v01 040110 FACP1316 20100401 MSFT 00000097)
[    0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20140424/tbfadt-649)
[    0.000000] ACPI: DSDT 0xCFEB0450 00A65F (v01 1AAAA  1AAAA000 00000000 INTL 20051117)
[    0.000000] ACPI: FACS 0xCFEBE000 000040
[    0.000000] ACPI: APIC 0xCFEB0390 00007C (v01 040110 APIC1316 20100401 MSFT 00000097)
[    0.000000] ACPI: MCFG 0xCFEB0410 00003C (v01 040110 OEMMCFG  20100401 MSFT 00000097)
[    0.000000] ACPI: OEMB 0xCFEBE040 000072 (v01 040110 OEMB1316 20100401 MSFT 00000097)
[    0.000000] ACPI: SRAT 0xCFEBAAB0 0000E8 (v03 AMD    FAM_F_10 00000002 AMD  00000001)
[    0.000000] ACPI: HPET 0xCFEBABA0 000038 (v01 040110 OEMHPET  20100401 MSFT 00000097)
[    0.000000] ACPI: SSDT 0xCFEBABE0 00088C (v01 A M I  POWERNOW 00000001 AMD  00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] mapped APIC to         ffffb000 (        fee00000)
[    0.000000] 3716MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] BRK [0x01a3c000, 0x01a3cfff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   Normal   [mem 0x01000000-0x37bfdfff]
[    0.000000]   HighMem  [mem 0x37bfe000-0x1fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0xcfeaffff]
[    0.000000]   node   0: [mem 0x00000000-0x1fffffff]
[    0.000000] On node 0 totalpages: 982606
[    0.000000] free_area_init_node: node 0, pgdat c1849240, node_mem_map f06df020
[    0.000000]   DMA zone: 32 pages used for   0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 224254 pages, LIFO batch:31
[    0.000000]   HighMem zone: 7433 pages used for memmap
[    0.000000]   HighMem zone: 754354 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address ic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 00, APIC ID 4, APIC INT 02
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] Int: type 0, pol 3, trig 3, bus 00, IRQ 09, APIC ID 4, APIC INT 09
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 01, APIC ID 4, APIC INT 01
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 03, APIC ID 4, APIC INT 03
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 04, APIC ID 4, APIC INT 04
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 05, APIC ID 4, APIC INT 05
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 06, APIC ID 4, APIC INT 06
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 07, APIC ID 4, APIC INT 07
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 08, APIC ID 4, APIC INT 08
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0a, APIC ID 4, APIC INT 0a
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0b, APIC ID 4, APIC INT 0b
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0c, APIC ID 4, APIC INT 0c
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0d, APIC ID 4, APIC INT 0d
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0e, APIC ID 4, APIC INT 0e
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0f, APIC ID 4, APIC INT 0f
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8300 base: 0xfed00000
[    0.000000] smpboot: Allowing 6 CPUs, 2 hotplug CPUs
[    0.000000] mapped IOAPIC to ffffa000 (fec00000)
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000e5fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e6000-0x000fffff]
[    0.000000] e820: [mem 0xcff00000-0xff6fffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:6 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @f0679000 s35136 r0 d22208 u57344
[    0.000000] pcpu-alloc: s35136 r0 d22208 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 980822
[    0.000000] Kernel command line: initrd=initramfs.cpio.gz apic=debug initcall_debug loglevel=10 nofb selinux=0 console=uart8250,io,0xe400,115200n8 BOOT_IMAGE=vmlinuz 
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (00037bfe:00120000)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 3798728K/3930424K available (6268K kernel code, 434K rwdata, 1852K rodata, 940K init, 872K bss, 131696K reserved, 3017416K highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff15000 - 0xfffff000   ( 936 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc185e000 - 0xc1949000   ( 940 kB)
[    0.000000]       .data : 0xc161f627 - 0xc185cbc0   (2293 kB)
[    0.000000]       .text : 0xc1000000 - 0xc161f627   (6269 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=6.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6
[    0.000000] NR_IRQS:2304 nr_irqs:472 0
[    0.000000] CPU 0 irqstacks, hard=f0008000 soft=f000a000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3000.004 MHz processor
[    0.000025] Calibrating delay loop (skipped), value calculated using timer frequency.. 6000.00 BogoMIPS (lpj=3000004)
[    0.011168] pid_max: default: 32768 minimum: 301
[    0.016050] ACPI: Core revision 20140424
[    0.089516] ACPI: All ACPI Tables successfully acquired
[    0.101334] Security Framework initialized
[    0.105628] SELinux:  Disabled at boot.
[    0.109831] Mount-cache hash tableytes)
[    0.116773] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.125318] Initializing cgroup subsys freezer
[    0.130044] CPU: Physical Processor ID: 0
[    0.134250] CPU: Processor Core ID: 0
[    0.138095] mce: CPU supports 6 MCE banks
[    0.142309] LVT offset 0 assigned for vector 0xf9
[    0.147252] process: using AMD E400 aware idle routine
[    0.152644] Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
[    0.152644] Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
[    0.152644] tlb_flushall_shift: 6
[    0.168749] Freeing SMP alternatives memory: 28K (c1949000 - c1950000)
[    0.176609] Getting VERSION: 80050010
[    0.180448] Getting VERSION: 80050010
[    0.184291] Getting ID: 0
[    0.187041] Getting ID: f000000
[    0.190335] Getting LVT0: 700
[    0.193442] Getting LVT1: 400
[    0.196547] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.202216] enabled ExtINT on CPU#0
[    0.206070] ESR value before enabling vector: 0x00000004  after: 0x00000000
[    0.213370] ENABLING IO-APIC IRQs
[    0.216850] init IO_APIC IRQs
[    0.219964]  apic 4 pin 0 not connected
[    0.223993] IOAPIC[0]: Set routing entry (4-1 -> 0x31 -> IRQ 1 Mode:0 Active:0 Dest:1)
[    0.232302] IOAPIC[0]: Set routing entry (4-2 -> 0x30 -> IRQ 0 Mode:0 Active:0 Dest:1)
[    0.240603] IOAPIC[0]: Set routing entry (4-3 -> 0x33 -> IRQ 3 Mode:0 Active:0 Dest:1)
[    0.248906] IOAPIC[0]: Set routing entry (4-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:1)
[    0.257202] IOAPIC[0]: Set routing entry (4-5 -> 0x35 -> IRQ 5 Mode:0 Active:0 Dest:1)
[    0.265501] IOAPIC[0]: Set routing entry (4-6 -> 0x36 -> IRQ 6 Mode:0 Active:0 Dest:1)
[    0.273806] IOAPIC[0]: Set routing entry (4-7 -> 0x37 -> IRQ 7 Mode:0 Active:0 Dest:1)
[    0.282112] IOAPIC[0]: Set routing entry (4-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:1)
[    0.290422] IOAPIC[0]: Set routing entry (4-9 -> 0x39 -> IRQ 9 Mode:1 Active:1 Dest:1)
[    0.298729] IOAPIC[0]: Set routing entry (4-10 -> 0x3a -> IRQ 10 Mode:0 Active:0 Dest:1)
[    0.307215] IOAPIC[0]: Set routing entry (4-11 -> 0x3b -> IRQ 11 Mode:0 Active:0 Dest:1)
[    0.315696] IOAPIC[0]: Set routing entry (4-12 -> 0x3c -> IRQ 12 Mode:0 Active:0 Dest:1)
[    0.324180] IOAPIC[0]: Set routing entry (4-13 -> 0x3d -> IRQ 13 Mode:0 Active:0 Dest:1)
[    0.332664] IOAPIC[0]: Set routing entry (4-14 -> 0x3e -> IRQ 14 Mode:0 Active:0 Dest:1)
[    0.341152] IOAPIC[0]: Set routing entry (4-15 -> 0x3f -> IRQ 15 Mode:0 Active:0 Dest:1)
[    0.349642]  apic 4 pin 16 not connected
[    0.353750]  apic 4 pin 17 not connected
[    0.357859]  apic 4 pin 18 not connected
[    0.361958]  apic 4 pin 19 not connected
[    0.366066]  apic 4 pin 20 not connected
[    0.370173]  apic 4 pin 21 not connected
[    0.374280]  apic 4 pin 22 not connected
[    0.378385]  apic 4 pin 23 not connected
[    0.382626] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.398914] smpboot: CPU0: AMD Phenom(tm) II X4 940 Processor (fam: 10, model: 04, stepping: 02)
[    0.408154] Using local [    0.517705] ... lapic delta = 1250027
[    0.521540] ... PM-Timer delta = 357950
[    0.525554] ... PM-Timer result ok
[     0.535784] ..... calibration result: 200004
[    0.540249] ..... CPU clock speed is 3000.0066 MHz.
[    0.545361] ..... host bus clock speed is 200.0004 MHz.
[    0.550849] calling  xen_init_spinlocks_jump+0x0/0x23 @ 1
[    0.556509] initcall xen_init_spinlocks_jump+0x0/0x23 returned 0 after 0 usecs
[    0.564079] calling  set_real_mode_permissions+0x0/0x5d @ 1
[    0.569928] initcall set_real_mode_permissions+0x0/0x5d returned 0 after 0 usecs
[    0.577690] calling  trace_init_perf_perm_irq_work_exit+0x0/0x11 @ 1
[    0.584346] initcall trace_init_perf_perm_irq_work_exit+0x0/0x11 returned 0 after 0 usecs
[    0.592931] calling  trace_init_flags_sys_exit+0x0/0xe @ 1
[    0.598674] initcall trace_init_flags_sys_exit+0x0/0xe returned 0 after 0 usecs
[    0.606344] calling  trace_init_flags_sys_enter+0x0/0xe @ 1
[    0.612180] initcall trace_init_flags_sys_enter+0x0/0xe returned 0 after 0 usecs
[    0.619944] calling  init_hw_perf_events+0x0/0x52b @ 1
[    0.625326] Performance Events: AMD PMU driver.
[    0.630086] ... version:                0
[    0.634284] ... bit width:              48
[    0.638575] ... generic registers:      4
[    0.642781] ... value mask:             0000ffffffffffff
[    0.648352] ... max period:             00007fffffffffff
[    0.653916] ... fixed-purpose events:   0
[    0.658112] ... event mask:             000000000000000f
[    0.663713] initcall init_hw_perf_events+0x0/0x52b returned 0 after 8789 usecs
[    0.671282] calling  register_trigger_all_cpu_backtrace+0x0/0x13 @ 1
[    0.677948] initcall register_trigger_all_cpu_backtrace+0x0/0x13 returned 0 after 0 usecs
[    0.686517] calling  kvm_spinlock_init_jump+0x0/0x37 @ 1
[    0.692086] initcall kvm_spinlock_init_jump+0x0/0x37 returned 0 after 0 usecs
[    0.699562] calling  spawn_ksoftirqd+0x0/0x23 @ 1
[    0.704519] initcall spawn_ksoftirqd+0x0/0x23 returned 0 after 0 usecs
[    0.711368] calling  init_workqueues+0x0/0x3e6 @ 1
[    0.716785] initcall init_workqueues+0x0/0x3e6 returned 0 after 976 usecs
[    0.723900] calling  migration_init+0x0/0x5b @ 1
[    0.728737] initcall migration_init+0x0/0x5b returned 0 after 0 usecs
[    0.735487] calling  check_cpu_stall_init+0x0/0x16 @ 1
[    0.740871] initcall check_cpu_stall_init+0x0/0x16 returned 0 after 0 usecs
[    0.748167] calling  rcu_scheduler_really_started+0x0/0x11 @ 1
[    0.754278] initcall rcu_scheduler_really_started+0x0/0x11 returned 0 after 0 usecs
[    0.762318] calling  rcu_spawn_gp_kthread+0x0/0x87 @ 1
[    0.767752] initcall rcu_spawn_gp_kthread+0x0/0x87 returned 0 after 0 usecs
[    0.775055] calling  cpu_stop_init+0x0/0x5d @ 1
[    0.779841] initcall cpu_stop_init+0x0/0x5d returned 0 after 0 usecs
[    0.786503] calling  relay_init+0x0/0x11 @ 1
[    0.790977] initcall relay_init+0x0/0x11 returned 0 after 0 usecs
[    0.797357] calling  tracer_alloc_buffers+0x0/0x213 @ 1
[    0.802929] initcall tracer_alloc_buffers+0x0/0x213 returned 0 after 0 usecs
[    0.810325] calling  init_events+0x0/0x5f @ 1
[    0.814887] initcall init_events+0x0/0x5f returned 0 after 0 usecs
[    0.821357] calling  init_trace_printk+0x0/0xf @ 1
[    0.826375] initcall init_trace_printk+0x0/0xf returned 0 after 0 usecs
[    0.833318] calling  event_trace_memsetup+0x0/0x5a @ 1
[    0.838744] initcall event_trace_memsetup+0x0/0x5a returned 0 after 0 usecs
[    0.846050] calling  jump_label_init_module+0x0/0xf @ 1
[    0.851534] initcall jump_label_init_module+0x0/0xf returned 0 after 0 usecs
[    0.858930] calling  hashlib_init+0x0/0x11 @ 1
[    0.863586] initcall hashlib_init+0x0/0x11 returned 0 after 0 usecs
[    0.870163] calling  balloon_clear+0x0/0x3b @ 1
[    0.874910] initcall balloon_clear+0x0/0x3b returned 0 after 0 usecs
[    0.881577] calling  rand_initialize+0x0/0x30 @ 1
[    0.886539] initcall rand_initialize+0x0/0x30 returned 0 after 976 usecs
[    0.893569] calling  mce_amd_init+0x0/0x134 @ 1
[    0.898317] MCE: In-kernel MCE decoding enabled.
[    0.903160] initcall mce_amd_init+0x0/0x134 returned 0 after 976 usecs
[    0.910185] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.920336] CPU 1 irqstacks, hard=f02c2000 soft=ef820000
[    0.925902] x86: Booting SMP configuration:
[    0.930286] .... node  #0, CPUs:      #1
[    0.944867] Initializing CPU#1
[    0.945215] masked ExtINT on CPU#1
[    0.947392] process: System has AMD C1E enabled
[    0.947931] CPU 2 irqstacks, hard=f028a000 soft=f028c000
[    0.958480]  #2
[    0.958481] Initializing CPU#2
[    0.958929] masked ExtINT on CPU#2
[    0.961117] process: Switch to broadcast mode on CPU2
[    0.961653] CPU 3 irqstacks, hard=f02be000 soft=f0200000
[    0.972203]  #3
[    0.972203] Initializing CPU#3
[    0.972652] masked ExtINT on CPU#3
[    0.974786] x86: Booted up 1 node, 4 CPUs
[    0.974788] smpboot: Total of 4 processors activated (24000.03 BogoMIPS)
[    0.974831] process: Switch to broadcast mode on CPU3
[    1.009163] process: Switch to broadcast mode on CPU1
[    1.019449] process: Switch to broadcast mode on CPU0
[    1.025075] devtmpfs: initialized
[    1.029491] calling  ipc_ns_i initcall ipc_ns_init+0x0/0x11 returned 0 after 0 usecs
[    1.040551] calling  init_mmap_min_addr+0x0/0x20 @ 1
[    1.045760] initcall init_mmap_min_addr+0x0/0x20 returned 0 after 0 usecs
[    1.052889] calling  init_cpufreq_transition_notifier_list+0x0/0x18 @ 1
[    1.059852] initcall init_cpufreq_transition_notifier_list+0x0/0x18 returned 0 after 0 usecs
[    1.068715] calling  net_ns_init+0x0/0x100 @ 1
[    1.073512] initcall net_ns_init+0x0/0x100 returned 0 after 0 usecs
[    1.080136] calling  e820_mark_nvs_memory+0x0/0x4e @ 1
[    1.085528] PM: Registering ACPI NVS region [mem 0xcfebe000-0xcfedffff] (139264 bytes)
[    1.093922] initcall e820_mark_nvs_memory+0x0/0x4e returned 0 after 976 usecs
[    1.101420] calling  cpufreq_tsc+0x0/0x26 @ 1
[    1.105997] initcall cpufreq_tsc+0x0/0x26 returned 0 after 0 usecs
[    1.112500] calling  reboot_init+0x0/0x1a @ 1
[    1.117084] initcall reboot_init+0x0/0x1a returned 0 after 0 usecs
[    1.123568] calling  init_lapic_sysfs+0x0/0x1b @ 1
[    1.128594] initcall init_lapic_sysfs+0x0/0x1b returned 0 after 0 usecs
[    1.135546] calling  cpu_hotplug_pm_sync_init+0x0/0x29 @ 1
[    1.141309] initcall cpu_hotplug_pm_sync_init+0x0/0x29 returned 0 after 0 usecs
[    1.148978] calling  alloc_frozen_cpus+0x0/0x7 @ 1
[    1.154003] initcall alloc_frozen_cpus+0x0/0x7 returned 0 after 0 usecs
[    1.160950] calling  wq_sysfs_init+0x0/0x11 @ 1
[    1.165839] initcall wq_sysfs_init+0x0/0x11 returned 0 after 0 usecs
[    1.165945] kworker/u12:0 (30) used greatest stack depth: 6980 bytes left
[    1.179624] calling  ksysfs_init+0x0/0x74 @ 1
[    1.184276] initcall ksysfs_init+0x0/0x74 returned 0 after 0 usecs
[    1.190771] calling  pm_init+0x0/0x45 @ 1
[    1.195046] initcall pm_init+0x0/0x45 returned 0 after 0 usecs
[    1.201158] calling  pm_disk_init+0x0/0x14 @ 1
[    1.205847] initcall pm_disk_init+0x0/0x14 returned 0 after 0 usecs
[    1.212431] calling  swsusp_header_init+0x0/0x30 @ 1
[    1.217634] initcall swsusp_header_init+0x0/0x30 returned 0 after 0 usecs
[    1.224766] calling  init_jiffies_clocksource+0x0/0xf @ 1
[    1.230441] initcall init_jiffies_clocksource+0x0/0xf returned 0 after 0 usecs
[    1.238025] calling  cgroup_wq_init+0x0/0x7c @ 1
[    1.242925] initcall cgroup_wq_init+0x0/0x7c returned 0 after 0 usecs
[    1.249687] calling  event_trace_enable+0x0/0x155 @ 1
[    1.255896] initcall event_trace_enable+0x0/0x155 returned 0 after 976 usecs
[    1.263296] calling  init_zero_pfn+0x0/0x14 @ 1
[    1.268045] initcall init_zero_pfn+0x0/0x14 returned 0 after 0 usecs
[    1.274718] calling  fsnotify_init+0x0/0x24 @ 1
[    1.279493] initcall fsnotify_init+0x0/0x24 returned 0 after 0 usecs
[    1.286167] calling  filelock_init+0x0/0x74 @ 1
[    1.290959] initcall filelock_init+0x0/0x74 returned 0 after 0 usecs
[    1.297639] calling  init_misc_binfmt+0x0/0x28 @ 1
[    1.302679] initcall init_misc_binfmt+0x0/0x28 returned 0 after 0 usecs
[    1.309624] calling  init_script_binfmt+0x0/0x13 @ 1
[    1.314842] initcall init_script_binfmt+0x0/0x13 returned 0 after 0 usecs
[    1.321980] calling  init_elf_binfmt+0x0/0x13 @ 1
[    1.326923] initcall init_elf_binfmt+0x0/0x13 returned 0 after 0 usecs
[    1.333784] calling  debugfs_init+0x0/0x4a @ 1
[    1.338459] initcall debugfs_init+0x0/0x4a returned 0 after 0 usecs
[    1.345042] calling  securityfs_init+0x0/0x41 @ 1
[    1.350001] initcall securityfs_init+0x0/0x41 returned 0 after 0 usecs
[    1.356858] calling  prandom_init+0x0/0xaa @ 1
[    1.361531] initcall prandom_init+0x0/0xaa returned 0 after 0 usecs
[    1.368115] calling  virtio_init+0x0/0x30 @ 1
[    1.372768] initcall virtio_init+0x0/0x30 returned 0 after 976 usecs
[    1.379453] calling  early_resume_init+0x0/0x1a0 @ 1
[    1.384669] RTC time: 16:04:47, date: 07/15/14
[    1.389335] initcall early_resume_init+0x0/0x1a0 returned 0 after 976 usecs
[    1.396636] calling  cpufreq_core_init+0x0/0x29 @ 1
[    1.401761] initcall cpufreq_core_init+0x0/0x29 returned 0 after 0 usecs
[    1.408801] calling  cpuidle_init+0x0/0x36 @ 1
[    1.413501] initcall cpuidle_init+0x0/0x36 returned 0 after 0 usecs
[    1.420099] calling  bsp_pm_check_init+0x0/0x11 @ 1
[    1.425213] initcall bsp_pm_check_init+0x0/0x11 returned 0 after 0 usecs
[    1.432261] calling  sock_init+0x0/0x89 @ 1
[    1.436915] initcall sock_init+0x0/0x89 returned 0 after 976 usecs
[    1.443400] calling  net_inuse_init+0x0/0x24 @ 1
[    1.448277] initcall net_inuse_init+0x0/0x24 returned 0 after 0 usecs
[    1.455033] calling  netpoll_init+0x0/0x2e @ 1
[    1.459705] initcall netpoll_init+0x0/0x2e returned 0 after 0 usecs
[    1.466291] calling  netlink_proto_init+0x0/0x1a7 @ 1
[    1.471665] NET: Registered protocol family 16
[    1.476362] initcall netlink_proto_init+0x0/0x1a7 returned 0 after 1953 usecs
[    1.483855] calling  __gnttab_init+0x0/0x30 @ 1
[    1.488604] initcall __gnttab_init+0x0/0x30 returned -19 after 0 usecs
[    1.495489] calling  bdi_class_init+0x0/0x40 @ 1
[    1.500489] initcall bdi_class_init+0x0/0x40 returned 0 after 0 usecs
[    1.507256] calling  mm_sysfs_init+0x0/0x22 @ 1
[    1.512019] initcall mm_sysfs_init+0x0/0x22 returned 0 after 0 usecs
[    1.518694] calling  kobject_uevent_init+0x0/0xf @ 1
[    1.523919] initcall kobject_uevent_init+0x0/0xf returned 0 after 0 usecs
[    1.531046] calling  pcibus_class_init+0x0/0x14 @ 1
[    1.536206] initcall pcibus_class_init+0x0/0x14 returned 0 after 0 usecs
[    1.543245] calling  pci_driver_init+0x0/0xf @ 1
[    1.548180] initcall pci_driver_init+0x0/0xf returned 0 after 0 usecs
[    1.554946] calling  backlight_class_init+0x0/0x92 @ 1
[    1.560383] initcall backlight_class_init+0x0/0x92 returned 0 after 0 usecs
[    1.567701] calling  xenbus_init+0x0/0x24f @ 1
[    1.572364] initcall xenbus_init+0x0/0x24f returned -19 after 0 usecs
[    1.579136] calling  tty_class_init+0x0/0x2f @ 1
[    1.584015] initcall tty_class_init+0x0/0x2f returned 0 after 0 usecs
[    1.590779] calling  vtconsole_class_init+0x0/0xc2 @ 1
[    1.596323] initcall vtconsole_class_init+0x0/0xc2 returned 0 after 0 usecs
[    1.603634] calling  wakeup_sources_debugfs_init+0x0/0x2f @ 1
[    1.609673] initcall wakeup_sources_debugfs_init+0x0/0x2f returned 0 after 0 usecs
[    1.617624] calling  i2c_init+0x0/0x57 @ 1
[    1.622070] initcall i2c_init+0x0/0x57 returned 0 after 0 usecs
[    1.628284] calling  lguest_devices_init+0x0/0x13f @ 1
[    1.633677] initcall lguest_devices_init+0x0/0x13f returned 0 after 0 usecs
[    1.640990] calling  init_ladder+0x0/0xf @ 1
[    1.645465] cpuidle: using governor ladder
[    1.649768] initcall init_ladder+0x0/0xf returned 0 after 976 usecs
[    1.656360] calling  init_menu+0x0/0xf @ 1
[    1.660658] cpuidle: using governor menu
[    1.664777] initcall init_menu+0x0/0xf returned 0 after 976 usecs
[    1.671173] calling  amd_postcore_init+0x0/0x131 @ 1
[    1.676397] node 0 link 0: io port [1000, ffffff]
[    1.681337] TOM: 00000000d0000000 aka 3328M
[    1.685718] Fam 10h mmconf [mem 0xe0000000-0xefffffff]
[    1.691117] node 0 link 0: mmio [a0000, bffff]
[    1.695791] node 0 link 0: mmio [d0000000, efffffff] ==> [d0000000, dfffffff]
[    1.703291] node 0 link 0: mmio [f0000000, fe6fffff]
[    1.708512] node 0 link 0: mmio [fe700000, fe8fffff]
[    1.713721] node 0 link 0: mmio [fe900000, ffefffff]
[    1.718936] TOM2: 0000000130000000 aka 4864M
[    1.723422] bus: [bus 00-07] on node 0 link 0
[    1.728004] bus: 00 [io  0x0000-0xffff]
[    1.732032] bus: 00 [mem 0x000a0000-0x000bffff]
[    1.736786] bus: 00 [mem 0xd0000000-0xdfffffff]
[    1.741537] bus: 00 [mem 0xf0000000-0xffffffff]
[    1.746281] bus: 00 [mem 0x130000000-0xfcffffffff]
[    1.751325] initcall amd_postcore_init+0x0/0x131 returned 0 after 16601 usecs
[    1.758852] calling  boot_params_ksysfs_init+0x0/0x22f @ 1
[    1.764642] initcall boot_params_ksysfs_init+0x0/0x22f returned 0 after 0 usecs
[    1.772318] calling  arch_kdebugfs_init+0x0/0x2a6 @ 1
[    1.777660] initcall arch_kdebugfs_init+0x0/0x2a6 returned 0 after 0 usecs
[    1.784876] calling  init_pit_clocksource+0x0/0x36 @ 1
[    1.790269] initcall init_pit_clocksource+0x0/0x36 returned 0 after 0 usecs
[    1.797577] calling  mtrr_if_init+0x0/0x56 @ 1
[    1.802245] initcall mtrr_if_init+0x0/0x56 returned 0 after 0 usecs
[    1.808823] calling  ffh_cstate_init+0x0/0x27 @ 1
[    1.813757] initcall ffh_cstate_init+0x0/0x27 returned -1 after 0 usecs
[    1.820711] calling  kdump_buf_page_init+0x0/0x3a @ 1
[    1.826017] initcall kdump_buf_page_init+0x0/0x3a returned 0 after 0 usecs
[    1.833232] calling  activate_jump_labels+0x0/0x2d @ 1
[    1.838631] initcall activate_jump_labels+0x0/0x2d returned 0 after 0 usecs
[    1.845945] calling  acpi_pci_init+0x0/0x5b @ 1
[    1.850702] ACPI: bus type PCI registered
[    1.854912] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.861666] initcall acpi_pci_init+0x0/0x5b returned 0 after 1953 usecs
[    1.868619] calling  dma_bus_init+0x0/0xbb @ 1
[    1.873464] initcall dma_bus_init+0x0/0xbb returned 0 after 0 usecs
[    1.880053] calling  dma_channel_table_init+0x0/0xc4 @ 1
[    1.885756] initcall dma_channel_table_init+0x0/0xc4 returned 0 after 0 usecs
[    1.893255] calling  setup_vcpu_hotplug_event+0x0/0x1f @ 1
[    1.899017] initcall setup_vcpu_hotplug_event+0x0/0x1f returned -19 after 0 usecs
[    1.906877] calling  register_xen_pci_notifier+0x0/0x30 @ 1
[    1.912725] initcall register_xen_pci_notifier+0x0/0x30 returned 0 after 0 usecs
[    1.920482] calling  xen_pcpu_init+0x0/0xc8 @ 1
[    1.925240] initcall xen_pcpu_init+0x0/0xc8 returned -19 after 0 usecs
[    1.932097] calling  dmi_id_init+0x0/0x2a2 @ 1
[    1.937052] initcall dmi_id_init+0x0/0x2a2 returned 0 after 0 usecs
[    1.943643] calling  dca_init+0x0/0x21 @ 1
[    1.947937] dca service started, version 1.12.1
[    1.952729] initcall dca_init+0x0/0x21 returned 0 after 976 usecs
[    1.959141] calling  pci_arch_init+0x0/0x65 @ 1
[    1.963922] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    1.973688] PCI: not using MMCONFIG
[    1.978012] PCI : PCI BIOS area is rw and x. Use pci=nobios if you want it NX.
[    1.985667] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=4
[    1.992325] PCI: Using configuration type 1 for base access
[    1.998161] PCI: Using configuration type 1 for extended access
[    2.004391] initcall pci_arch_init+0x0/0x65 returned 0 after 5859 usecs
[    2.011364] calling  topology_init+0x0/0x36 @ 1
[    2.016554] initcall topology_init+0x0/0x36 returned 0 after 0 usecs
[    2.023234] calling  mtrr_init_finialize+0x0/0x30 @ 1
[    2.028533] initcall mtrr_init_finialize+0x0/0x30 returned 0 after 0 usecs
[    2.035753] calling  uid_cache_init+0x0/0x7e @ 1
[    2.040636] initcall uid_cache_init+0x0/0x7e returned 0 after 0 usecs
[    2.047394] calling  param_sysfs_init+0x0/0x14c @ 1
[    2.064084] kworker/u12:0 (256) used greatest stack depth: 6856 bytes left
[    2.065136] initcall param_sysfs_init+0x0/0x14c returned 0 after 12695 usecs
[    2.065142] calling  proc_schedstat_init+0x0/0x27 @ 1
[    2.065150] initcall proc_schedstat_init+0x0/0x27 returned 0 after 0 usecs
[    2.065155] calling  pm_sysrq_init+0x0/0x16 @ 1
[    2.097236] initcall pm_sysrq_init+0x0/0x16 returned 0 after 31250 usecs
[    2.104289] calling  create_proc_profile+0x0/0x1e0 @ 1
[    2.109692] initcall create_proc_profile+0x0/0x1e0 returned 0 after 0 usecs
[    2.117004] calling  crash_save_vmcoreinfo_init+0x0/0x5ad @ 1
[    2.123062] initcall crash_save_vmcoreinfo_init+0x0/0x5ad returned 0 after 0 usecs
[    2.131000] calling  crash_notes_memory_init+0x0/0x35 @ 1
[    2.136680] initcall crash_notes_memory_init+0x0/0x35 returned 0 after 0 usecs
[    2.144260] calling  hung_task_init+0x0/0x56 @ 1
[    2.149164] initcall hung_task_init+0x0/0x56 returned 0 after 0 usecs
[    2.155934] calling  default_bdi_init+0x0/0x78 @ 1
[    2.161458] initcall default_bdi_init+0x0/0x78 returned 0 after 976 usecs
[    2.168585] calling  init_reserve_notifier+0x0/0x7 @ 1
[    2.173983] initcall init_reserve_notifier+0x0/0x7 returned 0 after 0 usecs
[    2.181291] calling  init_admin_reserve+0x0/0x30 @ 1
[    2.186493] initcall init_admin_reserve+0x0/0x30 returned 0 after 0 usecs
[    2.193619] calling  init_user_reserve+0x0/0x30 @ 1
[    2.198734] initcall init_user_reserve+0x0/0x30 returned 0 after 0 usecs
[    2.205752] calling  mmu_notifier_init+0x0/0xf @ 1
[    2.210783] initcall mmu_notifier_init+0x0/0xf returned 0 after 0 usecs
[    2.217727] calling  hugepage_init+0x0/0x123 @ 1
[    2.222781] initcall hugepage_init+0x0/0x123 returned 0 after 0 usecs
[    2.229540] calling  crypto_wq_init+0x0/0x41 @ 1
[    2.234471] initcall crypto_wq_init+0x0/0x41 returned 0 after 0 usecs
[    2.241224] calling  cryptomgr_init+0x0/0xf @ 1
[    2.245967] initcall cryptomgr_init+0x0/0xf returned 0 after 0 usecs
[    2.252639] calling  init_bio+0x0/0xc5 @ 1
[    2.257315] initcall init_bio+0x0/0xc5 returned 0 after 0 usecs
[    2.263532] calling  blk_settings_init+0x0/0x21 @ 1
[    2.268643] initcall blk_settings_init+0x0/0x21 returned 0 after 0 usecs
[    2.275669] calling  blk_ioc_init+0x0/0x2f @ 1
[    2.280373] initcall blk_ioc_init+0x0/0x2f returned 0 after 0 usecs
[    2.286935] calling  blk_softirq_init+0x0/0x54 @ 1
[    2.291962] initcall blk_softirq_init+0x0/0x54 returned 0 after 0 usecs
[    2.298901] calling  blk_iopoll_setup+0x0/0x54 @ 1
[    2.303924] initcall blk_iopoll_setup+0x0/0x54 returned 0 after 0 usecs
[    2.310861] calling  blk_mq_init+0x0/0x16 @ 1
[    2.315426] initcall blk_mq_init+0x0/0x16 returned 0 after 0 usecs
[    2.321899] calling  genhd_device_init+0x0/0x6a @ 1
[    2.327190] initcall genhd_device_init+0x0/0x6a returned 0 after 0 usecs
[    2.334212] calling  blk_dev_integrity_init+0x0/0x2f @ 1
[    2.339828] initcall blk_dev_integrity_init+0x0/0x2f returned 0 after 976 usecs
[    2.347499] calling  pci_slot_init+0x0/0x40 @ 1
[    2.352267] initcall pci_slot_init+0x0/0x40 returned 0 after 0 usecs
[    2.358926] calling  fbmem_init+0x0/0x96 @ 1
[    2.363450] initcall fbmem_init+0x0/0x96 returned 0 after 0 usecs
[    2.369832] calling  acpi_init+0x0/0x26b @ 1
[    2.374413] ACPI: Added _OSI(Module Device)
[    2.378794] ACPI: Added _OSI(Processor Device)
[    2.383453] ACPI: Added _OSI(3.0 _SCP Extensions)
[    2.388387] ACPI: Added _OSI(Processor Aggregator Device)
[    2.407799] ACPI: Executed 4 blocks of module-level executable AML code
[    2.491130] ACPI: Interpreter enabled
[    2.494982] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (201580)
[    2.514402] ACPI: (supports S0 S3 S4 S5)
[    2.518506] ACPI: Using IOAPIC for interrupt routing
[    2.523860] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    2.562110] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    2.571234] PCI: Using MM[    2.706886] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    2.713382] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    2.722007] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    2.730845] acpi PNP0A03:00: ignoring host bridge window [mem 0x000d0000-0x000dffff] (conflicts with Adapter ROM [mem 0x000cf000-0x000d09ff])
[    2.745897] PCI host bridge to bus 0000:00
[    2.750187] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.755938] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    2.762427] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    2.768904] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    2.776122] pci_bus 0000:00: root bus resource [mem 0xcff00000-0xdfffffff]
[    2.783338] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
[    2.790569] pci 0000:00:00.0: [1022:9600] type 00 class 0x060000
[    2.797687] pci 0000:00:01.0: [1022:9602] type 01 class 0x060400
[    2.804799] pci 0000:00:06.0: [1022:9606] type 01 class 0x060400
[    2.811138] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    2.818092] pci 0000:00:06.0: System wakeup disabled by ACPI
[    2.824405] pci 0000:00:07.0: [1022:9607] type 01 class 0x060400
[    2.830743] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    2.837704] pci 0000:00:07.0: System wakeup disabled by ACPI
[    2.844018] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[    2.850340] pci 0000:00:11.0: reg 0x10: [io  0x7000-0x7007]
[    2.856189] pci 0000:00:11.0: reg 0x14: [io  0x6000-0x6003]
[    2.862035] pci 0000:00:11.0: reg 0x18: [io  0x5000-0x5007]
[    2.867880] pci 0000:00:11.0: reg 0x1c: [io  0x4000-0x4003]
[    2.873730] pci 0000:00:11.0: reg 0x20: [io  0x3000-0x300f]
[    2.879580] pci 0000:00:11.0: reg 0x24: [mem 0xfe6ffc00-0xfe6fffff]
[    2.886993] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[    2.893310] pci 0000:00:12.0: reg 0x10: [mem 0xfe6fe000-0xfe6fefff]
[    2.900495] pci 0000:00:12.0: System wakeup disabled by ACPI
[    2.906795] pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
[    2.913103] pci 0000:00:12.1: reg 0x10: [mem 0xfe6fd000-0xfe6fdfff]
[    2.920294] pci 0000:00:12.1: System wakeup disabled by ACPI
[    2.926588] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[    2.932895] pci 0000:00:12.2: reg 0x10: [mem 0xfe6ff800-0xfe6ff8ff]
[    2.939550] pci 0000:00:12.2: supports D1 D2
[    2.944020] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    2.950885] pci 0000:00:12.2: System wakeup disabled by ACPI
[    2.957182] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[    2.963484] pci 0000:00:13.0: reg 0x10: [mem 0xfe6fc000-0xfe6fcfff]
[    2.970675] pci 0000:00:13.0: System wakeup disabled by ACPI
[    2.976971] pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
[    2.983278] pci 0000:00:13.1: reg 0x10: [mem 0xfe6f7000-0xfe6f7fff]
[    2.990475] pci 0000:00:13.1: System wakeup disabled by ACPI
[    2.996783] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[    3.003100] pci 0000:00:13.2: reg 0x10: [mem 0xfe6ff400-0xfe6ff4ff]
[    3.009745] pci 0000:00:13.2: supports D1 D2
[    3.014221] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    3.021083] pci 0000:00:13.2: System wakeup disabled by ACPI
[    3.027383] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[    3.034561] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[    3.041716] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[    3.048603] pci 0000:00:14.4: System wakeup disabled by ACPI
[    3.054907] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
[    3.061217] pci 0000:00:14.5: reg 0x10: [mem 0xfe6f6000-0xfe6f6fff]
[    3.068407] pci 0000:00:14.5: System wakeup disabled by ACPI
[    3.074718] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
[    3.081748] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
[    3.088776] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
[    3.095810] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
[    3.102850] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
[    3.110194] pci 0000:01:05.0: [1002:9610] type 00 class 0x030000
[    3.116494] pci 0000:01:05.0: reg 0x10: [mem 0xd0000000-0xdfffffff pref]
[    3.123520] pci 0000:01:05.0: reg 0x14: [io  0x8000-0x80ff]
[    3.129364] pci 0000:01:05.0: reg 0x18: [mem 0xfe8f0000-0xfe8fffff]
[    3.135940] pci 0000:01:05.0: reg 0x24: [mem 0xfe700000-0xfe7fffff]
[    3.142517] pci 0000:01:05.0: supports D1 D2
[    3.147389] pci 0000:01:05.1: [1002:960f] type 00 class 0x040300
[    3.153686] pci 0000:01:05.1: reg 0x10: [mem 0xfe8e8000-0xfe8ebfff]
[    3.160280] pci 0000:01:05.1: supports D1 D2
[    3.165128] pci 0000:00:01.0: PCI bridge to [bus 01]
[    3.170331] pci 0000:00:01.0:   bridge window [io  0x8000-0x8fff]
[    3.176723] pci 0000:00:01.0:   bridge window [mem 0xfe700000-0xfe8fffff]
[    3.183838] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    3.192181] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    3.198481] pci 0000:02:00.0: reg 0x10: [io  0x9800-0x98ff]
[    3.204336] pci 0000:02:00.0: reg 0x18: [mem 0xfe9ff000-0xfe9fffff 64bit]
[    3.211454] pci 0000:02:00.0: reg 0x20: [mem 0xfdff0000-0xfdffffff 64bit pref]
[    3.219029] pci 0000:02:00.0: reg 0x30: [mem 0xfe9c0000-0xfe9dffff pref]
[    3.226116] pci 0000:02:00.0: supports D1 D2
[    3.230589] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.240045] pci 0000:00:06.0: PCI bridge to [bus 02]
[    3.245252] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    3.253789] pci 0000:00:06.0:   bridge window [mem 0xfe900000-0xfe9fffff]
[    3.260904] pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
[    3.269243] pci 0000:03:00.0: [197b:2361] type 00 class 0x010601
[    3.275603] pci 0000:03:00.0: reg 0x24: [mem 0xfeafe000-0xfeafffff]
[    3.282233] pci 0000:03:00.0: PME# supported from D3hot
[    3.288153] pci 0000:03:00.1: [197b:2361] type 00 class 0x010185
[    3.294467] pci 0000:03:00.1: reg 0x10: [io  0xb800-0xb807]
[    3.300313] pci 0000:03:00.1: reg 0x14: [io  0xb400-0xb403]
[    3.306157] pci 0000:03:00.1: reg 0x18: [io  0xb000-0xb007]
[    3.312007] pci 0000:03:00.1: reg 0x1c: [io  0xa800-0xa803]
[    3.317860] pci 0000:03:00.1: reg 0x20: [io  0xa400-0xa40f]
[    3.324073] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    3.334561] pci 0000:00:07.0: PCI bridge to [bus 03]
[    3.339771] pci 0000:00:07.0:   bridge window [io  0xa000-0xbfff]
[    3.346156] pci 0000:00:07.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    3.353508] pci 0000:04:05.0: [10b7:1700] type 00 class 0x020000
[    3.359833] pci 0000:04:05.0: reg 0x10: [mem 0xfebfc000-0xfebfffff]
[    3.366417] pci 0000:04:05.0: reg 0x14: [io  0xe800-0xe8ff]
[    3.372310] pci 0000:04:05.0: reg 0x30: [mem 0xfebc0000-0xfebdffff pref]
[    3.379379] pci 0000:04:05.0: supports D1 D2
[    3.383855] pci 0000:04:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.391246] pci 0000:04:07.0: [9710:9835] type 00 class 0x070002
[    3.397561] pci 0000:04:07.0: reg 0x10: [io  0xe400-0xe407]
[    3.403415] pci 0000:04:07.0: reg 0x14: [io  0xe000-0xe007]
[    3.409272] pci 0000:04:07.0: reg 0x18: [io  0xd800-0xd807]
[    3.415123] pci 0000:04:07.0: reg 0x1c: [io  0xd400-0xd407]
[    3.420976] pci 0000:04:07.0: reg 0x20: [io  0xd000-0xd007]
[    3.426826] pci 0000:04:07.0: reg 0x24: [io  0xc800-0xc80f]
[    3.433041] pci 0000:00:14.4: PCI bridge to [bus 04] (subtractive decode)
[    3.440153] pci 0000:00:14.4:   bridge window [io  0xc000-0xefff]
[    3.446545] pci 0000:00:14.4:   bridge window [mem 0xfeb00000-0xfebfffff]
[    3.453668] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    3.461968] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    3.470277] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    3.479310] pci 0000:00:14.4:   bridge window [mem 0xcff00000-0xdfffffff] (subtractive decode)
[    3.488336] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
[    3.497371] pci_bus 0000:00: on NUMA node 0
[    3.526211] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 12 *14 15)
[    3.533627] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 *7 10 11 12 14 15)
[    3.541043] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 *10 11 12 14 15)
[    3.548445] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 10 *11 12 14 15)
[    3.555863] ACPI: PCI Interrupt Link [LNKE] (IRQs *4 10 11 12 14 15)
[    3.563090] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 10 11 12 14 15) *0, disabled.
[    3.571508] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 10 11 12 14 *15)
[    3.578740] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 10 11 12 14 15) *0, disabled.
[    3.587115] ACPI: Enabled 1 GPEs in block 00 to 1F
[    3.592250] initcall acpi_init+0x0/0x26b returned 0 after 1190429 usecs
[    3.599195] calling  pnp_init+0x0/0xf @ 1
[    3.603484] initcall pnp_init+0x0/0xf returned 0 after 0 usecs
[    3.609613] calling  balloon_init+0x0/0x1fa @ 1
[    3.614362] initcall balloon_init+0x0/0x1fa returned -19 after 0 usecs
[    3.621208] calling  xen_setup_shutdown_event+0x0/0x30 @ 1
[    3.626956] initcall xen_setup_shutdown_event+0x0/0x30 returned -19 after 0 usecs
[    3.634797] calling  xenbus_probe_backend_init+0x0/0x23 @ 1
[    3.640711] initcall xenbus_probe_backend_init+0x0/0x23 returned 0 after 0 usecs
[    3.648466] calling  xenbus_probe_frontend_init+0x0/0x7b @ 1
[    3.654492] initcall xenbus_probe_frontend_init+0x0/0x7b returned 0 after 0 usecs
[    3.662329] calling  xen_acpi_pad_init+0x0/0x41 @ 1
[    3.667441] initcall xen_acpi_pad_init+0x0/0x41 returned -19 after 0 usecs
[    3.674657] calling  balloon_init+0x0/0xdd @ 1
[    3.679316] initcall balloon_init+0x0/0xdd returned -19 after 0 usecs
[    3.686076] calling  misc_init+0x0/0xad @ 1
[    3.690510] initcall misc_init+0x0/0xad returned 0 after 0 usecs
[    3.696805] calling  vga_arb_device_init+0x0/0xcc @ 1
[    3.702286] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    3.710818] vgaarb: loaded
[    3.713661] vgaarb: bridge control possible 0000:01:05.0
[    3.719228] initcall vga_arb_device_init+0x0/0xcc returned 0 after 16601 usecs
[    3.726808] calling  cn_init+0x0/0xb0 @ 1
[    3.731041] initcall cn_init+0x0/0xb0 returned 0 after 0 usecs
[    3.737155] calling  dma_buf_init+0x0/0x62 @ 1
[    3.741834] initcall dma_buf_init+0x0/0x62 returned 0 after 0 usecs
[    3.748399] calling  phy_init+0x0/0x2f @ 1
[    3.752909] initcall phy_init+0x0/0x2f returned 0 after 0 usecs
[    3.759121] calling  init_pcmcia_cs+0x0/0x32 @ 1
[    3.763993] initcall init_pcmcia_cs+0x0/0x32 returned 0 after 0 usecs
[    3.770748] calling  usb_init+0x0/0x14c @ 1
[    3.775148] ACPI: bus type USB registered
[    3.779559] usbcore: registered new interface driver usbfs
[    3.785413] usbcore: registered new interface driver hub
[    3.791112] usbcore: registered new device driver usb
[    3.796439] initcall usb_init+0x0/0x14c returned 0 after 21484 usecs
[    3.803103] calling  serio_init+0x0/0x2e @ 1
[    3.807658] initcall serio_init+0x0/0x2e returned 0 after 0 usecs
[    3.814045] calling  input_init+0x0/0xf1 @ 1
[    3.818572] initcall input_init+0x0/0xf1 returned 0 after 0 usecs
[    3.824963] calling  rtc_init+0x0/0x50 @ 1
[    3.829291] initcall rtc_init+0x0/0x50 returned 0 after 0 usecs
[    3.835493] calling  pps_init+0x0/0xa6 @ 1
[    3.839817] pps_core: LinuxPPS API ver. 1 registered
[    3.845021] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    3.854607] initcall pps_init+0x0/0xa6 returned 0 after 14648 usecs
[    3.861169] calling  ptp_init+0x0/0x8e @ 1
[    3.865495] PTP clock support registered
[    3.869601] initcall ptp_init+0x0/0x8e returned 0 after 3906 usecs
[    3.876088] calling  power_supply_class_init+0x0/0x39 @ 1
[    3.881780] initcall power_supply_class_init+0x0/0x39 returned 0 after 0 usecs
[    3.889355] calling  hwmon_init+0x0/0xda @ 1
[    3.893852] initcall hwmon_init+0x0/0xda returned 0 after 0 usecs
[    3.900246] calling  leds_init+0x0/0x36 @ 1
[    3.904659] initcall leds_init+0x0/0x36 returned 0 after 0 usecs
[    3.910951] calling  efisubsys_init+0x0/0x115 @ 1
[    3.915878] initcall efisubsys_init+0x0/0x115 returned 0 after 0 usecs
[    3.922721] calling  pci_subsys_init+0x0/0x48 @ 1
[    3.927647] PCI: Using ACPI for IRQ routing
[    3.932029] PCI: pci_cache_line_size set to 64 bytes
[    3.937286] e820: reserve RAM buffer [mem 0x0009f400-0x0009ffff]
[    3.943577] e820: reserve RAM buffer [mem 0xcfeb0000-0xcfffffff]
[    3.949872] initcall pci_subsys_init+0x0/0x48 returned 0 after 21484 usecs
[    3.957082] calling  proto_init+0x0/0xf @ 1
[    3.961473] initcall proto_init+0x0/0xf returned 0 after 0 usecs
[    3.967776] calling  net_dev_init+0x0/0x15d @ 1
[    3.973333] initcall net_dev_init+0x0/0x15d returned 0 after 976 usecs
[    3.980187] calling  neigh_init+0x0/0xa4 @ 1
[    3.984667] initcall neigh_init+0x0/0xa4 returned 0 after 0 usecs
[    3.991052] calling  fib_rules_init+0x0/0xbd @ 1
[    3.995896] initcall fib_rules_init+0x0/0xbd returned 0 after 0 usecs
[    4.002655] calling  pktsched_init+0x0/0x121 @ 1
[    4.007503] initcall pktsched_init+0x0/0x121 returned 0 after 0 usecs
[    4.014259] calling  tc_filter_init+0x0/0x6a @ 1
[    4.019091] initcall tc_filter_init+0x0/0x6a returned 0 after 0 usecs
[    4.025850] calling  tc_action_init+0x0/0x6a @ 1
[    4.030692] initcall tc_action_init+0x0/0x6a returned 0 after 0 usecs
[    4.037449] calling  genl_init+0x0/0x7a @ 1
[    4.041850] initcall genl_init+0x0/0x7a returned 0 after 0 usecs
[    4.048150] calling  cipso_v4_init+0x0/0x5a @ 1
[    4.052897] initcall cipso_v4_init+0x0/0x5a returned 0 after 0 usecs
[    4.059566] calling  netlbl_init+0x0/0x7d @ 1
[    4.064136] NetLabel: Initializing
[    4.067699] NetLabel:  domain hash size = 128
[    4.072265] NetLabel:  protocols = UNLABELED CIPSOv4
[    4.077521] NetLabel:  unlabeled traffic allowed by default
[    4.083355] initcall netlbl_init+0x0/0x7d returned 0 after 19531 usecs
[    4.090197] calling  rfkill_init+0x0/0x68 @ 1
[    4.094932] initcall rfkill_init+0x0/0x68 returned 0 after 0 usecs
[    4.101449] calling  xen_mcfg_late+0x0/0xa6 @ 1
[    4.106197] initcall xen_mcfg_late+0x0/0xa6 returned 0 after 0 usecs
[    4.112904] calling  xen_p2m_debugfs+0x0/0x49 @ 1
[    4.117856] initcall xen_p2m_debugfs+0x0/0x49 returned 0 after 0 usecs
[    4.124709] calling  xen_spinlock_debugfs+0x0/0x120 @ 1
[    4.130236] initcall xen_spinlock_debugfs+0x0/0x120 returned 0 after 0 usecs
[    4.137632] calling  nmi_warning_debugfs+0x0/0x26 @ 1
[    4.142940] initcall nmi_warning_debugfs+0x0/0x26 returned 0 after 0 usecs
[    4.150154] calling  hpet_late_init+0x0/0xe6 @ 1
[    4.155007] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    4.160420] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
[    4.168538] initcall hpet_late_init+0x0/0xe6 returned 0 after 13671 usecs
[    4.175652] calling  init_amd_nbs+0x0/0xb6 @ 1
[    4.180325] initcall init_amd_nbs+0x0/0xb6 returned 0 after 0 usecs
[    4.186898] calling  clocksource_done_booting+0x0/0x3b @ 1
[    4.192688] Switched to clocksource hpet
[    4.196824] initcall clocksource_done_booting+0x0/0x3b returned 0 after 4046 usecs
[    4.204768] calling  tracer_init_debugfs+0x0/0x165 @ 1
[    4.210688] initcall tracer_init_debugfs+0x0/0x165 returned 0 after 507 usecs
[    4.218186] calling  init_trace_printk_function_export+0x0/0x33 @ 1
[    4.224777] initcall init_trace_printk_function_export+0x0/0x33 returned 0 after 6 usecs
[    4.233279] calling  event_trace_init+0x0/0x1ee @ 1
[    4.258969] initcall event_trace_init+0x0/0x1ee returned 0 after 20107 usecs
[    4.266368] calling  init_kprobe_trace+0x0/0271510] initcall init_kprobe_trace+0x0/0x92 returned 0 after 11 usecs
[    4.278648] calling  init_pipe_fs+0x0/0x3d @ 1
[    4.283419] initcall init_pipe_fs+0x0/0x3d returned 0 after 103 usecs
[    4.290194] calling  eventpoll_init+0x0/0xd0 @ 1
[    4.295127] initcall eventpoll_init+0x0/0xd0 returned 0 after 88 usecs
[    4.301975] calling  anon_inode_init+0x0/0x56 @ 1
[    4.307019] initcall anon_inode_init+0x0/0x56 returned 0 after 96 usecs
[    4.313957] calling  proc_cmdline_init+0x0/0x27 @ 1
[    4.319091] initcall proc_cmdline_init+0x0/0x27 returned 0 after 7 usecs
[    4.326121] calling  proc_consoles_init+0x0/0x27 @ 1
[    4.331346] initcall proc_consoles_init+0x0/0x27 returned 0 after 6 usecs
[    4.338467] calling  proc_cpuinfo_init+0x0/0x27 @ 1
[    4.343603] initcall proc_cpuinfo_init+0x0/0x27 returned 0 after 6 usecs
[    4.350635] calling  proc_devices_init+0x0/0x27 @ 1
[    4.355775] initcall proc_devices_init+0x0/0x27 returned 0 after 5 usecs
[    4.362797] calling  proc_interrupts_init+0x0/0x27 @ 1
[    4.368191] initcall proc_interrupts_init+0x0/0x27 returned 0 after 5 usecs
[    4.375503] calling  proc_loadavg_init+0x0/0x27 @ 1
[    4.380618] initcall proc_loadavg_init+0x0/0x27 returned 0 after 5 usecs
[    4.387655] calling  proc_meminfo_init+0x0/0x27 @ 1
[    4.392779] initcall proc_meminfo_init+0x0/0x27 returned 0 after 6 usecs
[    4.399806] calling  proc_stat_init+0x0/0x27 @ 1
[    4.404655] initcall proc_stat_init+0x0/0x27 returned 0 after 6 usecs
[    4.411420] calling  proc_uptime_init+0x0/0x27 @ 1
[    4.416458] initcall proc_uptime_init+0x0/0x27 returned 0 after 5 usecs
[    4.423395] calling  proc_version_init+0x0/0x27 @ 1
[    4.428528] initcall proc_version_init+0x0/0x27 returned 0 after 6 usecs
[    4.435558] calling  proc_softirqs_init+0x0/0x27 @ 1
[    4.440785] initcall proc_softirqs_init+0x0/0x27 returned 0 after 6 usecs
[    4.447913] calling  proc_kcore_init+0x0/0xae @ 1
[    4.452864] initcall proc_kcore_init+0x0/0xae returned 0 after 8 usecs
[    4.459706] calling  vmcore_init+0x0/0x68b @ 1
[    4.464364] initcall vmcore_init+0x0/0x68b returned 0 after 0 usecs
[    4.470955] calling  proc_kmsg_init+0x0/0x2a @ 1
[    4.475803] initcall proc_kmsg_init+0x0/0x2a returned 0 after 5 usecs
[    4.482575] calling  proc_page_init+0x0/0x4a @ 1
[    4.487439] initcall proc_page_init+0x0/0x4a returned 0 after 15 usecs
[    4.494301] calling  init_ramfs_fs+0x0/0x44 @ 1
[    4.499134] initcall init_ramfs_fs+0x0/0x44 returned 0 after 67 usecs
[    4.505913] calling  blk_scsi_ioctl_init+0x0/0x288 @ 1
[    4.511307] initcall blk_scsi_ioctl_init+0x0/0x288 returned 0 after 1 usecs
[    4.518624] calling  acpi_event_init+0x0/0x37 @ 1
[    4.523585] initcall acpi_event_init+0x0/0x37 returned 0 after 26 usecs
[    4.530536] calling  pnp_system_init+0x0/0xf @ 1
[    4.535440] initcall pnp_system_init+0x0/0xf returned 0 after 54 usecs
[    4.542292] calling  pnpacpi_init+0x0/0x88 @ 1
[    4.546965] pnp: PnP ACPI init
[    4.550206] ACPI: bus type PNP registered
[    4.555615] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.563308] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    4.589832] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
[    4.597146] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
[    4.604098] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.613413] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    4.619643] system 00:03: [io  0x040b] has been reserved
[    4.625225] system 00:03: [io  0x04d6] has been reserved
[    4.630815] system 00:03: [io  0x0c00-0x0c01] has been reserved
[    4.637031] system 00:03: [io  0x0c14] has been reserved
[    4.642616] system 00:03: [io  0x0c50-0x0c51] has been reserved
[    4.648832] system 00:03: [io  0x0c52] has been reserved
[    4.654424] system 00:03: [io  0x0c6c] has been reserved
[    4.660008] system 00:03: [io  0x0c6f] has been reserved
[    4.665601] system 00:03: [io  0x0cd0-0x0cd1] has been reserved
[    4.671826] system 00:03: [io  0x0cd2-0x0cd3] has been reserved
[    4.678056] system 00:03: [io  0x0cd4-0x0cd5] has been reserved
[    4.684282] system 00:03: [io  0x0cd6-0x0cd7] has been reserved
[    4.690501] system 00:03: [io  0x0cd8-0x0cdf] has been reserved
[    4.696723] system 00:03: [io  0x0800-0x089f] could not be reserved
[    4.703300] system 00:03: [io  0x0b00-0x0b0f] has been reserved
[    4.709520] system 00:03: [io  0x0b20-0x0b3f] has been reserved
[    4.715739] system 00:03: [io  0x0900-0x090f] has been reserved
[    4.721960] system 00:03: [io  0x0910-0x091f] has been reserved
[    4.728179] system 00:03: [io  0xfe00-0xfefe] has been reserved
[    4.734393] system 00:03: [mem 0xffb80000-0xffbfffff] has been reserved
[    4.741355] system 00:03: [mem 0xfec10000-0xfec1001f] has been reserved
[    4.748303] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.757860] system 00:04: [io  0x0e00-0x0e0f] has been reserved
[    4.764083] system 00:04: [io  0x0e80-0x0e8f] has been reserved
[    4.770315] system 00:04: [io  0x0f40-0x0f4f] has been reserved
[    4.776529] system 00:04: [io  0x0a30-0x0a3f] has been reserved
[    4.782747] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.790429] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[    4.797387] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.806197] system 00:06: [mem 0x00000000-0x0009ffff] could not be reserved
[    4.813513] system 00:06: [mem 0x000c0000-0x000cffff] could not be reserved
[    4.820823] system 00:06: [mem 0x000e0000-0x000fffff] could not be reserved
[    4.828143] system 00:06: [mem 0x00100000-0xcfefffff] could not be reserved
[    4.835447] system 00:06: [mem 0xfec00000-0xffffffff] could not be reserved
[    4.842755] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    4.850721] pnp: PnP ACPI: found 7 devices
[    4.855023] ACPI: bus type PNP unregistered
[    4.859421] initcall pnpacpi_init+0x0/0x88 returned 0 after 305418 usecs
[    4.866458] calling  pcistub_init+0x0/0x280 @ 1
[    4.872012] initcall pcistub_init+0x0/0x280 returned 0 after 780 usecs
[    4.878868] calling  chr_dev_init+0x0/0xc9 @ 1
[    4.891079] kworker/u12:0 (512) used greatest stack depth: 6704 bytes left
[    4.894577] initcall chr_dev_init+0x0/0xc9 ret23] initcall firmware_class_init+0x0/0xd7 returned 0 after 35 usecs
[    4.894628] calling  init_pcmcia_bus+0x0/0x5e @ 1
[    4.894713] initcall init_pcmcia_bus+0x0/0x5e returned 0 after 78 usecs
[    4.894717] calling  thermal_init+0x0/0x78 @ 1
[    4.894780] initcall thermal_init+0x0/0x78 returned 0 after 58 usecs
[    4.894786] calling  cpufreq_gov_performance_init+0x0/0xf @ 1
[    4.894791] initcall cpufreq_gov_performance_init+0x0/0xf returned 0 after 2 usecs
[    4.894796] calling  init_acpi_pm_clocksource+0x0/0x18d @ 1
[    4.929353] initcall init_acpi_pm_clocksource+0x0/0x18d returned 0 after 33776 usecs
[    4.929358] calling  pcibios_assign_resources+0x0/0x8f @ 1
[    4.929405] pci 0000:00:01.0: PCI bridge to [bus 01]
[    4.929408] pci 0000:00:01.0:   bridge window [io  0x8000-0x8fff]
[    4.929413] pci 0000:00:01.0:   bridge window [mem 0xfe700000-0xfe8fffff]
[    4.929417] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    4.929423] pci 0000:00:06.0: PCI bridge to [bus 02]
[    4.929425] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    4.929431] pci 0000:00:06.0:   bridge window [mem 0xfe900000-0xfe9fffff]
[    4.929434] pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
[    4.929442] pci 0000:00:07.0: PCI bridge to [bus 03]
[    4.929443] pci 0000:00:07.0:   bridge window [io  0xa000-0xbfff]
[    4.929449] pci 0000:00:07.0:   bridge window [mem 0xfea00000-0xfeafffff]
[    4.929460] pci 0000:00:14.4: PCI bridge to [bus 04]
[    4.929462] pci 0000:00:14.4:   bridge window [io  0xc000-0xefff]
[    4.929470] pci 0000:00:14.4:   bridge window [mem 0xfeb00000-0xfebfffff]
[    4.929485] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    4.929486] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    4.929488] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    4.929489] pci_bus 0000:00: resource 7 [mem 0xcff00000-0xdfffffff]
[    4.929490] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfebfffff]
[    4.929491] pci_bus 0000:01: resource 0 [io  0x8000-0x8fff]
[    4.929492] pci_bus 0000:01: resource 1 [mem 0xfe700000-0xfe8fffff]
[    4.929493] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    4.929494] pci_bus 0000:02: resource 0 [io  0x9000-0x9fff]
[    4.929495] pci_bus 0000:02: resource 1 [mem 0xfe900000-0xfe9fffff]
[    4.929496] pci_bus 0000:02: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
[    4.929497] pci_bus 0000:03: resource 0 [io  0xa000-0xbfff]
[    4.929498] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
[    4.929500] pci_bus 0000:04: resource 0 [io  0xc000-0xefff]
[    4.929501] pci_bus 0000:04: resource 1 [mem 0xfeb00000-0xfebfffff]
[    4.929502] pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7]
[    4.929503] pci_bus 0000:04: resource 5 [io  0x0d00-0xffff]
[    4.929504] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
[    4.929505] pci_bus 0000:04: resource 7 [mem 0xcff00000-0xdfffffff]
[    4.929506] pci_bus 0000:04: resource 8 [mem 0xf0000000-0xfebfffff]
[    4.929509] initcall pcibios_assign_resources+0x0/0x8f returned 0 after 145 usecs
[    4.929514] calling  sysctl_core_init+0x0/0x23 @ 1
[    4.929537] initcall sysctl_core_init+0x0/0x23 returned 0 after 20 usecs
[    4.929542] calling  inet_init+0x0/0x25b @ 1
[    5.218383] NET: Registered protocol family 2
[    5.223741] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    5.231167] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    5.237951] TCP: Hash tables configured (established 8192 bind 8192)
[    5.244647] TCP: reno registered
[    5.248037] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    5.254257] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    5.261270] initcall inet_init+0x0/0x25b returned 0 after 324255 usecs
[    5.268128] calling  ipv4_offload_init+0x0/0x5d @ 1
[    5.273251] initcall ipv4_offload_init+0x0/0x5d returned 0 after 1 usecs
[    5.280294] calling  af_unix_init+0x0/0x4d @ 1
[    5.284988] NET: Registered protocol family 1
[    5.289573] initcall af_unix_init+0x0/0x4d returned 0 after 4514 usecs
[    5.296431] calling  ipv6_offload_init+0x0/0x7a @ 1
[    5.301554] initcall ipv6_offload_init+0x0/0x7a returned 0 after 1 usecs
[    5.308604] calling  init_sunrpc+0x0/0x5f @ 1
[    5.313533] RPC: Registered named UNIX socket transport module.
[    5.319757] RPC: Registered udp transport module.
[    5.324705] RPC: Registered tcp transport module.
[    5.329657] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.336428] initcall init_sunrpc+0x0/0x5f returned 0 after 22734 usecs
[    5.343307] calling  pci_apply_final_quirks+0x0/0x112 @ 1
[    5.348977] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    5.356229] pci 0000:00:12.0: already assigned IRQ14
[    5.362927] IOAPIC[0]: Set routing entry (4-16 -> 0x41 -> IRQ 16 Mode:1 Active:1 Dest:15)
[    5.371499] pci 0000:00:12.0: assigned new IRQ16
[    5.439991] pci 0000:00:12.1: already assigned IRQ14
[    5.446627] IOAPIC[0]: Set routing entry (4-16 -> 0x51 -> IRQ 16 Mode:1 Active:1 Dest:15)
[    5.455209] pci 0000:00:12.1: assigned new IRQ16
[    5.533832] pci 0000:00:12.2: already assigned IRQ7
[    5.540329] IOAPIC[0]: Set routing entry (4-17 -> 0x61 -> IRQ 17 Mode:12.2: assigned new IRQ17
[    5.555096] pci 0000:00:13.0: already assigned IRQ10
[    5.561712] IOAPIC[0]: Set routing entry (4-18 -> 0x71 -> IRQ 18 Mode:1 Active:1 Dest:15)
[    5.570298] pci 0000:00:13.0: assigned new IRQ18
[    5.648742] pci 0000:00:13.1: already assigned IRQ10
[    5.655375] IOAPIC[0]: Set routing entry (4-18 -> 0x81 -> IRQ 18 Mode:1 Active:1 Dest:15)
[    5.663965] pci 0000:00:13.1: assigned new IRQ18
[    5.742666] pci 0000:00:13.2: already assigned IRQ11
[    5.749305] IOAPIC[0]: Set routing entry (4-19 -> 0x91 -> IRQ 19 Mode:1 Active:1 Dest:15)
[    5.757899] pci 0000:00:13.2: assigned new IRQ19
[    5.764085] pci 0000:00:14.5: already assigned IRQ10
[    5.770691] IOAPIC[0]: Set routing entry (4-18 -> 0xa1 -> IRQ 18 Mode:1 Active:1 Dest:15)
[    5.779285] pci 0000:00:14.5: assigned new IRQ18
[    5.857557] pci 0000:01:05.0: Boot video device
[    5.862332] PCI: CLS 64 bytes, default 64
[    5.866554] initcall pci_ap/0x112 returned 0 after 505921 usecs
[    5.874605] calling  populate_rootfs+0x0/0xf9 @ 1
[    5.879707] Unpacking initramfs...
[    7.729446] microcode: updated early to new patch_level=0x010000db
[    7.763376] Freeing initrd memory: 83068K (f2adf000 - f7bfe000)
[    7.769609] initcall populate_rootfs+0x0/0xf9 returned 0  7.788688] calling  register_kernel_offset_dumper+0x0/0x16 @ 1
[    7.794910] initcall register_kernel_offset_dumper+0x0/0x16 returned 0 after 2 usecs
[    7.803043] calling  i8259A_init_ops+0x0/0x1d @ 1
[    7.807988] initcall i8259A_init_ops+0x0/0x1d returned 0 after 1 usecs
[    7.814844] calling  sbf_init+0x0/0xf1 @ 1
[    7.819147] initcall sbf_init+0x0/0xf1 returned 0 after 0 usecs
[    7.825362] calling  init_tsc_clocksource+0x0/0xa7 @ 1
[    7.830766] initcall init_tsc_clocksource+0x0/0xa7 returned 0 after 2 usecs
[    7.838075] calling  add_rtc_cmos+0x0/0x99 @ 1
[    7.842743] initcall add_rtc_cmos+0x0/0x99 returned 0 after 2 usecs
[    7.849324] calling  i8237A_init_ops+0x0/0x11 @ 1
[    7.854274] initcall i8237A_init_ops+0x0/0x11 returned 0 after 1 usecs
[    7.861136] calling  cache_sysfs_init+0x0/0x69 @ 1
[    7.867518] initcall cache_sysfs_init+0x0/0x69 returned 0 after 1311 usecs
[    7.874737] calling  amd_uncore_init+0x0/0x111 @ 1
[    7.879765] initcall amd_uncore_init+0x0/0x111 returned -19 after 1 usecs
[    7.886894] calling  intel_uncore_init+0x0/0x3ea @ 1
[    7.892109] initcall intel_uncore_init+0x0/0x3ea returned -19 after 2 usecs
[    7.899429] calling  rapl_pmu_init+0x0/0x194 @ 1
[    7.904280] initcall rapl_pmu_init+0x0/0x194 returned 0 after 1 usecs
[    7.911054] calling  inject_init+0x0/0x30 @ 1
[    7.915632] Machine check injector initialized
[    7.920311] initcall inject_init+0x0/0x30 returned 0 after 4572 usecs
[    7.927079] calling  thermal_throttle_init_device+0x0/0x6d @ 1
[    7.933201] initcall thermal_throttle_init_device+0x0/0x6d returned 0 after 1 usecs
[    7.941250] calling  microcode_init+0x0/0x18c @ 1
[    7.946328] microcode: CPU0: patch_level=0x010000db
[    7.951480] microcode: CPU1: patch_level=0x01000086
[    7.956635] microcode: CPU2: patch_level=0x01000086
[    7.961787] microcode: CPU3: patch_level=0x01000086
[    7.967107] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    7.976355] initcall microcode_init+0x0/0x18c returned 0 after 29479 usecs
[    7.983582] calling  amd_ibs_init+0x0/0x21f @ 1
[    7.988340] LVT offset 1 assigned for vector 0x400
[    7.993375] IBS: LVT offset 1 assigned
[    7.997423] perf: AMD IBS detected (0x0000001f)
[    8.002178] initcall amd_ibs_init+0x0/0x21f returned 0 after 13526 usecs
[    8.009216] calling  msr_init+0x0/0x153 @ 1
[    8.014275] initcall msr_init+0x0/0x153 returned 0 after 647 usecs
[    8.020794] calling  cpuid_init+0x0/0x153 @ 1
[    8.025989] initcall cpuid_init+0x0/0x153 returned 0 after 607 usecs
[    8.032672] calling  ioapic_init_ops+0x0/0x11 @ 1
[    8.037614] initcall ioapic_init_ops+0x0/0x11 returned 0 after 0 usecs
[    8.044467] calling  add_pcspkr+0x0/0x3b @ 1
[    8.049038] initcall add_pcspkr+0x0/0x3b returned 0 after 84 usecs
[    8.055536] calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
[    8.062302] Scanning for low memory corruption every 60 seconds
[    8.068516] initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 6073 usecs
[    8.077479] calling  sysfb_init+0x0/0x80 @ 1
[    8.082070] initcall sysfb_init+0x0/0x80 returned 0 after 105 usecs
[    8.088654] calling  pt_dump_init+0x0/0x70 @ 1
[    8.093329] initcall pt_dump_init+0x0/0x70 returned 0 after 11 usecs
[    8.099995] calling  aes_init+0x0/0xf @ 1
[    8.104288] initcall aes_init+0x0/0xf returned 0 after 83 usecs
[    8.110516] calling  proc_execdomains_init+0x0/0x27 @ 1
[    8.116025] initcall proc_execdomains_init+0x0/0x27 returned 0 after 19 usecs
[    8.123531] calling  ioresources_init+0x0/0x44 @ 1
[    8.128578] initcall ioresources_init+0x0/0x44 returned 0 after 11 usecs
[    8.135616] calling  snapshot_device_init+0x0/0xf @ 1
[    8.141085] initcall snapshot_device_init+0x0/0xf returned 0 after 154 usecs
[    8.148501] calling  irq_pm_init_ops+0x0/0x11 @ 1
[    8.153439] initcall irq_pm_init_ops+0x0/0x11 returned 0 after 1 usecs
[    8.160304] calling  init_posix_timers+0x0/0x22b @ 1
[    8.165595] initcall init_posix_timers+0x0/0x22b returned 0 after 66 usecs
[    8.172828] calling  init_posix_cpu_timers+0x0/0x9b @ 1
[    8.178316] initcall init_posix_cpu_timers+0x0/0x9b returned 0 after 1 usecs
[    8.185728] calling  timekeeping_init_ops+0x0/0x11 @ 1
[    8.191131] initcall timekeeping_init_ops+0x0/0x11 returned 0 after 0 usecs
[    8.198454] calling  init_clocksource_sysfs+0x0/0x58 @ 1
[    8.204233] initcall init_clocksource_sysfs+0x0/0x58 returned 0 after 198 usecs
[    8.211933] calling  init_timer_list_procfs+0x0/0x30 @ 1
[    8.217521] initcall init_timer_list_procfs+0x0/0x30 returned 0 after 7 usecs
[    8.225020] calling  alarmtimer_init+0x0/0x151 @ 1
[    8.230229] initcall alarmtimer_init+0x0/0x151 returned 0 after 173 usecs
[    8.237362] calling  clockevents_init_sysfs+0x0/0xa3 @ 1
[    8.243617] initcall clockevents_init_sysfs+0x0/0xa3 returned 0 after 647 usecs
[    8.251310] calling  init_tstats_procfs+0x0/0x30 @ 1
[    8.256529] initcall init_tstats_procfs+0x0/0x30 returned 0 after 7 usecs
[    8.263663] calling  futex_init+0x0/0xe6 @ 1
[    8.268147] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    8.274770] initcall futex_init+0x0/0xe6 returned 0 after 6476 usecs
[    8.281460] calling  proc_dma_init+0x0/0x27 @ 1
[    8.286219] initcall proc_dma_init+0x0/0x27 returned 0 after 6 usecs
[    8.292906] calling  proc_modules_init+0x0/0x27 @ 1
[    8.298040] initcall proc_modules_init+0x0/0x27 returned 0 after 6 usecs
[    8.305082] calling  kallsyms_init+0x0/0x2a @ 1
[    8.309860] initcall kallsyms_init+0x0/0x2a returned 0 after 8 usecs
[    8.316526] calling  pid_namespaces_init+0x0/0x32 @ 1
[    8.321875] initcall pid_namespaces_init+0x0/0x32 returned 0 after 33 usecs
[    8.329186] calling  ikconfig_init+0x0/0x41 @ 1
[    8.333956] initcall ikconfig_init+0x0/0x41 returned 0 after 7 usecs
[    8.340628] calling  audit_init+0x0/0xed @ 1
[    8.345120] audit: initializing netlink subsys (disabled)
[    8.350832] audit: type=2000 audit(1405440292.728:1): initialized
[    8.357230] initcall audit_init+0x0/0xed returned 0 after 11836 usecs
[    8.364009] calling  audit_watch_init+0x0/0x31 @ 1
[    8.369044] initcall audit_watch_init+0x0/0x31 returned 0 after 3 usecs
[    8.376011] calling  audit_tree_init+0x0/0x3b @ 1
[    8.380953] initcall audit_tree_init+0x0/0x3b returned 0 after 3 usecs
[    8.387815] calling  init_kprobes+0x0/0x177 @ 1
[    8.393023] initcall init_kprobes+0x0/0x177 returned 0 after 436 usecs
[    8.399887] calling  utsname_sysctl_init+0x0/0x11 @ 1
[    8.405197] initcall utsname_sysctl_init+0x0/0x11 returned 0 after 14 usecs
[    8.412512] calling  init_tracepoints+0x0/0x29 @ 1
[    8.417541] initcall init_tracepoints+0x0/0x29 returned 0 after 0 usecs
[    8.424515] calling  init_blk_tracer+0x0/0x56 @ 1
[    8.429462] initcall init_blk_tracer+0x0/0x56 returned 0 after 2 usecs
[    8.436322] calling  perf_event_sysfs_init+0x0/0x8f @ 1
[    8.442562] initcall perf_event_sysfs_init+0x0/0x8f returned 0 after 732 usecs
[    8.450142] calling  init_per_zone_wmark_min+0x0/0x9d @ 1
[    8.455820] initcall init_per_zone_wmark_min+0x0/0x9d returned 0 after 4 usecs
[    8.463405] calling  kswapd_init+0x0/0x1d @ 1
[    8.468115] initcall kswapd_init+0x0/0x1d returned 0 after 137 usecs
[    8.474802] calling  extfrag_debug_init+0x0/0x7b @ 1
[    8.480037] initcall extfrag_debug_init+0x0/0x7b returned 0 after 21 usecs
[    8.487269] calling  setup_vmstat+0x0/0xcf @ 1
[    8.491962] initcall setup_vmstat+0x0/0xcf returned 0 after 26 usecs
[    8.498637] calling  mm_compute_batch_init+0x0/0x51 @ 1
[    8.504133] initcall mm_compute_batch_init+0x0/0x51 returned 0 after 0 usecs
[    8.511541] calling  slab_proc_init+0x0/0x2a @ 1
[    8.516401] initcall slab_proc_init+0x0/0x2a returned 0 after 6 usecs
[    8.523164] calling  workingset_init+0x0/0x38 @ 1
[    8.528111] initcall workingset_init+0x0/0x38 returned 0 after 5 usecs
[    8.534959] calling  proc_vmalloc_init+0x0/0x2a @ 1
[    8.540104] initcall proc_vmalloc_init+0x0/0x2a returned 0 after 6 usecs
[    8.547150] calling  procswaps_init+0x0/0x27 @ 1
[    8.552016] initcall procswaps_init+0x0/0x27 returned 0 after 6 usecs
[    8.558778] calling  init_frontswap+0x0/0x84 @ 1
[    8.563668] initcall init_frontswap+0x0/0x84 returned 0 after 30 usecs
[    8.570531] calling  hugetlb_init+0x0/0x3d8 @ 1
[    8.575290] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    8.582045] initcall hugetlb_init+0x0/0x3d8 returned 0 after 6602 usecs
[    8.588990] calling  slab_proc_init+0x0/0x7 @ 1
[    8.593752] initcall slab_proc_init+0x0/0x7 returned 0 after 0 usecs
[    8.600437] calling  cpucache_init+0x0/0x40 @ 1
[    8.605202] initcall cpucache_init+0x0/0x40 returned 0 after 1 usecs
[    8.611877] calling  init_cleancache+0x0/0xa8 @ 1
[    8.616843] initcall init_cleancache+0x0/0xa8 returned 0 after 29 usecs
[    8.623791] calling  zs_init+0x0/0x90 @ 1
[    8.628009] initcall zs_init+0x0/0x90 returned 0 after 3 usecs
[    8.634132] calling  fcntl_init+0x0/0x2f @ 1
[    8.638664] initcall fcntl_init+0x0/0x2f returned 0 after 36 usecs
[    8.645152] calling  proc_filesystems_init+0x0/0x27 @ 1
[    8.650654] initcall proc_filesystems_init+0x0/0x27 returned 0 after 6 usecs
[    8.658052] calling  dio_init+0x0/0x32 @ 1
[    8.662402] initcall dio_init+0x0/0x32 returned 0 after 49 usecs
[    8.668721] calling  fsnotify_mark_init+0x0/0x46 @ 1
[    8.674003] initcall fsnotify_mark_init+0x0/0x46 returned 0 after 67 usecs
[    8.681235] calling  dnotify_init+0x0/0x7c @ 1
[    8.685978] initcall dnotify_init+0x0/0x7c returned 0 after 73 usecs
[    8.692645] calling  inotify_user_setup+0x0/0x50 @ 1
[    8.697901] initcall inotify_user_setup+0x0/0x50 returned 0 after 34 usecs
[    8.705121] calling  aio_setup+0x0/0x7e @ 1
[    8.709686] initcall aio_setup+0x0/0x7e returned 0 after 167 usecs
[    8.716175] calling  proc_locks_init+0x0/0x27 @ 1
[    8.721130] initcall proc_locks_init+0x0/0x27 returned 0 after 6 usecs
[    8.727988] calling  dquot_init+0x0/0x116 @ 1
[    8.732571] VFS: Disk quotas dquot_6.5.2
[    8.736846] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    8.743697] initcall dquot_init+0x0/0x116 returned 0 after 10874 usecs
[    8.750563] calling  init_v2_quota_format+0x0/0x1d @ 1
[    8.755967] initcall init_v2_quota_format+0x0/0x1d returned 0 after 1 usecs
[    8.763292] calling  quota_init+0x0/0x2e @ 1
[    8.767814] initcall quota_init+0x0/0x2e returned 0 after 25 usecs
[    8.774307] calling  init_devpts_fs+0x0/0x52 @ 1
[    8.779285] initcall init_devpts_fs+0x0/0x52 returned 0 after 116 usecs
[    8.786243] calling  init_hugetlbfs_fs+0x0/0x145 @ 1
[    8.791690] initcall init_hugetlbfs_fs+0x0/0x145 returned 0 after 221 usecs
[    8.799007] calling  init_fat_fs+0x0/0x4c @ 1
[    8.803661] initcall init_fat_fs+0x0/0x4c returned 0 after 70 usecs
[    8.810236] calling  init_vfat_fs+0x0/0xf @ 1
[    8.814813] initcall init_vfat_fs+0x0/0xf returned 0 after 1 usecs
[    8.821319] calling  init_msdos_fs+0x0/0xf @ 1
[    8.825985] initcall init_msdos_fs+0x0/0xf returned 0 after 1 usecs
[    8.832573] calling  init_iso9660_fs+0x0/0x69 @ 1
[    8.837560] initcall init_iso9660_fs+0x0/0x69 returned 0 after 49 usecs
[    8.844501] calling  init_nfs_fs+0x0/0x142 @ 1
[    8.849628] initcall init_nfs_fs+0x0/0x142 returned 0 after 444 usecs
[    8.856395] calling  init_nfs_v2+0x0/0x11 @ 1
[    8.860980] initcall init_nfs_v2+0x0/0x11 returned 0 after 1 usecs
[    8.867474] calling  init_nfs_v3+0x0/0x11 @ 1
[    8.872057] initcall init_nfs_v3+0x0/0x11 returned 0 after 1 usecs
[    8.878551] calling  init_nfs_v4+0x0/0x30 @ 1
[    8.883123] NFS: Registering the id_resolver key type
[    8.888451] Key type id_resolver registered
[    8.892844] Key type id_legacy registered
[    8.897066] initcall init_nfs_v4+0x0/0x30 returned 0 after 13628 usecs
[    8.903946] calling  init_nlm+0x0/0x3b @ 1
[    8.908278] initcall init_nlm+0x0/0x3b returned 0 after 15 usecs
[    8.914593] calling  init_nls_cp437+0x0/0x11 @ 1
[    8.919448] initcall init_nls_cp437+0x0/0x11 returned 0 after 1 usecs
[    8.926224] calling  init_nls_ascii+0x0/0x11 @ 1
[    8.931086] initcall init_nls_ascii+0x0/0x11 returned 0 after 1 usecs
[    8.937850] calling  init_nls_iso8859_1+0x0/0x11 @ 1
[    8.943069] initcall init_nls_iso8859_1+0x0/0x11 returned 0 after 0 usecs
[    8.950222] calling  init_nls_utf8+0x0/0x23 @ 1
[    8.954996] initcall init_nls_utf8+0x0/0x23 returned 0 after 1 usecs
[    8.961680] calling  init_ntfs_fs+0x0/0x1c9 @ 1
[    8.966443] ntfs: driver 2.1.30 [Flags: R/W].
[    8.971213] initcall init_ntfs_fs+0x0/0x1c9 returned 0 after 4661 usecs
[    8.978166] calling  init_autofs4_fs+0x0/0x26 @ 1
[    8.983195] tsc: Refined TSC clocksource calibration: 3000.106 MHz
[    8.983305] initcall init_autofs4_fs+0x0/0x26 returned 0 after 178 usecs
[    8.983311] calling  init_pstore_fs+0x0/0x41 @ 1
[    8.983332] initcall init_pstore_fs+0x0/0x41 returned 0 after 17 usecs
[    8.983337] calling  ipc_init+0x0/0x20 @ 1
[    8.983353] msgmni has been set to 1688
[    8.983375] initcall ipc_init+0x0/0x20 returned 0 after 34 usecs
[    8.983380] calling  ipc_sysctl_init+0x0/0x11 @ 1
[    8.983399] initcall ipc_sysctl_init+0x0/0x11 returned 0 after 14 usecs
[    8.983404] calling  init_mqueue_fs+0x0/0x91 @ 1
[    9.039869] initcall init_mqueue_fs+0x0/0x91 returned 0 after 55190 usecs
[    9.047010] calling  key_proc_init+0x0/0x64 @ 1
[    9.051805] initcall key_proc_init+0x0/0x64 returned 0 after 25 usecs
[    9.058584] calling  selinux_nf_ip_init+0x0/0x65 @ 1
[    9.063817] initcall selinux_nf_ip_init+0x0/0x65 returned 0 after 4 usecs
[    9.070959] calling  init_sel_fs+0x0/0x8b @ 1
[    9.075557] initcall init_sel_fs+0x0/0x8b returned 0 after 4 usecs
[    9.082060] calling  selnl_init+0x0/0x53 @ 1
[    9.086577] initcall selnl_init+0x0/0x53 returned 0 after 25 usecs
[    9.093085] calling  sel_netif_init+0x0/0x54 @ 1
[    9.097945] initcall sel_netif_init+0x0/0x54 returned 0 after 0 usecs
[    9.104716] calling  sel_netnode_init+0x0/0x5f @ 1
[    9.109758] initcall sel_netnode_init+0x0/0x5f returned 0 after 0 usecs
[    9.116723] calling  sel_netport_init+0x0/0x5f @ 1
[    9.121763] initcall sel_netport_init+0x0/0x5f returned 0 after 0 usecs
[    9.128716] calling  aurule_init+0x0/0x2d @ 1
[    9.133312] initcall aurule_init+0x0/0x2d returned 0 after 10 usecs
[    9.139919] calling  crypto_algapi_init+0x0/0xc @ 1
[    9.145066] initcall crypto_algapi_init+0x0/0xc returned 0 after 16 usecs
[    9.152224] calling  chainiv_module_init+0x0/0xf @ 1
[    9.157450] initcall chainiv_module_init+0x0/0xf returned 0 after 4 usecs
[    9.164588] calling  eseqiv_module_init+0x0/0xf @ 1
[    9.169730] initcall eseqiv_module_init+0x0/0xf returned 0 after 4 usecs
[    9.176790] calling  hmac_module_init+0x0/0xf @ 1
[    9.181743] initcall hmac_module_init+0x0/0xf returned 0 after 4 usecs
[    9.188608] calling  md5_mod_init+0x0/0xf @ 1
[    9.193289] initcall md5_mod_init+0x0/0xf returned 0 after 95 usecs
[    9.199879] calling  sha1_generic_mod_init+0x0/0xf @ 1
[    9.205372] initcall sha1_generic_mod_init+0x0/0xf returned 0 after 74 usecs
[    9.212783] calling  crypto_cbc_module_init+0x0/0xf @ 1
[    9.218278] initcall crypto_cbc_module_init+0x0/0xf returned 0 after 0 usecs
[    9.225702] calling  des_generic_mod_init+0x0/0x14 @ 1
[    9.231258] initcall des_generic_mod_init+0x0/0x14 returned 0 after 141 usecs
[    9.238772] calling  aes_init+0x0/0xf @ 1
[    9.243080] initcall aes_init+0x0/0xf returned 0 after 83 usecs
[    9.249309] calling  zlib_mod_init+0x0/0xf @ 1
[    9.254066] initcall zlib_mod_init+0x0/0xf returned 0 after 83 usecs
[    9.260745] calling  crypto_authenc_module_init+0x0/0xf @ 1
[    9.266612] initcall crypto_authenc_module_init+0x0/0xf returned 0 after 0 usecs
[    9.274386] calling  crypto_authenc_esn_module_init+0x0/0xf @ 1
[    9.280609] initcall crypto_authenc_esn_module_init+0x0/0xf returned 0 after 0 usecs
[    9.288750] calling  krng_mod_init+0x0/0xf @ 1
[    9.293507] initcall krng_mod_init+0x0/0xf returned 0 after 83 usecs
[    9.300189] calling  proc_genhd_init+0x0/0x44 @ 1
[    9.305147] initcall proc_genhd_init+0x0/0x44 returned 0 after 12 usecs
[    9.312106] calling  init_emergency_pool+0x0/0x53 @ 1
[    9.317433] bounce: pool size: 64 pages
[    9.321466] initcall init_emergency_pool+0x0/0x53 returned 0 after 3954 usecs
[    9.328970] calling  bsg_init+0x0/0x119 @ 1
[    9.333442] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    9.341222] initcall bsg_init+0x0/0x119 returned 0 after 7674 usecs
[    9.347820] calling  noop_init+0x0/0xf @ 1
[    9.352143] io scheduler noop registered
[    9.356286] initcall noop_init+0x0/0xf returned 0 after 4050 usecs
[    9.362794] calling  deadline_init+0x0/0xf @ 1
[    9.367478] io scheduler deadline registered
[    9.371977] initcall deadline_init+0x0/0xf returned 0 after 4400 usecs
[    9.378838] calling  cfq_init+0x0/0x89 @ 1
[    9.383234] io scheduler cfq registered (default)
[    9.388180] initcall cfq_init+0x0/0x89 returned 0 after 4908 usecs
[    9.394679] calling  percpu_counter_startup+0x0/0x35 @ 1
[    9.400287] initcall percpu_counter_startup+0x0/0x35 returned 0 after 6 usecs
[    9.407803] calling  audit_classes_init+0x0/0x4f @ 1
[    9.413053] initcall audit_classes_init+0x0/0x4f returned 0 after 19 usecs
[    9.420280] calling  phy_core_init+0x0/0x45 @ 1
[    9.425086] initcall phy_core_init+0x0/0x45 returned 0 after 34 usecs
[    9.431869] calling  pci_proc_init+0x0/0x64 @ 1
[    9.436866] initcall pci_proc_init+0x0/0x64 returned 0 after 217 usecs
[    9.443737] calling  pcie_portdrv_init+0x0/0x6f @ 1
[    9.449029] pcieport 0000:00:06.0: already assigned IRQ10
[    9.456460] IOAPIC[0]: Set routing entry (4-18 -> 0xb1 -> IRQ 18 Mode:1 Active:1 Dest:15)
[    9.465056] pcieport 0000:00:06.0: assigned new IRQ18
[    9.470436] pcieport 0000:00:06.0: irq 24 for MSI/MSI-X
[    9.476112] pcieport 0000:00:07.0: already assigned IRQ11
[    9.483487] IOAPIC[0]: Set routing entry (4-19 -> 0xd1 -> IRQ 19 Mode:1 Active:1 Dest:15)
[    9.492077] pcieport 0000:00:07.0: assigned new IRQ19
[    9.497448] pcieport 0000:00:07.0: irq 25 for MSI/MSI-X
[    9.503163] initcall pcie_portdrv_init+0x0/0x6f returned 0 after 53059 usecs
[    9.510584] calling  aer_service_init+0x0/0x28 @ 1
[    9.515703] initcall aer_service_init+0x0/0x28 returned 0 after 66 usecs
[    9.522754] calling  pci_hotplug_init+0x0/0x1e @ 1
[    9.527806] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    9.533671] initcall pci_hotplug_init+0x0/0x1e returned 0 after 5733 usecs
[    9.540914] calling  pcied_init+0x0/0x76 @ 1
[    9.545536] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    9.552489] initcall pcied_init+0x0/0x76 returned 0 after 6917 usecs
[    9.559184] calling  pcifront_init+0x0/0x41 @ 1
[    9.563957] initcall pcifront_init+0x0/0x41 returned -19 after 5 usecs
[    9.570837] calling  genericbl_driver_init+0x0/0x11 @ 1
[    9.576391] initcall genericbl_driver_init+0x0/0x11 returned 0 after 52 usecs
[    9.583902] calling  cirrusfb_init+0x0/0xaa @ 1
[    9.588748] initcall cirrusfb_init+0x0/0xaa returned 0 after 70 usecs
[    9.595528] calling  efifb_driver_init+0x0/0x11 @ 1
[    9.600717] initcall efifb_driver_init+0x0/0x11 returned 0 after 51 usecs
[    9.607850] calling  intel_idle_init+0x0/0x2ec @ 1
[    9.612906] initcall intel_idle_init+0x0/0x2ec returned -19 after 6 usecs
[    9.620052] calling  acpi_reserve_resources+0x0/0xc8 @ 1
[    9.625668] initcall acpi_reserve_resources+0x0/0xc8 returned 0 after 13 usecs
[    9.633264] calling  acpi_ac_init+0x0/0x25 @ 1
[    9.638024] initcall acpi_ac_init+0x0/0x25 returned 0 after 76 usecs
[    9.644712] calling  acpi_button_driver_init+0x0/0xf @ 1
[    9.650692] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    9.659477] ACPI: Power Button [PWRB]
[    9.663706] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    9.671500] ACPI: Power Button [PWRF]
[    9.675409] initcall acpi_button_driver_init+0x0/0xf returned 0 after 24540 usecs
[    9.683282] calling  acpi_fan_driver_init+0x0/0xf @ 1
[    9.688664] initcall acpi_fan_driver_init+0x0/0xf returned 0 after 57 usecs
[    9.695983] calling  acpi_processor_driver_init+0x0/0x3e @ 1
[    9.702003] ACPI: processor limited to max C-state 1
[    9.707981] initcall acpi_processor_driver_init+0x0/0x3e returned 0 after 5905 usecs
[    9.716127] calling  acpi_thermal_init+0x0/0x8c @ 1
[    9.724143] thermal LNXTHERM:00: registered as thermal_zone0
[    9.730101] ACPI: Thermal Zone [THRM] (30 C)
[    9.734626] initcall acpi_thermal_init+0x0/0x8c returned 0 after 13060 usecs
[    9.742043] calling  acpi_battery_init+0x0/0x13 @ 1
[    9.747179] initcall acpi_battery_init+0x0/0x13 returned 0 after 9 usecs
[    9.747191] calling  1_acpi_battery_init_async+0x0/0x22 @ 6
[    9.747274] initcall 1_acpi_battery_init_async+0x0/0x22 returned 0 after 76 usecs
[    9.767925] calling  acpi_hed_driver_init+0x0/0xf @ 1
[    9.773300] initcall acpi_hed_driver_init+0x0/0xf returned 0 after 58 usecs
[    9.780601] calling  erst_init+0x0/0x2fa @ 1
[    9.785089] initcall erst_init+0x0/0x2fa returned 0 after 1 usecs
[    9.791495] calling  ghes_init+0x0/0x165 @ 1
[    9.795973] GHES: HEST is not enabled!
[    9.799911] initcall ghes_init+0x0/0x165 returned -22 after 3848 usecs
[    9.806761] calling  einj_init+0x0/0x4ef @ 1
[    9.811250] initcall einj_init+0x0/0x4ef returned -19 after 0 usecs
[    9.817837] calling  ioat_init_module+0x0/0xb0 @ 1
[    9.822867] ioatdma: Intel(R) QuickData Technology Driver 4.00
[    9.829203] initcall ioat_init_module+0x0/0xb0 returned 0 after 6192 usecs
[    9.836438] calling  virtio_mmio_init+0x0/0x11 @ 1
[    9.841516] initcall virtio_mmio_init+0x0/0x11 returned 0 after 48 usecs
[    9.848549] calling  virtio_balloon_driver_init+0x0/0xf @ 1
[    9.854465] initcall virtio_balloon_driver_init+0x0/0xf returned 0 after 47 usecs
[    9.862337] calling  xenbus_probe_initcall+0x0/0x35 @ 1
[    9.867827] initcall xenbus_probe_initcall+0x0/0x35 returned -19 after 1 usecs
[    9.875419] calling  xenbus_init+0x0/0x37 @ 1
[    9.879989] initcall xenbus_init+0x0/0x37 returned -19 after 0 usecs
[    9.886673] calling  xenbus_backend_init+0x0/0x48 @ 1
[    9.891972] initcall xenbus_backend_init+0x0/0x48 returned -19 after 1 usecs
[    9.899386] calling  gntdev_init+0x0/0x48 @ 1
[    9.903965] initcall gntdev_init+0x0/0x48 returned -19 after 1 usecs
[    9.910650] calling  gntalloc_init+0x0/0x37 @ 1
[    9.915397] initcall gntalloc_init+0x0/0x37 returned -19 after 0 usecs
[    9.922260] calling  hypervisor_subsys_init+0x0/0x21 @ 1
[    9.927839] initcall hypervisor_subsys_init+0x0/0x21 returned -19 after 0 usecs
[    9.935533] calling  hyper_sysfs_init+0x0/0xcc @ 1
[    9.940568] initcall hyper_sysfs_init+0x0/0xcc returned -19 after 0 usecs
[    9.947709] calling  platform_pci_module_init+0x0/0x16 @ 1
[    9.953540] initcall platform_pci_module_init+0x0/0x16 returned 0 after 67 usecs
[    9.961328] calling  xen_pcibk_init+0x0/0x110 @ 1
[    9.966264] initcall xen_pcibk_init+0x0/0x110 returned -19 after 1 usecs
[    9.973318] calling  xen_acpi_processor_init+0x0/0x1f7 @ 1
[    9.979079] initcall xen_acpi_processor_init+0x0/0x1f7 returned -19 after 0 usecs
[    9.986949] calling  pty_init+0x0/0x3d9 @ 1
[   10.038373] Switched to clocksource tsc
[   10.055493] initcall pty_init+0x0/0x3d9 returned 0 after 62706 usecs
[   10.0621  10.066668] initcall sysrq_init+0x0/0xbe returned 0 after 9 usecs
[   10.073060] calling  xen_hvc_init+0x0/0x1d5 @ 1
[   10.077818] initcall xen_hvc_init+0x0/0x1d5 returned -19 after 0 usecs
[   10.084674] calling  serial8250_init+0x0/0x16d @ 1
[   10.089704] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[   10.098000] initcall serial8250_init+0x0/0x16d returned 0 after 8107 usecs
[   10.105226] calling  serial_pci_driver_init+0x0/0x16 @ 1
[   10.110879] serial 0000:04:07.0: already assigned IRQ15
[   10.116915] IOAPIC[0]: Set routing entry (4-22 -> 0x22 -> IRQ 22 Mode:1 Active:1 Dest:15)
[   10.125505] serial 0000:04:07.0: assigned new IRQ22
[   10.151295] 0000:04:07.0: ttyS0 at I/O 0xe400 (irq = 22, base_baud = 115200) is a 16550A
[   10.159806] console [ttyS0] enab/0x15 @ 1
[   10.187975] initcall init_kgdboc+0x0/0x15 returned 0 after 0 usecs
[   10.194341] calling  init+0x0/0xf3 @ 1
[   10.198342] initcall init+0x0/0xf3 returned 0 after 139 usecs
[   10.204262] calling  hpet_init+0x0/0x57 @ 1
[   10.209047] initcall hpet_init+0x0/0x57 returned 0 after 468 usecs
[   10.215419] calling  nvram_init+0x0/0x7e @ 1
[   10.219944] Non-volatile memory driver v1.3
[   10.224256] initcall nvram_init+0x0/0x7e returned 0 after 4337 usecs
[   10.230806] calling  mod_init+0x0/0x1b6 @ 1
[   10.235148] initcall mod_init+0x0/0x1b6 returned -19 after 31 usecs
[   10.241609] calling  mod_init+0x0/0x12d @ 1
[   10.245923] initcall mod_init+0x0/0x12d returned -19 after 5 usecs
[   10.252294] calling  mod_init+0x0/0x99 @ 1
[   10.256517] initcall mod_init+0x0/0x99 returned -19 after 3 usecs
[   10.262798] calling  mod_init+0x0/0x48 @ 1
[   10.267019] initcall mod_init+0x0/0x48 returned -19 after 0 usecs
[   10.273300] calling  rng_init+0x0/0xf @ 1
[   10.277578] initcall rng_init+0x0/0xf returned 0 after 145 usecs
[   10.283766] calling  agp_init+0x0/0x2f @ 1
[   10.287980] Linux agpgart interface v0.103
[   10.292194] initcall agp_init+0x0/0x2f returned 0 after 4118 usecs
[   10.298559] calling  agp_ali_init+0x0/0x24 @ 1
[   10.303198] initcall agp_ali_init+0x0/0x24 returned 0 after 63 usecs
[   10.309744] calling  agp_ati_init+0x0/0x24 @ 1
[   10.314380] initcall agp_ati_init+0x0/0x24 returned 0 after 62 usecs
[   10.320931] calling  agp_amdk7_init+0x0/0x24 @ 1
[   10.325758] initcall agp_amdk7_init+0x0/0x24 returned 0 after 66 usecs
[   10.332484] calling  agp_amd64_mod_init+0x0/0xa @ 1
[   10.338189] initcall agp_amd64_mod_init+0x0/0xa returned -19 after 664 usecs
[   10.345454] calling  agp_efficeon_init+0x0/0x39 @ 1
[   10.350543] initcall agp_efficeon_init+0x0/0x39 returned 0 after 63 usecs
[   10.357539] calling  agp_intel_init+0x0/0x24 @ 1
[   10.362363] initcall agp_intel_init+0x0/0x24 returned 0 after 66 usecs
[   10.369091] calling  agp_nvidia_init+0x0/0x24 @ 1
[   10.373997] initcall agp_nvidia_init+0x0/0x24 returned 0 after 59 usecs
[   10.380813] calling  agp_sis_init+0x0/0x24 @ 1
[   10.385457] initcall agp_sis_init+0x0/0x24 returned 0 after 65 usecs
[   10.392007] calling  agp_serverworks_init+0x0/0x24 @ 1
[   10.397365] initcall agp_serverworks_init+0x0/0x24 returned 0 after 64 usecs
[   10.404630] calling  agp_via_init+0x0/0x24 @ 1
[   10.409272] initcall agp_via_init+0x0/0x24 returned 0 after 62 usecs
[   10.415821] calling  drm_core_init+0x0/0x107 @ 1
[   10.420637] [drm] Initialized drm 1.1.0 20060810
[   10.425394] initcall drm_core_init+0x0/0x107 returned 0 after 4709 usecs
[   10.432299] calling  cn_proc_init+0x0/0x33 @ 1
[   10.436880] initcall cn_proc_init+0x0/0x33 returned 0 after 3 usecs
[   10.443339] calling  topology_sysfs_init+0x0/0x60 @ 1
[   10.448730] initcall topology_sysfs_init+0x0/0x60 returned 0 after 183 usecs
[   10.455995] calling  loop_init+0x0/0x12b @ 1
[   10.466491] loop: module loaded
[   10.469729] initcall loop_init+0x0/0x12b returned 0 after 9124 usecs
[   10.476279] calld_init+0x0/0x1c @ 1
[   10.508319] initcall mac_hid_init+0x0/0x1c returned 0 after 13 usecs
[   10.514863] calling  macvlan_init_module+0x0/0x31 @ 1
[   10.520065] initcall macvlan_init_module+0x0/0x31 returned 0 after 1 usecs
[   10.527146] calling  macvtap_init+0x0/0xd0 @ 1
[   10.531761] initcall macvtap_init+0x0/0xd0 returned 0 after 39 usecs
[   10.538309] calling  net_olddevs_init+0x0/0x88 @ 1
[   10.543242] initcall net_olddevs_init+0x0/0x88 returned 0 after 2 usecs
[   10.550054] calling  fixed_mdio_bus_init+0x0/0xe3 @ 1
[   10.555461] libphy: Fixed MDIO Bus: probed
[   10.559676] initcall fixed_mdio_bus_init+0x0/0xe3 returned 0 after 4322 usecs
[   10.567026] calling  tun_init+0x0/0x8b @ 1
[   10.571240] tun: Universal TUN/TAP device driver, 1.6
[   10.576438] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[   10.582944] initcall tun_init+0x0/0x8b returned 0 after 11439 usecs
[   10.589405] calling  tg3_driver_init+0x0/0x16 @ 1
[   10.594366] initcall tg3_driver_init+0x0/0x16 returned 0 after 112 usecs
[   10.601272] calling  ixgbevf_init_module+0x0/0x49 @ 1
[   10.606476] ixgbevf: Intel(R) 10 Gigabit PCI Express Virtual Function Network Driver - version 2.12.1-k
[   10.616148] ixgbevf: Copyright (c) 2009 - 2012 Intel Corporation.
[   10.622535] initcall ixgbevf_init_module+0x0/0x49 returned 0 after 15696 usecs
[   10.629973] calling  forcedeth_pci_driver_init+0x0/0x16 @ 1
[   10.635779] initcall forcedeth_pci_driver_init+0x0/0x16 returned 0 after 67 usecs
[   10.643490] calling  netback_init+0x0/0x81 @ 1
[   10.648064] initcall netback_init+0x0/0x81 returned -19 after 0 usecs
[   10.654698] calling  fw_core_init+0x0/0xf1 @ 1
[   10.659471] initcall fw_core_init+0x0/0xf1 returned 0 after 187 usecs
[   10.666110] calling  nonstatic_sysfs_init+0x0/0xf @ 1
[   10.671309] initcall nonstatic_sysfs_init+0x0/0xf returned 0 after 0 usecs
[   10.678388] calling  yenta_cardbus_driver_init+0x0/0x16 @ 1
[   10.684234] initcall yenta_cardbus_driver_init+0x0/0x16 returned 0 after 107 usecs
[   10.692028] calling  mon_init+0x0/0xe1 @ 1
[   10.696447] initcall mon_init+0x0/0xe1 returned 0 after 198 usecs
[   10.702724] calling  ehci_hcd_init+0x0/0x58 @ 1
[   10.707386] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   10.714105] initcall ehci_hcd_init+0x0/0x58 returned 0 after 6567 usecs
[   10.720917] calling  ehci_pci_init+0x0/0x60 @ 1
[   10.725578] ehci-pci: EHCI PCI platform driver
[   10.731927] IOAPIC[0]: Set routing entry (4-17 -> 0x42 -> IRQ 17 Mode:1 Active:1 Dest:15)
[   10.740348] ehci-pci 0000:00:12.2: assigned new IRQ17
[   10.745560] QUIRK: Enable AMD PLL fix
[   10.749357] ehci-pci 0000:00:12.2: EHCI Host Controller
[   10.754995] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[   10.762620] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[   10.771576] ehci-pci 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
[   10.779290] ehci-pci 0000:00:12.2: debug port 1
[   10.784080] ehci-pci 0000:00:12.2: irq 17, io mem 0xfe6ff800
[   10.795563] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[   10.801795] usb usb1: New USB device found, idVendor=1d6b, stream-01669-g4f5f437 ehci_hcd
[   10.829215] usb usb1: SerialNumber: 0000:00:12.2
[   10.834924] hub 1-0:1.0: USB hub found
[   10.838846] hub 1-0:1.0: 6 ports detected
[   10.846004] ehci-pci 0000:00:13.2: assigned new IRQ19
[   10.851247] ehci-pci 0000:00:13.2: EHCI Host Controller
[   10.856909] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[   10.864548] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[   10.873515] ehci-pci 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
[   10.881231] ehci-pci 0000:00:13.2: debug port 1
[   10.886028] ehci-pci 0000:00:13.2: irq 19, io mem 0xfe6ff400
[   10.892474] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[   10.898692] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[   10.905684] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   10.913120] usb usb2: Product: EHCI Host Controller
[   10.918140] usb usb2: Manufacturer: Linux 3.16.0-rc5upstream-01669-g4f5f437 ehci_hcd
[   10.926111] usb usb2: SerialNumber: 0000:00:13.2
[   10.931796] hub 2-0:1.0: USB hub found
[   10.935733] hub 2-0:1.0: 6 ports detected
[   10.941264] initcall ehci_pci_init+0x0/0x60 returned 0 after 210827 usecs
[   10.948264] calling  ohci_hcd_mod_init+0x0/0x5e @ 1
[   10.953285] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   10.959656] initcall ohci_hcd_mod_init+0x0/0x5e returned 0 after 6226 usecs
[   10.966825] calling  ohci_pci_init+0x0/0x60 @ 1
[   10.971487] ohci-pci: OHCI PCI platform driver
[   10.977786] IOAPIC[0]: Set routing entry (4-16 -> 0x52 -> IRQ 16 Mode:1 Active:1 Dest:15)
[   10.986207] ohci-pci 0000:00:12.0: assigned new IRQ16
[   10.991442] ohci-pci 0000:00:12.0: OHCI PCI host controller
[   10.997457] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
[   11.005213] ohci-pci 0000:00:12.0: irq 16, io mem 0xfe6fe000
[   11.065648] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[   11.072656] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.080100] usb usb3: Product: OHCI PCI host controller
[   11.085483] usb usb3: Manufacturer: Linux 3.16.0-rc5upstream-01669-g4f5f437 ohci_hcd
[   11.093458] usb usb3: SerialNumber: 0000:00:12.0
[   11.099160] hub 3-0:1.0: USB hub found
[   11.103095] hub 3-0:1.0: 3 ports detected
[   11.109823] ohci-pci 0000:00:12.1: assigned new IRQ16
[   11.115057] ohci-pci 0000:00:12.1: OHCI PCI host controller
[   11.121069] ohci-pci 0000:00:12.1: new USB bus registered, assigned bus number 4
[   11.128757] ohci-pci 0000:00:12.1: irq 16, io mem 0xfe6fd000
[   11.189547] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[   11.196540] usb usb4: New USB device strings: Mub found
[   11.226943] hub 4-0:1.0: 3 ports detected
[   11.233669] ohci-pci 0000:00:13.0: assigned new IRQ18
[   11.238903] ohci-pci 0000:00:13.0: OHCI PCI host controller
[   11[   11.313410] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[   11.320417] usb usb5: New USB device strings: Mt=2, SerialNumber=1
[   11.327857] usb usb5: Product: OHCI PCI host controller
[   11.333244] usb usb5: Manufacturer: Linux 3.16.0-rc5upstream-01669-g4f5f437 ohci_hcd
[   11.341221] usb usb5: SerialNumber: 0000:00:13.0
[   11.346919] hub 5-0:1.0: USB hub found
[   11.350860] hub 5-0:1.0: 3 ports detected
[   11.357625] ohci-pci 0000:00:13.1: assigned new IRQ18
[   11.362861] ohci-pci 0000:00:13.1: OHCI PCI host controller
[   11[   11.437311] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[   11.444302] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.451737] usb usb6: Product: OHCI PCI host controller
[   11.457115] usb usb6: Manufacturer: Linux 3.16.0-rc5upstream-01669-g4f5f437 ohci_hcd
[   11.465087] usb usb6: SerialNumber: 0000:00:13.1
[   11.470763] hub 6-0:1.0: USB hub found
[   11.474702] hub 6-0:1.0: 3 ports detected
[   11.481425] ohci-pci 0000:00:14.5: assigned new IRQ18
[   11.486659] ohci-pci 0000:00:14.5: OHCI PCI host controller
[   1100
[   11.561172] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
[   11.568179] usb usb7: New USB device strings: M-rc5upstream-01669-g4f5f437 ohci_hcd
[   11.588972] usb usb7: SerialNumber: 0000:00:14.5
[   11.594664] hub 7-0:1.0: USB hub found
[   11.598597] hub 7-0:1.0: 2 ports detected
[   11.603522] initcall ohci_pci_init+0x0/0x60 returned 0 after 617800 usecs
[   11.610513] calling  uhci_hcd_init+0x0/0xa4 @ 1
[   11.615175] uhci_hcd: USB Universal Host Controller Interface driver
[   11.621859] initcall uhci_hcd_init+0x0/0xa4 returned 0 after 6532 usecs
[   11.628670] calling  usblp_driver_init+0x0/0x16 @ 1
[   11.633803] usbcore: registered new interface driver usblp
[   11.639447] initcall usblp_driver_init+0x0/0x16 returned 0 after 5619 usecs
[   11.646616] calling  kgdbdbgp_start_thread+0x0/0x57 @ 1
[   11.651994] initcall kgdbdbgp_start_thread+0x0/0x57 returned 0 after 0 usecs
[   11.659253] calling  i8042_init+0x0/0x3b7 @ 1
[   11.663885] i8042: PNP: No PS/2 controller found. Probing ports directly.
[   11.671699] serio: i8042 KBD port at 0x60,0x64 irq 1
[   11.676820] serio: i8042 AUX port at 0x60,0x64 irq 12
[   11.682051] initcall i8042_init+0x0/0x3b7 returned 0 after 17900 usecs
[   11.688774] calling  serport_init+0x0/0x2e @ 1
[   11.693353] initcall serport_init+0x0/0x2e returned 0 after 0 usecs
[   11.699805] calling  mousedev_init+0x0/0x54 @ 1
[   11.704690] mousedev: PS/2 mouse device common for all mice
[   11.710443] initcall mousedev_init+0x0/0x54 returned 0 after 5831 usecs
[   11.717268] calling  evdev_init+0x0/0xf @ 1
[   11.721868] initcall evdev_init+0x0/0xf returned 0 after 288 usecs
[   11.728250] calling  atkbd_init+0x0/0x20 @ 1
[   11.732738] initcall atkbd_init+0x0/0x20 returned 0 after 71 usecs
[   11.739124] calling  psmouse_init+0x0/0x8a @ 1
[   11.743916] initcall psmouse_init+0x0/0x8a returned 0 after 191 usecs
[   11.750560] calling  cmos_init+0x0/0x66 @ 1
[   11.754917] rtc_cmos 00:01: RTC can wake from S4
[   11.760114] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[   11.766436] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[   11.774357] initcall cmos_init+0x0/0x66 returned 0 after 19052 usecs
[   11.780900] calling  i2c_i801_init+0x0/0x92 @ 1
[   11.785674] initcall i2c_i801_init+0x0/0x92 returned 0 after 107 usecs
[   11.792398] calling  cpufreq_gov_dbs_init+0x0/0xf @ 1
[   11.797596] initcall cpufreq_gov_dbs_init+0x0/0xf returned 0 after 0 usecs
[   11.804679] calling  efivars_sysfs_init+0x0/0x1d0 @ 1
[   11.809878] initcall efivars_sysfs_init+0x0/0x1d0 returned -19 after 0 usecs
[   11.817138] calling  efivars_pstore_init+0x0/0x89 @ 1
[   11.822339] initcall efivars_pstore_init+0x0/0x89 returned 0 after 0 usecs
[   11.829421] calling  vhost_net_init+0x0/0x20 @ 1
[   11.834300] initcall vhost_net_init+0x0/0x20 returned 0 after 124 usecs
[   11.841120] calling  vhost_init+0x0/0x7 @ 1
[   11.845426] initcall vhost_init+0x0/0x7 returned 0 after 0 usecs
[   11.851613] calling  staging_init+0x0/0x7 @ 1
[   11.856096] initcall staging_init+0x0/0x7 returned 0 after 0 usecs
[   11.862465] calling  eeepc_laptop_init+0x0/0x4f @ 1
[   11.867633] initcall eeepc_laptop_init+0x0/0x4f returned -19 after 143 usecs
[   11.874894] calling  sock_diag_init+0x0/0xf @ 1
[   11.879579] initcall sock_diag_init+0x0/0xf returned 0 after 20 usecs
[   11.886212] calling  llc_init+0x0/0x1b @ 1
[   11.890428] initcall llc_init+0x0/0x1b returned 0 after 0 usecs
[   11.896525] calling  snap_init+0x0/0x35 @ 1
[   11.900832] initcall snap_init+0x0/0x35 returned 0 after 2 usecs
[   11.907020] calling  blackhole_module_init+0x0/0xf @ 1
[   11.912308] initcall blackhole_module_init+0x0/0xf returned 0 after 0 usecs
[   11.919479] calling  nfnetlink_init+0x0/0x4b @ 1
[   11.924233] Netfilter messages via NETLINK v0.30.
[   11.929087] initcall nfnetlink_init+0x0/0x4b returned 0 after 4744 usecs
[   11.935990] calling  nfnetlink_log_init+0x0/0x8f @ 1
[   11.941113] initcall nfnetlink_log_init+0x0/0x8f returned 0 after 11 usecs
[   11.948193] calling  nf_conntrack_standalone_init+0x0/0x70 @ 1
[   11.954198] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   11.960687] initcall nf_conntrack_standalone_init+0x0/0x70 returned 0 after 6342 usecs
[   11.968843] calling  ctnetlink_init+0x0/0x92 @ 1
[   11.973594] ctnetlink v0.93: registering with nfnetlink.
[   11.979064] initcall ctnetlink_init+0x0/0x92 returned 0 after 5345 usecs
[   11.985965] calling  nf_conntrack_ftp_init+0x0/0x195 @ 1
[   11.991439] initcall nf_conntrack_ftp_init+0x0/0x195 returned 0 after 6 usecs
[   11.998788] calling  nf_conntrack_irc_init+0x0/0x148 @ 1
[   12.004262] initcall nf_conntrack_irc_init+0x0/0x148 returned 0 after 5 usecs
[   12.011611] calling  nf_conntrack_sip_init+0x0/0x1e4 @ 1
[   12.017080] initcall nf_conntrack_sip_init+0x0/0x1e4 returned 0 after 0 usecs
[   12.024429] calling  xt_init+0x0/0xb5 @ 1
[   12.028558] initcall xt_init+0x0/0xb5 returned 0 after 2 usecs
[   12.034565] calling  tcpudp_mt_init+0x0/0x14 @ 1
[   12.039321] initcall tcpudp_mt_init+0x0/0x14 returned 0 after 0 usecs
[   12.045955] calling  connsecmark_tg_init+0x0/0xf @ 1
[   12.051066] initcall connsecmark_tg_init+0x0/0xf returned 0 after 0 usecs
[   12.058057] calling  nflog_tg_init+0x0/0xf @ 1
[   12.062630] initcall nflog_tg_init+0x0/0xf returned 0 after 0 usecs
[   12.069085] calling  secmark_tg_init+0x0/0xf @ 1
[   12.073838] initcall secmark_tg_init+0x0/0xf returned 0 after 0 usecs
[   12.080471] calling  tcpmss_tg_init+0x0/0x14 @ 1
[   12.085224] initcall tcpmss_tg_init+0x0/0x14 returned 0 after 0 usecs
[   12.091856] calling  conntrack_mt_init+0x0/0x14 @ 1
[   12.096878] initcall conntrack_mt_init+0x0/0x14 returned 0 after 0 usecs
[   12.103781] calling  policy_mt_init+0x0/0x14 @ 1
[   12.108533] initcall policy_mt_init+0x0/0x14 returned 0 after 0 usecs
[   12.115166] calling  state_mt_init+0x0/0xf @ 1
[   12.119739] initcall state_mt_init+0x0/0xf returned 0 after 0 usecs
[   12.126195] calling  gre_offload_init+0x0/0x14 @ 1
[   12.131125] initcall gre_offload_init+0x0/0x14 returned 0 after 0 usecs
[   12.137936] calling  sysctl_ipv4_init+0x0/0x44 @ 1
[   12.142911] initcall sysctl_ipv4_init+0x0/0x44 returned 0 after 43 usecs
[   12.149814] calling  tunnel4_init+0x0/0x6d @ 1
[   12.154386] initcall tunnel4_init+0x0/0x6d returned 0 after 0 usecs
[   12.160839] calling  ipv4_netfilter_init+0x0/0xf @ 1
[   12.165950] initcall ipv4_netfilter_init+0x0/0xf returned 0 after 0 usecs
[   12.172941] calling  nf_conntrack_l3proto_ipv4_init+0x0/0x150 @ 1
[   12.179393] initcall nf_conntrack_l3proto_ipv4_init+0x0/0x150 returned 0 after 175 usecs
[   12.187724] calling  nf_defrag_init+0x0/0x14 @ 1
[   12.192475] initcall nf_defrag_init+0x0/0x14 returned 0 after 0 usecs
[   12.199108] calling  ip_tables_init+0x0/0x8f @ 1
[   12.203880] ip_tables: (C) 2000-2006 Netfilter Core Team
[   12.209347] initcall ip_tables_init+0x0/0x8f returned 0 after 5364 usecs
[   12.216249] calling  iptable_filter_init+0x0/0x40 @ 1
[   12.221545] initcall iptable_filter_init+0x0/0x40 returned 0 after 93 usecs
[   12.228715] calling  iptable_mangle_init+0x0/0x40 @ 1
[   12.233992] initcall iptable_mangle_init+0x0/0x40 returned 0 after 75 usecs
[   12.241161] calling  reject_tg_init+0x0/0xf @ 1
[   12.245824] initcall reject_tg_init+0x0/0xf returned 0 after 0 usecs
[   12.252366] calling  ulog_tg_init+0x0/0x74 @ 1
[   12.256957] initcall ulog_tg_init+0x0/0x74 returned 0 after 16 usecs
[   12.263501] calling  cubictcp_register+0x0/0x72 @ 1
[   12.268520] TCP: cubic registered
[   12.271929] initcall cubictcp_register+0x0/0x72 returned 0 after 3332 usecs
[   12.279099] calling  xfrm_user_init+0x0/0x43 @ 1
[   12.283851] Initializing XFRM netlink socket
[   12.288259] initcall xfrm_user_init+0x0/0x43 returned 0 after 4308 usecs
[   12.295161] calling  inet6_init+0x0/0x2c3 @ 1
[   12.299897] NET: Registered protocol family 10
[   12.305254] initcall inet6_init+0x0/0x2c3 returned 0 after 5481 usecs
[   12.311892] calling  ah6_init+0x0/0x75 @ 1
[   12.316110] initcall ah6_init+0x0/0x75 returned 0 after 1 usecs
[   12.322207] calling  esp6_init+0x0/0x75 @ 1
[   12.326511] initcall esp6_init+0x0/0x75 returned 0 after 0 usecs
[   12.332697] calling  xfrm6_transport_init+0x0/0x14 @ 1
[   12.337985] initcall xfrm6_transport_init+0x0/0x14 returned 0 after 0 usecs
[   12.345155] calling  xfrm6_mode_tunnel_init+0x0/0x14 @ 1
[   12.350622] initcall xfrm6_mode_tunnel_init+0x0/0x14 returned 0 after 0 usecs
[   12.357970] calling  xfrm6_beet_init+0x0/0x14 @ 1
[   12.362811] initcall xfrm6_beet_init+0x0/0x14 returned 0 after 0 usecs
[   12.369532] calling  ip6_tables_init+0x0/0x8f @ 1
[   12.374395] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   12.379952] initcall ip6_tables_init+0x0/0x8f returned 0 after 5452 usecs
[   12.386943] calling  ip6table_filter_init+0x0/0x40 @ 1
[   12.392389] initcall ip6table_filter_init+0x0/0x40 returned 0 after 153 usecs
[   12.399739] calling  ip6table_mangle_init+0x0/0x40 @ 1
[   12.405164] initcall ip6table_mangle_init+0x0/0x40 returned 0 after 133 usecs
[   12.412514] calling  nf_conntrack_l3proto_ipv6_init+0x0/0x129 @ 1
[   12.418797] initcall nf_conntrack_l3proto_ipv6_init+0x0/0x129 returned 0 after 11 usecs
[   12.427039] calling  nf_defrag_init+0x0/0x4c @ 1
[   12.431815] initcall nf_defrag_init+0x0/0x4c returned 0 after 22 usecs
[   12.438537] calling  ipv6header_mt6_init+0x0/0xf @ 1
[   12.443646] initcall ipv6header_mt6_init+0x0/0xf returned 0 after 0 usecs
[   12.450635] calling  reject_tg6_init+0x0/0xf @ 1
[   12.455386] initcall reject_tg6_init+0x0/0xf returned 0 after 0 usecs
[   12.462020] calling  sit_init+0x0/0xbc @ 1
[   12.466234] sit: IPv6 over IPv4 tunneling driver
[   12.471881] initcall sit_init+0x0/0xbc returned 0 after 5518 usecs
[   12.478245] calling  packet_init+0x0/0x39 @ 1
[   12.482728] NET: Registered protocol family 17
[   12.487310] initcall packet_init+0x0/0x39 returned 0 after 4478 usecs
[   12.493941] calling  br_init+0x0/0x90 @ 1
[   12.498107] initcall br_init+0x0/0x90 returned 0 after 37 usecs
[   12.504204] calling  init_rpcsec_gss+0x0/0x54 @ 1
[   12.509107] initcall init_rpcsec_gss+0x0/0x54 returned 0 after 59 usecs
[   12.515919] calling  dcbnl_init+0x0/0x5e @ 1
[   12.520314] initcall dcbnl_init+0x0/0x5e returned 0 after 0 usecs
[   12.526588] calling  init_dns_resolver+0x0/0xcd @ 1
[   12.531619] Key type dns_resolver registered
[   12.536013] initcall init_dns_resolver+0x0/0xcd returned 0 after 4305 usecs
[   12.543182] calling  mcheck_init_device+0x0/0x174 @ 1
[   12.549281] initcall mcheck_init_device+0x0/0x174 returned 0 after 876 usecs
[   12.556588] calling  mcheck_debugfs_init+0x0/0x3e @ 1
[   12.561808] initcall mcheck_debugfs_init+0x0/0x3e returned 0 after 19 usecs
[   12.568979] calling  severities_debugfs_init+0x0/0x3e @ 1
[   12.574539] initcall severities_debugfs_init+0x0/0x3e returned 0 after 5 usecs
[   12.581976] calling  threshold_init_device+0x0/0x44 @ 1
[   12.587875] initcall threshold_init_device+0x0/0x44 returned 0 after 510 usecs
[   12.595314] calling  hpet_insert_resource+0x0/0x1e @ 1
[   12.600604] initcall hpet_insert_resource+0x0/0x1e returned 0 after 0 usecs
[   12.607785] calling  update_mp_table+0x0/0x527 @ 1
[   12.612716] initcall update_mp_table+0x0/0x527 returned 0 after 0 usecs
[   12.619529] calling  lapic_insert_resource+0x0/0x46 @ 1
[   12.624907] initcall lapic_insert_resource+0x0/0x46 returned 0 after 0 usecs
[   12.632167] calling  io_apic_bug_finalize+0x0/0x1a @ 1
[   12.637454] initcall io_apic_bug_finalize+0x0/0x1a returned 0 after 0 usecs
[   12.644624] calling  print_ICs+0x0/0x437 @ 1
[   12.649017] 
[   12.649017] printing PIC contents
[   12.653949] ... PIC  IMR: ffff
[   12.657089] ... PIC  IRR: 0001
[   12.660236] ... PIC  ISR: 0000
[   12.663379] ... PIC ELCR: ce90
[   12.666529] printing local APIC contents on CPU#0/0:
[   12.671637] ... APIC ID:      00000000 (0)
[   12.675850] ... APIC VERSION: 80050010
[   12.679705] ... APIC TASKPRI: 00000000 (00)
[   12.684006] ... APIC ARBPRI: 00000030 (30)
[   12.688217] ... APIC PROCPRI: 00000000
[   12.692071] ... APIC LDR: 01000000
[   12.695568] ... APIC DFR: ffffffff
[   12.699064] ... APIC SPIV: 000001ff
[   12.702650] ... APIC ISR field:
[   12.705878] 0000000000000000000000000000000000000000000000000000000000000000
[   12.713198] ... APIC TMR field:
[   12.716425] 0000000000000000000000000000000000000000000000000000000000000000
[   12.723746] ... APIC IRR field:
[   12.726974] 0000000000010000000000000000000000000000000000000000000000000000
[   12.734292] ... APIC ESR: 00000000
[   12.737789] ... APIC ICR: 000208ef
[   12.741285] ... APIC ICR2: 06000000
[   12.744871] ... APIC LVTT: 000000ef
[   12.748457] ... APIC LVTPC: 00000400
[   12.752133] ... APIC LVT0: 00010700
[   12.755719] ... APIC LVT1: 00000400
[   12.759304] ... APIC LVTERR: 000000fe
[   12.763068] ... APIC TMICT: 00000000
[   12.766743] ... APIC TMCCT: 00000000
[   12.770418] ... APIC TDCR: 00000003
[   12.774004] ... APIC EFEAT: 00040007
[   12.777681] ... APIC ECTRL: 00000000
[   12.781357] ... APIC EILVT0: 000000f9
[   12.785121] ... APIC EILVT1: 00000400
[   12.788885] ... APIC EILVT2: 00010000
[   12.792649] ... APIC EILVT3: 00010000
[   12.796413] 
[   12.797944] number of MP IRQ sources: 15.
[   12.802076] number of IO-APIC #4 registers: 24.
[   12.806738] testing the IO APIC.......................
[   12.812030] IO APIC #4......
[   12.814991] .... register #00: 04000000
[   12.818938] .......    : physical APIC id: 04
[   12.823420] .......    : Delivery Type: 0
[   12.827545] .......    : LTS          : 0
[   12.831671] .... register #01: 00178021
[   12.835618] .......     : max redirection entries: 17
[   12.840816] .......     : PRQ implemented: 1
[   12.845209] .......     : IO APIC version: 21
[   12.849692] .... register #02: 04000000
[   12.853638] .......     : arbitration: 04
[   12.857762] .... register #03: 04178021
[   12.861708] .......     : Boot DT    : 1
[   12.865742] .... IRQ redirection table:
[   12.869690] 1    0    0   0   0    0    0    00
[   12.874355] 0    0    0   0   0    1    1    31
[   12.879019] 0    0    0   0   0    1    1    30
[   12.883683] 0    0    0   0   0    1    1    33
[   12.888345] 0    0    0   0   0    1    1    34
[   12.893010] 0    0    0   0   0    1    1    35
[   12.897674] 0    0    0   0   0    1    1    36
[   12.902338] 0    0    0   0   0    1    1    37
[   12.907002] 0    0    0   0   0    1    1    38
[   12.911667] 0    1    0   1   0    1    1    39
[   12.916332] 0    0    0   0   0    1    1    3A
[   12.920996] 0    0    0   0   0    1    1    3B
[   12.925661] 0    0    0   0   0    1    1    3C
[   12.930324] 0    0    0   0   0    1    1    3D
[   12.934989] 0    0    0   0   0    1    1    3E
[   12.939653] 0    0    0   0   0    1    1    3F
[   12.944318] 0    1    0   1   0    1    1    52
[   12.948983] 0    1    0   1   0    1    1    42
[   12.953648] 0    1    0   1   0    1    1    B1
[   12.955466] random: nonblocking pool is initialized
[   12.963331] 0    1    0   1   0    1    1    D1
[   12.967994] 1    0    0   0   0    0    0    00
[   12.972657] 1    0    0   0   0    0    0    00
[   12.977321] 1    1    0   1   0    1    1    22
[   12.981985] 1    0    0   0   0    0    0    00
[   12.986647] IRQ to pin mappings:
[   12.989968] IRQ0 -> 0:2
[   12.992503] IRQ1 -> 0:1
[   12.995035] IRQ3 -> 0:3
[   12.997567] IRQ4 -> 0:4
[   13.000099] IRQ5 -> 0:5
[   13.002632] IRQ6 -> 0:6
[   13.005162] IRQ7 -> 0:7
[   13.007697] IRQ8 -> 0:8
[   13.010228] IRQ9 -> 0:9
[   13.012759] IRQ10 -> 0:10
[   13.015472] IRQ11 -> 0:11
[   13.018185] IRQ12 -> 0:12
[   13.020896] IRQ13 -> 0:13
[   13.023610] IRQ14 -> 0:14
[   13.026321] IRQ15 -> 0:15
[   13.029030] IRQ16 -> 0:16
[   13.031740] IRQ17 -> 0:17
[   13.034454] IRQ18 -> 0:18
[   13.037169] IRQ19 -> 0:19
[   13.039883] IRQ22 -> 0:22
[   13.042595] .................................... done.
[   13.047886] initcall print_ICs+0x0/0x437 returned 0 after 389886 usecs
[   13.054610] calling  print_ipi_mode+0x0/0x2e @ 1
[   13.059364] Using IPI No-Shortcut mode
[   13.063221] initcall print_ipi_mode+0x0/0x2e returned 0 after 3769 usecs
[   13.070122] calling  pat_memtype_list_init+0x0/0x37 @ 1
[   13.075506] initcall pat_memtype_list_init+0x0/0x37 returned 0 after 6 usecs
[   13.082765] calling  init_oops_id+0x0/0x50 @ 1
[   13.087341] initcall init_oops_id+0x0/0x50 returned 0 after 2 usecs
[   13.093793] calling  pm_qos_power_init+0x0/0x5d @ 1
[   13.099166] initcall pm_qos_power_init+0x0/0x5d returned 0 after 345 usecs
[   13.106249] calling  pm_debugfs_init+0x0/0x2a @ 1
[   13.111098] initcall pm_debugfs_init+0x0/0x2a returned 0 after 7 usecs
[   13.117820] calling  printk_late_init+0x0/0x38 @ 1
[   13.122751] initcall printk_late_init+0x0/0x38 returned 0 after 1 usecs
[   13.129563] calling  tk_debug_sleep_time_init+0x0/0x41 @ 1
[   13.135215] initcall tk_debug_sleep_time_init+0x0/0x41 returned 0 after 6 usecs
[   13.142740] calling  debugfs_kprobe_init+0x0/0xa6 @ 1
[   13.147964] initcall debugfs_kprobe_init+0x0/0xa6 returned 0 after 25 usecs
[   13.155133] calling  taskstats_init+0x0/0x6e @ 1
[   13.159902] registered taskstats version 1
[   13.164117] initcall taskstats_init+0x0/0x6e returned 0 after 4137 usecs
[   13.171018] calling  clear_boot_tracer+0x0/0x2d @ 1
[   13.176039] initcall clear_boot_tracer+0x0/0x2d returned 0 after 0 usecs
[   13.182938] calling  kdb_ftrace_register+0x0/0x35 @ 1
[   13.188141] initcall kdb_ftrace_register+0x0/0x35 returned 0 after 2 usecs
[   13.195225] calling  fault_around_debugfs+0x0/0x3a @ 1
[   13.200519] initcall fault_around_debugfs+0x0/0x3a returned 0 after 6 usecs
[   13.207688] calling  max_swapfiles_check+0x0/0x7 @ 1
[   13.212797] initcall max_swapfiles_check+0x0/0x7 returned 0 after 0 usecs
[   13.219788] calling  set_recommended_min_free_kbytes+0x0/0xb0 @ 1
[   13.226061] initcall set_recommended_min_free_kbytes+0x0/0xb0 returned 0 after 1 usecs
[   13.234215] calling  kmemleak_late_init+0x0/0x8e @ 1
[   13.239386] kmemleak: Kernel memory leak detector initialized
[   13.239389] kmemleak: Automatic memory scanning thread started
[   13.251314] initcall kmemleak_late_init+0x0/0x8e returned 0 after 11712 usecs
[   13.258685] calling  check_early_ioremap_leak+0x0/0x5d @ 1
[   13.264350] initcall check_early_ioremap_leak+0x0/0x5d returned 0 after 0 usecs
[   13.271892] calling  init_root_keyring+0x0/0xa @ 1
[   13.276870] initcall init_root_keyring+0x0/0xa returned 0 after 25 usecs
[   13.283786] calling  fail_make_request_debugfs+0x0/0x23 @ 1
[   13.289585] initcall fail_make_request_debugfs+0x0/0x23 returned 0 after 43 usecs
[   13.297307] calling  prandom_reseed+0x0/0x3e @ 1
[   13.302080] initcall prandom_reseed+0x0/0x3e returned 0 after 0 usecs
[   13.308725] calling  pci_resource_alignment_sysfs_init+0x0/0x14 @ 1
[   13.315199] initcall pci_resource_alignment_sysfs_init+0x0/0x14 returned 0 after 12 usecs
[   13.323627] calling  pci_sysfs_init+0x0/0x44 @ 1
[   13.329681] initcall pci_sysfs_init+0x0/0x44 returned 0 after 1256 usecs
[   13.336592] calling  boot_wait_for_devices+0x0/0x28 @ 1
[   13.341986] initcall boot_wait_for_devices+0x0/0x28 returned -19 after 4 usecs
[   13.349434] calling  deferred_probe_initcall+0x0/0x80 @ 1
[   13.355089] initcall deferred_probe_initcall+0x0/0x80 returned 0 after 86 usecs
[   13.362625] calling  late_resume_init+0x0/0x190 @ 1
[   13.367649]   Magic number: 6:343:85
[   13.371434] initcall late_resume_init+0x0/0x190 returned 0 after 3698 usecs
[   13.378605] calling  firmware_memmap_init+0x0/0x29 @ 1
[   13.384204] initcall firmware_memmap_init+0x0/0x29 returned 0 after 299 usecs
[   13.391557] calling  pci_mmcfg_late_insert_resources+0x0/0x43 @ 1
[   13.397833] initcall pci_mmcfg_late_insert_resources+0x0/0x43 returned 0 after 0 usecs
[   13.405991] calling  tcp_congestion_default+0x0/0xf @ 1
[   13.411375] initcall tcp_congestion_default+0x0/0xf returned 0 after 0 usecs
[   13.418639] calling  ip_auto_config+0x0/0xeb7 @ 1
[   13.423493] initcall ip_auto_config+0x0/0xeb7 returned 0 after 8 usecs
[   13.430220] calling  software_resume+0x0/0x280 @ 1
[   13.435156] PM: Hibernation image not present or could not be loaded.
[   13.441789] initcall software_resume+0x0/0x280 returned -2 after 6482 usecs
[   13.449228] async_waiting @ 1
[   13.452286] async_continuing @ 1 after 0 usec
[   13.457058] Freeing unused kernel memory: 940K (c185e000 - c1949000)
[   13.463648] Write protecting the kernel text: 6272k
[   13.468720] Write protecting the kernel read-only data: 1856k
[   13.474635] NX-protecting the kernel data: 3968k
init started: BusyBox v1.14.3 (2014-07-15 12:46:58 EDT)
Mounting directories  [  OK  ]
[   13.489523] uname (1264) used greatest stack depth: 6668 bytes left
[   13.598763] mv (1275) used greatest stack depth: 6628 bytes left
mount: mount poi[   13.613890] mount (1287) used greatest st exist
mount: mount po[   13.624725] mount (1290) used greatest stack depth: 6508 bytes left
int /proc/xen does not exist
^G^G^G^G^G^G^G^G^G^G^G^G^G^Gmount:[   13.637988] udevd (1297): /proc/1297/oom_adj is deprecated, please use /proc/1297/oom_score_adj instead.
 mount point /sys/kernel/config does not exist
cat: /sys/hypervisor/type: No such file or directory
/usr/bin/load_xen_modules: line 3: [: ==: unary operator expected
[   13.675010] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 1346
[   13.682280] acpi-cpufreq: overriding BIOS provideit_scsi+0x0/0x90 [scsi_mod] @ 1370
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^Gudevd-work[1392]: error op[   13.712287] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned 0 after 29775 usecs
ening ATTR{/sys/[   13.721849] calling  rtl8169_pci_driver_init+0x0/0x1000 [r8169] @ 1374
devices/system/c[   13.729556] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   13.729939] calling  acpi_wmi_init+0x0/0x1000 [wmi] @ 1428
pu/cpu0/online} [   13.730559] wmi: Mapper loaded
[   13.730561] initcall acpi_wmi_init+0x0/0x1000 [wmi] returned 0 after 605 usecs
for writing: Per[   13.754350] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
mission denied
[   13.763315] r8169 0000:02:00.0: already assigned IRQ10

[   13.770186] modprobe (1346) used greatest stack depth: 6220 bytes left
[   13.772025] r8169 0000:02:00.0: assigned new IRQ18
[   13.772271] r8169 0000:02:00.0: irq 26 for MSI/MSI-X
[   13.773679] r8169 0000:02:00.0 eth0: RTL8168c/8111c at 0xf8480000, 00:25:11:18:a1:2e, XID 1c4000c0 IRQ 26
[   13.773680] r8169 0000:02:00.0 eth0: jumbo features [frames: 6128 bytes, tx checksumming: ko]
[   13.773820] initcall rtl8169_pci_driver_init+0x0/0x1000 [r8169] returned 0 after 43350 usecs
[   13.775374] SCSI subsystem initialized
[   13.775384] initcall init_scsi+0x0/0x90 [scsi_mod] returned 0 after 67052 usecs
[   13.826221] modprobe (1374) used greatest stack depth: 5428 bytes left
[   13.830171] calling  skge_init_module+0x0/0x1000 [skge] @ 1423
[   13.830253] skge 0000:04:05.0: already assigned IRQ4
[   13.830972] IOAPIC[0]: Set routing entry (4-20 -> 0x72 -> IRQ 20 Mode:1 Active:1 Dest:15)
[   13.830975] skge 0000:04:05.0: assigned new IRQ20
[   13.831081] skge: 1.14 addr 0xfebfc000 irq 20 chip Yukon rev 1
[   13.832607] skge 0000:04:05.0 eth1: addr 00:0a:5e:5c:f5:72
[   13.832739] initcall skge_init_module+0x0/0x1000 [skge] returned 0 after 2507 usecs
Waiting for devices [   13.878513] calling  ata_init+0x0/0x295 [libata] @ 1377
[   13.885795] libata version 3.00 loaded.
[   13.885805] initcall ata_init+0x0/0x295 [libata] returned 0 after 7117 usecs
[   13.898615] calling  ata_generic_pci_driver_init+0x0/0x1000 [ata_generic] @ 1377
[   13.906494] initcall ata_generic_pci_driver_init+0x0/0x1000 [ata_generic] returned 0 after 244 usecs
[  OK  ]
[   13.917857] calling  ahci_pci_driver_init+0x0/0x1000 [ahci] @ 1370
[   13.924298] ahci 0000:00:11.0: version 3.0
[   13.924311] ahci 0000:00:11.0: already assigned IRQ15
[   13.926512] ahci 0000:00:11.0: assigned new IRQ22
[   13.926822] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[   13.926824] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[   13.933862] scsi0 : ahci
[   13.948183] scsi1 : ahci
[   13.949312] scsi2 : ahci
[   13.950296] scsi3 : ahci
[   13.951253] scsi4 : ahci
[   13.952202] scsi5 : ahci
[   13.952991] ata1: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffd00 irq 22
[   13.952993] ata2: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffd80 irq 22
[   13.952996] ata3: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffe00 irq 22
[   13.952998] ata4: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffe80 irq 22
[   13.953001] ata5: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6fff00 irq 22
[   13.953004] ata6: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6fff80 irq 22
[   13.953101] ahci 0000:03:00.0: already assigned IRQ11
[   13.955249] ahci 0000:03:00.0: assigned new IRQ19
[   13.955312] ahci 0000:03:00.0: JMB361 has only one port
[   13.955324] ahci 0000:03:00.0: forcing port_map 0x3 -> 0x1
[   13.955420] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x1 impl SATA mode
[   13.955422] ahci 0000:03:00.0: flags: 64bit ncq led clo pmp pio 
[   13.957792] scsi6 : ahci
[   13.958711] scsi7 : ahci
[   13.959494] ata7: SATA max UDMA/133 abar m8192@0xfeafe000 port 0xfeafe100 irq 19
[   13.959495] ata8: DUMMY
[   13.959649] initcall ahci_pci_driver_init+0x0/0x1000 [ahci] returned 0 after 34623 usecs
[   13.965502] initcall drm_fb_helper_modinit+0x0/0x1000 [drm_kms_helper] returned 0 after 260042 usecs
[   14.009948] calling  ttm_init+0x0/0x1000 [ttm] @ 1389
[   14.010087] initcall ttm_init+0x0/0x1000 [ttm] returned 0 after 131 usecs
[   14.076765] calling  fb_console_init+0x0/0x1000 [fbcon] @ 1958
[   14.104242] initcall fb_console_init+0x0/0x1000 [fbcon] returned 0 after 26852 usecs
[   14.106015] calling  radeon_init+0x0/0xb0 [radeon] @ 1389
[   14.106016] [drm] radeon kernel modesetting enabled.
[   14.106445] radeon 0000:01:05.0: already assigned IRQ10
[   14.106828] radeon 0000:01:05.0: assigned new IRQ18
[   14.107670] [drm] initializing kernel modesetting (RS780 0x1002:0x9610 0x1019:0x2119).
[   14.107701] [drm] register mmio base: 0xFE8F0000
[   14.107701] [drm] register mmio size: 65536
[   14.108983] ATOM BIOS: 113
[   14.109100] radeon 0000:01:05.0: VRAM: 256M 0x00000000C0000000 - 0x00000000CFFFFFFF (256M used)
[   14.109102] radeon 0000:01:05.0: GTT: 512M 0x00000000A0000000 - 0x00000000BFFFFFFF
[   14.109107] [drm] Detected VRAM RAM=256M, BAR=256M
[   14.109108] [drm] RAM width 32bits DDR
[   14.109519] [TTM] Zone  kernel: Available graphics memory: 432674 kiB
[   14.109519] [TTM] Zone highmem: Available graphics memory: 1941382 kiB
[   14.109520] [TTM] Initializing pool allocator
[   14.109617] [TTM] Initializing DMA pool allocator
[   14.109826] [drm] radeon: 256M of VRAM memory ready
[   14.109833] [drm] radeon: 512M of GTT memory ready.
[   14.109990] [drm] Loading RS780 Microcode
[   14.110480] [drm] radeon: power management initialized
[   14.110483] [drm] GART: num cpu pages 131072, num gpu pages 131072
[   14.126817] [drm] PCIE GART of 512M enabled (table at 0x00000000C0040000).
[   14.126993] radeon 0000:01:05.0: WB enabled
[   14.126995] radeon 0000:01:05.0: fence driver on ring 0 use gpu addr 0x00000000a0000c00 and cpu addr 0xffc95c00
[   14.127004] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   14.127004] [drm] Driver supports precise vblank timestamp query.
[   14.127006] radeon 0000:01:05.0: Radeon device interrupt IRQ18
[   14.127048] [drm] radeon: irq initialized.
[   14.161062] [drm] ring test on 0 succeeded in 0 usecs
[   14.161339] [drm] ib test on ring 0 succeeded in 0 usecs
[   14.164468] [drm] Radeon Display Connectors
[   14.164468] [drm] Connector 0:
[   14.164469] [drm]   VGA-1
[   14.164470] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[   14.164470] [drm]   Encoders:
[   14.164471] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[   14.164471] [drm] Connector 1:
[   14.164471] [drm]   HDMI-A-1
[   14.164472] [drm]   HPD3
[   14.164473] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[   14.164473] [drm]   Encoders:
[   14.164473] [drm]     DFP3: INTERNAL_KLDSCP_LVTMA
[   14.172707] radeon 0000:01:05.0: No connectors reported connected with modes
[   14.172733] [drm] Cannot find any crtc or sizes - going 1024x768
[   14.186828] [drm] fb mappable at 0xD0141000
[   14.186829] [drm] vram apper at 0xD0000000
[   14.186829] [drm] size 3145728
[   14.186830] [drm] fb depth is 24
[   14.186830] [drm]    pitch is 4096
[   14.258263] ata3: SATA link down (SStatus 0 SControl 300)
[   14.258314] ata5: SATA link down (SStatus 0 SControl 300)
[   14.262265] ata6: SATA link down (SStatus 0 SControl 300)
[   14.265263] ata7: SATA link down (SStatus 0 SControl 300)
[   14.386799] fbcon: radeondrmfb (fb0) is primary device
[   14.399999] Console: switching to colour frame buffer device 128x4onmfb frame buffer device
[   14.425538] radeon 0000:01:05.0: registered panic notifier
^G^G^G^G^G^G^G^G^G^G^G^G^G[   14.440150] [drm] Initialized radeon 2.39.0 20080528 for 0000:01:05.0 on minor 0
[   14.447987] initcall radeon_init+0x0/0xb0 [radeon] returned 0 after 334245 usecs
[   14.491102] ata4: SATA link down (SStatus 0 SControl 300)
[   14.650937] ata2: softreset failed (device not ready)
[   14.656138] ata2: applying PMP SRST workaround and retrying
[   14888] ata1: softreset failed (device not ready)
[   14.667094] ata1: applying PMP SRST workaround and retrying
^G[   14.825782] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[   14.832166] ata1: SATA link up 1.5 Gbps (SStatus 113 S
[   14.853975] ata1.00: 156250000 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   14.856083] ata2.00: configured for UDMA/133
[   14.857025] ata1.00: configured for UDMA/133
[   14.857448] scsi 0:0:0:0: Direct-Access     ATA      Maxtor 6L080M0   1G10 PQ: 0 ANSI: 5
[   14.859006] scsi 1:0:0:0: Direct-Access     ATA      Maxtor 6L080M0   1G10 PQ: 0 ANSI: 5
^G^G^G^G^G^G^G^G[   14.895922] modprobe (1370) used greatest stack depth: 5404 bytes left
^G^G^G^G^G^G^G^G[   14.904639] calling  crc_t10dif_mod_init+0x0/0x1000 [crc_t10dif] @ 2549
^G^G^G^G^G^G^G^G[   14.913294] calling  crct10dif_mod_init+0x0/0x1000 [crct10dif_generic] @ 2554
^G^G^G^G^G^G^G^G[   14.920813] initcall crct10dif_mod_init+0x0/0x1000 [crct10dif_generic] returned 0 after 72 usecs
^G^G^G^G^G^G^G^G[   14.932141] initcall crc_t10dif_mod_init+0x0/0x1000 [crc_t10dif] returned 0 after 19732 usecs
^G^G^G^G^G^G^G^G[   14.942552] calling  init_sd+0x0/0x1000 [sd_mod] @ 2549
[   14.949182] sd 0:0:0:0: [sda] 156250000 512-byte logical blocks: (80.0 GB/74.5 GiB)
[   14.949541] initcall init_sd+0x0/0x1000 [sd_mod] returned 0 after 1290 usecs
[   14.949635] sd 1:0:0:0: [sdb] 156250000 512-byte logical blocks: (80.0 GB/74.5 GiB)
[   14.949896] sd 1:0:0:0: [sdb] Write Protect is off
[   14.949898] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[   14.949998] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   14.975458]  sdb: sdb1
[   14.976723] sd 1:0:0:0: [sdb] Attached SCSI disk
[   14.999076] sd 0:0:0:0: [sda] Write Protect is off
[   15.004037] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[   15.009362] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   15.053396]  sda: sda1 sda2 < sda5 >
[   15.059082] sd 0:0:0:0: [sda] Attached SCSI disk
[   15.066299] calling  init_sg+0x0/0x1000 [sg] @ 2573
[   15.071748] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   15.077563] sd 1:0:0:0: Attached scsi generic sg1 type 0
[   15.083104] initcall init_sg+0x0/0x1000 [sg] returned 0 after 11496 usecs
Waiting for init.pre_custom [  OK  ]
Waiting for fb [  OK  ]
Waiting for network [  OK  ]
Bringing up loopback interface:  [  OK  ]
Bringing up interface eth0:  [   15.307607] r8169 0000:02:00.0 eth0: link down
[   15.307622] r8169 0000:02:00.0 eth0: link down
[   15.316804] IPv6: ADDRCady
^G^G^G^G^G^G^G^G^G[   15.324819] device eth0 entered promiscuous mode
[  OK  ]
Bringing up interface eth1:  
Determining IP information for e[   15.361350] skge 0000:04:05.0 eth1: enabling interface
th1...[   15.374652] IPv6: ADDRCONFG^G^G^G^G^G[   17.608867] r8169 0000:02:00.0 eth0: link up
[   17.613269] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   18.705312] skge 0000:04:05.0 eth1: Link is up at 1000 Mbps, full duplex, flow control both
[   18.713916] IPv6: ADDRCONF(NEomes ready
^G^G^G^G^G^G^G done.
[  OK  ]
Bringing up interface switch:  
Determining IP information for s[   21.847151] switch: port 1(eth0) entered forwarding state
w1(eth0) entered forwarding state
^G^G^G^G^G^G^G^G^G done.
[  OK  ]
touch: cannot touch `/var/lock/subsys/network': No such file or directory
Waiting for init.custom [  OK  ]

Starting SSHd ...

    SSH started [2998]


Waiting for SSHd [  OK  ]
WARNING: ssh currently running [2998] ignoring start request
[   24.227539] calling  crc32c_intel_mod_init+0x0/0x1000 [crc32c_intel] @ 3034
[   24.234719] initcall crc32c_intel_mod_init+0x@ 3034
[   24.254672] ttyS0: 3 input overrun(s)
[   24.254696] initcall crc32c_mod_init+0x0/0x1000 [crc32c_generic] returned 0 after 126 usecs
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G[   24.268757] calling  libcrc32c_mod_init+0x0/0x1000 [libcrc32c] @ 3039
[   24.276561] initcall libcrc32c_mod_init+0x0/0x1000 [libcrc32c] returned 0 after 6 usecs
[   24.287383] calling  iscsi_transport_init+0x0/0x1000 [scsi_transport_iscsi] @ 3041
[   24.295179] Loading iSCSI transport class v2.0-870.
[   24.300850] initcall iscsi_transport_init+0x0/0x1000 [scsi_transport_iscsi] returned 0 after 5538 usecs
[   24.313214] calling  iscsi_sw_tcp_init+0x0/0x1000 [iscsi_tcp] @ 3041
[   24.319963] iscsi: registered transport (tcp)
[   24.324452] initcall iscsi_sw_tcp_init+0x0/0x1000 [iscsi_tcp] returned 0 after 4570 usecs
Could not read fw values.
Jul 15 16:05:10 tst034 syslogd 1.5.0: restart.
[0:0:0:0]    disk    ATA      Maxtor 6L080M0   1G10 ^G00:00.0 Host bridge: Advanced Micro Devices [AMD] RS780 Host Bridge
00:01.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (int gfx)
00:06.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 2)
00:07.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 3)
00:11.0 SATA controller: ATI Technologies Inc SB700/SB800 SATA Controller [AHCI mode]
00:12.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller
00:12.1 USB Controller: ATI Technologies Inc SB700 USB OHCI1 Controller
00:12.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller
00:13.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller
00:13.1 USB Controller: ATI Technologies Inc SB700 USB OHCI1 Controller
00:13.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller
00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 3a)
00:14.3 ISA bridge: ATI Technologies Inc SB700/SB800 LPC host controller
00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge
00:14.5 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI2 Controller
00:18.0 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] HyperTransport Configuration
00:18.1 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] Address Map
00:18.2 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] DRAM Controller
00:18.3 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] Miscellaneous Control
00:18.4 Host bridge: Advanced Micro Devices [AMD] K10 [Opteron, Athlon64, Sempron] Link Control
01:05.0 VGA compatible controller: ATI Technologies Inc Radeon HD 3200 Graphics
01:05.1 Audio device: ATI Technologies Inc RS780 Azalia controller
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)
03:00.0 SATA controller: JMicron Technology Corp. JMB361 AHCI/IDE (rev 02)
03:00.1 IDE interface: JMicron Technology Corp. JMB361 AHCI/IDE (rev 02)
04:05.0 Ethernet controller: 3Com Corporation 3c940 10/100/1000Base-T [Marvell] (rev 10)
04:07.0 Serial controller: NetMos Technology PCI 9835 Multi-I/O Controller (rev 01)
           CPU0       CPU1       CPU2       CPU3       
  0:      10841          0          0          0   IO-APIC-edge      timer
  1:          0          0          0          2   IO-APIC-edge      i8042
  8:          1          0         16         46   IO-APIC-edge      rtc0
  9:          0          0          0          0   IO-APIC-fasteoi   acpi
 12:          0          0          0          4   IO-APIC-edge      i8042
 16:          0          0          0          2   IO-APIC  16-fasteoi   ohci_hcd:usb3, ohci_hcd:usb4
 17:          0          0          0          0   IO-APIC  17-fasteoi   ehci_hcd:usb1
 18:          0          0          0          6   IO-APIC  18-fasteoi   ohci_hcd:usb5, ohci_hcd:usb6, ohci_hcd:usb7, radeon
 19:          0          0          0          0   IO-APIC  19-fasteoi   ehci_hcd:usb2, ahci
 20:          0          0          8         17   IO-APIC  20-fasteoi   eth1
 22:          0          1         11        186   IO-APIC  22-fasteoi   serial, ahci
 26:          1          0          2        129   PCI-MSI-edge      eth0
NMI:          0          0          0          0   Non-maskable interrupts
LOC:       1982       7383       6983       8933   Local timer interrupts
SPU:          0          0          0          0   Spurious interrupts
PMI:          0          0          0          0   Performance monitoring interrupts
IWI:          0          0          0          0   IRQ work interrupts
RTR:          0          0          0          0   APIC ICR read retries
RES:       2318       2461       2445       2118   Rescheduling interrupts
CAL:        373        175        369        384   Function call interrupts
TLB:         50         77         89        101   TLB shootdowns
TRM:          0          0          0          0   Thermal event interrupts
THR:          0          0          0          0   Threshold APIC interrupts
MCE:          0          0          0          0   Machine check exceptions
MCP:          1          1          1          1   Machine check polls
THR:          0          0          0          0   Hypervisor callback interrupts
ERR:          0
MIS:          0
00000000-00000fff : reserved
00001000-0009f3ff : System RAM
0009f400-0009ffff : reserved
000a0000-000bffff : PCI Bus 0000:00
  000a0000-000bffff : Video RAM area
000c0000-000cebff : Video ROM
000cf000-000d09ff : Adapter ROM
000d1000-000d1fff : Adapter ROM
000d5000-000d57ff : Adapter ROM
000e6000-000fffff : reserved
  000f0000-000fffff : System ROM
00100000-cfeaffff : System RAM
  01000000-0161f626 : Kernel code
  0161f627-0185cbbf : Kernel data
  01950000-01a29fff : Kernel bss
cfeb0000-cfebdfff : ACPI Tables
cfebe000-cfedffff : ACPI Non-volatile Storage
cfee0000-cfefffff : reserved
cff00000-dfffffff : PCI Bus 0000:00
  d0000000-dfffffff : PCI Bus 0000:01
    d0000000-dfffffff : 0000:01:05.0
e0000000-efffffff : PCI MMCONFIG 0000 [bus 00-ff]
  e0000000-efffffff : pnp 00:05
f0000000-febfffff : PCI Bus 0000:00
  fdf00000-fdffffff : PCI Bus 0000:02
    fdff0000-fdffffff : 0000:02:00.0
      fdff0000-fdffffff : r8169
  fe6f6000-fe6f6fff : 0000:00:14.5
    fe6f6000-fe6f6fff : ohci_hcd
  fe6f7000-fe6f7fff : 0000:00:13.1
    fe6f7000-fe6f7fff : ohci_hcd
  fe6fc000-fe6fcfff : 0000:00:13.0
    fe6fc000-fe6fcfff : ohci_hcd
  fe6fd000-fe6fdfff : 0000:00:12.1
    fe6fd000-fe6fdfff : ohci_hcd
  fe6fe000-fe6fefff : 0000:00:12.0
    fe6fe000-fe6fefff : ohci_hcd
  fe6ff400-fe6ff4ff : 0000:00:13.2
    fe6ff400-fe6ff4ff : ehci_hcd
  fe6ff800-fe6ff8ff : 0000:00:12.2
    fe6ff800-fe6ff8ff : ehci_hcd
  fe6ffc00-fe6fffff : 0000:00:11.0
    fe6ffc00-fe6fffff : ahci
  fe700000-fe8fffff : PCI Bus 0000:01
    fe700000-fe7fffff : 0000:01:05.0
    fe8e8000-fe8ebfff : 0000:01:05.1
    fe8f0000-fe8fffff : 0000:01:05.0
  fe900000-fe9fffff : PCI Bus 0000:02
    fe9c0000-fe9dffff : 0000:02:00.0
    fe9ff000-fe9fffff : 0000:02:00.0
      fe9ff000-fe9fffff : r8169
  fea00000-feafffff : PCI Bus 0000:03
    feafe000-feafffff : 0000:03:00.0
      feafe000-feafffff : ahci
  feb00000-febfffff : PCI Bus 0000:04
    febc0000-febdffff : 0000:04:05.0
    febfc000-febfffff : 0000:04:05.0
      febfc000-febfffff : skge
fec00000-fec003ff : IOAPIC 0
fec10000-fec1001f : pnp 00:03
fed00000-fed003ff : HPET 2
  fed00000-fed003ff : PNP0103:00
fee00000-fee00fff : Local APIC
  fee00000-fee00fff : pnp 00:02
ff700000-ffffffff : reserved
  ffb80000-ffbfffff : pnp 00:03
100000000-11fffffff : System RAM
MemTotal:        3882764 kB
MemFree:         3582332 kB
MemAvailable:    3493596 kB
Buffers:               0 kB
Cached:           241832 kB
SwapCached:            0 kB
Active:            41884 kB
Inactive:         201360 kB
Active(anon):      41884 kB
Inactive(anon):   201360 kB
Active(file):          0 kB
Inactive(file):        0 kB
Unevictable:        2664 kB
Mlocked:            2664 kB
HighTotal:       3017416 kB
HighFree:        2796172 kB
LowTotal:         865348 kB
LowFree:          786160 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:                 0 kB
Writeback:             0 kB
AnonPages:          3920 kB
Mapped:             5760 kB
Shmem:            241832 kB
Slab:              41248 kB
SReclaimable:       6108 kB
SUnreclaim:        35140 kB
KernelStack:         912 kB
PageTables:          292 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:     1941380 kB
Committed_AS:     249636 kB
VmallocTotal:     122880 kB
VmallocUsed:       10576 kB
VmallocChunk:     105972 kB
AnonHugePages:         0 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:       12280 kB
DirectMap2M:      901120 kB
Waiting for init.late [  OK  ]
+ . /etc/init.d/functions
++ TEXTDOMAIN=initscripts
++ umask 022
++ PATH=/sbin:/usr/sbin:/bin:/usr/bin
++ export PATH
++ '[' -z '' ']'
++ COLUMNS=80
++ '[' -z '' ']'
+++ /sbin/consoletype
++ CONSOLETYPE=serial
++ '[' -f /etc/sysconfig/i18n -a -z '' -a -z '' ']'
++ '[' -z '' ']'
++ '[' -f /etc/sysconfig/init ']'
++ . /etc/sysconfig/init
+++ BOOTUP=color
+++ RES_COL=60
+++ MOVE_TO_COL='echo -en \033[60G'
+++ SETCOLOR_SUCCESS='echo -en \033[0;32m'
+++ SETCOLOR_FAILURE='echo -en \033[0;31m'
+++ SETCOLOR_WARNING='echo -en \033[0;33m'
+++ SETCOLOR_NORMAL='echo -en \033[0;39m'
+++ LOGLEVEL=3
+++ PROMPT=yes
+++ AUTOSWAP=no
+++ ACTIVE_CONSOLES='/dev/tty[1-6]'
++ '[' serial = serial ']'
++ BOOTUP=serial
++ MOVE_TO_COL=
++ SETCOLOR_SUCCESS=
++ SETCOLOR_FAILURE=
++ SETCOLOR_WARNING=
++ SETCOLOR_NORMAL=
++ __sed_discard_ignored_files='/\(~\|\.bak\|\.orig\|\.rpmnew\|\.rpmorig\|\.rpmsave\)$/d'
+ mkdir -p /mnt/lab
+ echo '192.168.102.1  build'
+ ping -q -c 1 build
PING build.dumpdata.com (192.168.102.1) 56(84) bytes of data.

--- build.dumpdata.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.287/0.287/0.287/0.000 ms
+ '[' 0 -eq 0 ']'
+ mount build:/srv/tftpboot/lab /mnt/lab -o vers=3
[   25.269431] mount.nfs (3088) used greatest stack depth: 5372 bytes left
+ iscsiadm -m discovery -t st -p build
192.168.102.
+ iscsiadm -m node -L all
Logging in to [iface: default, target: iqn.2003-01.org.linux-iscsi.target:sn.bd5777dc54e541e0bd772761999275e6, portal: 192.168.102.1,3260]
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^GJul 15 16:05:11 tst034 iscsid: transport class version 2.0-870. iscsid version 2.0-870
Jul 15 16:05:11 tst034 iscsid: iSCSI da^G[   25.537079] scsi8 : iSCSI Initiator over TCP/IP
[   25.800158] scsi 8:0:0:0: Direct-Access     LIO-ORG  IBLOCK           4.0  PQ: 0 ANSI: 5
[   25.811364] sd 8:0:0:0: [sdc] 1953380352 512-byte logical blocks: (1.00 TB/931 GiB)
[   25.811414] sd 8:0:0:0: Attached scsi generic sg2 type 0
Login to [iface:[   25.825780] sd 8:0:0:0: [sdc] Write Protect is off
 default, target[   25.831091] sd 8:0:0:0: [sdc] Mode Sense: 2f 00 00 00
: iqn.2003-01.or[   25.838442] calling  dm_init+0x0/0x3f [dm_mod] @ 3110
[   25.838629] sd 8:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
g.linux-iscsi.ta[   25.854284] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
rget:sn.bd5777dc[   25.863893] initcall dm_init+0x0/0x3f [dm_mod] returned 0 after 9909 usecs
54e541e0bd772761[   25.873281] calling  dm_multipath_init+0x0/0x1000 [dm_multipath] @ 3110
999275e6, portal[   25.880852] device-mapper: multipath: version 1.7.0 loaded
: 192.168.102.1,[   25.887720] initcall dm_multipath_init+0x0/0x1000 [dm_multipath] returned 0 after 6941 usecs
3260]: successful
+ modprobe dm-multipath
+ sleep 5
[   25.905012]  sdc: unknown partition table
[   25.931530] sd 8:0:0:0: [sdc] Attached SCSI disk
Jul 15 16:05:12 tst034 iscsid: connection1:0 is operational now
+ pvscan
  PV /dev/sdc   VG guests   lvm2 [931.44 GiB / 113.44 GiB free]
  Total: 1 [931.44 GiB] / in use: 1 [931.44 GiB] / in no VG: 0 G^G  31 logical volume(s) in volume group "guests" now active
+ echo 'NFS done'
NFS done
+ xl info
xc: error: Could not obtain annot init xl context
+ '[' -e /sys/kernel/debug/xen/mmu/p2m ']'
+ cat /sys/kernel/debug/xen/mmu/p2m
++ boot_parameter cpuplug
++ local param
++ local value
+++ cat /proc/cmdline
+++ tr -s ' \t' '\n'
+++ egrep '^cpuplug=|^cpuplug$'
+++ tail -1
++ param=
++ '[' -z '' ']'
++ return 1
+ HOTPLUG=
+ '[' 1 -eq 0 ']'
+ TMEM_LOADED=0
+ swapon /dev/xvda
swapon: /dev/xvda: stat failed: No such file or directory
+ '[' 255 -eq 0 ']'
++ boot_parameter run
++ local param
++ local value
+++ cat /proc/cmdline
+++ tr -s ' \t' '\n'
+++ egrep '^run=|^run$'
+++ tail -1
++ param=
++ '[' -z '' ']'
++ return 1
+ HOTPLUG=
+ '[' 1 -eq 0 ']'
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^GJul 15 16:05:17 tst034 init: starting pid 3307, tty '/dev/tty1': '/bin/sh'
^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^G^GJul 15 16:05:19 tst034 init: reloading /etc/inittab
Jul 15 16:05:19 tst034 init: starting pid 3311, tty '/dev/ttyS0': '/bin/sh'


BusyBox v1.14.3 (2014-07-15 12:46:58 EDT) built-in shell (ash)
Enter 'help' for a list of built-in commands.

# 



[   36.890969] switch: port 1(eth0) entered forwarding state

# uname -a
Linux tst034.dumpdata.com 3.16.0-rc5upstream-01669-g4f5f437 #1 SMP Tue Jul 15 12:43:50 EDT 2014 i686 i686 i386 GNU/Linux
# dmesg | grep -i already
[    5.356229] pci 0000:00:12.0: already assigned IRQ14
[    5.439991] pci 0000:00:12.1: already assigned IRQ14
[    5.533830000:00:14.5: already assigned IRQ10
[    9.449029] pcieport 0000:00:06.0: already assigned IRQ10
[    9.476112] pcieport 0000:00:07.0: already assigned IRQ11
[   10.110879] serial 0000:04:07.0: already assigned IRQ15
[   13.763315] r8169 0000:02:00.0: already assigned IRQ10
[   13.830253] skge 0000:04:05.0: already assigned IRQ4
[   13.924311] ahci 0000:00:11.0: already assigned IRQ15
[   13.953101] ahci 0000:03:00.0: already assigned IRQ11
[   14.106445] radeon 0000:01:05.0: already assigned IRQ10
# # dmesg | grep -i already^[[J\b \b\b \b\b \b\b \b\b \b\b \bssigned
[    0.142309] LVT offset 0 assigned for vector 0xf9
[    5.356229] pci 0000:00:12.0: already assigned IRQ14
[    5.371499] pci 0000:00:12.0: assigned new IRQ16
[    5.439991] pci 0000:00:12.1: already assigned IRQ14
[    5.455209] pci 0000:00:12.1: assigned new IRQ16
[    5.533832] pci 0000:00:12.2: already assigned IRQ7
[    5.548917] pci 0000:00:12.2: assigned new IRQ17
[    5.555096] pci 0000:00:13.0: already assigned IRQ10
[    5.570298] pci 0000:00:13.0: assigned new IRQ18
[    5.648742] pci 0000:00:13.1: already assigned IRQ10
[    5.663965] pci 0000:00:13.1: assigned new IRQ18
[    5.742666] pci 0000:00:13.2: already assigned IRQ11
[    5.757899] pci 0000:00:13.2: assigned new IRQ19
[    5.764085] pci 0000:00:14.5: already assigned IRQ10
[    5.779285] pci 0000:00:14.5: assigned new IRQ18
[    7.988340] LVT offset 1 assigned for vector 0x400
[    7.993375] IBS: LVT offset 1 assigned
[    9.449029] pcieport 0000:00:06.0: already assigned IRQ10
[    9.465056] pcieport 0000:00:06.0: assigned new IRQ18
[    9.476112] pcieport 0000:00:07.0: already assigned IRQ11
[    9.492077] pcieport 0000:00:07.0: assigned new IRQ19
[   10.110879] serial 0000:04:07.0: already assigned IRQ15
[   10.125505] serial 0000:04:07.0: assigned new IRQ22
[   10.740348] ehci-pci 0000:00:12.2: assigned new IRQ17
[   10.754995] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[   10.846004] ehci-pci 0000:00:13.2: assigned new IRQ19
[   10.856909] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[   10.986207] ohci-pci 0000:00:12.0: assigned new IRQ16
[   10.997457] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
[   11.109823] ohci-pci 0000:00:12.1: assigned new IRQ16
[   11.121069] ohci-pci 0000:00:12.1: new USB bus registered, assigned bus number 4
[   11.233669] ohci-pci 0000:00:13.0: assigned new IRQ18
[   11.244921] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 5
[   11.357625] ohci-pci 0000:00:13.1: assigned new IRQ18
[   11.368877] ohci-pci 0000:00:13.1: new USB bus registered, assigned bus number 6
[   11.481425] ohci-pci 0000:00:14.5: assigned new IRQ18
[   11.492680] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 7
[   13.763315] r8169 0000:02:00.0: already assigned IRQ10
[   13.772025] r8169 0000:02:00.0: assigned new IRQ18
[   13.830253] skge 0000:04:05.0: already assigned IRQ4
[   13.830975] skge 0000:04:05.0: assigned new IRQ20
[   13.924311] ahci 0000:00:11.0: already assigned IRQ15
[   13.926512] ahci 0000:00:11.0: assigned new IRQ22
[   13.953101] ahci 0000:03:00.0: already assigned IRQ11
[   13.955249] ahci 0000:03:00.0: assigned new IRQ19
[   14.106445] radeon 0000:01:05.0: already assigned IRQ10
[   14.106828] radeon 0000:01:05.0: assigned new IRQ18
# 
telnet> Connection closed.
[Connecting to system 34 ]

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

* Re: [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms
  2014-07-15 16:10       ` Konrad Rzeszutek Wilk
@ 2014-07-16  3:01         ` Jiang Liu
  2014-07-16 13:33           ` Konrad Rzeszutek Wilk
  0 siblings, 1 reply; 25+ messages in thread
From: Jiang Liu @ 2014-07-16  3:01 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk
  Cc: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, x86, linux-kernel, linux-pci, linux-acpi

Hi Konrad,
	We have found the root cause with your great support. If BIOS
assigns an IRQ number for a PCI device, acpi_pci_irq_enable() fails to
assign IOAPIC IRQ then due to the check:
        if (dev->irq > 0)
                return 0;
	For a quick workaround, just comment out above check. But we
need some time to figure out a clean fixup for it. We will send out new
version once it gets resolved.
	Thanks for your great help again.
Regards!
Gerry
On 2014/7/16 0:10, Konrad Rzeszutek Wilk wrote:
> already assigned IRQ

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

* Re: [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms
  2014-07-16  3:01         ` Jiang Liu
@ 2014-07-16 13:33           ` Konrad Rzeszutek Wilk
  0 siblings, 0 replies; 25+ messages in thread
From: Konrad Rzeszutek Wilk @ 2014-07-16 13:33 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Benjamin Herrenschmidt, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, Rafael J. Wysocki, Bjorn Helgaas, Randy Dunlap,
	Yinghai Lu, Andrew Morton, Tony Luck, Joerg Roedel,
	Greg Kroah-Hartman, x86, linux-kernel, linux-pci, linux-acpi

On Wed, Jul 16, 2014 at 11:01:45AM +0800, Jiang Liu wrote:
> Hi Konrad,

Hey Jiang,
> 	We have found the root cause with your great support. If BIOS
> assigns an IRQ number for a PCI device, acpi_pci_irq_enable() fails to

I would think that is a common scenario?

> assign IOAPIC IRQ then due to the check:
>         if (dev->irq > 0)
>                 return 0;

I should really look in the code to figure this out - but I think your
patch will have a detail analysis that will make tglrx happy, so
will just wait till then :-)

> 	For a quick workaround, just comment out above check. But we
> need some time to figure out a clean fixup for it. We will send out new
> version once it gets resolved.

Excellent. Once you do, please do give me the git tree so I can slurp
it in my testing

> 	Thanks for your great help again.

Of course! Thank you for your quick turn-around.
> Regards!
> Gerry
> On 2014/7/16 0:10, Konrad Rzeszutek Wilk wrote:
> > already assigned IRQ

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

end of thread, other threads:[~2014-07-16 13:39 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-25  8:40 [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Jiang Liu
2014-06-25  8:40 ` [Patch V3 01/16] x86, irq, ACPI: Protect acpi_pci_irq_enable() from reentrance Jiang Liu
2014-06-25  8:40 ` [Patch V3 02/16] ACPI: Make map_mat_entry handle x2apic entry Jiang Liu
2014-06-25  8:40 ` [Patch V3 03/16] ACPI: Correct return value of acpi_dev_resource_address_space() Jiang Liu
2014-06-25  8:40 ` [Patch V3 04/16] x86, PCI, ACPI: Kill private function resource_to_addr() Jiang Liu
2014-06-25  8:40 ` [Patch V3 05/16] ACPI: Move acpi_get_cpuid() to separated file Jiang Liu
2014-06-25  8:40 ` [Patch V3 06/16] x86, irq: Split out alloc_ioapic_save_registers() Jiang Liu
2014-06-25  8:40 ` [Patch V3 07/16] x86, ioapic: Find usable ioapic id for 64bit Jiang Liu
2014-06-25  8:40 ` [Patch V3 08/16] ACPI, ioapic: Add acpi_get_ioapic_id() Jiang Liu
2014-06-25  8:40 ` [Patch V3 09/16] x86, irq: Remove __init marker for functions will be used by IOAPIC hotplug Jiang Liu
2014-06-25  8:40 ` [Patch V3 10/16] x86, irq: Refine mp_register_ioapic() to prepare for " Jiang Liu
2014-06-25  8:40 ` [Patch V3 11/16] x86, irq, ACPI: Introduce a rwsem to protect IOAPIC operations from hotplug Jiang Liu
2014-06-25  8:40 ` [Patch V3 12/16] x86, irq, ACPI: Implement interface to support ACPI based IOAPIC hot-addition Jiang Liu
2014-06-25  8:40 ` [Patch V3 13/16] x86, irq, ACPI: Implement interface to support ACPI based IOAPIC hot-removal Jiang Liu
2014-06-25  8:40 ` [Patch V3 14/16] x86, irq: Introduce helper to check whether an IOAPIC has been registered Jiang Liu
2014-06-25  8:40 ` [Patch V3 15/16] PCI: Remove PCI ioapic driver Jiang Liu
2014-06-25  8:40 ` [Patch V3 16/16] x86, irq, ACPI: Implement ACPI driver to support IOAPIC hotplug Jiang Liu
2014-06-25 14:44 ` [Patch V3 00/16] Enable support of IOAPIC hotplug on x86 platforms Konrad Rzeszutek Wilk
2014-06-27 14:43   ` Jiang Liu
2014-07-14 17:26 ` Konrad Rzeszutek Wilk
2014-07-14 19:41   ` Konrad Rzeszutek Wilk
2014-07-15 15:27     ` Jiang Liu
2014-07-15 16:10       ` Konrad Rzeszutek Wilk
2014-07-16  3:01         ` Jiang Liu
2014-07-16 13:33           ` Konrad Rzeszutek Wilk

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.