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