From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Jan Beulich <JBeulich@suse.com>
Cc: George Dunlap <george.dunlap@eu.citrix.com>,
Andrew Cooper <andrew.cooper3@citrix.com>,
Xen-devel <xen-devel@lists.xen.org>
Subject: Re: [PATCH] x86/msi: Validate the guest-identified PCI devices in pci_prepare_msix()
Date: Fri, 24 Jan 2014 12:43:49 -0500 [thread overview]
Message-ID: <20140124174349.GA15472@phenom.dumpdata.com> (raw)
In-Reply-To: <52E2A0930200007800116CAE@nat28.tlf.novell.com>
[-- Attachment #1: Type: text/plain, Size: 5844 bytes --]
On Fri, Jan 24, 2014 at 04:19:15PM +0000, Jan Beulich wrote:
> >>> On 24.01.14 at 16:01, Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> wrote:
> > I built the kernel without the igb driver just to eliminate it being
> > the culprit. Now I can boot without issues and this is what lspci
> > reports:
> >
> > -bash-4.1# lspci -s 02:00.0 -v
> > 02:00.0 Ethernet controller: Intel Corporation 82576 Gigabit Network
> > Connection (rev 01)
> > Subsystem: Intel Corporation Gigabit ET Dual Port Server Adapter
> > Flags: bus master, fast devsel, latency 0, IRQ 10
> > Memory at f1420000 (32-bit, non-prefetchable) [size=128K]
> > Memory at f1000000 (32-bit, non-prefetchable) [size=4M]
> > I/O ports at e020 [size=32]
> > Memory at f1444000 (32-bit, non-prefetchable) [size=16K]
> > Expansion ROM at f0c00000 [disabled] [size=4M]
> > Capabilities: [40] Power Management version 3
> > Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+
> > Capabilities: [70] MSI-X: Enable- Count=10 Masked-
>
> So here's a patch to figure out why we don't find this.
Thank you!
See attached log. The corresponding xen-syms is compressed and
updated at : http://darnok.org/xen/xen-syms.gz
The interesting bit is:
(XEN) 02:00.0: status=0010 (alloc_pdev+0xb4/0x2e9 wants 11)
(XEN) 02:00.0: pos=40
(XEN) 02:00.0: id=01
(XEN) 02:00.0: pos=50
(XEN) 02:00.0: id=05
(XEN) 02:00.0: pos=70
(XEN) 02:00.0: id=11
(XEN) 02:00.1: status=0010 (alloc_pdev+0xb4/0x2e9 wants 11)
(XEN) 02:00.1: pos=40
(XEN) 02:00.1: id=01
(XEN) 02:00.1: pos=50
(XEN) 02:00.1: id=05
(XEN) 02:00.1: pos=70
(XEN) 02:00.1: id=11
The diff of the tree is:
diff --git a/xen/arch/x86/msi.c b/xen/arch/x86/msi.c
index 284042e..3eadf9f 100644
--- a/xen/arch/x86/msi.c
+++ b/xen/arch/x86/msi.c
@@ -1033,7 +1033,7 @@ int pci_prepare_msix(u16 seg, u8 bus, u8 devfn, bool_t off)
spin_lock(&pcidevs_lock);
pdev = pci_get_pdev(seg, bus, devfn);
- if ( !pdev )
+ if ( !pdev || !pdev->msix )
rc = -ENODEV;
else if ( pdev->msix->used_entries != !!off )
rc = -EBUSY;
diff --git a/xen/arch/x86/physdev.c b/xen/arch/x86/physdev.c
index 1040b2c..ff5587b 100644
--- a/xen/arch/x86/physdev.c
+++ b/xen/arch/x86/physdev.c
@@ -564,7 +564,7 @@ ret_t do_physdev_op(int cmd, XEN_GUEST_HANDLE_PARAM(void) arg)
ret = -EFAULT;
if ( copy_from_guest(&manage_pci, arg, 1) != 0 )
break;
-
+ printk("PHYSDEVOP_manage_pci_add of %x:%x.%x\n", manage_pci.bus, PCI_SLOT(manage_pci.devfn), PCI_FUNC(manage_pci.devfn));
ret = pci_add_device(0, manage_pci.bus, manage_pci.devfn, NULL);
break;
}
@@ -588,6 +588,7 @@ ret_t do_physdev_op(int cmd, XEN_GUEST_HANDLE_PARAM(void) arg)
break;
ret = -EINVAL;
+ printk("PHYSDEVOP_manage_pci_add_ext of %x:%x.%x %d,%d\n", manage_pci_ext.bus, PCI_SLOT(manage_pci_ext.devfn), PCI_FUNC(manage_pci_ext.devfn), manage_pci_ext.is_extfn, manage_pci_ext.is_virtfn);
if ( (manage_pci_ext.is_extfn > 1) || (manage_pci_ext.is_virtfn > 1) )
break;
@@ -609,6 +610,7 @@ ret_t do_physdev_op(int cmd, XEN_GUEST_HANDLE_PARAM(void) arg)
if ( copy_from_guest(&add, arg, 1) != 0 )
break;
+ printk("PHYSDEVOP_pci_device_add of %x:%x.%x flags:%x\n", add.bus, PCI_SLOT(add.devfn), PCI_FUNC(add.devfn), add.flags);
pdev_info.is_extfn = !!(add.flags & XEN_PCI_DEV_EXTFN);
if ( add.flags & XEN_PCI_DEV_VIRTFN )
{
@@ -639,9 +641,11 @@ ret_t do_physdev_op(int cmd, XEN_GUEST_HANDLE_PARAM(void) arg)
if ( copy_from_guest(&dev, arg, 1) )
ret = -EFAULT;
- else
+ else {
+ printk("PHYSDEVOP_prepare/release_msix of %x:%x.%x \n", dev.bus, PCI_SLOT(dev.devfn), PCI_FUNC(dev.devfn));
ret = pci_prepare_msix(dev.seg, dev.bus, dev.devfn,
cmd != PHYSDEVOP_prepare_msix);
+ }
break;
}
diff --git a/xen/drivers/passthrough/pci.c b/xen/drivers/passthrough/pci.c
index c5c8344..93ba11c 100644
--- a/xen/drivers/passthrough/pci.c
+++ b/xen/drivers/passthrough/pci.c
@@ -172,7 +172,7 @@ static struct pci_dev *alloc_pdev(struct pci_seg *pseg, u8 bus, u8 devfn)
INIT_LIST_HEAD(&pdev->msi_list);
if ( pci_find_cap_offset(pseg->nr, bus, PCI_SLOT(devfn), PCI_FUNC(devfn),
- PCI_CAP_ID_MSIX) )
+ PCI_CAP_ID_MSIX | 0x80) )
{
struct arch_msix *msix = xzalloc(struct arch_msix);
diff --git a/xen/drivers/pci/pci.c b/xen/drivers/pci/pci.c
index 25dc5f1..9f9a371 100644
--- a/xen/drivers/pci/pci.c
+++ b/xen/drivers/pci/pci.c
@@ -14,19 +14,24 @@ int pci_find_cap_offset(u16 seg, u8 bus, u8 dev, u8 func, u8 cap)
int max_cap = 48;
u8 pos = PCI_CAPABILITY_LIST;
u16 status;
+bool_t log = (cap & 0x80) && !seg && bus == 2;//temp
+cap &= ~0x80;//temp
status = pci_conf_read16(seg, bus, dev, func, PCI_STATUS);
+if(log) printk("02:%02x.%u: status=%04x (%ps wants %02x)\n", dev, func, status, __builtin_return_address(0), cap);//temp
if ( (status & PCI_STATUS_CAP_LIST) == 0 )
return 0;
while ( max_cap-- )
{
pos = pci_conf_read8(seg, bus, dev, func, pos);
+if(log) printk("02:%02x.%u: pos=%02x\n", dev, func, pos);//temp
if ( pos < 0x40 )
break;
pos &= ~3;
id = pci_conf_read8(seg, bus, dev, func, pos + PCI_CAP_LIST_ID);
+if(log) printk("02:%02x.%u: id=%02x\n", dev, func, id);//temp
if ( id == 0xff )
break;
@@ -35,6 +40,7 @@ int pci_find_cap_offset(u16 seg, u8 bus, u8 dev, u8 func, u8 cap)
pos += PCI_CAP_LIST_NEXT;
}
+if(log) printk("02:%02x.%u: no cap %02x\n", dev, func, cap);//temp
return 0;
}
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: tst035-jan.txt --]
[-- Type: text/plain; charset=utf-8, Size: 159151 bytes --]
Trying 192.168.102.15...
Connected to maxsrv2.
Escape character is '^]'.
\b \b^[[01;00H^[[0m^[[2;37;40mInitializing Intel(R) Boot Agent GE v1.3.22 ^[[02;00HPXE 2.1 Build 086 (WfM 2.0) ^[[03;00HPress Ctrl+S to enter the Setup Menu. ^[[04;00H ^[[05;00H ^[[06;00H ^[[07;00H ^[[08;00H ^[[09;00H ^[[10;00H ^[[11;00H ^[[12;00H ^[[13;00H ^[[14;00H ^[[15;00H ^[[16;00H ^[[17;00H ^[[18;00H ^[[19;00H ^[[20;00H ^[[21;00H ^[[22;00H ^[[23;00H ^[[24;00H ^[[24;00H^[[03;39H^[[03;00HPress Ctrl+S to enter the Setup Menu.. ^[[03;39H^[[03;39H^[[03;39H^[[03;39H^[[03;39H^[[03;39H^[[03;39H^[[03;39H^[[03;39H^[[03;39H^[[03;39H^[[03;39H\b \b^[[2J^[[1;1H^[[1;1H\b \b^[[01;00HInitializing Intel(R) Boot Agent GE v1.3.22 ^[[02;00HPXE 2.1 Build 086 (WfM 2.0) ^[[03;00H ^[[04;00H ^[[05;00HInitializing Intel(R) Boot Agent GE v1.3.22 ^[[06;00HPXE 2.1 Build 086 (WfM 2.0) ^[[07;00HPress Ctrl+S to enter the Setup Menu. ^[[08;00H ^[[09;00H ^[[10;00H ^[[11;00H ^[[12;00H ^[[13;00H ^[[14;00H ^[[15;00H ^[[16;00H ^[[17;00H ^[[18;00H ^[[19;00H ^[[20;00H ^[[21;00H ^[[22;00H ^[[23;00H ^[[24;00H ^[[24;00H^[[07;39H^[[07;00HPress Ctrl+S to enter the Setup Menu.. ^[[07;39H^[[07;39H^[[07;39H^[[07;39H^[[07;39H^[[07;39H^[[07;39H^[[07;39H^[[07;39H^[[07;39H^[[07;39H^[[07;39H\b \b^[[2J^[[1;1H^[[1;1H\b \b^[[01;00HInitializing Intel(R) Boot Agent GE v1.3.22 ^[[02;00HPXE 2.1 Build 086 (WfM 2.0) ^[[03;00H ^[[04;00H ^[[05;00HInitializing Intel(R) Boot Agent GE v1.3.22 ^[[06;00HPXE 2.1 Build 086 (WfM 2.0) ^[[07;00H ^[[08;00H ^[[09;00HInitializing Intel(R) Boot Agent GE v1.4.10 ^[[10;00HPXE 2.1 Build 092 (WfM 2.0) ^[[11;00HPress Ctrl+S to enter the Setup Menu. ^[[12;00H ^[[13;00H ^[[14;00H ^[[15;00H ^[[16;00H ^[[17;00H ^[[18;00H ^[[19;00H ^[[20;00H ^[[21;00H ^[[22;00H ^[[23;00H ^[[24;00H ^[[24;00H^[[11;39H^[[11;00HPress Ctrl+S to enter the Setup Menu.. ^[[11;39H^[[11;39H^[[11;39H^[[11;39H^[[11;39H^[[11;39H^[[11;39H^[[11;39H^[[11;39H^[[11;39H^[[11;39H^[[11;39H^[[11;39H\b \b^[[2J^[[1;1H^[[1;1H\b \b^[[01;00HInitializing Intel(R) Boot Agent GE v1.3.22 ^[[02;00HPXE 2.1 Build 086 (WfM 2.0) ^[[03;00H ^[[04;00H ^[[05;00HInitializing Intel(R) Boot Agent GE v1.3.22 ^[[06;00HPXE 2.1 Build 086 (WfM 2.0) ^[[07;00H ^[[08;00H ^[[09;00HInitializing Intel(R) Boot Agent GE v1.4.10 ^[[10;00HPXE 2.1 Build 092 (WfM 2.0) ^[[11;00H ^[[12;00H ^[[13;00HInitializing Intel(R) Boot Agent GE v1.4.10 ^[[14;00HPXE 2.1 Build 092 (WfM 2.0) ^[[15;00HPress Ctrl+S to enter the Setup Menu. ^[[16;00H ^[[17;00H ^[[18;00H ^[[19;00H ^[[20;00H ^[[21;00H ^[[22;00H ^[[23;00H ^[[24;00H ^[[24;00H^[[15;39H^[[15;00HPress Ctrl+S to enter the Setup Menu.. ^[[15;39H^[[15;39H^[[15;39H^[[15;39H^[[15;39H^[[15;39H^[[15;39H^[[15;39H^[[15;39H^[[15;39H^[[15;39H^[[15;39H^[[15;39H^[[15;39H^[[15;39H^[[15;39H\b \b^[[2J^[[1;1H^[[1;1H\b \b^[[01;00HInitializing Intel(R) Boot Agent GE v1.3.22 ^[[02;00HPXE 2.1 Build 086 (WfM 2.0) ^[[03;00H ^[[04;00H ^[[05;00HInitializing Intel(R) Boot Agent GE v1.3.22 ^[[06;00HPXE 2.1 Build 086 (WfM 2.0) ^[[07;00H ^[[08;00H ^[[09;00HInitializing Intel(R) Boot Agent GE v1.4.10 ^[[10;00HPXE 2.1 Build 092 (WfM 2.0) ^[[11;00H ^[[12;00H ^[[13;00HInitializing Intel(R) Boot Agent GE v1.4.10 ^[[14;00HPXE 2.1 Build 092 (WfM 2.0) ^[[15;00H ^[[16;00H ^[[17;00HInitializing Intel(R) Boot Agent GE v1.4.10 ^[[18;00HPXE 2.1 Build 092 (WfM 2.0) ^[[19;00HPress Ctrl+S to enter the Setup Menu. ^[[20;00H ^[[21;00H ^[[22;00H ^[[23;00H ^[[24;00H ^[[24;00H^[[19;39H^[[19;00HPress Ctrl+S to enter the Setup Menu.. ^[[19;39H^[[19;39H^[[19;39H^[[19;39H^[[19;39H^[[19;39H^[[19;39H^[[19;39H^[[19;39H^[[19;39H^[[19;39H^[[19;39H^[[19;39H^[[19;39H^[[19;39H^[[19;39H\b \b^[[2J^[[1;1H^[[1;1H\b \b^[[01;00H \b \b^[[2J^[[1;1H^[[1;1H^[[2J^[[1;1H^[[2J^[[1;1H\b \b^[[01;00H ^[[02;00HIntel(R) Boot Agent GE v1.4.10 ^[[03;00HCopyright (C) 1997-2012, Intel Corporation ^[[04;00H ^[[05;00HInitializing and establishing link... ^[[06;00H ^[[07;00H ^[[08;00H ^[[09;00H ^[[10;00H ^[[11;00H ^[[12;00H ^[[13;00H ^[[14;00H ^[[15;00H ^[[16;00H ^[[17;00H ^[[18;00H ^[[19;00H ^[[20;00H ^[[21;00H ^[[22;00H ^[[23;00H ^[[24;00H ^[[24;00H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;38H^[[05;00HCLIENT MAC ADDR: 00 25 90 86 BE F0 GUID: 00000000 0000 0000 0000 00259086BEF0 ^[[06;00HDHCP.\ ^[[06;06H^[[06;06H^[[06;00HDHCP.| ^[[06;06H^[[06;00HDHCP./ ^[[06;06H^[[06;00HDHCP.- ^[[06;06H^[[06;00HDHCP.\ ^[[06;06H^[[06;00HDHCP.| ^[[06;06H^[[06;00HDHCP./ ^[[06;06H^[[06;00HDHCP.- ^[[06;06H^[[06;00HDHCP.\ ^[[06;06H^[[06;00HDHCP.| ^[[06;06H^[[06;00HDHCP./ ^[[06;06H^[[06;00HDHCP.- ^[[06;06H^[[06;00HDHCP.\ ^[[06;06H^[[06;00HDHCP.| ^[[06;06H^[[06;00HDHCP./ ^[[06;06H^[[06;00HDHCP.- ^[[06;06H^[[06;00HDHCP.\ ^[[06;06H^[[06;00HCLIENT IP: 192.168.102.35 MASK: 255.255.255.0 DHCP IP: 192.168.102.1 ^[[07;00HGATEWAY IP: 192.168.102.1 ^[[08;00HTFTP. ^[[08;06H
PXELINUX 3.82 2009-06-09 Copyright (C) 1994-2009 H. Peter Anvin et al
Loading xen.gz... ^[[08;00Hok
Loading vmlinuz... ^[[01;00Hok
Loading initramfs.cpio.gz... ^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00H^[[01;00Hok
Loading microcode.bin... ^[[02;00Hok
Xen 4.4-rc2
(XEN) Xen version 4.4-rc2 (konrad@(none)) (gcc (GCC) 4.4.4 20100503 (Red Hat 4.4.4-2)) debug=y Fri Jan 24 12:22:58t:47a3c0-dirty
(XEN) Console output is synchronous.
(XEN) Bootloader: unknown
(XEN) Command line: dom0_max_vcpus=1 dom0_mem=max:2G iommu=debug,verbose com1=115200,8n1 console=com1 ucode=scan console_timestamps=1 console_to_ring conring_size=2097152 cpufreq=xen:performance,verbose sync_console noreboot loglvl=all guest_loglvl=all dom0_mem_max=max:6GB,2G
(XEN) Video information:
(XEN) VGA is text mode 80x25, font 8x16
(XEN) VBE/DDC methods: none; EDID transfer time: 0 seconds
(XEN) EDID info not retrieved because no DDC retrieval method detected
(XEN) Disc information:
(XEN) Found 1 MBR signatures
(XEN) Found 1 EDD information structures
(XEN) Xen-e820 RAM map:
(XEN) 0000000000000000 - 0000000000099c00 (usable)
(XEN) 0000000000099c00 - 00000000000a0000 (reserved)
(XEN) 00000000000e0000 - 0000000000100000 (reserved)
(XEN) 0000000000100000 - 00000000a58f1000 (usable)
(XEN) 00000000a58f1000 - 00000000a58f8000 (ACPI NVS)
(XEN) 00000000a58f8000 - 00000000a61b1000 (usable)
(XEN) 00000000a61b1000 - 00000000a6597000 (reserved)
(XEN) 00000000a6597000 - 00000000b74b4000 (usable)
(XEN) 00000000b74b4000 - 00000000b76cb000 (reserved)
(XEN) 00000000b76cb000 - 00000000b770c000 (usable)
(XEN) 00000000b770c000 - 00000000b77b9000 (ACPI NVS)
(XEN) 00000000b77b9000 - 00000000b7fff000 (reserved)
(XEN) 00000000b7fff000 - 00000000b8000000 (usable)
(XEN) 00000000bc000000 - 00000000be200000 (reserved)
(XEN) 00000000f8000000 - 00000000fc000000 (reserved)
(XEN) 00000000fec00000 - 00000000fec01000 (reserved)
(XEN) 00000000fed00000 - 00000000fed04000 (reserved)
(XEN) 00000000fed1c000 - 00000000fed20000 (reserved)
(XEN) 00000000fee00000 - 00000000fee01000 (reserved)
(XEN) 00000000ff000000 - 0000000100000000 (reserved)
(XEN) 0000000100000000 - 000000023fe00000 (usable)
(XEN) ACPI: RSDP 000F0490, 0024 (r2 ALASKA)
(XEN) ACPI: XSDT B7794098, 00AC (r1 ALASKA A M I 1072009 AMI 10013)
(XEN) CPI: APIC B779F1C8, 0092 (r3 ALASKA A M I 1072009 AMI 10013)
(XEN) ACPI: FPDT B779F260, 0044 (r1 ALASKA A M I 1072009 AMI 10013)
(XEN) ACPI: SSDT B779F2A8, 0540 (r1 PmRef Cpu0Ist 3000 INTL 20051117)
(XEN) ACPI: SSDT B779F7E8, 0AD8 (r1 PmRef CpuPm 3000 INTL 20051117)
(XEN) ACPI: SSDT B77A02C0, 02F2 (r1 PmRef Cpu0Tst 3000 INTL 20051117)
(XEN) ACPI: SSDT B77A05B8, 0348 (r1 PmRef ApTst 3000 INTL 20051117)
(XEN) ACPI: MCFG B77A0900, 003C (r1 ALASKA A M I 1072009 MSFT 97)
(XEN) ACPI: HPET B77A0940, 0038 (r1 ALASKA A M I 1072009 AMI. 5)
(XEN) ACPI: SSDT B77A0978, 036D (r1 SataRe SataTabl 1000 INTL 20091112)
(XEN) ACPI: SSDT B77A0CE8, 327D (r1 SaSsdt SaSsdt 3000 INTL 20091112)
(XEN) ACPI: ASF! B77A3F68, 00A5 (r32 INTEL HCG 1 TFSM F4240)
(XEN) ACPI: DMAR B77A4010, 00B8 (r1 INTEL HSW 1 INTL 1)
(XEN) ACPI: EINJ B77A40C8, 0130 (r1 AMI AMI EINJ 0 0)
(XEN) ACPI: ERST B77A41F8, 0230 (r1 AMIER AMI ERST 0 0)
(XEN) ACPI: HEST B77A4428, 00A8 (r1 AMI AMI HEST 0 0)
(XEN) ACPI: BERT B77A44D0, 0030 (r1 AMI AMI BERT 0 0)
(XEN) System RAM: 8046MB (8239752kB)
(XEN) No NUMA configuration found
(XEN) Faking a node at 0000000000000000-000000023fe00000
(XEN) Domain heap initialised
(XEN) found SMP MP-table at 000fd870
(XEN) DMI 2.7 present.
(XEN) Using APIC driver default
(XEN) ACPI: PM-Timer IO Port: 0x1808
(XEN) ACPI: v5 SLEEP INFO: control[0:0], status[0:0]
(XEN) ACPI: SLEEP INFO: pm1x_cnt[1804,0], pm1x_evt[1800,0]
(XEN) ACPI: 32/64X FACS address mismatch in FADT - b77b7080/0000000000000000, using 32
(XEN) ACPI: wakeup_vec[b77b708c], vec_size[20]
(XEN) ACPI: Local APIC address 0xfee00000
(XEN) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
(XEN) Processor #0 7:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
(XEN) Processor #2 7:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
(XEN) Processor #4 7:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
(XEN) Processor #6 7:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
(XEN) Processor #1 7:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
(XEN) Processor #3 7:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
(XEN) Processor #5 7:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
(XEN) Processor #7 7:12 APIC version 21
(XEN) ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
(XEN) ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
(XEN) IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
(XEN) ACPI: IRQ0 used by override.
(XEN) ACPI: IRQ2 used by override.
(XEN) ACPI: IRQ9 used by override.
(XEN) Enabling APIC mode: Flat. Using 1 I/O APICs
(XEN) ACPI: HPET id: 0x8086a701 base: 0xfed00000
(XEN) [VT-D]dmar.c:778: Host address width 39
(XEN) [VT-D]dmar.c:792: found ACPI_DMAR_DRHD:
(XEN) [VT-D]dmar.c:472: dmaru->address = fed90000
(XEN) [VT-D]iommu.c:1157: drhd->address = fed90000 iommu->reg = ffff82c000201000
(XEN) [VT-D]iommu.c:1159: cap = c0000020660462 ecap = f0101a
(XEN) [VT-D]dmar.c:383: endpoint: 0000:00:02.0
(XEN) [VT-D]dmar.c:792: found ACPI_DMAR_DRHD:
(XEN) [VT-D]dmar.c:472: dmaru->address = fed91000
(XEN) [VT-D]iommu.c:1157: drhd->address = fed91000 iommu->reg = ffff82c000203000
(XEN) [VT-D]iommu.c:1159: cap = d2008020660462 ecap = f010da
(XEN) [VT-D]dmar.c:397: IOAPIC: 0000:f0:1f.0
(XEN) [VT-D]dmar.c:361: MSI HPET: 0000:f0:0f.0
(XEN) [VT-D]dmar.c:486: flags: INCLUDE_ALL
(XEN) [VT-D]dmar.c:797: found ACPI_DMAR_RMRR:
(XEN) [VT-D]dmar.c:383: endpoint: 0000:00:1d.0
(XEN) [VT-D]dmar.c:383: endpoint: 0000:00:1a.0
(XEN) [VT-D]dmar.c:383: endpoint: 0000:00:14.0
(XEN) [VT-D]dmar.c:666: RMRR region: base_addr b764b000 end_address b7657fff
(XEN) [VT-D]dmar.c:797: found ACPI_DMAR_RMRR:
(XEN) [VT-D]dmar.c:383: endpoint: 0000:00:02.0
(XEN) [VT-D]dmar.c:666: RMRR region: base_addr bc000000 end_address be1fffff
(XEN) Xen ERST support is initialized.
(XEN) Using ACPI (MADT) for SMP configuration information
(XEN) SMP: Allowing 8 CPUs (0 hotplug CPUs)
(XEN) IRQ limits: 24 GSI, 1528 MSI/MSI-X
(XEN) Switched to APIC driver x2apic_cluster.
(XEN) Using scheduler: SMP Credit Scheduler (credit)
(XEN) Detected 3400.079 MHz processor.
(XEN) Initing memory sharing.
(XEN) xstate_init: using cntxt_size: 0x340 and states: 0x7
(XEN) mce_intel.c:717: MCA Capability: BCAST 1 SER 0 CMCI 1 firstbank 0 extended MCE MSR 0
(XEN) Intel machine check reporting enabled
(XEN) PCI: MCFG configuration 0: base f8000000 segment 0000 buses 00 - 3f
(XEN) PCI: MCFG area at f8000000 reserved in E820
(XEN) PCI: Using MCFG for segment 0000 bus 00-3f
(XEN) Intel VT-d iommu 0 supported page sizes: 4kB.
(XEN) Intel VT-d iommu 1 supported page sizes: 4kB.
(XEN) Intel VT-d Snoop Control not enabled.
(XEN) Intel VT-d Dom0 DMA Passthrough not enabled.
(XEN) Intel VT-d Queued Invalidation enabled.
(XEN) Intel VT-d Interrupt Remapping enabled.
(XEN) Intel VT-d Shared EPT tables not enabled.
(XEN) 02:00.0: status=0010 (alloc_pdev+0xb4/0x2e9 wants 11)
(XEN) 02:00.0: pos=40
(XEN) 02:00.0: id=01
(XEN) 02:00.0: pos=50
(XEN) 02:00.0: id=05
(XEN) 02:00.0: pos=70
(XEN) 02:00.0: id=11
(XEN) 02:00.1: status=0010 (alloc_pdev+0xb4/0x2e9 wants 11)
(XEN) 02:00.1: pos=40
(XEN) 02:00.1: id=01
(XEN) 02:00.1: pos=50
(XEN) 02:00.1: id=05
(XEN) 02:00.1: pos=70
(XEN) 02:00.1: id=11
(XEN) I/O virtualisation enabled
(XEN) - Dom0 mode: Relaxed
(XEN) Interrupt remapping enabled
(XEN) Enabled directed EOI with ioapic_ack_old on!
(XEN) ENABLING IO-APIC IRQs
(XEN) -> Using old ACK method
(XEN) ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1
(XEN) TSC deadline timer enabled
(XEN) [2014-01-25 01:29:31] Platform timer is 14.318MHz HPET
(XEN) [2014-01-25 01:29:31] Allocated console ring of 1048576 KiB.
(XEN) [2014-01-25 01:29:31] mwait-idle: MWAIT substates: 0x42120
(XEN) [2014-01-25 01:29:31] mwait-idle: v0.4 model 0x3c
(XEN) [2014-01-25 01:29:32] mwait-idle: lapic_timer_reliable_states 0xffffffff
(XEN) [2014-01-25 01:29:32] VMX: Supported advanced features:
(XEN) [2014-01-25 01:29:32] - APIC MMIO access virtualisation
(XEN) [2014-01-25 01:29:32] - APIC TPR shadow
(XEN) [2014-01-25 01:29:32] - Extended Page Tables (EPT)
(XEN) [2014-01-25 01:29:32] - Virtual-Processor Identifiers (VPID)
(XEN) [2014-01-25 01:29:32] - Virtual NMI
(XEN) [2014-01-25 01:29:32] - MSR direct-access bitmap
(XEN) [2014-01-25 01:29:32] - Unrestricted Guest
(XEN) [2014-01-25 01:29:32] - VMCS shadowing
(XEN) [2014-01-25 01:29:32] HVM: ASIDs enabled.
(XEN) [2014-01-25 01:29:32] HVM: VMX enabled
(XEN) [2014-01-25 01:29:32] HVM: Hardware Assisted Paging (HAP) detected
(XEN) [2014-01-25 01:29:32] HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) [2014-01-25 01:29:32] Brought up 8 CPUs
(XEN) [2014-01-25 01:29:32] ACPI sleep modes: S3
(XEN) [2014-01-25 01:29:32] mcheck_poll: Machine check polling timer started.
(XEN) [2014-01-25 01:29:32] Multiple initrd candidates, picking module #1
(XEN) [2014-01-25 01:29:32] *** LOADING DOMAIN 0 ***
(XEN) [2014-01-25 01:29:32] elf_parse_binary: phdr: paddr=0x1000000 memsz=0xa28000
(XEN) [2014-01-25 01:29:32] elf_parse_binarylf_parse_binary: phdr: paddr=0x1cc3000 memsz=0x14d80
(XEN) [2014-01-25 01:29:32] elf_parse_binary: phdr: paddr=0x1cd8000 memsz=0x71f000
(XEN) [2014-01-25 01:29:32] elf_parse_binary: memory: 0x1000000 -> 0x23f7000
(XEN) [2014-01-25 01:29:32] elf_xen_parse_note: GUEST_OS = "linux"
(XEN) [2014-01-25 01:29:32] elf_xen_parse_note: GUEST_VERSION = "2.6"
(XEN) [2014-01-25 01:29:32] elf_xen_parse_note: XEN_VERSION = "xen-3.0"
(XEN) [2014-01-25 01:29:32] elf_xen_parse_note: VIRT_BASE = 0xffffffff80000000
(XEN) [2014-01-25 01:29:32] elf_xen_parse_note: ENTRY = 0xffffffff81cd81e0
(XEN) [2014-01-25 01:29:32] elf_xen_parse_note: HYPERCALL_PAGE = 0xffffffff81001000
(XEN) [2014-01-25 01:29:32] elf_xen_parse_note: FEATURES = "!writable_page_tables|pae_pgdir_above_4gb"
(XEN) [2014-01-25 01:29:32] elf_xen_parse_note: PAE_MODE = "yes"
(XEN) [2014-01-25 01:29:32] elf_xen_parse_note: LOADER = "generic"
(XEN) [2014-01-25 01:29:32] elf_xen_parse_note: unknown xen elf note (0xd)
(XEN) [2014-01-25 01:29:32] elf_xen_parse_note: SUSPEND_CANCEL = 0x1
(XEN) [2014-01-25 01:29:32] elf_xen_parse_note: HV_START_LOW = 0xffff800000000000
(XEN) [2014-01-25 01:29:32] elf_xen_parse_note: PADDR_OFFSET = 0x0
(XEN) [2014-01-25 01:29:32] elf_xen_addr_calc_check: addresses:
(XEN) [2014-01-25 01:29:32] virt_base = 0xffffffff80000000
(XEN) [2014-01-25 01:29:32] elf_paddr_offset = 0x0
(XEN) [2014-01-25 01:29:32] virt_offset = 0xffffffff80000000
(XEN) [2014-01-25 01:29:32] virt_kstart = 0xffffffff81000000
(XEN) [2014-01-25 01:29:32] virt_kend = 0xffffffff823f7000
(XEN) [2014-01-25 01:29:32] virt_entry = 0xffffffff81cd81e0
(XEN) [2014-01-25 01:29:32] p2m_base = 0xffffffffffffffff
(XEN) [2014-01-25 01:29:32] Xen kernel: 64-bit, lsb, compat32
(XEN) [2014-01-25 01:29:32] Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x23f7000
(XEN) [2014-01-25 01:29:32] PHYSICAL MEMORY ARRANGEMENT:
(XEN) [2014-01-25 01:29:32] Dom0 alloc.: 000000022c000000->0000000230000000 (487082 pages to be allocated)
(XEN) [2014-01-25 01:29:32] Init. ramdisk: 000000023ac31000->000000023fd86b1b
(XEN) [2014-01-25 01:29:32] VIRTUAL MEMORY ARRANGEMENT:
(XEN) [2014-01-25 01:29:32] Loaded kernel: ffffffff81000000->ffffffff823f7000
(XEN) [2014-01-25 01:29:32] Init. ramdisk: ffffffff823f7000->ffffffff8754cb1b
(XEN) [2014-01-25 01:29:32] Phys-Mach map: ffffffff8754d000->ffffffff8794d000
(XEN) [2014-01-25 01:29:32] Start info: ffffffff8794d000->ffffffff8794d4b4
(XEN) [2014-01-25 01:29:32] Page tables: ffffffff8794e000->ffffffff8798f000
(XEN) [2014-01-25 01:29:32] Boot stack: ffffffff8798f000->ffffffff87990000
(XEN) [2014-01-25 01:29:32] TOTAL: ffffffff80000000->ffffffff87c00000
(XEN) [2014-01-25 01:29:32] ENTRY ADDRESS: ffffffff81cd81e0
(XEN) [2014-01-25 01:29:32] Dom0 has maximum 1 VCPUs
(XEN) [2014-01-25 01:29:32] elf_load_binary: phdr 0 at 0xffffffff81000000 -> 0xffffffff81a28000
(XEN) [2014-01-25 01:29:32] elf_load_binary: phdr 1 at 0xffffffff81c00000 -> 0xffffffff81cc20f0
(XEN) [2014-01-25 01:29:32] elf_load_binary: phdr 2 at 0xffffffff81cc3000 -> 0xffffffff81cd7d80
(XEN) [2014-01-25 01:29:32] elf_load_binary: phdr 3 at 0xffffffff81cd8000 -> 0xffffffff81e7b000
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1438: d0:Hostbridge: skip 0000:00:00.0 map
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:01-25 01:29:33] [VT-D]iommu.c:1452: d0:PCIe: map 0000:00:03.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:00:14.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:00:16.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:00:19.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:00:1a.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1452: d0:PCIe: map 0000:00:1b.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:00:1d.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:00:1f.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:00:1f.2
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:00:1f.3
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:00:1f.6
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1452: d0:PCIe: map 0000:02:00.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1452: d0:PCIe: map 0000:02:00.1
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1452: d0:PCIe: map 0000:03:00.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1452: d0:PCIe: map 0000:03:00.1
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1452: d0:PCIe: map 0000:04:00.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:06:03.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:07:08.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:07:08.1
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:07:09.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:07:09.1
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:07:0a.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:07:0a.1
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:07:0b.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1464: d0:PCI: map 0000:07:0b.1
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1452: d0:PCIe: map 0000:08:00.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:1452: d0:PCIe: map 0000:09:00.0
(XEN) [2014-01-25 01:29:33] [VT-D]iommu.c:750: iommu_enable_translation: iommu->reg = ffff82c000201000
(XEN) [2014-01-25 01:29: Free RAM: ................................................done.
(XEN) [2014-01-25 01:29:33] Initial low memory virq threshold set at 0x4000 pages.
(XEN) [2014-01-25 01:29:33] Std. Loglntended to aid debugging of Xen by ensuring
(XEN) [2014-01-25 01:29:33] ******* that all output is synchronously delivered on the serial line.
(XEN) [2014-01-25 01:29:33] ******* However it can introduce SIGNIFICANT latencies and affect
(XEN) [2014-01-25 01:29:33] ******* timekeeping. It is NOT recommended for production use!
(XEN) [2014-01-25 01:29:33] **********************************************
(XEN) [2014-01-25 01:29:33] 3... 2... 1...
(XEN) [2014-01-25 01:29:36] *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen)
(XEN) [2014-01-25 01:29:36] Freed 272kB init memory.
mapping kernel into physical memory
about to get started...
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cibackAAA.hide=(02:00.*) kgdboc=hvc0
[ 0.000000] Freeing 99-100 pfn range: 103 pages freed
[ 0.000000] 1-1 mapping on 99->100
[ 0.000000] 1-1 mapping on a58f1->a58f8
[ 0.000000] 1-1 mapping on a61b1->a6597
[ 0.000000] 1-1 mapping on b74b4->b76cb
[ 0.000000] 1-1 mapping on b770c->b7fff
[ 0.000000] 1-1 mapping on b8000->100000
[ 0.000000] Released 103 pages of unused memory
[ 0.000000] Set 298846 page(s) to 1-1 mapping
[ 0.000000] Populating 80000-80067 pfn range: 103 pages added
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] Xen: [mem 0x0000000000000000-0x0000000000098fff] usable
[ 0.000000] Xen: [mem 0x0000000000099c00-0x00000000000fffff] reserved
[ 0.000000] Xen: [mem 0x0000000000100000-0x0000000080066fff] usable
[ 0.000000] Xen: [mem 0x0000000080067000-0x00000000a58f0fff] unusable
[ 0.000000] Xen: [mem 0x00000000a58f1000-0x00000000a58f7fff] ACPI NVS
[ 0.000000] Xen: [mem 0x00000000a58f8000-0x00000000a61b0fff] unusable
[ 0.000000] Xen: [mem 0x00000000a61b1000-0x00000000a6596fff] reserved
[ 0.000000] Xen: [mem 0x00000000a6597000-0x00000000b74b3fff] unusable
[ 0.000000] Xen: [mem 0x00000000b74b4000-0x00000000b76cafff] reserved
[ 0.000000] Xen: [mem 0x00000000b76cb000-0x00000000b770bfff] unusable
[ 0.000000] Xen: [mem 0x00000000b770c000-0x00000000b77b8fff] ACPI NVS
[ 0.000000] Xen: [mem 0x00000000b77b9000-0x00000000b7ffefff] reserved
[ 0.000000] Xen: [mem 0x00000000b7fff000-0x00000000b7ffffff] unusable
[ 0.000000] Xen: [mem 0x00000000bc000000-0x00000000be1fffff] reserved
[ 0.000000] Xen: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] Xen: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] Xen: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] Xen: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[ 0.000000] Xen: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] Xen: [mem 0x0000000100000000-0x000000023fdfffff] unusable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: Supermicro X10SAE/X10SAE, BIOS 1.00 05/03/2013
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x80067 max_arch_pfn = 0x400000000
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff880000093000] 93000 size 24576
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x7fe00000-0x7fffffff]
[ 0.000000] [mem 0x7fe00000-0x7fffffff] page 4k
[ 0.000000] BRK [0x01fef000, 0x01feffff] PGTABLE
[ 0.000000] BRK [0x01ff0000, 0x01ff0fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x7c000000-0x7fdfffff]
[ 0.000000] [mem 0x7c000000-0x7fdfffff] page 4k
[ 0.000000] BRK [0x01ff1000, 0x01ff1fff] PGTABLE
[ 0.000000] BRK [0x01ff2000, 0x01ff2fff] PGTABLE
[ 0.000000] BRK [0x01ff3000, 0x01ff3fff] PGTABLE
[ 0.000000] BRK [0x01ff4000, 0x01ff4fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x7bffffff]
[ 0.000000] [mem 0x00100000-0x7bffffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x80000000-0x80066fff]
[ 0.000000] [mem 0x80000000-0x80066fff] page 4k
[ 0.000000] RAMDISK: [mem 0x023f7000-0x0754cfff]
[ 0.000000] ACPI: RSDP 00000000000f0490 000024 (v02 ALASKA)
[ 0.000000] ACPI: XSDT 00000000b7794098 0000AC (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: FACP 00000000b779f0b8 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: DSDT 00000000b77941d8 00AEDD (v02 ALASKA A M I 00000000 INTL 20091112)
[ 0.000000] ACPI: FACS 00000000b77b7080 000040
[ 0.000000] ACPI: APIC 00000000b779f1c8 000092 (v03 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: FPDT 00000000b779f260 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: SSDT 00000000b779f2a8 000540 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
[ 0.000000] ACPI: SSDT 00000000b779f7e8 000AD8 (v01 PmRef CpuPm 00003000 INTL 20051117)
[ 0.000000] ACPI: SSDT 00000000b77a02c0 0002F2 (v01 PmRef Cpu0Tst 00003000 INTL 20051117)
[ 0.000000] ACPI: SSDT 00000000b77a05b8 000348 (v01 PmRef ApTst 00003000 INTL 20051117)
[ 0.000000] ACPI: MCFG 00000000b77a0900 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
[ 0.000000] ACPI: HPET 00000000b77a0940 000038 (v01 ALASKA A M I 01072009 AMI. 00000005)
[ 0.000000] ACPI: SSDT 00000000b77a0978 00036D (v01 SataRe SataTabl 00001000 INTL 20091112)
[ 0.000000] ACPI: SSDT 00000000b77a0ce8 00327D (v01 SaSsdt SaSsdt 00003000 INTL 20091112)
[ 0.000000] ACPI: ASF! 00000000b77a3f68 0000A5 (v32 INTEL HCG 00000001 TFSM 000F4240)
[ 0.000000] ACPI: XMAR 00000000b77a4010 0000B8 (v01 INTEL HSW 00000001 INTL 00000001)
[ 0.000000] ACPI: EINJ 00000000b77a40c8 000130 (v01 AMI AMI EINJ 00000000 00000000)
[ 0.000000] ACPI: ERST 00000000b77a41f8 000230 (v01 AMIER AMI ERST 00000000 00000000)
[ 0.000000] ACPI: HEST 00000000b77a4428 0000A8 (v01 AMI AMI HEST 00000000 00000000)
[ 0.000000] ACPI: BERT 00000000b77a44d0 000030 (v01 AMI AMI BERT 00000000 00000000)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] NUMA turned off
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x0000000080066fff]
[ 0.000000] Initmem setup node 0 [mem 0x00000000-0x80066fff]
[ 0.000000] NODE_DATA [mem 0x80063000-0x80066fff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
[ 0.000000] Normal empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00001000-0x00098fff]
[ 0.000000] node 0: [mem 0x00100000-0x80066fff]
[ 0.000000] On node 0 totalpages: 524287
[ 0.000000] DMA zone: 56 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3992 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 7114 pages used for memmap
[ 0.000000] DMA32 zone: 520295 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x1808
[ 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[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 32, 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 high 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: 0x8086a701 base: 0xfed00000
[ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] PM: Registered nosave memory: [mem 0x00099000-0x00099fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009a000-0x000fffff]
[ 0.000000] e820: [mem 0xbe200000-0xf7ffffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on Xen
[ 0.000000] Xen version: 4.4-rc2 (preserve-AD)
[ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88007f600000 s85376 r8192 d21120 u262144
[ 0.000000] pcpu-alloc: s85376 r8192 d21120 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 6.004223] Built 1 zonelists in Node order, mobility grouping on. Total pages: 517096
[ 6.004224] Policy zone: DMA32
[ 6.004225] Kernel command line: debug pci=assign-busses console=hvc0 loglevel=10 initcall_debug loop.max_loop=100 xen-pcibackAAA.hide=(02:00.*) kgdboc=hvc0
[ 6.004539] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 6.004569] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[ 6.025034] software IO TLB [mem 0x79200000-0x7d200000] (64MB) mapped at [ffff880079200000-ffff88007d1fffff]
[ 6.028115] Memory: 1891592K/2097148K available (7058K kernel code, 773K rwdata, 2208K rodata, 1724K init, 1380K bss, 205556K reserved)
[ 6.028345] Hierarchical RCU implementation.
[ 6.028345] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=1.
[ 6.028346] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[ 6.028354] NR_IRQS:33024 nr_irqs:256 16
[ 6.028433] xen: sci override: global_irq=9 trigger=0 polarity=0
[ 6.028435] xen: registering gsi 9 triggering 0 polarity 0
[ 6.028445] xen: --> pirq=9 -> irq=9 (gsi=9)
[ 6.028467] xen: acpi sci 9
[ 6.028470] xen: --> pirq=1 -> irq=1 (gsi=1)
[ 6.028473] xen: --> pirq=2 -> irq=2 (gsi=2)
[ 6.028475] xen: --> pirq=3 -> irq=3 (gsi=3)
[ 6.028478] xen: --> pirq=4 -> irq=4 (gsi=4)
[ 6.028480] xen: --> pirq=5 -> irq=5 (gsi=5)
[ 6.028483] xen: --> pirq=6 -> irq=6 (gsi=6)
[ 6.028485] xen: --> pirq=7 -> irq=7 (gsi=7)
[ 6.028488] xen: --> pirq=8 -> irq=8 (gsi=8)
[ 6.028490] xen: --> pirq=10 -> irq=10 (gsi=10)
[ 6.028493] xen: --> pirq=11 -> irq=11 (gsi=11)
[ 6.028495] xen: --> pirq=12 -> irq=12 (gsi=12)
[ 6.028498] xen: --> pirq=13 -> irq=13 (gsi=13)
[ 6.028500] xen: --> pirq=14 -> irq=14 (gsi=14)
[ 6.028503] xen: --> pirq=15 -> irq=15 (gsi=15)
[ 6.030067] Console: colour VGA+ 80x25
[ 6.981340] console [hvc0] enabled
[ 6.985294] Xen: using vcpuop timer interface
[ 6.989644] installing Xen timer for CPU 0
[ 6.993827] tsc: Detected 3400.078 MHz processor
[ 6.998509] Calibrating delay loop (skipped), value calculated using timer frequency.. 6800.15 BogoMIPS (lpj=3400078)
[ 7.009143] pid_max: default: 32768 minimum: 301
[ 7.013988] Security Framework initialized
[ 7.018079] SELinux: Initializing.
[ 7.021655] SELinux: Starting in permissive mode
[ 7.026744] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 7.034202] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 7.041369] Mount-cache hash table entries: 256
[ 7.046366] Initializing cgroup subsys freezer
[ 7.050877] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 7.050877] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 7.063979] CPU: Physical Processor ID: 0
[ 7.068049] CPU: Processor Core ID: 0
[ 7.072492] mce: CPU supports 2 MCE banks
[ 7.076503] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[ 7.076503] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[ 7.076503] tlb_flushall_shift: 6
[ 7.113961] Freeing SMP alternatives memory: 32K (ffffffff81e72000 - ffffffff81e7a000)
[ 7.122611] ACPI: Core revision 2[ 7.176872] ACPI: All ACPI Tables successfully acquired
[ 7.183637] cpu 0 spinlock event irq 41
[ 7.187516] calling xen_init_spinlocks_jump+0x0/0x1d @ 1
[ 7.198516] initcall xen_init_spinlocks_jump+0x0/0x1d returned 0 after 4882 usecs
[ 7.205985] calling set_real_mode_per_irq_work_exit+0x0/0x13 returned 0 after 0 usecs
[ 7.233718] calling trace_init_flags_sys_exit+0x0/0x12 @ 1
[ 7.239351] initcall trace_init_flags_sys_exit+0x0/0x12 returned 0 after 0 usecs
[ 7.246803] calling trace_init_flags_sys_enter+0x0/0x12 @ 1
[ 7.252524] initcall trace_init_flags_sys_enter+0x0/0x12 returned 0 after 0 usecs
[ 7.260113] calling init_hw_perf_events+0x0/0x53b @ 1
[ 7.265287] Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only.
[ 7.274128] initcall init_hw_perf_events+0x0/0x53b returned 0 after 2929 usecs
[ 7.281408] calling register_trigger_all_cpu_backtrace+0x0/0x16 @ 1
[ 7.287822] initcall register_trigger_all_cpu_backtrace+0x0/0x16 returned 0 after 0 usecs
[ 7.296053] calling kvm_spinlock_init_jump+0x0/0x5a @ 1
[ 7.301522] initcall kvm_spinlock_init_jump+0x0/0x5a returned 0 after 0 usecs
[ 7.308646] calling spawn_ksoftirqd+0x0/0x28 @ 1
[ 7.313440] initcall spawn_ksoftirqd+0x0/0x28 returned 0 after 0 usecs
[ 7.320000] calling init_workqueues+0x0/0x59a @ 1
[ 7.325011] initcall init_workqueues+0x0/0x59a returned 0 after 0 usecs
[ 7.331613] calling migration_init+0x0/0x72 @ 1
[ 7.336292] initcall migration_init+0x0/0x72 returned 0 after 0 usecs
[ 7.342792] calling check_cpu_stall_init+0x0/0x1b @ 1
[ 7.347993] initcall check_cpu_stall_init+0x0/0x1b returned 0 after 0 usecs
[ 7.355011] calling rcu_scheduler_really_started+0x0/0x12 @ 1
[ 7.360904] initcall rcu_scheduler_really_started+0x0/0x12 returned 0 after 0 usecs
[ 7.368618] calling rcu_spawn_gp_kthread+0x0/0x90 @ 1
[ 7.373856] initcall rcu_spawn_gp_kthread+0x0/0x90 returned 0 after 0 usecs
[ 7.380843] calling cpu_stop_init+0x0/0x76 @ 1
[ 7.385456] initcall cpu_stop_init+0x0/0x76 returned 0 after 0 usecs
[ 7.391845] calling relay_init+0x0/0x14 @ 1
[ 7.396176] initcall relay_init+0x0/0x14 returned 0 after 0 usecs
[ 7.402330] calling tracer_alloc_buffers+0x0/0x1bd @ 1
[ 7.407639] initcall tracer_alloc_buffers+0x0/0x1bd returned 0 after 0 usecs
[ 7.414723] calling init_events+0x0/0x61 @ 1
[ 7.419144] initcall init_events+0x0/0x61 returned 0 after 0 usecs
[ 7.425383] calling init_trace_printk+0x0/0x12 @ 1
[ 7.430322] initcall init_trace_printk+0x0/0x12 returned 0 after 0 usecs
[ 7.437082] calling event_trace_memsetup+0x0/0x52 @ 1
[ 7.442303] initcall event_trace_memsetup+0x0/0x52 returned 0 after 0 usecs
[ 7.449302] calling jump_label_init_module+0x0/0x12 @ 1
[ 7.454676] initcall jump_label_init_module+0x0/0x12 returned 0 after 0 usecs
[ 7.461870] calling balloon_clear+0x0/0x4f @ 1
[ 7.466463] initcall balloon_clear+0x0/0x4f returned 0 after 0 usecs
[ 7.472875] calling rand_initialize+0x0/0x30 @ 1
[ 7.477664] initcall rand_initialize+0x0/0x30 returned 0 after 0 usecs
[ 7.484228] calling mce_amd_init+0x0/0x165 @ 1
[ 7.488822] initcall mce_amd_init+0x0/0x165 returned 0 after 0 usecs
[ 7.495261] x86: Booted up 1 node, 1 CPUs
[ 7.500015] NMI watchdog: disabled (cpu0): hardware events not enabled
[ 7.506658] devtmpfs: initialized
[ 7.512564] calling ipc_ns_init+0x0/0x14 @ 1
[ 7.516911] initcall ipc_ns_init+0x0/0x14 returned 0 after 0 usecs
[ 7.523150] calling init_mmap_min_addr+0x0/0x26 @ 1
[ 7.528177] initcall init_mmap_min_addr+0x0/0x26 returned 0 after 0 usecs
[ 7.535022] calling init_cpufreq_transition_notifier_list+0x0/0x1b @ 1
[ 7.541699] initcall init_cpufreq_transition_notifier_list+0x0/0x1b returned 0 after 0 usecs
[ 7.550191] calling net_ns_init+0x0/0x104 @ 1
[ 7.554753] initcall net_ns_init+0x0/0x104 returned 0 after 0 usecs
[ 7.561036] calling e820_mark_nvs_memory+0x0/0x41 @ 1
[ 7.566224] PM: Registering ACPI NVS region [mem 0xa58f1000-0xa58f7fff] (28672 bytes)
[ 7.574118] PM: Registering ACPI NVS region [mem 0xb770c000-0xb77b8fff] (708608 bytes)
[ 7.582278] initcall e820_mark_nvs_memory+0x0/0x41 returned 0 after 1953 usecs
[ 7.589482] calling cpufreq_tsc+0x0/0x37 @ 1
[ 7.593901] initcall cpufreq_tsc+0x0/0x37 returned 0 after 0 usecs
[ 7.600143] calling reboot_init+0x0/0x1d @ 1
[ 7.604564] initcall reboot_init+0x0/0x1d returned 0 after 0 usecs
[ 7.610804] calling init_lapic_sysfs+0x0/0x20 @ 1
[ 7.615656] initcall init_lapic_sysfs+0x0/0x20 returned 0 after 0 usecs
[ 7.622328] calling cpu_hotplug_pm_sync_init+0x0/0x2f @ 1
[ 7.627877] initcall cpu_hotplug_pm_sync_init+0x0/0x2f returned 0 after 0 usecs
[ 7.635243] calling alloc_frozen_cpus+0x0/0x8 @ 1
[ 7.640095] initcall alloc_frozen_cpus+0x0/0x8 returned 0 after 0 usecs
[ 7.646770] calling wq_sysfs_init+0x0/0x14 @ 1
[ 7.651465] kworker/u2:0 (15) used greatest stack depth: 6168 bytes left
[ 7.658212] initcall wq_sysfs_init+0x0/0x14 returned 0 after 976 usecs
[ 7.664734] calling ksysfs_init+0x0/0x94 @ 1
[ 7.669200] initcall ksysfs_init+0x0/0x94 returned 0 after 0 usecs
[ 7.675394] calling pm_init+0x0/0x4e @ 1
[ 7.679506] initcall pm_init+0x0/0x4e returned 0 after 0 usecs
[ 7.685361] calling pm_disk_init+0x0/0x19 @ 1
[ 7.689883] initcall pm_disk_init+0x0/0x19 returned 0 after 0 usecs
[ 7.696195] calling swsusp_header_init+0x0/0x30 @ 1
[ 7.701220] initcall swsusp_header_init+0x0/0x30 returned 0 after 0 usecs
[ 7.708068] calling init_jiffies_clocksource+0x0/0x12 @ 1
[ 7.713613] initcall init_jiffies_clocksource+0x0/0x12 returned 0 after 0 usecs
[ 7.720981] calling cgroup_wq_init+0x0/0x5c @ 1
[ 7.725666] initcall cgroup_wq_init+0x0/0x5c returned 0 after 0 usecs
[ 7.732159] calling event_trace_enable+0x0/0x173 @ 1
[ 7.737765] initcall event_trace_enable+0x0/0x173 returned 0 after 0 usecs
[ 7.744623] calling init_zero_pfn+0x0/0x35 @ 1
[ 7.749214] initcall init_zero_pfn+0x0/0x35 returned 0 after 0 usecs
[ 7.755628] calling fsnotify_init+0x0/0x26 @ 1
[ 7.760222] initcall fsnotify_init+0x0/0x26 returned 0 after 0 usecs
[ 7.766634] calling filelock_init+0x0/0x84 @ 1
[ 7.771238] initcall filelock_init+0x0/0x84 returned 0 after 0 usecs
[ 7.777640] calling init_misc_binfmt+0x0/0x31 @ 1
[ 7.782495] initcall init_misc_binfmt+0x0/0x31 returned 0 after 0 usecs
[ 7.789168] calling init_script_binfmt+0x0/0x16 @ 1
[ 7.794193] initcall init_script_binfmt+0x0/0x16 returned 0 after 0 usecs
[ 7.801040] calling init_elf_binfmt+0x0/0x16 @ 1
[ 7.805806] initcall init_elf_binfmt+0x0/0x16 returned 0 after 0 usecs
[ 7.812393] calling init_compat_elf_binfmt+0x0/0x16 @ 1
[ 7.817767] initcall init_compat_elf_binfmt+0x0/0x16 returned 0 after 0 usecs
[ 7.824959] calling debugfs_init+0x0/0x5c @ 1
[ 7.829476] initcall debugfs_init+0x0/0x5c returned 0 after 0 usecs
[ 7.835791] calling securityfs_init+0x0/0x53 @ 1
[ 7.840568] initcall securityfs_init+0x0/0x53 returned 0 after 0 usecs
[ 7.847146] calling prandom_init+0x0/0xe2 @ 1
[ 7.851652] initcall prandom_init+0x0/0xe2 returned 0 after 0 usecs
[ 7.857979] calling virtio_init+0x0/0x30 @ 1
[ 7.862504] initcall virtio_init+0x0/0x30 returned 0 after 0 usecs
[ 7.868674] calling __gnttab_init+0x0/0x30 @ 1
[ 7.873269] xen:grant_table: Grant tables using version 2 layout
[ 7.879352] Grant table initialized
[ 7.882885] initcall __gnttab_init+0x0/0x30 returned 0 after 1953 usecs
[ 7.889559] calling early_resume_init+0x0/0x1d0 @ 1
[ 7.894611] RTC time: 1:29:37, date: 01/25/14
[ 7.899091] initcall early_resume_init+0x0/0x1d0 returned 0 after 976 usecs
[ 7.906112] calling cpufreq_core_init+0x0/0x37 @ 1
[ 7.911052] initcall cpufreq_core_init+0x0/0x37 returned -19 after 0 usecs
[ 7.917984] calling cpuidle_init+0x0/0x40 @ 1
[ 7.922492] initcall cpuidle_init+0x0/0x40 returned -19 after 0 usecs
[ 7.928993] calling bsp_pm_check_init+0x0/0x14 @ 1
[ 7.933932] initcall bsp_pm_check_init+0x0/0x14 returned 0 after 0 usecs
[ 7.940691] calling sock_init+0x0/0x8b @ 1
[ 7.945043] initcall sock_init+0x0/0x8b returned 0 after 0 usecs
[ 7.951039] calling net_inuse_init+0x0/0x26 @ 1
[ 7.955721] initcall net_inuse_init+0x0/0x26 returned 0 after 0 usecs
[ 7.962219] calling netpoll_init+0x0/0x31 @ 1
[ 7.966724] initcall netpoll_init+0x0/0x31 returned 0 after 0 usecs
[ 7.973051] calling netlink_proto_init+0x0/0x1f7 @ 1
[ 7.978206] NET: Registered protocol family 16
[ 7.982697] initcall netlink_proto_init+0x0/0x1f7 returned 0 after 976 usecs
[ 7.989791] calling bdi_class_init+0x0/0x4d @ 1
[ 7.994575] initcall bdi_class_init+0x0/0x4d returned 0 after 0 usecs
[ 8.001006] calling kobject_uevent_init+0x0/0x12 @ 1
[ 8.006132] initcall kobject_uevent_init+0x0/0x12 returned 0 after 0 usecs
[ 8.013048] calling pcibus_class_init+0x0/0x19 @ 1
[ 8.018053] initcall pcibus_class_init+0x0/0x19 returned 0 after 0 usecs
[ 8.024748] calling pci_driver_init+0x0/0x12 @ 1
[ 8.029611] initcall pci_driver_init+0x0/0x12 returned 0 after 0 usecs
[ 8.036128] calling backlight_class_init+0x0/0x85 @ 1
[ 8.041386] initcall backlight_class_init+0x0/0x85 returned 0 after 0 usecs
[ 8.048349] calling video_output_class_init+0x0/0x19 @ 1
[ 8.053875] initcall video_output_class_init+0x0/0x19 returned 0 after 0 usecs
[ 8.061086] calling xenbus_init+0x0/0x26f @ 1
[ 8.065687] initcall xenbus_init+0x0/0x26f returned 0 after 0 usecs
[ 8.071940] calling tty_class_init+0x0/0x38 @ 1
[ 8.076688] initcall tty_class_init+0x0/0x38 returned 0 after 0 usecs
[ 8.083118] calling vtconsole_class_init+0x0/0xc2 @ 1
[ 8.088489] initcall vtconsole_class_init+0x0/0xc2 returned 0 after 0 usecs
[ 8.095444] calling wakeup_sources_debugfs_init+0x0/0x2b @ 1
[ 8.101256] initcall wakeup_sources_debugfs_init+0x0/0x2b returned 0 after 0 usecs
[ 8.108876] calling register_node_type+0x0/0x34 @ 1
[ 8.114034] initcall register_node_type+0x0/0x34 returned 0 after 0 usecs
[ 8.120807] calling i2c_init+0x0/0x70 @ 1
[ 8.125137] initcall i2c_init+0x0/0x70 returned 0 after 0 usecs
[ 8.131042] calling init_ladder+0x0/0x12 @ 1
[ 8.135463] initcall init_ladder+0x0/0x12 returned -19 after 0 usecs
[ 8.141873] calling init_menu+0x0/0x12 @ 1
[ 8.146121] initcall init_menu+0x0/0x12 returned -19 after 0 usecs
[ 8.152361] calling amd_postcore_init+0x0/0x143 @ 1
[ 8.157389] initcall amd_postcore_init+0x0/0x143 returned 0 after 0 usecs
[ 8.164248] calling boot_params_ksysfs_init+0x0/0x237 @ 1
[ 8.169800] initcall boot_params_ksysfs_init+0x0/0x237 returned 0 after 0 usecs
[ 8.177146] calling arch_kdebugfs_init+0x0/0x233 @ 1
[ 8.182291] initcall arch_kdebugfs_init+0x0/0x233 returned 0 after 0 usecs
[ 8.189193] calling mtrr_if_init+0x0/0x78 @ 1
[ 8.193700] initcall mtrr_if_init+0x0/0x78 returned -19 after 0 usecs
[ 8.200200] calling ffh_cstate_init+0x0/0x2a @ 1
[ 8.204969] initcall ffh_cstate_init+0x0/0x2a returned 0 after 0 usecs
[ 8.211552] calling activate_jump_labels+0x0/0x32 @ 1
[ 8.216752] initcall activate_jump_labels+0x0/0x32 returned 0 after 0 usecs
[ 8.223772] calling acpi_pci_init+0x0/0x61 @ 1
[ 8.228366] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 8.235992] ACPI: bus type PCI registered
[ 8.240066] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 8.246565] initcall acpi_pci_init+0x0/0x61 returned 0 after 2929 usecs
[ 8.253238] calling dma_bus_init+0x0/0xd6 @ 1
[ 8.257869] kworker/u2:0 (30) used greatest stack depth: 5768 bytes left
[ 8.264601] initcall dma_bus_init+0x0/0xd6 returned 0 after 976 usecs
[ 8.271084] calling dma_channel_table_init+0x0/0xde @ 1
[ 8.276471] initcall dma_channel_table_init+0x0/0xde returned 0 after 0 usecs
[ 8.283649] calling setup_vcpu_hotplug_event+0x0/0x22 @ 1
[ 8.289197] initcall setup_vcpu_hotplug_event+0x0/0x22 returned 0 after 0 usecs
[ 8.296560] calling register_xen_pci_notifier+0x0/0x38 @ 1
[ 8.302197] initcall register_xen_pci_notifier+0x0/0x38 returned 0 after 0 usecs
[ 8.309648] calling xen_pcpu_init+0x0/0xcc @ 1
[ 8.315098] initcall xen_pcpu_init+0x0/0xcc returned 0 after 0 usecs
[ 8.321452] calling dmi_id_init+0x0/0x31d @ 1
[ 8.326205] initcall dmi_id_init+0x0/0x31d returned 0 after 0 usecs
[ 8.332458] calling dca_init+0x0/0x20 @ 1
[ 8.336617] dca service started, version 1.12.1
[ 8.341269] initcall dca_init+0x0/0x20 returned 0 after 976 usecs
[ 8.347365] calling iommu_init+0x0/0x58 @ 1
[ 8.351707] initcall iommu_init+0x0/0x58 returned 0 after 0 usecs
[ 8.357851] calling pci_arch_init+0x0/0x69 @ 1
[ 8.362460] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 8.371803] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 8.386554] PCI: Using configuration type 1 for base access
[ 8.392119] initcall pci_arch_init+0x0/0x69 returned 0 after 9765 usecs
[ 8.398804] calling topology_init+0x0/0x98 @ 1
[ 8.403804] initcall topology_init+0x0/0x98 returned 0 after 0 usecs
[ 8.410163] calling mtrr_init_finialize+0x0/0x36 @ 1
[ 8.415258] initcall mtrr_init_finialize+0x0/0x36 returned 0 after 0 usecs
[ 8.422192] calling init_vdso+0x0/0x135 @ 1
[ 8.426526] initcall init_vdso+0x0/0x135 returned 0 after 0 usecs
[ 8.432676] calling sysenter_setup+0x0/0x2dd @ 1
[ 8.437444] initcall sysenter_setup+0x0/0x2dd returned 0 after 0 usecs
[ 8.444031] calling param_sysfs_init+0x0/0x194 @ 1
[ 8.465475] initcall param_sysfs_init+0x0/0x194 returned 0 after 14648 usecs
[ 8.472513] calling pm_sysrq_init+0x0/0x19 @ 1
[ 8.477103] initcall pm_sysrq_init+0x0/0x19 returned 0 after 0 usecs
[ 8.483514] calling default_bdi_init+0x0/0x65 @ 1
[ 8.488672] initcall default_bdi_init+0x0/0x65 returned 0 after 0 usecs
[ 8.495276] calling init_bio+0x0/0xe9 @ 1
[ 8.499490] bio: create slab <bio-0> at 0
[ 8.503557] initcall init_bio+0x0/0xe9 returned 0 after 976 usecs
[ 8.509663] calling cryptomgr_init+0x0/0x12 @ 1
[ 8.514341] initcall cryptomgr_init+0x0/0x12 returned 0 after 0 usecs
[ 8.520842] calling blk_settings_init+0x0/0x2c @ 1
[ 8.525782] initcall blk_settings_init+0x0/0x2c returned 0 after 0 usecs
[ 8.532542] calling blk_ioc_init+0x0/0x2a @ 1
[ 8.537060] initcall blk_ioc_init+0x0/0x2a returned 0 after 0 usecs
[ 8.543373] calling blk_softirq_init+0x0/0x6e @ 1
[ 8.548228] initcall blk_softirq_init+0x0/0x6e returned 0 after 0 usecs
[ 8.554901] calling blk_iopoll_setup+0x0/0x6e @ 1
[ 8.559752] initcall blk_iopoll_setup+0x0/0x6e returned 0 after 0 usecs
[ 8.566427] calling blk_mq_init+0x0/0x5f @ 1
[ 8.570847] initcall blk_mq_init+0x0/0x5f returned 0 after 0 usecs
[ 8.577086] calling genhd_device_init+0x0/0x85 @ 1
[ 8.582171] initcall genhd_device_init+0x0/0x85 returned 0 after 0 usecs
[ 8.588858] calling pci_slot_init+0x0/0x50 @ 1
[ 8.593457] initcall pci_slot_init+0x0/0x50 returned 0 after 0 usecs
[ 8.599861] calling fbmem_init+0x0/0x98 @ 1
[ 8.604266] initcall fbmem_init+0x0/0x98 returned 0 after 0 usecs
[ 8.610348] calling acpi_init+0x0/0x27a @ 1
[ 8.614707] ACPI: Added _OSI(Module Device)
[ 8.618930] ACPI: Added _OSI(Processor Device)
[ 8.623433] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 8.628200] ACPI: Added _OSI(Processor Aggregator Device)
[ 8.637452] ACPI: Executed 1 blocks of module-level executable AML code
[ 8.669789] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 8.677671] \_SB_:_OSC invalid UUID
[ 8.681155] _OSC request data:1 1f
[ 8.686851] ACPI: SSDT 00000000b76c1c18 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
[ 8.696080] ACPI: Dynamic OEM Table Load:
[ 8.700077] ACPI: SSDT (null) 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
[ 8.709930] ACPI: Interpreter enabled
[ 8.713597] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
[ 8.722861] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20131115/hwxface-580)
[ 8.732143] ACPI: (supports S0 S1 S4 S5)
[ 8.736114] ACPI: Using IOAPIC for interrupt routing
[ 8.741516] HEST: Table parsing has been initialized.
[ 8.746566] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 8.756953] ACPI: No dock devices found.
[ 8.858976] ACPI: Power Resource [FN00] (off)
[ 8.864120] ACPI: Power Resource [FN01] (off)
[ 8.869290] ACPI: Power Resource [FN02] (off)
[ 8.874421] ACPI: Power Resource [FN03] (off)
[ 8.879562] ACPI: Power Resource [FN04] (off)
[ 8.889203] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 8.895378] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 8.906135] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
[ 8.915140] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
[ 8.928438] PCI host bridge to bus 0000:00
[ 8.932526] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 8.938073] p0-0xffff]
[ 8.950552] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 8.957484] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[ 8.964418] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[ 8.971350] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
[ 8.978284] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[ 8.985217] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
[ 8.992151] pci_bus 0000:00: root bus resource [mem 0xbe200000-0xfeafffff]
[ 8.999094] pci 0000:00:00.0: [8086:0c08] type 00 class 0x060000
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:0.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:00.0
[ 9.016818] pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
[ 9.022973] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 9.029591] pci 0000:00:01.0: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:01.0
[ 9.046582] pci 0000:00:01.1: [8086:0c05] type 01 class 0x060400
[ 9.052648] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1.1 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:01.1
[ 9.070468] pci 0000:00:02.0: [8086:041a] type 00 class 0x030000
[ 9.076484] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
[ 9.083320] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[ 9.090597] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:2.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:02.0
[ 9.107914] pci 0000:00:03.0: [8086:0c0c] type 00 class 0x040300
[ 9.113933] pci 0000:00:03.0: reg 0x10: [mem 0xf1b34000-0xf1b37fff 64bit]
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:3.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:03.0
[ 9.132511] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
[ 9.138571] pci 0000:00:14.0: reg 0x10: [mem 0xf1b20000-0xf1b2ffff 64bit]
[ 9.145504] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 9.151734] pci 0000:00:14.0: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:14.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:14.0
[ 9.168829] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
[ 9.174870] pci 0000:00:16.0: reg 0x10: [mem 0xf1b3f000-0xf1b3f00f 64bit]
[ 9.181809] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:16.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:16.0
[ 9.199688] pci 0000:00:19.0: [8086:153a] type 00 class 0x020000
[ 9.205727] pci 0000:00:19.0: reg 0x10: [mem 0xf1b00000-0xf1b1ffff]
[ 9.212022] pci 0000:00:19.0: reg 0x14: [mem 0xf1b3d000-0xf1b3dfff]
[ 9.218348] pci 0000:00:19.0: reg 0x18: [io 0xf080-0xf09f]
[ 9.224110] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[ 9.230598] pci 0000:00:19.0: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:19.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:19.0
[ 9.247696] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
[ 9.253738] pci 0000:00:1a.0: reg 0x10: [mem 0xf1b3c000-0xf1b3c3ff]
[ 9.260191] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 9.266798] pci 0000:00:1a.0: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1a.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:1a.0
[ 9.283899] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
[ 9.289930] pci 0000:00:1b.0: reg 0x10: [mem 0xf1b30000-0xf1b33fff 64bit]
[ 9.296894] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 9.303381] pci 0000:00:1b.0: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1b.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:1b.0
[ 9.320462] pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
[ 9.326626] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 9.333119] pci 0000:00:1c.0: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1c.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:1c.0
[ 9.350208] pci 0000:00:1c.3: [8086:8c16] type 01 class 0x060400
[ 9.356371] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 9.362863] pci 0000:00:1c.3: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1c.3 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:1c.3
[ 9.379949] pci 0000:00:1c.5: [8086:8c1a] type 01 class 0x060400
[ 9.386112] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[ 9.392608] pci 0000:00:1c.5: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1c.5 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:1c.5
[ 9.409702] pci 0000:00:1c.6: [8086:8c1c] type 01 class 0x060400
[ 9.415864] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[ 9.422358] pci 0000:00:1c.6: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1c.6 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:1c.6
[ 9.439444] pci 0000:00:1c.7: [8086:8c1e] type 01 class 0x060400
[ 9.445607] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[ 9.452101] pci 0000:00:1c.7: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1c.7 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:1c.7
[ 9.469203] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
[ 9.475245] pci 0000:00:1d.0: reg 0x10: [mem 0xf1b3b000-0xf1b3b3ff]
[ 9.481697] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 9.488276] pci 0000:00:1d.0: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1d.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:1d.0
[ 9.505372] pci 0000:00:1f.0: [8086:8c56] type 00 class 0x060100
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1f.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:1f.0
[ 9.523303] pci 0000:00:1f.2: [8086:8c02] type 00 class 0x010601
[ 9.529339] pci 0000:00:1f.2: reg 0x10: [io 0xf0d0-0xf0d7]
[ 9.534941] pci 0000:00:1f.2: reg 0x14: [io 0xf0c0-0xf0c3]
[ 9.540573] pci 0000:00:1f.2: reg 0x18: [io 0xf0b0-0xf0b7]
[ 9.546208] pci 0000:00:1f.2: reg 0x1c: [io 0xf0a0-0xf0a3]
[ 9.551841] pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
[ 9.557474] pci 0000:00:1f.2: reg 0x24: [mem 0xf1b3a000-0xf1b3a7ff]
[ 9.563881] pci 0000:00:1f.2: PME# supported from D3hot
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1f.2 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:1f.2
[ 9.580892] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
[ 9.586922] pci 0000:00:1f.3: reg 0x10: [mem 0xf1b39000-0xf1b390ff 64bit]
[ 9.593772] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1f.3 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:1f.3
[ 9.611152] pci 0000:00:1f.6: [8086:8c24] type 00 class 0x118000
[ 9.617194] pci 0000:00:1f.6: reg 0x10: [mem 0xf1b38000-0xf1b38fff 64bit]
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 0:1f.6 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:00:1f.6
[ 9.636130] pci_bus 0000:01: busn_res: can not insert [bus 01-ff] under [bus 00-3e] (conflicts with (null) [bus 00-3e])
[ 9.646905] pci 0000:00:01.0: PCI bridge to [bus 01-ff]
[ 9.652183] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[ 9.659048] pci_bus 0000:02: busn_res: can not insert [bus 02-ff] under [bus 00-3e] (conflicts with (null) [bus 00-3e])
[ 9.669850] pci 0000:02:00.0: [8086:10c9] type 00 class 0x020000
[ 9.675893] pci 0000:02:00.0: reg 0x10: [mem 0xf1420000-0xf143ffff]
[ 9.682214] pci 0000:02:00.0: reg 0x14: [mem 0xf1000000-0xf13fffff]
[ 9.688541] pci 0000:02:00.0: reg 0x18: [io 0xe020-0xe03f]
[ 9.694174] pci 0000:02:00.0: reg 0x1c: [mem 0xf1444000-0xf1447fff]
[ 9.700519] pci 0000:02:00.0: reg 0x30: [mem 0xf0c00000-0xf0ffffff pref]
[ 9.707312] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 9.713439] pci 0000:02:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
[ 9.720353] pci 0000:02:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 2:0.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:02:00.0
[ 9.738706] pci 0000:02:00.1: [8086:10c9] type 00 class 0x020000
[ 9.744718] pci 0000:02:00.1: reg 0x10: [mem 0xf1400000-0xf141ffff]
[ 9.751037] pci 0000:02:00.1: reg 0x14: [mem 0xf0800000-0xf0bfffff]
[ 9.757362] pci 0000:02:00.1: reg 0x18: [io 0xe000-0xe01f]
[ 9.762996] pci 0000:02:00.1: reg 0x1c: [mem 0xf1440000-0xf1443fff]
[ 9.769343] pci 0000:02:00.1: reg 0x30: [mem 0xf0400000-0xf07fffff pref]
[ 9.776133] pci 0000:02:00.1: PME# supported from D0 D3hot D3cold
[ 9.782259] pci 0000:02:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
[ 9.789174] pci 0000:02:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 2:0.1 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:02:00.1
[ 9.809600] pci 0000:00:01.1: PCI bridge to [bus 02-ff]
[ 9.814816] pci 0000:00:01.1: bridge window [io 0xe000-0xefff]
[ 9.820968] pci 0000:00:01.1: bridge window [mem 0xf0400000-0xf14fffff]
[ 9.827816] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 03
[ 9.834852] pci_bus 0000:04: busn_res: can not insert [bus 04-ff] under [bus 00-3e] (conflicts with (null) [bus 00-3e])
[ 9.845671] pci 0000:04:00.0: [8086:105e] type 00 class 0x020000
[ 9.851716] pci 0000:04:00.0: reg 0x10: [mem 0xf1aa0000-0xf1abffff]
[ 9.858031] pci 0000:04:00.0: reg 0x14: [mem 0xf1a80000-0xf1a9ffff]
[ 9.864356] pci 0000:04:00.0: reg 0x18: [io 0xd020-0xd03f]
[ 9.870074] pci 0000:04:00.0: reg 0x30: [mem 0xf1a60000-0xf1a7ffff pref]
[ 9.876901] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[ 9.883130] pci 0000:04:00.0: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 4:0.0 flags:0
(XEN) [2014-01-25 01:29:40] PCI add device 0000:04:00.0
[ 9.900194] pci 0000:04:00.1: [8086:105e] type 00 class 0x020000
[ 9.906229] pci 0000:04:00.1: reg 0x10: [mem 0xf1a40000-0xf1a5ffff]
[ 9.912543] pci 0000:04:00.1: reg 0x14: [mem 0xf1a20000-0xf1a3ffff]
[ 9.918868] pci 0000:04:00.1: reg 0x18: [io 0xd000-0xd01f]
[ 9.924584] pci 0000:04:00.1: reg 0x30: [mem 0xf1a00000-0xf1a1ffff pref]
[ 9.931411] pci 0000:04:00.1: PME# supported from D0 D3hot D3cold
(XEN) [2014-01-25 01:29:40] PHYSDEVOP_pci_device_add of 4:0.1 flags:0
(XEN) [2014-01-25 01:29:40] [VT-D]iommu.c:1452: d0:PCIe: map 0000:04:00.1
(XEN) [2014-01-25 01:29:40] PCI add device 0000:04:00.1
[ 9.957555] pci 0000:00:1c.0: PCI bridge to [bus 04-ff]
[ 9.962778] pci 0000:00:1c.0: bridge window [io 0xd000-0xdfff]
[ 9.968930] pci 0000:00:1c.0: bridge window [mem 0xf1a00000-0xf1afffff]
[ 9.975782] pci_bus 0000:04: busn_res: [bus 04-ff] end is updated to 04
[ 9.982813] pci_bus 0000:05: busn_res: can not insert [bus 05-ff] under [bus 00-3e] (conflicts with (null) [bus 00-3e])
[ 9.993644] pci 0000:05:00.0: [8086:1533] type 00 class 0x020000
[ 9.999677] pci 0000:05:00.0: reg 0x10: [mem 0xf1900000-0xf197ffff]
[ 10.006013] pci 0000:05:00.0: reg 0x18: [io 0xc000-0xc01f]
[ 10.011627] pci 0000:05:00.0: reg 0x1c: [mem 0xf1980000-0xf1983fff]
[ 10.018128] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
[ 10.024367] pci 0000:05:00.0: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of 5:0.0 flags:0
(XEN) [2014-01-25 01:29:41] PCI add device 0000:05:00.0
[ 10.043509] pci 0000:00:1c.3: PCI bridge to [bus 05-ff]
[ 10.048734] pci 0000:00:1c.3: bridge window [io 0xc000-0xcfff]
[ 10.054886] pci 0000:00:1c.3: bridge window [mem 0xf1900000-0xf19fffff]
[ 10.061734] pci_bus 0000:05: busn_res: [bus 05-ff] end is updated to 05
[ 10.068808] pci_bus 0000:06: busn_res: can not insert [bus 06-ff] under [bus 00-3e] (conflicts with (null) [bus 00-3e])
[ 10.079636] pci 0000:06:00.0: [10e3:8113] type 01 class 0x060401
[ 10.085873] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 10.092649] pci 0000:06:00.0: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of 6:0.0 flags:0
(XEN) [2014-01-25 01:29:41] PCI add device 0000:06:00.0
[ 10.109661] pci 0000:00:1c.5: PCI bridge to [bus 06-ff]
[ 10.114890] pci 0000:00:1c.5: bridge window [mem 0xf1500000-0xf16fffff]
[ 10.121752] pci 0000:06:00.0: bridge configuration invalid ([bus 06-07]), reconfiguring
[ 10.130246] pci 0000:07:01.0: [3388:0021] type 01 class 0x060400
[ 10.136445] pci 0000:07:01.0: supports D1 D2
[ 10.140705] pci 0000:07:01.0: PME# supported from D1 D2 D3hot D3cold
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of 7:1.0 flags:0
(XEN) [2014-01-25 01:29:41] PCI add device 0000:07:01.0
[ 10.158654] pci 0000:07:03.0: [104c:8023] type 00 class 0x0c0010
[ 10.164692] pci 0000:07:03.0: reg 0x10: [mem 0xf1604000-0xf16047ff]
[ 10.170999] pci 0000:07:03.0: reg 0x14: [mem 0xf1600000-0xf1603fff]
[ 10.177484] pci 0000:07:03.0: supports D1 D2
[ 10.181741] pci 0000:07:03.0: PME# supported from D0 D1 D2 D3hot
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of 7:3.0 flags:0
(XEN) [2014-01-25 01:29:41] [VT-D]iommu.c:1464: d0:PCI: map 0000:07:03.0
(XEN) [2014-01-25 01:29:41] PCI add device 0000:07:03.0
[ 10.205793] pci 0000:06:00.0: PCI bridge to [bus 07-ff] (subtractive decode)
[ 10.212846] pci 0000:06:00.0: bridge window [mem 0xf1500000-0xf16fffff]
[ 10.219688] pci 0000:06:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
[ 10.228257] pci 0000:06:00.0: bridge window [mem 0xf1500000-0xf16fffff] (subtractive decode)
[ 10.236923] pci 0000:06:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
[ 10.245502] pci 0000:06:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
[ 10.254084] pci 0000:07:01.0: bridge configuration invalid ([bus 07-07]), reconfiguring
[ 10.262532] pci 0000:08:08.0: [109e:036e] type 00 class 0x040000
[ 10.268590] pci 0000:08:08.0: reg 0x10: [mem 0xf1507000-0xf1507fff pref]
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of 8:8.0 flags:0
(XEN) [2014-01-25 01:29:41] [VT-D]iommu.c:1464: d0:PCI: map 0000:08:08.0
(XEN) [2014-01-25 01:29:41] PCI add device 0000:08:08.0
[ 10.293383] pci 0000:08:08.1: [109e:0878] type 00 class 0x048000
[ 10.299434] pci 0000:08:08.1: reg 0x10: [mem 0xf1506000-0xf1506fff pref]
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of 8:8.1 flags:0
(XEN) [2014-01-25 01:29:41] [VT-D]iommu.c:1464: d0:PCI: map 0000:08:08.1
(XEN) [2014-01-25 01:29:41] PCI add device 0000:08:08.1
[ 10.324249] pci 0000:08:09.0: [109e:036e] type 00 class 0x040000
[ 10.330296] pci 0000:08:09.0: reg 0x10: [mem 0xf1505000-0xf1505fff pref]
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of 8:9.0 flags:0
(XEN) [2014-01-25 01:29:41] [VT-D]iommu.c:1464: d0:PCI: map 0000:08:09.0
(XEN) [2014-01-25 01:29:41] PCI add device 0000:08:09.0
[ 10.355093] pci 0000:08:09.1: [109e:0878] type 00 class 0x048000
[ 10.361151] pci 0000:08:09.1: reg 0x10: [mem 0xf1504000-0xf1504fff pref]
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of 8:9.1 flags:0
(XEN) [2014-01-25 01:29:41] [VT-D]iommu.c:1464: d0:PCI: map 0000:08:09.1
(XEN) [2014-01-25 01:29:41] PCI add device 0000:08:09.1
[ 10.385981] pci 0000:08:0a.0: [109e:036e] type 00 class 0x040000
[ 10.392035] pci 0000:08:0a.0: reg 0x10: [mem 0xf1503000-0xf1503fff pref]
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of 8:a.0 flags:0
(XEN) [2014-01-25 01:29:41] [VT-D]iommu.c:1464: d0:PCI: map 0000:08:0a.0
(XEN) [2014-01-25 01:29:41] PCI add device 0000:08:0a.0
[ 10.416830] pci 0000:08:0a.1: [109e:0878] type 00 class 0x048000
[ 10.422882] pci 0000:08:0a.1: reg 0x10: [mem 0xf1502000-0xf1502fff pref]
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of 8:a.1 flags:0
(XEN) [2014-01-25 01:29:41] [VT-D]iommu.c:1464: d0:PCI: map 0000:08:0a.1
(XEN) [2014-01-25 01:29:41] PCI add device 0000:08:0a.1
[ 10.447704] pci 0000:08:0b.0: [109e:036e] type 00 class 0x040000
[ 10.453757] pci 0000:08:0b.0: reg 0x10: [mem 0xf1501000-0xf1501fff pref]
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of 8:b.0 flags:0
(XEN) [2014-01-25 01:29:41] [VT-D]iommu.c:1464: d0:PCI: map 0000:08:0b.0
(XEN) [2014-01-25 01:29:41] PCI add device 0000:08:0b.0
[ 10.478555] pci 0000:08:0b.1: [109e:0878] type 00 class 0x048000
[ 10.484613] pci 0000:08:0b.1: reg 0x10: [mem 0xf1500000-0xf1500fff pref]
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of 8:b.1 flags:0
(XEN) [2014-01-25 01:29:41] [VT-D]iommu.c:1464: d0:PCI: map 0000:08:0b.1
(XEN) [2014-01-25 01:29:41] PCI add device 0000:08:0b.1
[ 10.509468] pci 0000:07:01.0: PCI bridge to [bus 08-ff]
[ 10.514694] pci 0000:07:01.0: bridge window [mem 0xf1500000-0xf15fffff]
[ 10.521531] pci_bus 0000:08: busn_res: [bus 08-ff] end is updated to 08
[ 10.528206] pci_bus 0000:07: busn_res: [bus 07-ff] end is updated to 08
[ 10.534877] pci_bus 0000:06: busn_res: [bus 06-ff] end is updated to 08
[ 10.541908] pci_bus 0000:09: busn_res: can not insert [bus 09-ff] under [bus 00-3e] (conflicts with (null) [bus 00-3e])
[ 10.552799] pci 0000:09:00.0: [1912:0015] type 00 class 0x0c0330
[ 10.558907] pci 0000:09:00.0: reg 0x10: [mem 0xf1800000-0xf1801fff 64bit]
[ 10.566074] pci 0000:09:00.0: PME# supported from D0 D3hot D3cold
[ 10.572364] pci 0000:09:00.0: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of 9:0.0 flags:0
(XEN) [2014-01-25 01:29:41] PCI add device 0000:09:00.0
[ 10.591548] pci 0000:00:1c.6: PCI bridge to [bus 09-ff]
[ 10.596771] pci 0000:00:1c.6: bridge window [mem 0xf1800000-0xf18fffff]
[ 10.603615] pci_bus 0000:09: busn_res: [bus 09-ff] end is updated to 09
[ 10.610646] pci_bus 0000:0a: busn_res: can not insert [bus 0a-ff] under [bus 00-3e] (conflicts with (null) [bus 00-3e])
[ 10.621449] pci 0000:0a:00.0: [1b21:0612] type 00 class 0x010601
[ 10.627497] pci 0000:0a:00.0: reg 0x10: [io 0xb050-0xb057]
[ 10.633123] pci 0000:0a:00.0: reg 0x14: [io 0xb040-0xb043]
[ 10.638754] pci 0000:0a:00.0: reg 0x18: [io 0xb030-0xb037]
[ 10.644388] pci 0000:0a:00.0: reg 0x1c: [io 0xb020-0xb023]
[ 10.650021] pci 0000:0a:00.0: reg 0x20: [io 0xb000-0xb01f]
[ 10.655656] pci 0000:0a:00.0: reg 0x24: [mem 0xf1700000-0xf17001ff]
[ 10.662190] pci 0000:0a:00.0: System wakeup disabled by ACPI
(XEN) [2014-01-25 01:29:41] PHYSDEVOP_pci_device_add of a:0.0 flags:0
(XEN) [2014-01-25 01:29:41] [VT-D]iommu.c:1452: d0:PCIe: map 0000:0a:00.0
(XEN) [2014-01-25 01:29:41] PCI add device 0000:0a:00.0
[ 10.687820] pci 0000:00:1c.7: PCI bridge to [bus 0a-ff]
[ 10.693041] pci 0000:00:1c.7: bridge window [io 0xb000-0xbfff]
[ 10.699191] pci 0000:00:1c.7: bridge window [mem 0xf1700000-0xf17fffff]
[ 10.706043] pci_bus 0000:0a: busn_res: [bus 0a-ff] end is updated to 0a
[ 10.712806] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
[ 10.724592] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 10.731909] ACPI: PCI Interrupt Link [LNKB] (pink [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 10.753851] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 10.761159] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 10.769596] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
[ 10.776910] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 10.785344] ACPI: Enabled 4 GPEs in block 00 to 3F
[ 10.790137] ACPI: \_SB_.PCI0: notify handler is installed
[ 10.795622] Found 1 acpi root devices
[ 10.799423] initcall acpi_init+0x0/0x27a returned 0 after 443359 usecs
[ 10.805949] calling pnp_init+0x0/0x12 @ 1
[ 10.810290] initcall pnp_init+0x0/0x12 returned 0 after 0 usecs
[ 10.816206] calling balloon_init+0x0/0x242 @ 1
[ 10.820798] xen:balloon: Initialising balloon driver
[ 10.825824] initcall balloon_init+0x0/0x242 returned 0 after 976 usecs
[ 10.832411] calling xen_setup_shutdown_event+0x0/0x30 @ 1
[ 10.837955] initcall xen_setup_shutdown_event+0x0/0x30 returned 0 after 0 usecs
[ 10.845323] calling xenbus_probe_backend_init+0x0/0x2d @ 1
[ 10.851050] initcall xenbus_probe_backend_init+0x0/0x2d returned 0 after 0 usecs
[ 10.858438] calling xenbus_probe_frontend_init+0x0/0x72 @ 1
[ 10.864274] initcall xenbus_probe_frontend_init+0x0/0x72 returned 0 after 0 usecs
[ 10.871738] calling xen_acpi_pad_init+0x0/0x47 @ 1
[ 10.876753] initcall xen_acpi_pad_init+0x0/0x47 returned 0 after 0 usecs
[ 10.883437] calling balloon_init+0x0/0xfa @ 1
[ 10.887941] xen_balloon: Initialising balloon driver
[ 10.893249] initcall balloon_init+0x0/0xfa returned 0 after 976 usecs
[ 10.899682] calling misc_init+0x0/0xba @ 1
[ 10.904021] initcall misc_init+0x0/0xba returned 0 after 0 usecs
[ 10.910020] calling vga_arb_device_init+0x0/0xde @ 1
[ 10.915283] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 10.923358] vgaarb: loaded
[ 10.926126] vgaarb: bridge control possible 0000:00:02.0
[ 10.931500] initcall vga_arb_device_init+0x0/0xde returned 0 after 2929 usecs
[ 10.938694] calling cn_init+0x0/0xc0 @ 1
[ 10.942785] initcall cn_init+0x0/0xc0 returned 0 after 0 usecs
[ 10.948660] calling dma_buf_init+0x0/0x75 @ 1
[ 10.953178] initcall dma_buf_init+0x0/0x75 returned 0 after 0 usecs
[ 10.959492] calling phy_init+0x0/0x2e @ 1
[ 10.963873] initcall phy_init+0x0/0x2e returned 0 after 0 usecs
[ 10.969784] calling init_pcmcia_cs+0x0/0x3d @ 1
[ 10.974525] initcall init_pcmcia_cs+0x0/0x3d returned 0 after 0 usecs
[ 10.980965] calling usb_init+0x0/0x169 @ 1
[ 10.985222] ACPI: bus type USB registered
[ 10.989491] usbcore: registered new interface driver usbfs
[ 10.995072] usbcore: registered new interface driver hub
[ 11.000485] usbcore: registered new device driver usb
[ 11.005534] initcall usb_init+0x0/0x169 returned 0 after 3906 usecs
[ 11.011857] calling serio_init+0x0/0x31 @ 1
[ 11.016286] initcall serio_init+0x0/0x31 returned 0 after 0 usecs
[ 11.022372] calling input_init+0x0/0x103 @ 1
[ 11.026858] initcall input_init+0x0/0x103 returned 0 after 0 usecs
[ 11.033032] calling rtc_init+0x0/0x5b @ 1
[ 11.037256] initcall rtc_init+0x0/0x5b returned 0 after 0 usecs
[ 11.043170] calling pps_init+0x0/0xb7 @ 1
[ 11.047391] pps_core: LinuxPPS API ver. 1 registered
[ 11.052357] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 11.061541] initcall pps_init+0x0/0xb7 returned 0 after 1953 usecs
[ 11.067781] calling ptp_init+0x0/0xa4 @ 1
[ 11.072002] PTP clock support registered
[ 11.075927] initcall ptp_init+0x0/0xa4 returned 0 after 976 usecs
[ 11.082080] calling power_supply_class_init+0x0/0x44 @ 1
[ 11.087601] initcall power_supply_class_init+0x0/0x44 returned 0 after 0 usecs
[ 11.094824] calling hwmon_init+0x0/0xe3 @ 1
[ 11.099217] initcall hwmon_init+0x0/0xe3 returned 0 after 0 usecs
[ 11.105309] calling leds_init+0x0/0x40 @ 1
[ 11.109616] initcall leds_init+0x0/0x40 returned 0 after 0 usecs
[ 11.115623] calling efisubsys_init+0x0/0x142 @ 1
[ 11.120388] initcall efisubsys_init+0x0/0x142 returned 0 after 0 usecs
[ 11.126975] calling pci_subsys_init+0x0/0x4f @ 1
[ 11.131739] PCI: Using ACPI for IRQ routing
[ 11.139418] PCI: pci_cache_line_size set to 64 bytes
[ 11.144579] e820: reserve RAM buffer [mem 0x00099000-0x0009ffff]
[ 11.150573] e820: reserve RAM buffer [mem 0x80067000-0x83ffffff]
[ 11.156639] initcall pci_subsys_init+0x0/0x4f returned 0 after 6835 usecs
[ 11.163485] calling proto_init+0x0/0x12 @ 1
[ 11.167823] initcall proto_init+0x0/0x12 returned 0 after 0 usecs
[ 11.173969] calling net_dev_init+0x0/0x1c6 @ 1
[ 11.179199] initcall net_dev_init+0x0/0x1c6 returned 0 after 0 usecs
[ 11.185545] calling neigh_init+0x0/0x80 @ 1
[ 11.189874] initcall neigh_init+0x0/0x80 returned 0 after 0 usecs
[ 11.196026] calling fib_rules_init+0x0/0xaf @ 1
[ 11.200706] initcall fib_rules_init+0x0/0xaf returned 0 after 0 usecs
[ 11.207206] calling pktsched_init+0x0/0x10a @ 1
[ 11.211891] initcall pktsched_init+0x0/0x10a returned 0 after 0 usecs
[ 11.218386] calling tc_filter_init+0x0/0x55 @ 1
[ 11.223065] initcall tc_filter_init+0x0/0x55 returned 0 after 0 usecs
[ 11.229566] calling tc_action_init+0x0/0x55 @ 1
[ 11.234245] initcall tc_action_init+0x0/0x55 returned 0 after 0 usecs
[ 11.240746] calling genl_init+0x0/0x85 @ 1
[ 11.245008] initcall genl_init+0x0/0x85 returned 0 after 0 usecs
[ 11.251059] calling cipso_v4_init+0x0/0x61 @ 1
[ 11.255653] initcall cipso_v4_init+0x0/0x61 returned 0 after 0 usecs
[ 11.262065] calling netlbl_init+0x0/0x81 @ 1
[ 11.266509] NetLabel: Initializing
[ 11.269976] NetLabel: domain hash size = 128
[ 11.274394] NetLabel: protocols = UNLABELED CIPSOv4
[ 11.279461] NetLabel: unlabeled traffic allowed by default
[ 11.285056] initcall netlbl_init+0x0/0x81 returned 0 after 3906 usecs
[ 11.291556] calling rfkill_init+0x0/0x79 @ 1
[ 11.296155] initcall rfkill_init+0x0/0x79 returned 0 after 0 usecs
[ 11.302325] calling xen_mcfg_late+0x0/0xab @ 1
[ 11.306915] initcall xen_mcfg_late+0x0/0xab returned 0 after 0 usecs
[ 11.313346] calling xen_p2m_debugfs+0x0/0x4a @ 1
[ 11.318110] initcall xen_p2m_debugfs+0x0/0x4a returned 0 after 0 usecs
[ 11.324680] calling xen_spinlock_debugfs+0x0/0x13a @ 1
[ 11.330015] initcall xen_spinlock_debugfs+0x0/0x13a returned 0 after 0 usecs
[ 11.337073] calling nmi_warning_debugfs+0x0/0x27 @ 1
[ 11.342192] initcall nmi_warning_debugfs+0x0/0x27 returned 0 after 0 usecs
[ 11.349119] calling hpet_late_init+0x0/0x101 @ 1
[ 11.353886] initcall hpet_late_init+0x0/0x101 returned -19 after 0 usecs
[ 11.360644] calling init_amd_nbs+0x0/0xb8 @ 1
[ 11.365154] initcall init_amd_nbs+0x0/0xb8 returned 0 after 0 usecs
[ 11.371478] calling clocksource_done_booting+0x0/0x42 @ 1
[ 11.377031] Switched to clocksource xen
[ 11.380931] initcall clocksource_done_booting+0x0/0x42 returned 0 after 3811 usecs
[ 11.388554] calling tracer_init_debugfs+0x0/0x1b2 @ 1
[ 11.394045] initcall tracer_init_debugfs+0x0/0x1b2 returned 0 after 284 usecs
[ 11.401171] calling init_trace_printk_function_export+0x0/0x2f @ 1
[ 11.407503] initcall init_trace_printk_function_export+0x0/0x2f returned 0 after 5 usecs
[ 11.415643] calling event_trace_init+0x0/0x205 @ 1
[ 11.435392] initcall event_trace_init+0x0/0x205 returned 0 after 14459 usecs
[ 11.442431] calling init_kprobe_trace+0x0/
[ 11.469847] initcall eventpoll_init+0x0/0xda returned 0 after 29 usecs
[ 11.476403] calling anon_inode_init+0x0/0x5b @ 1
[ 11.481204] initcall anon_inode_init+0x0/0x5b returned 0 after 34 usecs
[ 11.487842] calling init_ramfs_fs+0x0/0x4d @ 1
[ 11.492444] initcall init_ramfs_fs+0x0/0x4d returned 0 after 9 usecs
[ 11.498849] calling blk_scsi_ioctl_init+0x0/0x2c5 @ 1
[ 11.504050] initcall blk_scsi_ioctl_init+0x0/0x2c5 returned 0 after 0 usecs
[ 11.511069] calling acpi_event_init+0x0/0x3a @ 1
[ 11.515854] initcall acpi_event_init+0x0/0x3a returned 0 after 17 usecs
[ 11.522510] calling pnp_system_init+0x0/0x12 @ 1
[ 11.527371] initcall pnp_system_init+0x0/0x12 returned 0 after 94 usecs
[ 11.533988] calling pnpacpi_init+0x0/0x8c @ 1
[ 11.538481] pnp: PnP ACPI init
[ 11.541623] ACPI: bus type PNP registered
[ 11.546002] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
[ 11.552600] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 11.559491] pnp 00:01: [dma 4]
[ 11.562708] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[ 11.569395] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[ 11.576467] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
[ 11.584008] system 00:04: [io 0x0680-0x069f] has been reserved
[ 11.589924] system 00:04: [io 0xffff] has been reserved
[ 11.595296] system 00:04: [io 0xffff] has been reserved
[ 11.600668] system 00:04: [io 0xffff] has been reserved
[ 11.606043] system 00:04: [io 0x1c00-0x1cfe] has been reserved
[ 11.612020] system 00:04: [io 0x1d00-0x1dfe] has been reserved
[ 11.618001] system 00:04: [io 0x1e00-0x1efe] has been reserved
[ 11.623981] system 00:04: [io 0x1f00-0x1ffe] has been reserved
[ 11.629962] system 00:04: [io 0x0ca4-0x0ca7] has been reserved
[ 11.635941] system 00:04: [io 0x1800-0x18fe] could not be reserved
[ 11.642267] system 00:04: [io 0x164e-0x164f] has been reserved
[ 11.648244] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 11.655122] xen: registering gsi 8 triggering 1 polarity 0
[ 11.660806] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 11.667649] system 00:06: [io 0x1854-0x1857] has been reserved
[ 11.673559] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 11.681890] kworker/u2:0 (517) used greatest stack depth: 5560 bytes left
[ 11.688704] system 00:07: [io 0x0a00-0x0a1f] has been reserved
[ 11.694651] system 00:07: [io 0x0a30-0x0a3f] has been reserved
[ 11.700625] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 11.708874] xen: registering gsi 4 triggering 1 polarity 0
[ 11.714351] Already setup the GSI :4
[ 11.717995] pnp 00:08: [dma 0 disabled]
[ 11.722157] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
[ 11.729876] xen: registering gsi 3 triggering 1 polarity 0
[ 11.735371] pnp 00:09: [dma 0 disabled]
[ 11.739456] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
[ 11.746302] system 00:0a: [io 0x04d0-0x04d1] has been reserved
[ 11.752217] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 11.759094] xen: registering gsi 13 triggering 1 polarity 0
[ 11.764906] pnp 00:0b: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 11.774553] system 00:0c: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 11.781163] system 00:0c: [mem 0xfed10000-0xfed00:0c: [mem 0xfed18000-0xfed18fff] has been reserved
[ 11.794501] system 00:0c: [mem 0xfed19000-0xfed19fff] has been reserved
[ 11.801176] system 00:0c: [mem 0xf8000000-0xfbffffff] has been reserved
[ 11.807849] system 00:0c: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 11.814522] system 00:0c: [mem 0xfed90000-0xfed93fff] has been reserved
[ 11.821195] system 00:0c: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 11.827868] system 00:0c: [mem 0xff000000-0xffffffff] has been reserved
[ 11.834542] system 00:0c: [mem 0xfee00000-0xfeefffff] has been reserved
[ 11.841214] system 00:0c: [mem 0xf7fef000-0xf7feffff] has been reserved
[ 11.847888] system 00:0c: [mem 0xf7ff0000-0xf7ff0fff] has been reserved
[ 11.854556] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 11.863457] pnp: PnP ACPI: found 13 devices
[ 11.867634] ACPI: bus type PNP unregistered
[ 11.871880] initcall pnpacpi_init+0x0/0x8c returned 0 after 325583 usecs
[ 11.878641] calling pcistub_init+0x0/0x29f @ 1
[ 11.883902] initcall pcistub_init+0x0/0x29f returned 0 after 653 usecs
[ 11.890429] calling chr_dev_init+0x0/0xc6 @ 1
[ 11.904149] initcall chr_dev_init+0x0/0xc6 returned 0 after 9007 usecs
[ 11.910667] calling firmware_class_init+0x0/0xec @ 1
[ 11.915868] initcall firmware_class_init+0x0/0xec returned 0 after 87 usecs
[ 11.922816] calling init_pcmcia_bus+0x0/0x65 @ 1
[ 11.927722] initcall init_pcmcia_bus+0x0/0x65 returned 0 after 139 usecs
[ 11.934414] calling thermal_init+0x0/0x8b @ 1
[ 11.938996] initcall thermal_init+0x0/0x8b returned 0 after 75 usecs
[ 11.945350] calling cpufreq_gov_performance_init+0x0/0x12 @ 1
[ 11.951240] initcall cpufreq_gov_performance_init+0x0/0x12 returned -19 after 0 usecs
[ 11.959125] calling init_acpi_pm_clocksource+0x0/0xec @ 1
[ 11.967825] PM-Timer failed consistency check (0xffffff) - aborting.
[ 11.974251] initcall init_acpi_pm_clocksource+0x0/0xec returned -19 after 9354 usecs
[ 11.982047] calling pcibios_assign_resources+0x0/0xbd @ 1
[ 11.987703] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 11.992677] pci 0000:02:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
[ 11.999601] pci 0000:02:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
[ 12.006535] pci 0000:02:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
[ 12.013464] pci 0000:02:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
[ 12.020399] pci 0000:02:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
[ 12.027330] pci 0000:02:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
[ 12.034263] pci 0000:02:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
[ 12.041199] pci 0000:02:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
[ 12.048130] pci 0000:02:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
[ 12.055062] pci 0000:02:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
[ 12.061997] pci 0000:02:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
[ 12.068920] pci 0000:02:00.0: BAR 7: assigned [mem 0xf1448000-0xf1467fff 64bit]
[ 12.076303] pci 0000:02:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
[ 12.083221] pci 0000:02:00.0: BAR 10: assigned [mem 0xf1468000-0xf1487fff 64bit]
[ 12.090690] pci 0000:02:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
[ 12.097606] pci 0000:02:00.1: BAR 7: assigned [mem 0xf1488000-0xf14a7fff 64bit]
[ 12.104989] pci 0000:02:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
[ 12.111905] pci 0000:02:00.1: BAR 10: assigned [mem 0xf14a8000-0xf14c7fff 64bit]
[ 12.119366] pci 0000:00:01.1: PCI bridge to [bus 02-03]
[ 12.124647] pci 0000:00:01.1: bridge window [io 0xe000-0xefff]
[ 12.130801] pci 0000:00:01.1: bridge window [mem 0xf0400000-0xf14fffff]
[ 12.137649] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 12.142673] pci 0000:00:1c.0: bridge window [io 0xd000-0xdfff]
[ 12.148830] pci 0000:00:1c.0: bridge window [mem 0xf1a00000-0xf1afffff]
[ 12.155682] pci 0000:00:1c.3: PCI bridge to [bus 05]
[ 12.160700] pci 0000:00:1c.3: bridge window [io 0xc000-0xcfff]
[ 12.166857] pci 0000:00:1c.3: bridge window [mem 0xf1900000-0xf19fffff]
[ 12.173709] pci 0000:07:01.0: PCI bridge to [bus 08]
[ 12.178734] pci 0000:07:01.0: bridge window [mem 0xf1500000-0xf15fffff]
[ 12.185590] pci 0000:06:00.0: PCI bridge to [bus 07-08]
[ 12.190864] pci 0000:06:00.0: bridge window [mem 0xf1500000-0xf16fffff]
[ 12.197719] pci 0000:00:1c.5: PCI bridge to [bus 06-08]
[ 12.202996] pci 0000:00:1c.5: bridge window [mem 0xf1500000-0xf16fffff]
[ 12.209849] pci 0000:00:1c.6: PCI bridge to [bus 09]
[ 12.214868] pci 0000:00:1c.6: bridge window [mem 0xf1800000-0xf18fffff]
[ 12.221722] pci 0000:00:1c.7: PCI bridge to [bus 0a]
[ 12.226738] pci 0000:00:1c.7: bridge window [io 0xb000-0xbfff]
[ 12.232894] pci 0000:00:1c.7: bridge window [mem 0xf1700000-0xf17fffff]
[ 12.239748] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 12.245370] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 12.251002] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 12.257331] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
[ 12.263703] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
[ 12.270006] pci_bus 0000:00: resource 9 [mem 0x000dc000-0x000dffff]
[ 12.276332] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000e3fff]
[ 12.282744] pci_bus 0000:00: resource 11 [mem 0x000e4000-0x000e7fff]
[ 12.289160] pci_bus 0000:00: resource 12 [mem 0xbe200000-0xfeafffff]
[ 12.295572] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
[ 12.301206] pci_bus 0000:02: resource 1 [mem 0xf0400000-0xf14fffff]
[ 12.307533] pci_bus 0000:04: resource 0 [io 0xd000-0xdfff]
[ 12.313165] pci_bus 0000:04: resource 1 [mem 0xf1a00000-0xf1afffff]
[ 12.319492] pci_bus 0000:05: resource 0 [io 0xc000-0xcfff]
[ 12.325125] pci_bus 0000:05: resource 1 [mem 0xf1900000-0xf19fffff]
[ 12.331451] pci_bus 0000:06: resource 1 [mem 0xf1500000-0xf16fffff]
[ 12.337779] pci_bus 0000:07: resource 1 [mem 0xf1500000-0xf16fffff]
[ 12.344104] pci_bus 0000:07: resource 5 [mem 0xf1500000-0xf16fffff]
[ 12.350430] pci_bus 0000:08: resource 1 [mem 0xf1500000-0xf15fffff]
[ 12.356758] pci_bus 0000:09: resource 1 [mem 0xf1800000-0xf18fffff]
[ 12.363084] pci_bus 0000:0a: resource 0 [io 0xb000-0xbfff]
[ 12.368717] pci_bus 0000:0a: resource 1 [mem 0xf1700000-0xf17fffff]
[ 12.375045] initcall pcibios_assign_resources+0x0/0xbd returned 0 after 378369 usecs
[ 12.382843] calling sysctl_core_init+0x0/0x2c @ 1
[ 12.387711] initcall sysctl_core_init+0x0/0x2c returned 0 after 13 usecs
[ 12.394459] calling inet_init+0x0/0x296 @ 1
[ 12.398858] NET: Registered protocol family 2
[ 12.403526] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[ 12.410780] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[ 12.417420] TCP: Hash tables configured (established 16384 bind 16384)
[ 12.424012] TCP: reno registered
[ 12.427299] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[ 12.433365] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[ 12.439976] initcall inet_init+0x0/0x296 returned 0 after 40220 usecs
[ 12.446406] calling ipv4_offload_init+0x0/0x61 @ 1
[ 12.451343] initcall ipv4_offload_init+0x0/0x61 returned 0 after 0 usecs
[ 12.458103] calling af_unix_init+0x0/0x55 @ 1
[ 12.462623] NET: Registered protocol family 1
[ 12.467044] initcall af_unix_init+0x0/0x55 returned 0 after 4330 usecs
[ 12.473617] calling ipv6_offload_init+0x0/0x7f @ 1
[ 12.478556] initcall ipv6_offload_init+0x0/0x7f returned 0 after 0 usecs
[ 12.485317] calling init_sunrpc+0x0/0x69 @ 1
[ 12.489934] RPC: Registered named UNIX socket transport module.
[ 12.495842] RPC: Registered udp transport module.
[ 12.500606] RPC: Registered tcp transport module.
[ 12.505371] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 12.511871] initcall init_sunrpc+0x0/0x69 returned 0 after 21615 usecs
[ 12.518457] calling pci_apply_final_quirks+0x0/0x117 @ 1
[ 12.523926] pci 0000:00:02.0: Boot video device
[ 12.529014] xen: registering gsi 16 triggering 0 polarity 1
[ 12.534592] xen: --> pirq=16 -> irq=16 (gsi=16)
[ 12.539231] pci 0000:00:14.0: CONFIG_USB_XHCI_HCD is turned off, defaulting to EHCI.
[ 12.546970] pci 0000:00:14.0: USB 3.0 devices will work at USB 2.0 speeds.
[ 12.554891] xen: registering gsi 16 triggering 0 polarity 1
[ 12.560455] Already setup the GSI :16
[ 12.580089] xen: registering gsi 23 triggering 0 polarity 1
[ 12.585660] xen: --> pirq=23 -> irq=23 (gsi=23)
[ 12.606155] xen: registering gsi 18 triggering 0 polarity 1
[ 12.611729] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 12.61664
[ 12.630005] initcall pci_apply_final_quirks+0x0/0x117 returned 0 after 103599 usecs
[ 12.637716] calling populate_rootfs+0x0/0x112 @ 1
[ 12.642683] Unpacking initramfs...
[ 13.735361] Freeing initrd memory: 83288K (ffff8800023f7000 - ffff88000754d000)
[ 13.742670] initcall populate_rootfs+0x0[ 13.749856] calling pci_iommu_init+0x0/0x41 @ 1
[ 13.754534] initcall pci_iommu_init+0x0/0x41 returned 0 after 0 usecs
[ 13.761035] calling calgary_fixup_tce_spaces+0x0/0x105 @ 1
[ 13.766668] initcall calgary_fixup_tce_spaces+0x0/0x105 returned -19 after 0 usecs
[ 13.774314] calling register_kernel_offset_dumper+0x0/0x1b @ 1
[ 13.780274] initcall register_kernel_offset_dumper+0x0/0x1b returned 0 after 0 usecs
[ 13.788074] calling i8259A_init_ops+0x0/0x21 @ 1
[ 13.792843] initcall i8259A_init_ops+0x0/0x21 returned 0 after 0 usecs
[ 13.799427] calling vsyscall_init+0x0/0x27 @ 1
[ 13.804027] initcall vsyscall_init+0x0/0x27 returned 0 after 4 usecs
[ 13.810434] calling sbf_init+0x0/0xf6 @ 1
[ 13.814595] initcall sbf_init+0x0/0xf6 returned 0 after 0 usecs
[ 13.820573] calling init_tsc_clocksource+0x0/0xc2 @ 1
[ 13.825775] initcall init_tsc_clocksource+0x0/0xc2 returned 0 after 1 usecs
[ 13.832794] calling add_rtc_cmos+0x0/0xb4 @ 1
[ 13.837303] initcall add_rtc_cmos+0x0/0xb4 returned 0 after 2 usecs
[ 13.843627] calling i8237A_init_ops+0x0/0x14 @ 1
[ 13.848393] initcall i8237A_init_ops+0x0/0x14 returned 0 after 0 usecs
[ 13.854979] calling cache_sysfs_init+0x0/0x65 @ 1
[ 13.860085] initcall cache_sysfs_init+0x0/0x65 returned 0 after 245 usecs
[ 13.866863] calling amd_uncore_init+0x0/0x130 @ 1
[ 13.871713] initcall amd_uncore_init+0x0/0x130 returned -19 after 0 usecs
[ 13.878561] calling amd_iommu_pc_init+0x0/0x150 @ 1
[ 13.883588] initcall amd_iommu_pc_init+0x0/0x150 returned -19 after 0 usecs
[ 13.890607] calling intel_uncore_init+0x0/0x3ab @ 1
[ 13.895633] initcall intel_uncore_init+0x0/0x3ab returned -19 after 0 usecs
[ 13.902652] calling rapl_pmu_init+0x0/0x1f8 @ 1
[ 13.907349] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 3 fixed counters 655360 ms ovfl timer
[ 13.917908] initcall rapl_pmu_init+0x0/0x1f8 returned 0 after 10327 usecs
[ 13.924755] calling inject_init+0x0/0x30 @ 1
[ 13.929172] Machine check injector initialized
[ 13.933680] initcall inject_init+0x0/0x30 returned 0 after 4401 usecs
[ 13.940180] calling thermal_throttle_init_device+0x0/0x9c @ 1
[ 13.946072] initcall thermal_throttle_init_device+0x0/0x9c returned 0 after 0 usecs
[ 13.953785] calling microcode_init+0x0/0x1b1 @ 1
[ 13.958738] microcode: CPU0 sig=0x306c3, pf=0x2, revision=0x7
[ 13.964849] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 13.973621] initcall microcode_init+0x0/0x1b1 returned 0 after 14714 usecs
[ 13.980552] calling amd_ibs_init+0x0/0x292 @ 1
[ 13.985141] initcall amd_ibs_init+0x0/0x292 returned -19 after 0 usecs
[ 13.991729] calling msr_init+0x0/0x162 @ 1
[ 13.996204] initcall msr_init+0x0/0x162 returned 0 after 223 usecs
[ 14.002372] calling cpuid_init+0x0/0x162 @ 1
[ 14.006994] initcall cpuid_init+0x0/0x162 returned 0 after 197 usecs
[ 14.013335] calling ioapic_init_ops+0x0/0x14 @ 1
[ 14.018100] initcall ioapic_init_ops+0x0/0x14 returned 0 after 0 usecs
[ 14.024686] calling add_pcspkr+0x0/0x40 @ 1
[ 14.029126] initcall add_pcspkr+0x0/0x40 returned 0 after 103 usecs
[ 14.035388] calling start_periodic_check_for_corruption+0x0/0x50 @ 1
[ 14.041882] Scanning for low memory corruption every 60 seconds
[ 14.047862] initcall start_periodic_check_for_corruption+0x0/0x50 returned 0 after 5838 usecs
[ 14.056440] calling sysfb_init+0x0/0x9c @ 1
[ 14.060886] initcall sysfb_init+0x0/0x9c returned 0 after 109 usecs
[ 14.067148] calling audit_classes_init+0x0/0xaf @ 1
[ 14.072187] initcall audit_classes_init+0x0/0xaf returned 0 after 13 usecs
[ 14.079104] calling pt_dump_init+0x0/0x30 @ 1
[ 14.083621] initcall pt_dump_init+0x0/0x30 returned 0 after 8 usecs
[ 14.089938] calling ia32_binfmt_init+0x0/0x14 @ 1
[ 14.094799] initcall ia32_binfmt_init+0x0/0x14 returned 0 after 7 usecs
[ 14.101465] calling proc_execdomains_init+0x0/0x22 @ 1
[ 14.106757] initcall proc_execdomains_init+0x0/0x22 returned 0 after 5 usecs
[ 14.113856] calling ioresources_init+0x0/0x3c @ 1
[ 14.118716] initcall ioresources_init+0x0/0x3c returned 0 after 6 usecs
[ 14.125382] calling uid_cache_init+0x0/0x85 @ 1
[ 14.130078] initcall uid_cache_init+0x0/0x85 returned 0 after 16 usecs
[ 14.136649] calling init_posix_timers+0x0/0x240 @ 1
[ 14.141688] initcall init_posix_timers+0x0/0x240 returned 0 after 12 usecs
[ 14.148608] calling init_posix_cpu_timers+0x0/0xbf @ 1
[ 14.153896] initcall init_posix_cpu_timers+0x0/0xbf returned 0 after 0 usecs
[ 14.161002] calling proc_schedstat_init+0x0/0x22 @ 1
[ 14.166118] initcall proc_schedstat_init+0x0/0x22 returned 0 after 3 usecs
[ 14.173048] calling snapshot_device_init+0x0/0x12 @ 1
[ 14.178371] initcall snapshot_device_init+0x0/0x12 returned 0 after 119 usecs
[ 14.185494] calling irq_pm_init_ops+0x0/0x14 @ 1
[ 14.190260] initcall irq_pm_init_ops+0x0/0x14 returned 0 after 0 usecs
[ 14.196845] calling create_proc_profile+0x0/0x300 @ 1
[ 14.202047] initcall create_proc_profile+0x0/0x300 returned 0 after 0 usecs
[ 14.209066] calling timekeeping_init_ops+0x0/0x14 @ 1
[ 14.214267] initcall timekeeping_init_ops+0x0/0x14 returned 0 after 0 usecs
[ 14.221285] calling init_clocksource_sysfs+0x0/0x69 @ 1
[ 14.226877] initcall init_clocksource_sysfs+0x0/0x69 returned 0 after 212 usecs
[ 14.234177] calling init_timer_list_procfs+0x0/0x2c @ 1
[ 14.239554] initcall init_timer_list_procfs+0x0/0x2c returned 0 after 4 usecs
[ 14.246741] calling alarmtimer_init+0x0/0x15f @ 1
[ 14.251788] initcall alarmtimer_init+0x0/0x15f returned 0 after 190 usecs
[ 14.258564] calling clockevents_init_sysfs+0x0/0xd2 @ 1
[ 14.264313] initcall clockevents_init_sysfs+0x0/0xd2 returned 0 after 315 usecs
[ 14.271611] calling init_tstats_procfs+0x0/0x2c @ 1
[ 14.276640] initcall init_tstats_procfs+0x0/0x2c returned 0 after 4 usecs
[ 14.283483] calling futex_init+0x0/0xf6 @ 1
[ 14.287832] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 14.293973] initcall futex_init+0x0/0xf6 returned 0 after 6013 usecs
[ 14.300381] calling proc_dma_init+0x0/0x22 @ 1
[ 14.304979] initcall proc_dma_init+0x0/0x22 returned 0 after 4 usecs
[ 14.311389] calling proc_modules_init+0x0/0x22 @ 1
[ 14.316332] initcall proc_modules_init+0x0/0x22 returned 0 after 3 usecs
[ 14.323089] calling kallsyms_init+0x0/0x25 @ 1
[ 14.327685] initcall kallsyms_init+0x0/0x25 returned 0 after 3 usecs
[ 14.334095] calling crash_save_vmcoreinfo_init+0x0/0x53f @ 1
[ 14.339911] initcall crash_save_vmcoreinfo_init+0x0/0x53f returned 0 after 9 usecs
[ 14.347528] calling crash_notes_memory_init+0x0/0x36 @ 1
[ 14.352990] initcall crash_notes_memory_init+0x0/0x36 returned 0 after 2 usecs
[ 14.360267] calling pid_namespaces_init+0x0/0x2d @ 1
[ 14.365394] initcall pid_namespaces_init+0x0/0x2d returned 0 after 12 usecs
[ 14.372400] calling ikconfig_init+0x0/0x3c @ 1
[ 14.376996] initcall ikconfig_init+0x0/0x3c returned 0 after 3 usecs
[ 14.383407] calling audit_init+0x0/0x141 @ 1
[ 14.387826] audit: initializing netlink socket (disabled)
[ 14.393314] type=2000 audit(1390613381.925:1): initialized
[ 14.398835] initcall audit_init+0x0/0x141 returned 0 after 10750 usecs
[ 14.405418] calling audit_watch_init+0x0/0x3a @ 1
[ 14.410274] initcall audit_watch_init+0x0/0x3a returned 0 after 1 usecs
[ 14.416946] calling audit_tree_init+0x0/0x49 @ 1
[ 14.421714] initcall audit_tree_init+0x0/0x49 returned 0 after 1 usecs
[ 14.428297] calling init_kprobes+0x0/0x16c @ 1
[ 14.443274] initcall init_kprobes+0x0/0x16c returned 0 after 10138 usecs
[ 14.449967] calling hung_task_init+0x0/0x56 @ l_init+0x0/0x14 returned 0 after 8 usecs
[ 14.473280] calling init_tracepoints+0x0/0x20 @ 1
[ 14.478134] initcall init_tracepoints+0x0/0x20 returned 0 after 0 usecs
[ 14.484804] calling init_blk_tracer+0x0/0x5a @ 1
[ 14.489573] initcall init_blk_tracer+0x0/0x5a returned 0 after 1 usecs
[ 14.496157] calling irq_work_init_cpu_notifier+0x0/0x29 @ 1
[ 14.501879] initcall irq_work_init_cpu_notifier+0x0/0x29 returned 0 after 0 usecs
[ 14.509416] calling perf_event_sysfs_init+0x0/0x93 @ 1
[ 14.515303] initcall perf_event_sysfs_init+0x0/0x93 returned 0 after 584 usecs
[ 14.522520] calling init_per_zone_wmark_min+0x0/0xa9 @ 1
[ 14.527985] initcall init_per_zone_wmark_min+0x0/0xa9 returned 0 after 10 usecs
[ 14.535341] calling kswapd_init+0x0/0x76 @ 1
[ 14.539807] initcall kswapd_init+0x0/0x76 returned 0 after 46 usecs
[ 14.546088] calling extfrag_debug_init+0x0/0x7e @ 1
[ 14.551132] initcall extfrag_debug_init+0x0/0x7e returned 0 after 19 usecs
[ 14.558045] calling setup_vmstat+0x0/0xf3 @ 1
[ 14.562567] initcall setup_vmstat+0x0/0xf3 returned 0 after 15 usecs
[ 14.568965] calling mm_sysfs_init+0x0/0x29 @ 1
[ 14.573570] initcall mm_sysfs_init+0x0/0x29 returned 0 after 10 usecs
[ 14.580058] calling mm_compute_batch_init+0x0/0x19 @ 1
[ 14.585345] initcall mm_compute_batch_init+0x0/0x19 returned 0 after 0 usecs
[ 14.592450] calling slab_proc_init+0x0/0x25 @ 1
[ 14.597136] initcall slab_proc_init+0x0/0x25 returned 0 after 3 usecs
[ 14.603630] calling init_reserve_notifier+0x0/0x26 @ 1
[ 14.608919] initcall init_reserve_notifier+0x0/0x26 returned 0 after 0 usecs
[ 14.616025] calling init_admin_reserve+0x0/0x40 @ 1
[ 14.621049] initcall init_admin_reserve+0x0/0x40 returned 0 after 0 usecs
[ 14.627896] calling init_user_reserve+0x0/0x40 @ 1
[ 14.632837] initcall init_user_reserve+0x0/0x40 returned 0 after 0 usecs
[ 14.639597] calling proc_vmalloc_init+0x0/0x25 @ 1
[ 14.644541] initcall proc_vmalloc_init+0x0/0x25 returned 0 after 3 usecs
[ 14.651296] calling procswaps_init+0x0/0x22 @ 1
[ 14.655979] initcall procswaps_init+0x0/0x22 returned 0 after 3 usecs
[ 14.662476] calling init_frontswap+0x0/0x96 @ 1
[ 14.667186] initcall init_frontswap+0x0/0x96 returned 0 after 29 usecs
[ 14.673743] calling hugetlb_init+0x0/0x4c2 @ 1
[ 14.678335] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 14.684829] initcall hugetlb_init+0x0/0x4c2 returned 0 after 6342 usecs
[ 14.691430] calling mmu_notifier_init+0x0/0x12 @ 1
[ 14.696373] initcall mmu_notifier_init+0x0/0x12 returned 0 after 2 usecs
[ 14.703131] calling slab_proc_init+0x0/0x8 @ 1
[ 14.707723] initcall slab_proc_init+0x0/0x8 returned 0 after 0 usecs
[ 14.714136] calling cpucache_init+0x0/0x4b @ 1
[ 14.718731] initcall cpucache_init+0x0/0x4b returned 0 after 0 usecs
[ 14.725143] calling hugepage_init+0x0/0x145 @ 1
[ 14.729823] initcall hugepage_init+0x0/0x145 returned -22 after 0 usecs
[ 14.736497] calling init_cleancache+0x0/0xbc @ 1
[ 14.741290] initcall init_cleancache+0x0/0xbc returned 0 after 27 usecs
[ 14.747936] calling fcntl_init+0x0/0x2a @ 1
[ 14.752281] initcall fcntl_init+0x0/0x2a returned 0 after 11 usecs
[ 14.758510] calling proc_filesystems_init+0x0/0x22 @ 1
[ 14.763799] initcall proc_filesystems_init+0x0/0x22 returned 0 after 3 usecs
[ 14.770901] calling dio_init+0x0/0x2d @ 1
[ 14.775074] initcall dio_init+0x0/0x2d returned 0 after 10 usecs
[ 14.781128] calling fsnotify_mark_init+0x0/0x40 @ 1
[ 14.786182] initcall fsnotify_mark_init+0x0/0x40 returned 0 after 26 usecs
[ 14.793092] calling dnotify_init+0x0/0x7b @ 1
[ 14.797618] initcall dnotify_init+0x0/0x7b returned 0 after 21 usecs
[ 14.804011] calling inotify_user_setup+0x0/0x4b @ 1
[ 14.809052] initcall inotify_user_setup+0x0/0x4b returned 0 after 12 usecs
[ 14.815968] calling aio_setup+0x0/0x7d @ 1
[ 14.820271] initcall aio_setup+0x0/0x7d returned 0 after 53 usecs
[ 14.826369] calling proc_locks_init+0x0/0x22 @ 1
[ 14.831137] initcall proc_locks_init+0x0/0x22 returned 0 after 4 usecs
[ 14.837719] calling init_sys32_ioctl+0x0/0x28 @ 1
[ 14.842619] initcall init_sys32_ioctl+0x0/0x28 returned 0 after 43 usecs
[ 14.849332] calling dquot_init+0x0/0x121 @ 1
[ 14.853752] VFS: Disk quotas dquot_6.5.2
[ 14.857773] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 14.864241] initcall dquot_init+0x0/0x121 returned 0 after 10243 usecs
[ 14.870826] calling init_v2_quota_format+0x0/0x22 @ 1
[ 14.876026] initcall init_v2_quota_format+0x0/0x22 returned 0 after 0 usecs
[ 14.883046] calling quota_init+0x0/0x31 @ 1
[ 14.887397] initcall quota_init+0x0/0x31 returned 0 after 17 usecs
[ 14.893620] calling proc_cmdline_init+0x0/0x22 @ 1
[ 14.898563] initcall proc_cmdline_init+0x0/0x22 returned 0 after 4 usecs
[ 14.905320] calling proc_consoles_init+0x0/0x22 @ 1
[ 14.910348] initcall proc_consoles_init+0x0/0x22 returned 0 after 3 usecs
[ 14.917191] calling proc_cpuinfo_init+0x0/0x22 @ 1
[ 14.922136] initcall proc_cpuinfo_init+0x0/0x22 returned 0 after 3 usecs
[ 14.928891] calling proc_devices_init+0x0/0x22 @ 1
[ 14.933835] initcall proc_devices_init+0x0/0x22 returned 0 after 3 usecs
[ 14.940591] calling proc_interrupts_init+0x0/0x22 @ 1
[ 14.945794] initcall proc_interrupts_init+0x0/0x22 returned 0 after 3 usecs
[ 14.952811] calling proc_loadavg_init+0x0/0x22 @ 1
[ 14.957755] initcall proc_loadavg_init+0x0/0x22 returned 0 after 3 usecs
[ 14.964510] calling proc_meminfo_init+0x0/0x22 @ 1
[ 14.969456] initcall proc_meminfo_init+0x0/0x22 returned 0 after 3 usecs
[ 14.976209] calling proc_stat_init+0x0/0x22 @ 1
[ 14.980892] initcall proc_stat_init+0x0/0x22 returned 0 after 3 usecs
[ 14.987390] calling proc_uptime_init+0x0/0x22 @ 1
[ 14.992246] initcall proc_uptime_init+0x0/0x22 returned 0 after 3 usecs
[ 14.998916] calling proc_version_init+0x0/0x22 @ 1
[ 15.003860] initcall proc_version_init+0x0/0x22 returned 0 after 4 usecs
[ 15.010617] calling proc_softirqs_init+0x0/0x22 @ 1
[ 15.015646] initcall proc_softirqs_init+0x0/0x22 returned 0 after 3 usecs
[ 15.022488] calling proc_kcore_init+0x0/0xb5 @ 1
[ 15.027265] initcall proc_kcore_init+0x0/0xb5 returned 0 after 10 usecs
[ 15.033931] calling vmcore_init+0x0/0x5cb @ 1
[ 15.038436] initcall vmcore_init+0x0/0x5cb returned 0 after 0 usecs
[ 15.044761] calling proc_kmsg_init+0x0/0x25 @ 1
[ 15.049445] initcall proc_kmsg_init+0x0/0x25 returned 0 after 3 usecs
[ 15.055942] calling proc_page_init+0x0/0x42 @ 1
[ 15.060628] initcall proc_page_init+0x0/0x42 returned 0 after 6 usecs
[ 15.067121] calling init_devpts_fs+0x0/0x62 @ 1
[ 15.071845] initcall init_devpts_fs+0x0/0x62 returned 0 after 42 usecs
[ 15.078388] calling init_hugetlbfs_fs+0x0/0x15d @ 1
[ 15.083487] initcall init_hugetlbfs_fs+0x0/0x15d returned 0 after 71 usecs
[ 15.090347] calling init_fat_fs+0x0/0x4f @ 1
[ 15.094788] initcall init_fat_fs+0x0/0x4f returned 0 after 20 usecs
[ 15.101094] calling init_vfat_fs+0x0/0x12 @ 1
[ 15.105600] initcall init_vfat_fs+0x0/0x12 returned 0 after 0 usecs
[ 15.111926] calling init_msdos_fs+0x0/0x12 @ 1
[ 15.116521] initcall init_msdos_fs+0x0/0x12 returned 0 after 0 usecs
[ 15.122933] calling init_iso9660_fs+0x0/0x70 @ 1
[ 15.127724] initcall init_iso9660_fs+0x0/0x70 returned 0 after 24 usecs
[ 15.134374] calling init_nfs_fs+0x0/0x16c @ 1
[ 15.139073] initcall init_nfs_fs+0x0/0x16c returned 0 after 188 usecs
[ 15.145506] calling init_nfs_v2+0x0/0x14 @ 1
[ 15.149922] initcall init_nfs_v2+0x0/0x14 returned 0 after 0 usecs
[ 15.156161] calling init_nfs_v3+0x0/0x14 @ 1
[ 15.160581] initcall init_nfs_v3+0x0/0x14 returned 0 after 0 usecs
[ 15.166821] calling init_nfs_v4+0x0/0x3b @ 1
[ 15.171241] NFS: Registering the id_resolver key type
[ 15.176365] Key type id_resolver registered
[ 15.180599] Key type id_legacy registered
[ 15.184682] initcall init_nfs_v4+0x0/0x3b returned 0 after 13125 usecs
[ 15.191260] calling init_nlm+0x0/0x4c @ 1
[ 15.195428] initcall init_nlm+0x0/0x4c returned 0 after 7 usecs
[ 15.201400] calling init_nls_cp437+0x0/0x12 @ 1
[ 15.206081] initcall init_nls_cp437+0x0/0x12 returned 0 after 0 usecs
[ 15.212578] calling init_nls_ascii+0x0/0x12 @ 1
[ 15.217258] initcall init_nls_ascii+0x0/0x12 returned 0 after 0 usecs
[ 15.223758] calling init_nls_iso8859_1+0x0/0x12 @ 1
[ 15.228786] initcall init_nls_iso8859_1+0x0/0x12 returned 0 after 0 usecs
[ 15.235632] calling init_nls_utf8+0x0/0x2b @ 1
[ 15.240226] initcall init_nls_utf8+0x0/0x2b returned 0 after 0 usecs
[ 15.246638] calling init_ntfs_fs+0x0/0x1d1 @ 1
[ 15.251231] NTFS driver 2.1.30 [Flags: R/W].
[ 15.255618] initcall init_ntfs_fs+0x0/0x1d1 returned 0 after 4283 usecs
[ 15.262240] calling init_autofs4_fs+0x0/0x2a @ 1
[ 15.267163] initcall init_autofs4_fs+0x0/0x2a returned 0 after 129 usecs
[ 15.273857] calling init_pstore_fs+0x0/0x53 @ 1
[ 15.278541] initcall init_pstore_fs+0x0/0x53 returned 0 after 11 usecs
[ 15.285117] calling ipc_init+0x0/0x2f @ 1
[ 15.289282] msgmni has been set to 3857
[ 15.293187] initcall ipc_init+0x0/0x2f returned 0 after 3820 usecs
[ 15.299414] calling ipc_sysctl_init+0x0/0x14 @ 1
[ 15.304189] initcall ipc_sysctl_init+0x0/0x14 returned 0 after 7 usecs
[ 15.310767] calling init_mqueue_fs+0x0/0xa2 @ 1
[ 15.315507] initcall init_mqueue_fs+0x0/0xa2 returned 0 after 57 usecs
[ 15.322036] calling key_proc_init+0x0/0x5e @ 1
[ 15.326635] initcall key_proc_init+0x0/0x5e returned 0 after 7 usecs
[ 15.333044] calling selinux_nf_ip_init+0x0/0x69 @ 1
[ 15.338068] SELinux: Registering netfilter hooks
[ 15.342970] initcall selinux_nf_ip_init+0x0/0x69 returned 0 after 4786 usecs
[ 15.350002] calling init_sel_fs+0x0/0xa5 @ 1
[ 15.354781] initcall init_sel_fs+0x0/0xa5 returned 0 after 350 usecs
[ 15.361122] calling selnl_init+0x0/0x56 @ 1
[ 15.365468] initcall selnl_init+0x0/0x56 returned 0 after 13 usecs
[ 15.371694] calling sel_netif_init+0x0/0x5c @ 1
[ 15.376376] initcall sel_netif_init+0x0/0x5c returned 0 after 2 usecs
[ 15.382874] calling sel_netnode_init+0x0/0x6a @ 1
[ 15.387730] initcall sel_netnode_init+0x0/0x6a returned 0 after 2 usecs
[ 15.394401] calling sel_netport_init+0x0/0x6a @ 1
[ 15.399257] initcall sel_netport_init+0x0/0x6a returned 0 after 1 usecs
[ 15.405927] calling aurule_init+0x0/0x2d @ 1
[ 15.410347] initcall aurule_init+0x0/0x2d returned 0 after 1 usecs
[ 15.416586] calling crypto_wq_init+0x0/0x33 @ 1
[ 15.421298] initcall crypto_wq_init+0x0/0x33 returned 0 after 30 usecs
[ 15.427855] calling crypto_algapi_init+0x0/0xd @ 1
[ 15.432798] initcall crypto_algapi_init+0x0/0xd returned 0 after 4 usecs
[ 15.439553] calling chainiv_module_init+0x0/0x12 @ 1
[ 15.444668] initcall chainiv_module_init+0x0/0x12 returned 0 after 0 usecs
[ 15.451599] calling eseqiv_module_init+0x0/0x12 @ 1
[ 15.456625] initcall eseqiv_module_init+0x0/0x12 returned 0 after 0 usecs
[ 15.463474] calling hmac_module_init+0x0/0x12 @ 1
[ 15.468326] initcall hmac_module_init+0x0/0x12 returned 0 after 0 usecs
[ 15.474999] calling md5_mod_init+0x0/0x12 @ 1
[ 15.479539] initcall md5_mod_init+0x0/0x12 returned 0 after 33 usecs
[ 15.485922] calling sha1_generic_mod_init+0x0/0x12 @ 1
[ 15.491238] initcall sha1_generic_mod_init+0x0/0x12 returned 0 after 29 usecs
[ 15.498399] calling crypto_cbc_module_init+0x0/0x12 @ 1
[ 15.503771] initcall crypto_cbc_module_init+0x0/0x12 returned 0 after 0 usecs
[ 15.510964] calling des_generic_mod_init+0x0/0x17 @ 1
[ 15.516217] initcall des_generic_mod_init+0x0/0x17 returned 0 after 51 usecs
[ 15.523275] calling aes_init+0x0/0x12 @ 1
[ 15.527459] initcall aes_init+0x0/0x12 returned 0 after 26 usecs
[ 15.533500] calling zlib_mod_init+0x0/0x12 @ 1
[ 15.538116] initcall zlib_mod_init+0x0/0x12 returned 0 after 26 usecs
[ 15.544594] calling crypto_authenc_module_init+0x0/0x12 @ 1
[ 15.550312] initcall crypto_authenc_module_init+0x0/0x12 returned 0 after 0 usecs
[ 15.557850] calling crypto_authenc_esn_module_init+0x0/0x12 @ 1
[ 15.563916] initcall crypto_authenc_esn_module_init+0x0/0x12 returned 0 after 0 usecs
[ 15.571803] calling krng_mod_init+0x0/0x12 @ 1
[ 15.576425] initcall krng_mod_init+0x0/0x12 returned 0 after 26 usecs
[ 15.582902] calling proc_genhd_init+0x0/0x3c @ 1
[ 15.587672] initcall proc_genhd_init+0x0/0x3c returned 0 after 7 usecs
[ 15.594249] calling bsg_init+0x0/0x12e @ 1
[ 15.598574] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[ 15.605959] initcall bsg_init+0x0/0x12e returned 0 after 7288 usecs
[ 15.612283] calling noop_init+0x0/0x12 @ 1
[ 15.616531] io scheduler noop registered
[ 15.620516] initcall noop_init+0x0/0x12 returned 0 after 3891 usecs
[ 15.626843] calling deadline_init+0x0/0x12 @ 1
[ 15.631437] io scheduler deadline registered
[ 15.635770] initcall deadline_init+0x0/0x12 returned 0 after 4230 usecs
[ 15.642445] calling cfq_init+0x0/0x8b @ 1
[ 15.646626] io scheduler cfq registered (default)
[ 15.651370] initcall cfq_init+0x0/0x8b returned 0 after 4653 usecs
[ 15.657610] calling percpu_counter_startup+0x0/0x38 @ 1
[ 15.662985] initcall percpu_counter_startup+0x0/0x38 returned 0 after 0 usecs
[ 15.670176] calling pci_proc_init+0x0/0x6a @ 1
[ 15.674952] initcall pci_proc_init+0x0/0x6a returned 0 after 178 usecs
[ 15.681469] calling pcie_portdrv_init+0x0/0x7a @ 1
[ 15.687142] xen: registering gsi 16 triggering 0 polarity 1
[ 15.692704] Already setup the GSI :16
[ 15.697246] xen: registering gsi 16 triggering 0 polarity 1
[ 15.702806] Already setup the GSI :16
[ 15.707333] xen: registering gsi 16 triggering 0 polarity 1
[ 15.712897] Already setup the GSI :16
[ 15.717275] xen: registering gsi 19 triggering 0 polarity 1
[ 15.722849] xen: --> pirq=19 -> irq=19 (gsi=19)
[ 15.728099] xen: registering gsi 17 triggering 0 polarity 1
[ 15.733670] xen: --> pirq=17 -> irq=17 (gsi=17)
[ 15.739000] xen: registering gsi 19 triggering 0 polarity 1
[ 15.744563] Already setup the GSI :19
[ 15.748482] initcall pcie_portdrv_init+0x0/0x7a returned 0 after 60618 usecs
[ 15.755518] calling aer_service_init+0x0/0x2b @ 1
[ 15.760444] initcall aer_service_init+0x0/0x2b returned 0 after 72 usecs
[ 15.767129] calling pci_hotplug_init+0x0/0x1d @ 1
[ 15.771980] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 15.777614] initcall pci_hotplug_init+0x0/0x1d returned 0 after 5501 usecs
[ 15.784546] calling pcied_init+0x0/0x79 @ 1
[ 15.789129] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 15.795727] initcall pcied_init+0x0/0x79 returned 0 after 6686 usecs
[ 15.802141] calling pcifront_init+0x0/0x3f @ 1
[ 15.806733] initcall pcifront_init+0x0/0x3f returned -19 after 0 usecs
[ 15.813321] calling genericbl_driver_init+0x0/0x14 @ 1
[ 15.818681] initcall genericbl_driver_init+0x0/0x14 returned 0 after 73 usecs
[ 15.825804] calling cirrusfb_init+0x0/0xcc @ 1
[ 15.830501] initcall cirrusfb_init+0x0/0xcc returned 0 after 101 usecs
[ 15.837020] calling efifb_driver_init+0x0/0x14 @ 1
[ 15.842034] initcall efifb_driver_init+0x0/0x14 returned 0 after 76 usecs
[ 15.848813] calling intel_idle_init+0x0/0x331 @ 1
[ 15.853664] intel_idle: MWAIT substates: 0x42120
[ 15.858342] intel_idle: v0.4 model 0x3C
[ 15.862243] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 15.868139] intel_idle: intel_idle yielding to none
[ 15.872816] initcall intel_idle_init+0x0/0x331 returned -19 after 18703 usecs
[ 15.880268] calling acpi_reserve_resources+0x0/0xeb @ 1
[ 15.885649] initcall acpi_reserve_resources+0x0/0xeb returned 0 after 7 usecs
[ 15.892834] calling acpi_ac_init+0x0/0x2a @ 1
[ 15.897414] initcall acpi_ac_init+0x0/0x2a returned 0 after 71 usecs
[ 15.903757] calling acpi_button_driver_init+0x0/0x12 @ 1
[ 15.909499] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[ 15.917661] ACPI: Power Button [PWRB]
[ 15.921648] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 15.929031] ACPI: Power Button [PWRF]
[ 15.932827] initcall acpi_button_driver_init+0x0/0x12 returned 0 after 23058 usecs
[ 15.940380] calling acpi_fan_driver_init+0x0/0x12 @ 1
[ 15.945818] ACPI: Fan [FAN0] (off)
[ 15.949442] ACPI: Fan [FAN1] (off)
[ 15.953051] ACPI: Fan [FAN2] (off)
[ 15.956659] ACPI: Fan [FAN3] (off)
[ 15.960262] ACPI: Fan [FAN4] (off)
[ 15.963732] initcall acpi_fan_driver_init+0x0/0x12 returned 0 after 17726 usecs
[ 15.971029] calling acpi_processor_driver_init+0x0/0x43 @ 1
[ 15.989249] ACPI Error: [\PETE] Namespace lookup failure, AE_NOT_FOUND (20131115/psargs-359)
[ 15.997672] ACPI Error: Method parse/execution failed [\_PR_.CPU0._TPC] (Node ffff8800784b2ce0), AE_NOT_FOUND (20131115/psparse-536)
[ 16.013318] Monitor-Mwait will be used to enter C-1 state
[ 16.018712] Monitor-Mwait will be used to enter C-2 state
[ 16.024371] Warning: Processor Platform Limit not supported.
[ 16.030018] initcall acpi_processor_driver_init+0x0/0x43 returned 0 after 52023 usecs
[ 16.037902] calling acpi_thermal_init+0x0/0x42 @ 1
[ 16.046117] thermal LNXTHERM:00: registered as thermal_zone0
[ 16.051769] ACPI: Thermal Zone [TZ00] (28 C)
[ 16.058277] initcall acpi_thermal_init+0x0/0x42 returned 0 after 25141 usecs
[ 16.075621] calling acpi_battery_init+0x0/0x16 @ 1
[ 16.080562] initcall acpi_battery_init+0x0/0x16 returned 0 after 2 usecs
[ 16.087320] calling acpi_hed_driver_init+0x0/0x12 @ 1
[ 16.092555] calling 1_acpi_battery_init_async+0x0/0x35 @ 6
[ 16.098291] initcall acpi_hed_driver_init+0x0/0x12 returned 0 after 5635 usecs
[ 16.105508] calling erst_init+0x0/0x2fc @ 1
[ 16.109880] ERST: Error Record Serialization Table (ERST) support is initialized.
[ 16.117382] pstore: Registered erst as persistent store backend
[ 16.123355] initcall erst_init+0x0/0x2fc returned 0 after 13199 usecs
[ 16.129854] calling ghes_init+0x0/0x173 @ 1
[ 16.134367] initcall 1_acpi_battery_init_async+0x0/0x35 returned 0 after 35363 usecs
[ 16.142766] \_SB_:_OSC request failed
[ 16.146425] _OSC request data:1 1 0
[ 16.150064] \_SB_:_OSC invalid UUID
[ 16.153616] _OSC request data:1 1 0
[ 16.157257] GHES: APEI firmware first mode is enabled by APEI bit.
[ 16.163499] initcall ghes_init+0x0/0x173 returned 0 after 28622 usecs
[ 16.169995] calling einj_init+0x0/0x522 @ 1
[ 16.174394] EINJ: Error INJection is initialized.
[ 16.179097] initcall einj_init+0x0/0x522 returned 0 after 4655 usecs
[ 16.185511] calling ioat_init_module+0x0/0xb1 @ 1
[ 16.190363] ioatdma: Intel(R) QuickData Technology Driver 4.00
[ 16.196441] initcall ioat_init_module+0x0/0xb1 returned 0 after 5934 usecs
[ 16.203310] calling virtio_mmio_init+0x0/0x14 @ 1
[ 16.208267] initcall virtio_mmio_init+0x0/0x14 returned 0 after 105 usecs
[ 16.215038] calling virtio_balloon_driver_init+0x0/0x12 @ 1
[ 16.220834] initcall virtio_balloon_driver_init+0x0/0x12 returned 0 after 75 usecs
[ 16.228394] calling xenbus_probe_initcall+0x0/0x39 @ 1
[ 16.233681] initcall xenbus_probe_initcall+0x0/0x39 returned 0 after 0 usecs
[ 16.240784] calling xenbus_init+0x0/0x3d @ 1
[ 16.245346] initcall xenbus_init+0x0/0x3d returned 0 after 135 usecs
[ 16.251697] calling xenbus_backend_init+0x0/0x51 @ 1
[ 16.256926] initcall xenbus_backend_init+0x0/0x51 returned 0 after 120 usecs
[ 16.263960] calling gntdev_init+0x0/0x4d @ 1
[ 16.268528] initcall gntdev_init+0x0/0x4d returned 0 after 122 usecs
[ 16.274872] calling gntalloc_init+0x0/0x3d @ 1
[ 16.279599] initcall gntalloc_init+0x0/0x3d returned 0 after 131 usecs
[ 16.286114] calling hypervisor_subsys_init+0x0/0x25 @ 1
[ 16.291484] initcall hypervisor_subsys_init+0x0/0x25 returned 0 after 0 usecs
[ 16.298676] calling hyper_sysfs_init+0x0/0x103 @ 1
[ 16.303682] initcall hyper_sysfs_init+0x0/0x103 returned 0 after 65 usecs
[ 16.310463] calling platform_pci_module_init+0x0/0x1b @ 1
[ 16.316101] initcall platform_pci_module_init+0x0/0x1b returned 0 after 90 usecs
[ 16.323483] calling xen_late_init_mcelog+0x0/0x3d @ 1
[ 16.328873] initcall xen_late_init_mcelog+0x0/0x3d returned 0 after 190 usecs
[ 16.335995] calling xen_pcibk_init+0x0/0x13f @ 1
[ 16.340788] xen_pciback: backend is vpci
[ 16.344824] initcall xen_pcibk_init+0x0/0x13f returned 0 after 3967 usecs
[ 16.351605] calling xen_acpi_processor_init+0x0/0x24b @ 1
[ 16.357913] xen_acpi_processor: Uploading Xen processor PM info
(XEN) [2014-01-25 01:29:43] Set CPU acpi_id(1) cpuid(0) Px State info:
(XEN) [2014-01-25 01:29:43] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:43] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:43] _PSS: state_count=16
(XEN) [2014-01-25 01:29:43] State0: 3401MHz 84000mW 10us 10us 0x2600 0x2600
(XEN) [2014-01-25 01:29:43] State1: 3400MHz 84000mW 10us 10us 0x2200 0x2200
(XEN) [2014-01-25 01:29:43] State2: 3200MHz 77169mW 10us 10us 0x2000 0x2000
(XEN) [2014-01-25 01:29:43] State3: 3000MHz 70587mW 10us 10us 0x1e00 0x1e00
(XEN) [2014-01-25 01:29:43] State4: 2800MHz 64262mW 10us 10us 0x1c00 0x1c00
(XEN) [2014-01-25 01:29:43] State5: 2700MHz 61182mW 10us 10us 0x1b00 0x1b00
(XEN) [2014-01-25 01:29:43] State6: 2500MHz 55201mW 10us 10us 0x1900 0x1900
(XEN) [2014-01-25 01:29:43] State7: 2300MHz 49464mW 10us 10us 0x1700 0x1700
(XEN) [2014-01-25 01:29:43] State8: 2100MHz 43946mW 10us 10us 0x1500 0x1500
(XEN) [2014-01-25 01:29:43] State9: 1900MHz 38654mW 10us 10us 0x1300 0x1300
(XEN) [2014-01-25 01:29:43] State10: 1700MHz 34277mW 10us 10us 0x1100 0x1100
(XEN) [2014-01-25 01:29:44] State11: 1500MHz 29407mW 10us 10us 0xf00 0xf00
(XEN) [2014-01-25 01:29:44] State12: 1400MHz 27053mW 10us 10us 0xe00 0xe00
(XEN) [2014-01-25 01:29:44] State13: 1200MHz 22509mW 10us 10us 0xc00 0xc00
(XEN) [2014-01-25 01:29:44] State14: 1000MHz 18167mW 10us 10us 0xa00 0xa00
(XEN) [2014-01-25 01:29:44] State15: 800MHz 14031mW 10us 10us 0x800 0x800
(XEN) [2014-01-25 01:29:44] _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=8
(XEN) [2014-01-25 01:29:44] _PPC: 0
(XEN) [2014-01-25 01:29:44] xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) [2014-01-25 01:29:44] max_freq: 3401000 second_max_freq: 3400000
(XEN) [2014-01-25 01:29:44] CPU0: Turbo Mode detected and enabled
(XEN) [2014-01-25 01:29:44] CPU 0 initialization completed
(XEN) [2014-01-25 01:29:44] Set CPU acpi_id(2) cpuid(2) Px State info:
(XEN) [2014-01-25 01:29:44] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:44] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:44] _PSS: state_count=16
(XEN) [2014-01-25 01:29:44] State0: 3401MHz 84000mW 10us 10us 0x2600 0x2600
(XEN) [2014-01-25 01:29:44] State1: 3400MHz 84000mW 10us 10us 0x2200 0x2200
(XEN) [2014-01-25 01:29:44] State2: 3200MHz 77169mW 10us 10us 0x2000 0x2000
(XEN) [2014-01-25 01:29:44] State3: 3000MHz 70587mW 10us 10us 0x1e00 0x1e00
(XEN) [2014-01-25 01:29:44] State4: 2800MHz 64262mW 10us 10us 0x1c00 0x1c00
(XEN) [2014-01-25 01:29:44] State5: 2700MHz 61182mW 10us 10us 0x1b00 0x1b00
(XEN) [2014-01-25 01:29:44] State6: 2500MHz 55201mW 10us 10us 0x1900 0x1900
(XEN) [2014-01-25 01:29:44] State7: 2300MHz 49464mW 10us 10us 0x1700 0x1700
(XEN) [2014-01-25 01:29:44] State8: 2100MHz 43946mW 10us 10us 0x1500 0x1500
(XEN) [2014-01-25 01:29:44] State9: 1900MHz 38654mW 10us 10us 0x1300 0x1300
(XEN) [2014-01-25 01:29:44] State10: 1700MHz 34277mW 10us 10us 0x1100 0x1100
(XEN) [2014-01-25 01:29:44] State11: 1500MHz 29407mW 10us 10us 0xf00 0xf00
(XEN) [2014-01-25 01:29:44] State12: 1400MHz 27053mW 10us 10us 0xe00 0xe00
(XEN) [2014-01-25 01:29:44] State13: 1200MHz 22509mW 10us 10us 0xc00 0xc00
(XEN) [2014-01-25 01:29:44] State14: 1000MHz 18167mW 10us 10us 0xa00 0xa00
(XEN) [2014-01-25 01:29:44] State15: 800MHz 14031mW 10us 10us 0x800 0x800
(XEN) [2014-01-25 01:29:44] _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=8
(XEN) [2014-01-25 01:29:44] _PPC: 0
(XEN) [2014-01-25 01:29:44] xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) [2014-01-25 01:29:44] max_freq: 3401000 second_max_freq: 3400000
(XEN) [2014-01-25 01:29:44] CPU2: Turbo Mode detected and enabled
(XEN) [2014-01-25 01:29:44] CPU 2 initialization completed
(XEN) [2014-01-25 01:29:44] Set CPU acpi_id(3) cpuid(4) Px State info:
(XEN) [2014-01-25 01:29:44] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:44] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:44] _PSS: state_count=16
(XEN) [2014-01-25 01:29:44] State0: 3401MHz 84000mW 10us 10us 0x2600 0x2600
(XEN) [2014-01-25 01:29:44] State1: 3400MHz 84000mW 10us 10us 0x2200 0x2200
(XEN) [2014-01-25 01:29:44] State2: 3200MHz 77169mW 10us 10us 0x2000 0x2000
(XEN) [2014-01-25 01:29:44] State3: 3000MHz 70587mW 10us 10us 0x1e00 0x1e00
(XEN) [2014-01-25 01:29:44] State4: 2800MHz 64262mW 10us 10us 0x1c00 0x1c00
(XEN) [2014-01-25 01:29:44] State5: 2700MHz 61182mW 10us 10us 0x1b00 0x1b00
(XEN) [2014-01-25 01:29:44] State6: 2500MHz 55201mW 10us 10us 0x1900 0x1900
(XEN) [2014-01-25 01:29:44] State7: 2300MHz 49464mW 10us 10us 0x1700 0x1700
(XEN) [2014-01-25 01:29:44] State8: 2100MHz 43946mW 10us 10us 0x1500 0x1500
(XEN) [2014-01-25 01:29:44] State9: 1900MHz 38654mW 10us 10us 0x1300 0x1300
(XEN) [2014-01-25 01:29:44] State10: 1700MHz 34277mW 10us 10us 0x1100 0x1100
(XEN) [2014-01-25 01:29:44] State11: 1500MHz 29407mW 10us 10us 0xf00 0xf00
(XEN) [2014-01-25 01:29:44] State12: 1400MHz 27053mW 10us 10us 0xe00 0xe00
(XEN) [2014-01-25 01:29:44] State13: 1200MHz 22509mW 10us 10us 0xc00 0xc00
(XEN) [2014-01-25 01:29:44] State14: 1000MHz 18167mW 10us 10us 0xa00 0xa00
(XEN) [2014-01-25 01:29:44] State15: 800MHz 14031mW 10us 10us 0x800 0x800
(XEN) [2014-01-25 01:29:44] _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=8
(XEN) [2014-01-25 01:29:44] _PPC: 0
(XEN) [2014-01-25 01:29:44] xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) [2014-01-25 01:29:44] max_freq: 3401000 second_max_freq: 3400000
(XEN) [2014-01-25 01:29:44] CPU4: Turbo Mode detected and enabled
(XEN) [2014-01-25 01:29:44] CPU 4 initialization completed
(XEN) [2014-01-25 01:29:44] Set CPU acpi_id(4) cpuid(6) Px State info:
(XEN) [2014-01-25 01:29:44] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:44] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:44] _PSS: state_count=16
(XEN) [2014-01-25 01:29:44] State0: 3401MHz 84000mW 10us 10us 0x2600 0x2600
(XEN) [2014-01-25 01:29:44] State1: 3400MHz 84000mW 10us 10us 0x2200 0x2200
(XEN) [2014-01-25 01:29:44] State2: 3200MHz 77169mW 10us 10us 0x2000 0x2000
(XEN) [2014-01-25 01:29:44] State3: 3000MHz 70587mW 10us 10us 0x1e00 0x1e00
(XEN) [2014-01-25 01:29:44] State4: 2800MHz 64262mW 10us 10us 0x1c00 0x1c00
(XEN) [2014-01-25 01:29:44] State5: 2700MHz 61182mW 10us 10us 0x1b00 0x1b00
(XEN) [2014-01-25 01:29:44] State6: 2500MHz 55201mW 10us 10us 0x1900 0x1900
(XEN) [2014-01-25 01:29:44] State7: 2300MHz 49464mW 10us 10us 0x1700 0x1700
(XEN) [2014-01-25 01:29:44] State8: 2100MHz 43946mW 10us 10us 0x1500 0x1500
(XEN) [2014-01-25 01:29:44] State9: 1900MHz 38654mW 10us 10us 0x1300 0x1300
(XEN) [2014-01-25 01:29:44] State10: 1700MHz 34277mW 10us 10us 0x1100 0x1100
(XEN) [2014-01-25 01:29:44] State11: 1500MHz 29407mW 10us 10us 0xf00 0xf00
(XEN) [2014-01-25 01:29:44] State12: 1400MHz 27053mW 10us 10us 0xe00 0xe00
(XEN) [2014-01-25 01:29:44] State13: 1200MHz 22509mW 10us 10us 0xc00 0xc00
(XEN) [2014-01-25 01:29:44] State14: 1000MHz 18167mW 10us 10us 0xa00 0xa00
(XEN) [2014-01-25 01:29:44] State15: 800MHz 14031mW 10us 10us 0x800 0x800
(XEN) [2014-01-25 01:29:44] _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=8
(XEN) [2014-01-25 01:29:44] _PPC: 0
(XEN) [2014-01-25 01:29:44] xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) [2014-01-25 01:29:44] max_freq: 3401000 second_max_freq: 3400000
(XEN) [2014-01-25 01:29:44] CPU6: Turbo Mode detected and enabled
(XEN) [2014-01-25 01:29:44] CPU 6 initialization completed
(XEN) [2014-01-25 01:29:44] Set CPU acpi_id(5) cpuid(1) Px State info:
(XEN) [2014-01-25 01:29:44] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:44] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:44] _PSS: state_count=16
(XEN) [2014-01-25 01:29:44] State0: 3401MHz 84000mW 10us 10us 0x2600 0x2600
(XEN) [2014-01-25 01:29:44] State1: 3400MHz 84000mW 10us 10us 0x2200 0x2200
(XEN) [2014-01-25 01:29:44] State2: 3200MHz 77169mW 10us 10us 0x2000 0x2000
(XEN) [2014-01-25 01:29:44] State3: 3000MHz 70587mW 10us 10us 0x1e00 0x1e00
(XEN) [2014-01-25 01:29:44] State4: 2800MHz 64262mW 10us 10us 0x1c00 0x1c00
(XEN) [2014-01-25 01:29:44] State5: 2700MHz 61182mW 10us 10us 0x1b00 0x1b00
(XEN) [2014-01-25 01:29:44] State6: 2500MHz 55201mW 10us 10us 0x1900 0x1900
(XEN) [2014-01-25 01:29:44] State7: 2300MHz 49464mW 10us 10us 0x1700 0x1700
(XEN) [2014-01-25 01:29:44] State8: 2100MHz 43946mW 10us 10us 0x1500 0x1500
(XEN) [2014-01-25 01:29:44] State9: 1900MHz 38654mW 10us 10us 0x1300 0x1300
(XEN) [2014-01-25 01:29:44] State10: 1700MHz 34277mW 10us 10us 0x1100 0x1100
(XEN) [2014-01-25 01:29:44] State11: 1500MHz 29407mW 10us 10us 0xf00 0xf00
(XEN) [2014-01-25 01:29:44] State12: 1400MHz 27053mW 10us 10us 0xe00 0xe00
(XEN) [2014-01-25 01:29:44] State13: 1200MHz 22509mW 10us 10us 0xc00 0xc00
(XEN) [2014-01-25 01:29:44] State14: 1000MHz 18167mW 10us 10us 0xa00 0xa00
(XEN) [2014-01-25 01:29:44] State15: 800MHz 14031mW 10us 10us 0x800 0x800
(XEN) [2014-01-25 01:29:44] _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=8
(XEN) [2014-01-25 01:29:44] _PPC: 0
(XEN) [2014-01-25 01:29:44] xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) [2014-01-25 01:29:44] max_freq: 3401000 second_max_freq: 3400000
(XEN) [2014-01-25 01:29:44] CPU1: Turbo Mode detected and enabled
(XEN) [2014-01-25 01:29:44] CPU 1 initialization completed
(XEN) [2014-01-25 01:29:44] Set CPU acpi_id(6) cpuid(3) Px State info:
(XEN) [2014-01-25 01:29:44] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:44] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:44] _PSS: state_count=16
(XEN) [2014-01-25 01:29:44] State0: 3401MHz 84000mW 10us 10us 0x2600 0x2600
(XEN) [2014-01-25 01:29:44] State1: 3400MHz 84000mW 10us 10us 0x2200 0x2200
(XEN) [2014-01-25 01:29:44] State2: 3200MHz 77169mW 10us 10us 0x2000 0x2000
(XEN) [2014-01-25 01:29:44] State3: 3000MHz 70587mW 10us 10us 0x1e00 0x1e00
(XEN) [2014-01-25 01:29:44] State4: 2800MHz 64262mW 10us 10us 0x1c00 0x1c00
(XEN) [2014-01-25 01:29:44] State5: 2700MHz 61182mW 10us 10us 0x1b00 0x1b00
(XEN) [2014-01-25 01:29:44] State6: 2500MHz 55201mW 10us 10us 0x1900 0x1900
(XEN) [2014-01-25 01:29:44] State7: 2300MHz 49464mW 10us 10us 0x1700 0x1700
(XEN) [2014-01-25 01:29:44] State8: 2100MHz 43946mW 10us 10us 0x1500 0x1500
(XEN) [2014-01-25 01:29:44] State9: 1900MHz 38654mW 10us 10us 0x1300 0x1300
(XEN) [2014-01-25 01:29:44] State10: 1700MHz 34277mW 10us 10us 0x1100 0x1100
(XEN) [2014-01-25 01:29:44] State11: 1500MHz 29407mW 10us 10us 0xf00 0xf00
(XEN) [2014-01-25 01:29:44] State12: 1400MHz 27053mW 10us 10us 0xe00 0xe00
(XEN) [2014-01-25 01:29:44] State13: 1200MHz 22509mW 10us 10us 0xc00 0xc00
(XEN) [2014-01-25 01:29:44] State14: 1000MHz 18167mW 10us 10us 0xa00 0xa00
(XEN) [2014-01-25 01:29:44] State15: 800MHz 14031mW 10us 10us 0x800 0x800
(XEN) [2014-01-25 01:29:44] _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=8
(XEN) [2014-01-25 01:29:44] _PPC: 0
(XEN) [2014-01-25 01:29:44] xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) [2014-01-25 01:29:44] max_freq: 3401000 second_max_freq: 3400000
(XEN) [2014-01-25 01:29:44] CPU3: Turbo Mode detected and enabled
(XEN) [2014-01-25 01:29:44] CPU 3 initialization completed
(XEN) [2014-01-25 01:29:44] Set CPU acpi_id(7) cpuid(5) Px State info:
(XEN) [2014-01-25 01:29:44] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:44] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:44] _PSS: state_count=16
(XEN) [2014-01-25 01:29:44] State0: 3401MHz 84000mW 10us 10us 0x2600 0x2600
(XEN) [2014-01-25 01:29:44] State1: 3400MHz 84000mW 10us 10us 0x2200 0x2200
(XEN) [2014-01-25 01:29:45] State2: 3200MHz 77169mW 10us 10us 0x2000 0x2000
(XEN) [2014-01-25 01:29:45] State3: 3000MHz 70587mW 10us 10us 0x1e00 0x1e00
(XEN) [2014-01-25 01:29:45] State4: 2800MHz 64262mW 10us 10us 0x1c00 0x1c00
(XEN) [2014-01-25 01:29:45] State5: 2700MHz 61182mW 10us 10us 0x1b00 0x1b00
(XEN) [2014-01-25 01:29:45] State6: 2500MHz 55201mW 10us 10us 0x1900 0x1900
(XEN) [2014-01-25 01:29:45] State7: 2300MHz 49464mW 10us 10us 0x1700 0x1700
(XEN) [2014-01-25 01:29:45] State8: 2100MHz 43946mW 10us 10us 0x1500 0x1500
(XEN) [2014-01-25 01:29:45] State9: 1900MHz 38654mW 10us 10us 0x1300 0x1300
(XEN) [2014-01-25 01:29:45] State10: 1700MHz 34277mW 10us 10us 0x1100 0x1100
(XEN) [2014-01-25 01:29:45] State11: 1500MHz 29407mW 10us 10us 0xf00 0xf00
(XEN) [2014-01-25 01:29:45] State12: 1400MHz 27053mW 10us 10us 0xe00 0xe00
(XEN) [2014-01-25 01:29:45] State13: 1200MHz 22509mW 10us 10us 0xc00 0xc00
(XEN) [2014-01-25 01:29:45] State14: 1000MHz 18167mW 10us 10us 0xa00 0xa00
(XEN) [2014-01-25 01:29:45] State15: 800MHz 14031mW 10us 10us 0x800 0x800
(XEN) [2014-01-25 01:29:45] _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=8
(XEN) [2014-01-25 01:29:45] _PPC: 0
(XEN) [2014-01-25 01:29:45] xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) [2014-01-25 01:29:45] max_freq: 3401000 second_max_freq: 3400000
(XEN) [2014-01-25 01:29:45] CPU5: Turbo Mode detected and enabled
(XEN) [2014-01-25 01:29:45] CPU 5 initialization completed
(XEN) [2014-01-25 01:29:45] Set CPU acpi_id(8) cpuid(7) Px State info:
(XEN) [2014-01-25 01:29:45] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:45] _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0, reserved=0, address=0
(XEN) [2014-01-25 01:29:45] _PSS: state_count=16
(XEN) [2014-01-25 01:29:45] State0: 3401MHz 84000mW 10us 10us 0x2600 0x2600
(XEN) [2014-01-25 01:29:45] State1: 3400MHz 84000mW 10us 10us 0x2200 0x2200
(XEN) [2014-01-25 01:29:45] State2: 3200MHz 77169mW 10us 10us 0x2000 0x2000
(XEN) [2014-01-25 01:29:45] State3: 3000MHz 70587mW 10us 10us 0x1e00 0x1e00
(XEN) [2014-01-25 01:29:45] State4: 2800MHz 64262mW 10us 10us 0x1c00 0x1c00
(XEN) [2014-01-25 01:29:45] State5: 2700MHz 61182mW 10us 10us 0x1b00 0x1b00
(XEN) [2014-01-25 01:29:45] State6: 2500MHz 55201mW 10us 10us 0x1900 0x1900
(XEN) [2014-01-25 01:29:45] State7: 2300MHz 49464mW 10us 10us 0x1700 0x1700
(XEN) [2014-01-25 01:29:45] State8: 2100MHz 43946mW 10us 10us 0x1500 0x1500
(XEN) [2014-01-25 01:29:45] State9: 1900MHz 38654mW 10us 10us 0x1300 0x1300
(XEN) [2014-01-25 01:29:45] State10: 1700MHz 34277mW 10us 10us 0x1100 0x1100
(XEN) [2014-01-25 01:29:45] State11: 1500MHz 29407mW 10us 10us 0xf00 0xf00
(XEN) [2014-01-25 01:29:45] State12: 1400MHz 27053mW 10us 10us 0xe00 0xe00
(XEN) [2014-01-25 01:29:45] State13: 1200MHz 22509mW 10us 10us 0xc00 0xc00
(XEN) [2014-01-25 01:29:45] State14: 1000MHz 18167mW 10us 10us 0xa00 0xa00
(XEN) [2014-01-25 01:29:45] State15: 800MHz 14031mW 10us 10us 0x800 0x800
(XEN) [2014-01-25 01:29:45] _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=8
(XEN) [2014-01-25 01:29:45] _PPC: 0
(XEN) [2014-01-25 01:29:45] xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) [2014-01-25 01:29:45] max_freq: 3401000 second_max_freq: 3400000
(XEN) [2014-01-25 01:29:45] CPU7: Turbo Mode detected and enabled
(XEN) [2014-01-25 01:29:45] CPU 7 initialization completed
[ 17.780119] initcall xen_acpi_processor_init+0x0/0x24b returned 0 after 1389616 usecs
[ 17.788000] calling pty_init+0x0/0x453 @ 1
[ 17.798157] kworker/u2:0 (743) used greatest stack depth: 5488 bytes left
[ 17.854289] initcall pty_init+0x0/0x453 returned 0 after 60584 usecs
[ 17.860637] calling sysrq_init+0x0/0xb0 @ 1
[ 0 after 8 usecs
[ 17.871122] calling xen_hvc_init+0x0/0x228 @ 1
[ 17.876761] initcall xen_hvc_init+0x0/0x228 returned 0 after 1022 usecs
[ 17.883361] calling serial8250_init+0x0/0x1ab @ 1
[ 17.888210] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 17.915839] 00:09: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[ 17.924254] initcall serial8250_init+0x09] kgdb: Registered I/O driver kgdboc.
[ 17.953023] initcall init_kgdboc+0x0/0x16 returned 0 after 4515 usecs
[ 17.959493] calling init+0x0/0x10f @ 1
[ 17.963613] initcall init+0x0/0x10f returned 0 after 215 usecs
[ 17.969434] calling hpet_init+0x0/0x6a @ 1
[ 17.974171] hpet_acpi_add: no address or irqs in _CRS
[ 17.979302] initcall hpet_init+0x0/0x6a returned 0 after 5491 usecs
[ 17.985553] calling nvram_init+0x0/0x82 @ 1
[ 17.990013] Non-volatile memory driver v1.3
[ 17.994187] initcall nvram_init+0x0/0x82 returned 0 after 4200 usecs
[ 18.000598] calling mod_init+0x0/0x5a @ 1
[ 18.004757] initcall mod_init+0x0/0x5a returned -19 after 0 usecs
[ 18.010911] calling rng_init+0x0/0x12 @ 1
[ 18.015207] initcall rng_init+0x0/0x12 returned 0 after 132 usecs
[ 18.021285] calling agp_init+0x0/0x26 @ 1
[ 18.025444] Linux agpgart interface v0.103
[ 18.029605] initcall agp_init+0x0/0x26 returned 0 after 4063 usecs
[ 18.035844] calling agp_amd64_mod_init+0x0/0xb @ 1
[ 18.040934] initcall agp_amd64_mod_init+0x0/0xb returned -19 after 146 usecs
[ 18.047969] calling agp_intel_init+0x0/0x29 @ 1
[ 18.052740] initcall agp_intel_init+0x0/0x29 returned 0 after 89 usecs
[ 18.059254] calling agp_sis_init+0x0/0x29 @ 1
[ 18.063851] initcall agp_sis_init+0x0/0x29 returned 0 after 89 usecs
[ 18.070191] calling agp_via_init+0x0/0x29 @ 1
[ 18.074788] initcall agp_via_init+0x0/0x29 returned 0 after 89 usecs
[ 18.081128] calling drm_core_init+0x0/0x10c @ 1
[ 18.085896] [drm] Initialized drm 1.1.0 20060810
[ 18.090504] initcall drm_core_init+0x0/0x10c returned 0 after 4585 usecs
[ 18.097263] calling cn_proc_init+0x0/0x3d @ 1
[ 18.101773] initcall cn_proc_init+0x0/0x3d returned 0 after 2 usecs
[ 18.108098] calling topology_sysfs_init+0x0/0x70 @ 1
[ 18.113242] initcall topology_sysfs_init+0x0/0x70 returned 0 after 32 usecs
[ 18.120228] calling loop_init+0x0/0x14e @ 1
[ 18.178369] loop: module loaded
[ 18.181530] initcall loop_init+0x0/0x14e returned 0 after 55630 usecs
[ 18.188002] calling xen_blkif_init+0x0/0x22 @ 1
[ 18.192784] initcall xen_blkif_init+0x0/0x22 returned 0 after 99 usecs
[ 18.199321] calling mac_hid_init+0x0/0x22 @ 1
[ 18.203810] initcall mac_hid_init+0x0/0x22 returned 0 after 9 usecs
[ 18.210126] calling macvlan_init_module+0x0/0x3d @ 1
[ 18.215242] initcall macvlan_init_module+0x0/0x3d returned 0 after 2 usecs
[ 18.222176] calling macvtap_init+0x0/0x100 @ 1
[ 18.226836] initcall macvtap_init+0x0/0x100 returned 0 after 67 usecs
[ 18.233277] calling net_olddevs_init+0x0/0xb5 @ 1
[ 18.238121] initcall net_olddevs_init+0x0/0xb5 returned 0 after 1 usecs
[ 18.244793] calling fixed_mdio_bus_init+0x0/0x105 @ 1
[ 18.250218] libphy: Fixed MDIO Bus: probed
[ 18.254309] initcall fixed_mdio_bus_init+0x0/0x105 returned 0 after 4215 usecs
[ 18.261589] calling tun_init+0x0/0x93 @ 1
[ 18.265749] tun: Universal TUN/TAP device driver, 1.6
[ 18.270859] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 18.277245] initcall tun_init+0x0/0x93 returned 0 after 11226 usecs
[ 18.283501] calling tg3_driver_init+0x0/0x1b @ 1
[ 18.288405] initcall tg3_driver_init+0x0/0x1b returned 0 after 136 usecs
[ 18.295097] calling igb_init_module+0x0/0x58 @ 1
[ 18.299863] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.0.5-k
[ 18.306879] igb: Copyright (c) 2007-2013 Intel Corporation.
[ 18.312779] xen: registering gsi 17 triggering 0 polarity 1
[ 18.318340] Already setup the GSI :17
[ 18.485658] igb 0000:02:00.0: added PHC on eth0
[ 18.490189] igb 0000:02:00.0: Intel(R) Gigabit Ethernet Network Connecti509248] igb 0000:02:00.0: Using MSI-X interrupts. 1 rx queue(s), 1 tx queue(s)
[ 18.517140] xen: registering gsi 18 triggering 0 polarity 1
[ 18.522707] Already setup the GSI :18
[ 18.690630] igb 0000:02:00.1: added PHC on eth1
[ 18.695157] igb 0000:02:00.1: Intel(R) Gigabit Ethernet Network Connecti09279] igb 0000:02:00.1: eth1: PBA No: Unknown
[ 18.714218] igb 0000:02:00.1: Using MSI-X interrupts. 1 rx queue(s), 1 tx queue(s)
[ 18.722118] xen: registering gsi 19 triggering 0 polarity 1
[ 18.727685] Already setup the GSI :19
(XEN) [2014-01-25 01:29:46] ----[ Xen-4.4-rc2 x86_64 debug=y Tainted: C ]----
(XEN) [2014-01-25 01:29:46] CPU: 0
(XEN ffff8302394665b0 rcx: 0000000000000000
(XEN) [2014-01-25 01:29:46] rdx: 00000000f1980000 rsi: 0000000000000200 rdi: ffff82d080281f20
(XEN) [2014-01-25 01:29:46] rbp: ffff82d0802cfca8 rsp: ffff82d0802cfc08 r8: 000000000000001c
(XEN) [2014-01-25 01:29:46] r9: 00000000ffffffff r10: ffff82d080238f20 r11: 0000000000000202
(XEN) [2014-01-25 01:29:46] r12: 0000000000000000 r13: ffff83022a085e30 r14: ffff82d0802cfe98
(XEN) [2014-01-25 01:29:46] r15: 0000000000000000 cr0: 0000000080050033 cr4: 00000000001526f0
(XEN) [2014-01-25 01:29:46] cr3: 000000022dc0c000 cr2: 0000000000000004
(XEN) [2014-01-25 01:29:46] ds: 0000 es: 0000 fs: 0000 gs: 0000 ss: e010 cs: e008
(XEN) [2014-01-25 01:29:46] Xen stack trace from rsp=ffff82d0802cfc08:
(XEN) [2014-01-25 01:29:46] 0000000500040070 ffff82d0802cfd88 00000072802cfc38 ffff82d0ffffffff
(XEN) [2014-01-25 01:29:46] 0000000000000000 0000000000000000 0000000000000005 0000000000000070
(XEN) [2014-01-25 01:29:46] 0000000500000000 0000000000000000 00000000f1980000 ffff82d000000005
(XEN) [2014-01-25 01:29:46] 0000000500000003 8005007000000000 ffff82d0802cfe98 ffff82d0802cfe98
(XEN) [2014-01-25 01:29:46] ffff82d0802cfd88 ffff8302394665b0 0000000000000005 0000000000000000
(XEN) [2014-01-25 01:29:46] ffff82d0802cfd28 ffff82d080168987 0000000000000246 ffff82d0802cfcd8
(XEN) [2014-01-25 01:29:46] ffff82d080129d68 0000000000000000 ffff82d0802cfd28 ffff82d0801474f9
(XEN) [2014-01-25 01:29:46] ffff82d0802cfd18 ffff830239463b70 000000000000010f ffff8302337f8000
(XEN) [2014-01-25 01:29:46] 000000000000010f 0000000000000022 00000000ffffffed ffff830239402200
(XEN) [2014-01-25 01:29:46] ffff82d0802cfdc8 ffff82d08016c65c ffff83022a085e00 000000000000010f
(XEN) [2014-01-25 01:29:46] 000000000000010f ffff8302337f80e0 ffff82d0802cfd98 ffff82d0801047ed
(XEN) [2014-01-25 01:29:46] 0000010f01402200 ffff82d0802cfe98 ffff8302337f80e0 ffff8302394665b0
(XEN) [2014-01-25 01:29:46] ffff82d0802cfe98 ffff83022a085e00 ffff82d0802cfdc8 ffff8302337f8000
(XEN) [2014-01-25 01:29:46] 00000000fffffffd 0000000000000000 ffff82d0802cfe98 ffff82d0802cfe70
(XEN) [2014-01-25 01:29:46] ffff82d0802cfe48 ffff82d08017f104 ffff82d0802cff18 ffffffff8156d7c6
(XEN) [2014-01-25 01:29:46] ffff82d0802cfe98 ffff8302337f80b8 ffff82d00000010f ffff82d08018bd40
(XEN) [2014-01-25 01:29:46] 000000220000f800 ffff82d0802cfe74 ffff820040004000 000000000000000d
(XEN) [2014-01-25 01:29:46] ffff880078623b08 ffff8300b7313000 ffff880006dbb180 0000000000000000
(XEN) [2014-01-25 01:29:46] ffff82d0802cfef8 ffff82d08017f814 0000000000000000 0000000700000004
(XEN) [2014-01-25 01:29:46] 0000000000007ff0 ffffffffffffffff 0000000000000005 0000000000000000
(XEN) [2014-01-25 01:29:46] Xen call trace:
(XEN) [2014-01-25 01:29:46] [<ffff82d0801683a2>] msix_capability_init+0x1dc/0x603
(XEN) [2014-01-25 01:29:46] [<ffff82d080168987>] pci_enable_msi+0x1be/0x4d7
(XEN) [2014-01-25 01:29:46] [<ffff82d08016c65c>] map_domain_pirq+0x222/0x5ad
(XEN) [2014-01-25 01:29:46] [<ffff82d08017f104>] physdev_map_pirq+0x507/0x5d1
(XEN) [2014-01-25 01:29:46] [<ffff82d08017f814>] do_physdev_op+0x646/0x1232
(XEN) [2014-01-25 01:29:46] [<ffff82d0802223ab>] syscall_enter+0xeb/0x145
(XEN) [2014-01-25 01:29:46]
(XEN) [2014-01-25 01:29:46] Pagetable walk from 0000000000000004:
(XEN) [2014-01-25 01:29:46] L4[0x000] = 0000000000000000 ffffffffffffffff
(XEN) [2014-01-25 01:29:46]
(XEN) [2014-01-25 01:29:46] ****************************************
(XEN) [2014-01-25 01:29:46] Panic on CPU 0:
(XEN) [2014-01-25 01:29:46] FATAL PAGE FAULT
(XEN) [2014-01-25 01:29:46] [error_code=0000]
(XEN) [2014-01-25 01:29:46] Faulting linear address: 0000000000000004
(XEN) [2014-01-25 01:29:46] ****************************************
(XEN) [2014-01-25 01:29:46]
(XEN) [2014-01-25 01:29:46] Manual reset required ('noreboot' specified)
[-- Attachment #3: Type: text/plain, Size: 126 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
next prev parent reply other threads:[~2014-01-24 17:43 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-21 21:54 Regression compared to Xen 4.3, Xen 4.4-rc2 - pci_prepare_msix+0xb1/0x12 - BOOM Konrad Rzeszutek Wilk
2014-01-22 0:23 ` Andrew Cooper
2014-01-22 0:24 ` [PATCH] x86/msi: Validate the guest-identified PCI devices in pci_prepare_msix() Andrew Cooper
2014-01-22 4:31 ` Konrad Rzeszutek Wilk
2014-01-22 9:49 ` Jan Beulich
2014-01-22 10:28 ` Andrew Cooper
2014-01-22 12:08 ` Jan Beulich
2014-01-22 21:40 ` Konrad Rzeszutek Wilk
2014-01-23 8:24 ` Jan Beulich
2014-01-24 15:01 ` Konrad Rzeszutek Wilk
2014-01-24 15:55 ` Jan Beulich
2014-01-24 16:19 ` Jan Beulich
2014-01-24 17:43 ` Konrad Rzeszutek Wilk [this message]
2014-01-24 21:56 ` Is: pci=assign-busses blows up Xen 4.4 Was:Re: " Konrad Rzeszutek Wilk
2014-02-05 20:07 ` Konrad Rzeszutek Wilk
2014-02-06 9:02 ` Jan Beulich
2014-02-21 19:18 ` Konrad Rzeszutek Wilk
2014-02-24 9:15 ` Is: pci=assign-busses blows up Xen 4.4 Jan Beulich
2014-02-24 16:15 ` Konrad Rzeszutek Wilk
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140124174349.GA15472@phenom.dumpdata.com \
--to=konrad.wilk@oracle.com \
--cc=JBeulich@suse.com \
--cc=andrew.cooper3@citrix.com \
--cc=george.dunlap@eu.citrix.com \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).