Hi! We have a problem that the dom0 very often does not boot and hangs in the hypervisor - see screenshot. The last message is: (XEN) Dom0 has maximum 16 VCPUs (afterwards xen should overwrite the memory) We are using the xen kernel from kernel.org git. Kernel is 2.6.32.24-xen with Xen 4.0.1 Hardware is HP DL380. Is this a known problem? Any hints what could be the problem and how we can solve it? Thanks Klaus _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Thu, Dec 16, 2010 at 11:25:27AM +0100, Klaus Darilion wrote:> Hi! > > We have a problem that the dom0 very often does not boot and hangs in > the hypervisor - see screenshot. The last message is: > > (XEN) Dom0 has maximum 16 VCPUs > > (afterwards xen should overwrite the memory) > > We are using the xen kernel from kernel.org git. > > Kernel is 2.6.32.24-xen with Xen 4.0.1 > > Hardware is HP DL380. > > Is this a known problem? Any hints what could be the problem and how we > can solve it? >Can you please post your grub.conf. Also you might want to set up a serial console, either using the actual physical COM-port, or by using SOL (from iLO), and capture the full boot logs: http://wiki.xen.org/xenwiki/XenSerialConsole -- Pasi _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I can confirm this problem on a Dell R710 running Debian Squeeze on AMD64. The really strange thing is, we operate roughly 20 more R710 without such problems. The only notable difference is the hardware in detail. That is a Intel( Xeon( CPUE5530 @ 2.40GHz and a 2,4T storage array on a H700 controller (thus using gpt!). So it seems to be either related to large disk sizes (using GPT as said) or the CPU type (having in total 16 cores/SMT units). Moreover the default kernel from Debian boots fine, as does the xen-enabled pv_ops dom0 kernel running on bare metal (thus without hypervisor). I tried to enable serial output from Xen (console=com2) through the onboard DRAC serial port forwarding. This returns some garbage only though for the hypervisor wheras BIOS/POST + grub are fine (see below): ���f����▒f���▒~f����f�����▒��▒�▒▒�`fx▒f���▒��▒�����▒▒�~f�`f�xf��f The grub.cfg is this: # # DO NOT EDIT THIS FILE # # It is automatically generated by grub-mkconfig using templates # from /etc/grub.d and settings from /etc/default/grub # ### BEGIN /etc/grub.d/00_header ### if [ -s $prefix/grubenv ]; then load_env fi set default="3" if [ "${prev_saved_entry}" ]; then set saved_entry="${prev_saved_entry}" save_env saved_entry set prev_saved_entry save_env prev_saved_entry set boot_once=true fi function savedefault { if [ -z "${boot_once}" ]; then saved_entry="${chosen}" save_env saved_entry fi } function load_video { insmod vbe insmod vga insmod video_bochs insmod video_cirrus } serial --unit=1 --speed=57600 terminal_input serial terminal_output serial set timeout=5 ### END /etc/grub.d/00_header ### ### BEGIN /etc/grub.d/05_debian_theme ### set menu_color_normal=cyan/blue set menu_color_highlight=white/blue ### END /etc/grub.d/05_debian_theme ### ### BEGIN /etc/grub.d/10_linux ### menuentry ''Debian GNU/Linux, with Linux 2.6.32-5-xen-amd64'' --class debian --class gnu-linux --class gnu --class os { insmod part_gpt insmod ext2 set root=''(hd0,gpt1)'' search --no-floppy --fs-uuid --set 4346c332-863c-4482-b9a1-f3d45dffc1e7 echo ''Loading Linux 2.6.32-5-xen-amd64 ...'' linux /boot/vmlinuz-2.6.32-5-xen-amd64 root=UUID=4346c332-863c-4482-b9a1-f3d45dffc1e7 ro quiet echo ''Loading initial ramdisk ...'' initrd /boot/initrd.img-2.6.32-5-xen-amd64 } menuentry ''Debian GNU/Linux, with Linux 2.6.32-5-amd64'' --class debian - --class gnu-linux --class gnu --class os { insmod part_gpt insmod ext2 set root=''(hd0,gpt1)'' search --no-floppy --fs-uuid --set 4346c332-863c-4482-b9a1-f3d45dffc1e7 echo ''Loading Linux 2.6.32-5-amd64 ...'' linux /boot/vmlinuz-2.6.32-5-amd64 root=UUID=4346c332-863c-4482-b9a1-f3d45dffc1e7 ro quiet echo ''Loading initial ramdisk ...'' initrd /boot/initrd.img-2.6.32-5-amd64 } ### END /etc/grub.d/10_linux ### ### BEGIN /etc/grub.d/20_linux_xen ### menuentry ''Debian GNU/Linux, with Linux 2.6.32-5-xen-amd64 and XEN 4.0-amd64'' --class debian --class gnu-linux --class gnu --class os - --class xen { insmod part_gpt insmod ext2 set root=''(hd0,gpt1)'' search --no-floppy --fs-uuid --set 4346c332-863c-4482-b9a1-f3d45dffc1e7 echo ''Loading Linux 2.6.32-5-xen-amd64 ...'' multiboot /boot/xen-4.0-amd64.gz console=com2 com2=57600,8n1 module /boot/vmlinuz-2.6.32-5-xen-amd64 placeholder root=UUID=4346c332-863c-4482-b9a1-f3d45dffc1e7 ro console=ttyS1 echo ''Loading initial ramdisk ...'' module /boot/initrd.img-2.6.32-5-xen-amd64 } ### END /etc/grub.d/20_linux_xen ### ### BEGIN /etc/grub.d/30_os-prober ### ### END /etc/grub.d/30_os-prober ### ### BEGIN /etc/grub.d/40_custom ### # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the ''exec tail'' line above. ### END /etc/grub.d/40_custom ### ### BEGIN /etc/grub.d/41_custom ### if [ -f $prefix/custom.cfg ]; then source $prefix/custom.cfg; fi ### END /etc/grub.d/41_custom ### Please note that "console=com2 com2=57600,8n1" produces the given garbage followed by an immediate reboot. Without this arguments to the hypervisor the serial output indicates that the actual dom0 kernel is never booted. The output of the virtual console shows exactly the same as Klaus reported. Maybe you can point out how to enable/fix my issue with the console or denote me what to do next in order to provide you more useful debugging output. Wavecon GmbH | Frankenstrasse 9 | 90762 Fuerth Web: wavecon.de | Mail + Jabber at@wavecon.de -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk0K14IACgkQBWM6U4QI1MQj0wCfUNwz9DAYWYWj1ZP+ZUzuCtKY nPwAn3n0UFHPLSGySLgphCrnJHe3ijbo =iy7p -----END PGP SIGNATURE----- _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I managed to get the serial terminal working. This is what I get from the hypervisor:> (XEN) Xen version 4.0.1 (Debian 4.0.1-1) (waldi@debian.org) (gcc version 4.4.5 20100824 (prerelease) (Debian 4.4.4-11) ) Fri Sep 3 15:38:12 UTC 2010 > (XEN) Bootloader: GRUB 1.98+20100804-10 > (XEN) Command line: console=com2 > (XEN) Video information: > (XEN) VGA is text mode 80x25, font 8x16 > (XEN) VBE/DDC methods: none; EDID transfer time: 0 seconds > (XEN) EDID info not retrieved because no DDC retrieval method detected > (XEN) Disc information: > (XEN) Found 1 MBR signatures > (XEN) Found 1 EDD information structures > (XEN) Xen-e820 RAM map: > (XEN) 0000000000000000 - 00000000000a0000 (usable) > (XEN) 0000000000100000 - 000000007f679000 (usable) > (XEN) 000000007f679000 - 000000007f68f000 (reserved) > (XEN) 000000007f68f000 - 000000007f6ce000 (ACPI data) > (XEN) 000000007f6ce000 - 0000000080000000 (reserved) > (XEN) 00000000e0000000 - 00000000f0000000 (reserved) > (XEN) 00000000fe000000 - 0000000100000000 (reserved) > (XEN) 0000000100000000 - 0000000c80000000 (usable) > (XEN) ACPI: RSDP 000F0A90, 0024 (r2 DELL ) > (XEN) ACPI: XSDT 000F0B94, 009C (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: FACP 7F6B3F9C, 00F4 (r3 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: DSDT 7F68F000, 3D5A (r1 DELL PE_SC3 1 INTL 20050624) > (XEN) ACPI: FACS 7F6B6000, 0040 > (XEN) ACPI: APIC 7F6B3478, 015E (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: SPCR 7F6B35D8, 0050 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: HPET 7F6B362C, 0038 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: DMAR 7F6B3668, 01C0 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: MCFG 7F6B38C4, 003C (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: WD__ 7F6B3904, 0134 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: SLIC 7F6B3A3C, 0024 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: ERST 7F692EDC, 0270 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: HEST 7F69314C, 03A8 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: BERT 7F692D5C, 0030 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: EINJ 7F692D8C, 0150 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: SRAT 7F6B3BC0, 0370 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: TCPA 7F6B3F34, 0064 (r2 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: SSDT 7F6B7000, 43F4 (r1 INTEL PPM RCM 80000001 INTL 20061109) > (XEN) System RAM: 49142MB (50321508kB) > (XEN) Domain heap initialised DMA width 32 bits > (XEN) Processor #16 7:10 APIC version 21 > (XEN) Processor #0 7:10 APIC version 21 > (XEN) Processor #18 7:10 APIC version 21 > (XEN) Processor #2 7:10 APIC version 21 > (XEN) Processor #20 7:10 APIC version 21 > (XEN) Processor #4 7:10 APIC version 21 > (XEN) Processor #22 7:10 APIC version 21 > (XEN) Processor #6 7:10 APIC version 21 > (XEN) Processor #17 7:10 APIC version 21 > (XEN) Processor #1 7:10 APIC version 21 > (XEN) Processor #19 7:10 APIC version 21 > (XEN) Processor #3 7:10 APIC version 21 > (XEN) Processor #21 7:10 APIC version 21 > (XEN) Processor #5 7:10 APIC version 21 > (XEN) Processor #23 7:10 APIC version 21 > (XEN) Processor #7 7:10 APIC version 21 > (XEN) IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 > (XEN) IOAPIC[1]: apic_id 1, version 32, address 0xfec80000, GSI 32-55 > (XEN) Enabling APIC mode: Phys. Using 2 I/O APICs > (XEN) Using scheduler: SMP Credit Scheduler (credit) > (XEN) Detected 2394.048 MHz processor. > (XEN) Initing memory sharing. > (XEN) VMX: Supported advanced features: > (XEN) - APIC MMIO access virtualisation > (XEN) - APIC TPR shadow > (XEN) - Extended Page Tables (EPT) > (XEN) - Virtual-Processor Identifiers (VPID) > (XEN) - Virtual NMI > (XEN) - MSR direct-access bitmap > (XEN) EPT supports 2MB super page. > (XEN) HVM: ASIDs enabled. > (XEN) HVM: VMX enabled > (XEN) HVM: Hardware Assisted Paging detected. > (XEN) Intel VT-d Snoop Control supported. > (XEN) Intel VT-d DMA Passthrough not supported. > (XEN) Intel VT-d Queued Invalidation supported. > (XEN) Intel VT-d Interrupt Remapping supported. > (XEN) I/O virtualisation enabled > (XEN) - Dom0 mode: Relaxed > (XEN) Total of 16 processors activated. > (XEN) ENABLING IO-APIC IRQs > (XEN) -> Using new ACK method > (XEN) TSC is reliable, synchronization unnecessary > (XEN) Platform timer is 14.318MHz HPET > �(XEN) Allocated console ring of 32 KiB. > (XEN) Brought up 16 CPUs > (XEN) *** LOADING DOMAIN 0 *** > (XEN) Xen kernel: 64-bit, lsb, compat32 > (XEN) Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x16b6000 > (XEN) PHYSICAL MEMORY ARRANGEMENT: > (XEN) Dom0 alloc.: 0000000c50000000->0000000c60000000 (12345335 pages to be allocated) > (XEN) VIRTUAL MEMORY ARRANGEMENT: > (XEN) Loaded kernel: ffffffff81000000->ffffffff816b6000 > (XEN) Init. ramdisk: ffffffff816b6000->ffffffff83064200 > (XEN) Phys-Mach map: ffffffff83065000->ffffffff88f14fb8 > (XEN) Start info: ffffffff88f15000->ffffffff88f154b4 > (XEN) Page tables: ffffffff88f16000->ffffffff88f61000 > (XEN) Boot stack: ffffffff88f61000->ffffffff88f62000 > (XEN) TOTAL: ffffffff80000000->ffffffff89000000 > (XEN) ENTRY ADDRESS: ffffffff81506200 > (XEN) Dom0 has maximum 16 VCPUs > (XEN) Scrubbing Free RAM: done. > (XEN) Xen trace buffers: disabled > (XEN) Std. Loglevel: Errors and warnings > (XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings) > (XEN) *** Serial input -> DOM0 (type ''CTRL-a'' three times to switch input to Xen) > (XEN) Freed 176kB init memory. > mapping kernel into physical memory > Xen: setup ISA identity maps > about to get started... > (XEN) Domain 0 crashed: rebooting machine in 5 seconds.Nothing but the last line seem suspicious to me. As said, I''ll happily provide you debug information, if you tell me what exactly you do need. - -- mit freundlichen Grüßen, Arno Töll, BSc. GnuPG Key-ID: 0x8408D4C4 Wavecon GmbH | Frankenstrasse 9 | 90762 Fuerth Web: wavecon.de | Mail + Jabber at@wavecon.de -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk0LPfEACgkQBWM6U4QI1MSILQCfUrEbaaW9Z5WHYunJpjcgCTO2 yKMAn0kGdLHB4I7QyBl/6sohDPsM+A1M =2rdT -----END PGP SIGNATURE----- _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Fri, Dec 17, 2010 at 11:39:46AM +0100, Arno Toell wrote:> -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > I managed to get the serial terminal working. This is what I get from > the hypervisor: > > > (XEN) Brought up 16 CPUs > > (XEN) *** LOADING DOMAIN 0 *** > > (XEN) Xen kernel: 64-bit, lsb, compat32 > > (XEN) Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x16b6000 > > (XEN) PHYSICAL MEMORY ARRANGEMENT: > > (XEN) Dom0 alloc.: 0000000c50000000->0000000c60000000 (12345335 pages to be allocated) > > (XEN) VIRTUAL MEMORY ARRANGEMENT: > > (XEN) Loaded kernel: ffffffff81000000->ffffffff816b6000 > > (XEN) Init. ramdisk: ffffffff816b6000->ffffffff83064200 > > (XEN) Phys-Mach map: ffffffff83065000->ffffffff88f14fb8 > > (XEN) Start info: ffffffff88f15000->ffffffff88f154b4 > > (XEN) Page tables: ffffffff88f16000->ffffffff88f61000 > > (XEN) Boot stack: ffffffff88f61000->ffffffff88f62000 > > (XEN) TOTAL: ffffffff80000000->ffffffff89000000 > > (XEN) ENTRY ADDRESS: ffffffff81506200 > > (XEN) Dom0 has maximum 16 VCPUs > > (XEN) Scrubbing Free RAM: done. > > (XEN) Xen trace buffers: disabled > > (XEN) Std. Loglevel: Errors and warnings > > (XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings) > > (XEN) *** Serial input -> DOM0 (type ''CTRL-a'' three times to switch input to Xen) > > (XEN) Freed 176kB init memory. > > mapping kernel into physical memory > > Xen: setup ISA identity maps > > about to get started... > > (XEN) Domain 0 crashed: rebooting machine in 5 seconds. > > > Nothing but the last line seem suspicious to me. As said, I''ll happily > provide you debug information, if you tell me what exactly you do need. >Please add "console=hvc0 earlyprintk=xen initcall_debug debug loglevel=10" options for the dom0 Linux kernel (vmlinuz) and try again. Btw there was reports of random problems on Dell R710 with *Solaris, some servers working OK, while others kept crashing, all using exact same hardware/software models/versions/firmwares. -- Pasi _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 17.12.2010 12:51, Pasi Kärkkäinen wrote:> "console=hvc0 earlyprintk=xen initcall_debug debug loglevel=10"Here we go: serial output:> (XEN) Xen version 4.0.1 (Debian 4.0.1-1) (waldi@debian.org) (gcc version 4.4.5 20100824 (prerelease) (Debian 4.4.4-11) ) Fri Sep 3 15:38:12 UTC 2010 > (XEN) Bootloader: GRUB 1.98+20100804-10 > (XEN) Command line: console=com2 > (XEN) Video information: > (XEN) VGA is text mode 80x25, font 8x16 > (XEN) VBE/DDC methods: none; EDID transfer time: 0 seconds > (XEN) EDID info not retrieved because no DDC retrieval method detected > (XEN) Disc information: > (XEN) Found 1 MBR signatures > (XEN) Found 1 EDD information structures > (XEN) Xen-e820 RAM map: > (XEN) 0000000000000000 - 00000000000a0000 (usable) > (XEN) 0000000000100000 - 000000007f679000 (usable) > (XEN) 000000007f679000 - 000000007f68f000 (reserved) > (XEN) 000000007f68f000 - 000000007f6ce000 (ACPI data) > (XEN) 000000007f6ce000 - 0000000080000000 (reserved) > (XEN) 00000000e0000000 - 00000000f0000000 (reserved) > (XEN) 00000000fe000000 - 0000000100000000 (reserved) > (XEN) 0000000100000000 - 0000000c80000000 (usable) > (XEN) ACPI: RSDP 000F0A90, 0024 (r2 DELL ) > (XEN) ACPI: XSDT 000F0B94, 009C (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: FACP 7F6B3F9C, 00F4 (r3 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: DSDT 7F68F000, 3D5A (r1 DELL PE_SC3 1 INTL 20050624) > (XEN) ACPI: FACS 7F6B6000, 0040 > (XEN) ACPI: APIC 7F6B3478, 015E (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: SPCR 7F6B35D8, 0050 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: HPET 7F6B362C, 0038 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: DMAR 7F6B3668, 01C0 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: MCFG 7F6B38C4, 003C (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: WD__ 7F6B3904, 0134 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: SLIC 7F6B3A3C, 0024 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: ERST 7F692EDC, 0270 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: HEST 7F69314C, 03A8 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: BERT 7F692D5C, 0030 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: EINJ 7F692D8C, 0150 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: SRAT 7F6B3BC0, 0370 (r1 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: TCPA 7F6B3F34, 0064 (r2 DELL PE_SC3 1 DELL 1) > (XEN) ACPI: SSDT 7F6B7000, 43F4 (r1 INTEL PPM RCM 80000001 INTL 20061109) > (XEN) System RAM: 49142MB (50321508kB) > (XEN) Domain heap initialised DMA width 32 bits > (XEN) Processor #16 7:10 APIC version 21 > (XEN) Processor #0 7:10 APIC version 21 > (XEN) Processor #18 7:10 APIC version 21 > (XEN) Processor #2 7:10 APIC version 21 > (XEN) Processor #20 7:10 APIC version 21 > (XEN) Processor #4 7:10 APIC version 21 > (XEN) Processor #22 7:10 APIC version 21 > (XEN) Processor #6 7:10 APIC version 21 > (XEN) Processor #17 7:10 APIC version 21 > (XEN) Processor #1 7:10 APIC version 21 > (XEN) Processor #19 7:10 APIC version 21 > (XEN) Processor #3 7:10 APIC version 21 > (XEN) Processor #21 7:10 APIC version 21 > (XEN) Processor #5 7:10 APIC version 21 > (XEN) Processor #23 7:10 APIC version 21 > (XEN) Processor #7 7:10 APIC version 21 > (XEN) IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 > (XEN) IOAPIC[1]: apic_id 1, version 32, address 0xfec80000, GSI 32-55 > (XEN) Enabling APIC mode: Phys. Using 2 I/O APICs > (XEN) Using scheduler: SMP Credit Scheduler (credit) > (XEN) Detected 2394.064 MHz processor. > (XEN) Initing memory sharing. > (XEN) VMX: Supported advanced features: > (XEN) - APIC MMIO access virtualisation > (XEN) - APIC TPR shadow > (XEN) - Extended Page Tables (EPT) > (XEN) - Virtual-Processor Identifiers (VPID) > (XEN) - Virtual NMI > (XEN) - MSR direct-access bitmap > (XEN) EPT supports 2MB super page. > (XEN) HVM: ASIDs enabled. > (XEN) HVM: VMX enabled > (XEN) HVM: Hardware Assisted Paging detected. > (XEN) Intel VT-d Snoop Control supported. > (XEN) Intel VT-d DMA Passthrough not supported. > (XEN) Intel VT-d Queued Invalidation supported. > (XEN) Intel VT-d Interrupt Remapping supported. > (XEN) I/O virtualisation enabled > (XEN) - Dom0 mode: Relaxed > (XEN) Total of 16 processors activated. > (XEN) ENABLING IO-APIC IRQs > (XEN) -> Using new ACK method > (XEN) TSC is reliable, synchronization unnecessary > (XEN) Platform timer is 14.318MHz HPET > ?(XEN) Allocated console ring of 32 KiB. > (XEN) Brought up 16 CPUs > (XEN) *** LOADING DOMAIN 0 *** > (XEN) Xen kernel: 64-bit, lsb, compat32 > (XEN) Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x16b6000 > (XEN) PHYSICAL MEMORY ARRANGEMENT: > (XEN) Dom0 alloc.: 0000000c50000000->0000000c60000000 (12345334 pages to be allocated) > (XEN) VIRTUAL MEMORY ARRANGEMENT: > (XEN) Loaded kernel: ffffffff81000000->ffffffff816b6000 > (XEN) Init. ramdisk: ffffffff816b6000->ffffffff83064200 > (XEN) Phys-Mach map: ffffffff83065000->ffffffff88f14fb0 > (XEN) Start info: ffffffff88f15000->ffffffff88f154b4 > (XEN) Page tables: ffffffff88f16000->ffffffff88f61000 > (XEN) Boot stack: ffffffff88f61000->ffffffff88f62000 > (XEN) TOTAL: ffffffff80000000->ffffffff89000000 > (XEN) ENTRY ADDRESS: ffffffff81506200 > (XEN) Dom0 has maximum 16 VCPUs > (XEN) Scrubbing Free RAM: done. > (XEN) Xen trace buffers: disabled > (XEN) Std. Loglevel: Errors and warnings > (XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings) > (XEN) *** Serial input -> DOM0 (type ''CTRL-a'' three times to switch input to Xen) > (XEN) Freed 176kB init memory. > mapping kernel into physical memory > Xen: setup ISA identity maps > about to get started... > [ 0.000000] Initializing cgroup subsys cpuset > [ 0.000000] Initializing cgroup subsys cpu > [ 0.000000] Linux version 2.6.32-5-xen-amd64 (Debian 2.6.32-29) (ben@decadent.org.uk) (gcc version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Fri Dec 10 17:41:50 UT0 > [ 0.000000] Command line: placeholder root=UUID=4346c332-863c-4482-b9a1-f3d45dffc1e7 ro console=ttyS1 console=hvc0 earlyprintk=xen initcall_debug debug l0 > [ 0.000000] KERNEL supported cpus: > [ 0.000000] Intel GenuineIntel > [ 0.000000] AMD AuthenticAMD > [ 0.000000] Centaur CentaurHauls > [ 0.000000] xen_release_chunk: looking at area pfn 80000-e0000: 393216 pages freed > [ 0.000000] xen_release_chunk: looking at area pfn f0000-fe000: 57344 pages freed > [ 0.000000] xen_release_chunk: looking at area pfn 800000-bd5ff6: 0 pages freed > [ 0.000000] released 450560 pages of unused memory > [ 0.000000] BIOS-provided physical RAM map: > [ 0.000000] Xen: 0000000000000000 - 00000000000a0000 (usable) > [ 0.000000] Xen: 00000000000a0000 - 0000000000100000 (reserved) > [ 0.000000] Xen: 0000000000100000 - 000000007f679000 (usable) > [ 0.000000] Xen: 000000007f679000 - 000000007f68f000 (reserved) > [ 0.000000] Xen: 000000007f68f000 - 000000007f6ce000 (ACPI data) > [ 0.000000] Xen: 000000007f6ce000 - 0000000080000000 (reserved) > [ 0.000000] Xen: 00000000e0000000 - 00000000f0000000 (reserved) > [ 0.000000] Xen: 00000000fe000000 - 0000000100000000 (reserved) > [ 0.000000] Xen: 0000000100000000 - 0000000800000000 (usable) > [ 0.000000] bootconsole [xenboot0] enabled > [ 0.000000] DMI 2.6 present. > [ 0.000000] last_pfn = 0x800000 max_arch_pfn = 0x400000000 > [ 0.000000] x86 PAT enabled: cpu 0, old 0x50100070406, new 0x7010600070106 > [ 0.000000] last_pfn = 0x7f679 max_arch_pfn = 0x400000000 > [ 0.000000] initial memory mapped : 0 - 20000000 > [ 0.000000] init_memory_mapping: 0000000000000000-000000007f679000 > [ 0.000000] 0000000000 - 007f679000 page 4k > [ 0.000000] kernel direct mapping tables up to 7f679000 @ 100000-4ff000 > [ 0.000000] init_memory_mapping: 0000000100000000-0000000800000000 > [ 0.000000] 0100000000 - 0800000000 page 4k > [ 0.000000] kernel direct mapping tables up to 800000000 @ 8f61000-cf82000 > [ 0.000000] RAMDISK: 016b6000 - 03064200 > [ 0.000000] ACPI: RSDP 00000000000f0a90 00024 (v02 DELL ) > [ 0.000000] ACPI: XSDT 00000000000f0b94 0009C (v01 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: FACP 000000007f6b3f9c 000F4 (v03 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: DSDT 000000007f68f000 03D5A (v01 DELL PE_SC3 00000001 INTL 20050624) > [ 0.000000] ACPI: FACS 000000007f6b6000 00040 > [ 0.000000] ACPI: APIC 000000007f6b3478 0015E (v01 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: SPCR 000000007f6b35d8 00050 (v01 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: HPET 000000007f6b362c 00038 (v01 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: XMAR 000000007f6b3668 001C0 (v01 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: MCFG 000000007f6b38c4 0003C (v01 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: WD__ 000000007f6b3904 00134 (v01 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: SLIC 000000007f6b3a3c 00024 (v01 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: ERST 000000007f692edc 00270 (v01 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: HEST 000000007f69314c 003A8 (v01 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: BERT 000000007f692d5c 00030 (v01 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: EINJ 000000007f692d8c 00150 (v01 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: SRAT 000000007f6b3bc0 00370 (v01 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: TCPA 000000007f6b3f34 00064 (v02 DELL PE_SC3 00000001 DELL 00000001) > [ 0.000000] ACPI: SSDT 000000007f6b7000 043F4 (v01 INTEL PPM RCM 80000001 INTL 20061109) > [ 0.000000] ACPI: Local APIC address 0xfee00000 > [ 0.000000] No NUMA configuration found > [ 0.000000] Faking a node at 0000000000000000-0000000800000000 > [ 0.000000] Bootmem setup node 0 0000000000000000-0000000800000000 > [ 0.000000] NODE_DATA [0000000000008000 - 000000000000ffff] > [ 0.000000] bootmap [00000000004b1000 - 00000000005b0fff] pages 100 > [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 0800000000] > [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] > [ 0.000000] #1 [0008f16000 - 0008f61000] XEN PAGETABLES ==> [0008f16000 - 0008f61000] > [ 0.000000] #2 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] > [ 0.000000] #3 [0001000000 - 0001695994] TEXT DATA BSS ==> [0001000000 - 0001695994] > [ 0.000000] #4 [00016b6000 - 0003064200] RAMDISK ==> [00016b6000 - 0003064200] > [ 0.000000] #5 [0003065000 - 0008f16000] XEN START INFO ==> [0003065000 - 0008f16000] > [ 0.000000] #6 [0001696000 - 00016964fd] BRK ==> [0001696000 - 00016964fd] > [ 0.000000] #7 [0000100000 - 00004b1000] PGTABLE ==> [0000100000 - 00004b1000] > [ 0.000000] #8 [0008f61000 - 000c77d000] PGTABLE ==> [0008f61000 - 000c77d000] > [ 0.000000] found SMP MP-table at [ffff8800000fe710] fe710 > [ 0.000000] Zone PFN ranges: > [ 0.000000] DMA 0x00000000 -> 0x00001000 > [ 0.000000] DMA32 0x00001000 -> 0x00100000 > [ 0.000000] Normal 0x00100000 -> 0x00800000 > [ 0.000000] Movable zone start PFN for each node > [ 0.000000] early_node_map[3] active PFN ranges > [ 0.000000] 0: 0x00000000 -> 0x000000a0 > [ 0.000000] 0: 0x00000100 -> 0x0007f679 > [ 0.000000] 0: 0x00100000 -> 0x00800000 > [ 0.000000] On node 0 totalpages: 7861785 > [ 0.000000] DMA zone: 56 pages used for memmap > [ 0.000000] DMA zone: 948 pages reserved > [ 0.000000] DMA zone: 2996 pages, LIFO batch:0 > [ 0.000000] DMA32 zone: 14280 pages used for memmap > [ 0.000000] DMA32 zone: 503473 pages, LIFO batch:31 > [ 0.000000] Normal zone: 100352 pages used for memmap > [ 0.000000] Normal zone: 7239680 pages, LIFO batch:31 > [ 0.000000] ACPI: PM-Timer IO Port: 0x808 > [ 0.000000] ACPI: Local APIC address 0xfee00000 > [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x02] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x14] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x04] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x16] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x06] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x11] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x01] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x13] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x03] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x15] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x05] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x17] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x07] enabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x30] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x31] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x32] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x33] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x34] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x35] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x36] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x37] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x38] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x39] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x3a] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x3b] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x3c] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x3d] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x3e] disabled) > [ 0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x3f] disabled) > [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) > [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0]) > [ 0.000000] IOAPIC[0]: apic_id 0, version 0, address 0xfec00000, GSI 0-0 > [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec80000] gsi_base[32]) > [ 0.000000] IOAPIC[1]: apic_id 1, version 0, address 0xfec80000, GSI 32-32 > [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) > [ 0.000000] ERROR: Unable to locate IOAPIC for GSI 2 > [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) > [ 0.000000] ERROR: Unable to locate IOAPIC for GSI 9 > [ 0.000000] Using ACPI (MADT) for SMP configuration information > [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000 > [ 0.000000] SMP: Allowing 16 CPUs, 0 hotplug CPUs > [ 0.000000] nr_irqs_gsi: 288 > [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000 > [ 0.000000] PM: Registered nosave memory: 000000007f679000 - 000000007f68f000 > [ 0.000000] PM: Registered nosave memory: 000000007f68f000 - 000000007f6ce000 > [ 0.000000] PM: Registered nosave memory: 000000007f6ce000 - 0000000080000000 > [ 0.000000] PM: Registered nosave memory: 0000000080000000 - 00000000e0000000 > [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000 > [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fe000000 > [ 0.000000] PM: Registered nosave memory: 00000000fe000000 - 0000000100000000 > [ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) > [ 0.000000] Booting paravirtualized kernel on Xen > [ 0.000000] Xen version: 4.0.1 (preserve-AD) (dom0) > [ 0.000000] NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:16 nr_node_ids:1 > [ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff88002804f000 s90328 r8192 d24360 u122880 > [ 0.000000] pcpu-alloc: s90328 r8192 d24360 u122880 alloc=30*4096 > [ 0.000000] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07 > [ 0.000000] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15 > [ 6.121891] trying to map vcpu_info 0 at ffff88002805a020, mfn 81805a, offset 32 > [ 6.121896] cpu 0 using vcpu_info at ffff88002805a020 > [ 6.121899] trying to map vcpu_info 1 at ffff880028078020, mfn 818078, offset 32 > [ 6.121902] cpu 1 using vcpu_info at ffff880028078020 > [ 6.121905] trying to map vcpu_info 2 at ffff880028096020, mfn 818096, offset 32 > [ 6.121908] cpu 2 using vcpu_info at ffff880028096020 > [ 6.121910] trying to map vcpu_info 3 at ffff8800280b4020, mfn 8180b4, offset 32 > [ 6.121914] cpu 3 using vcpu_info at ffff8800280b4020 > [ 6.121916] trying to map vcpu_info 4 at ffff8800280d2020, mfn 8180d2, offset 32 > [ 6.121919] cpu 4 using vcpu_info at ffff8800280d2020 > [ 6.121921] trying to map vcpu_info 5 at ffff8800280f0020, mfn 8180f0, offset 32 > [ 6.121925] cpu 5 using vcpu_info at ffff8800280f0020 > [ 6.121927] trying to map vcpu_info 6 at ffff88002810e020, mfn 81810e, offset 32 > [ 6.121930] cpu 6 using vcpu_info at ffff88002810e020 > [ 6.121932] trying to map vcpu_info 7 at ffff88002812c020, mfn 81812c, offset 32 > [ 6.121936] cpu 7 using vcpu_info at ffff88002812c020 > [ 6.121938] trying to map vcpu_info 8 at ffff88002814a020, mfn 81814a, offset 32 > [ 6.121941] cpu 8 using vcpu_info at ffff88002814a020 > [ 6.121943] trying to map vcpu_info 9 at ffff880028168020, mfn 818168, offset 32 > [ 6.121947] cpu 9 using vcpu_info at ffff880028168020 > [ 6.121949] trying to map vcpu_info 10 at ffff880028186020, mfn 818186, offset 32 > [ 6.121952] cpu 10 using vcpu_info at ffff880028186020 > [ 6.121955] trying to map vcpu_info 11 at ffff8800281a4020, mfn 8181a4, offset 32 > [ 6.121958] cpu 11 using vcpu_info at ffff8800281a4020 > [ 6.121960] trying to map vcpu_info 12 at ffff8800281c2020, mfn 8181c2, offset 32 > [ 6.121963] cpu 12 using vcpu_info at ffff8800281c2020 > [ 6.121965] trying to map vcpu_info 13 at ffff8800281e0020, mfn 8181e0, offset 32 > [ 6.121969] cpu 13 using vcpu_info at ffff8800281e0020 > [ 6.121971] trying to map vcpu_info 14 at ffff8800281fe020, mfn 8181fe, offset 32 > [ 6.121974] cpu 14 using vcpu_info at ffff8800281fe020 > [ 6.121976] trying to map vcpu_info 15 at ffff88002821c020, mfn 81821c, offset 32 > [ 6.121980] cpu 15 using vcpu_info at ffff88002821c020 > [ 6.121981] Xen: using vcpu_info placement > [ 6.121987] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 7746149 > [ 6.121990] Policy zone: Normal > [ 6.121992] Kernel command line: placeholder root=UUID=4346c332-863c-4482-b9a1-f3d45dffc1e7 ro console=ttyS1 console=hvc0 earlyprintk=xen initcall_debug 0 > [ 6.122041] PID hash table entries: 4096 (order: 3, 32768 bytes) > [ 6.122370] Initializing CPU#0 > [ 6.131080] DMA: Placing 64MB software IO TLB between ffff880020000000 - ffff880024000000 > [ 6.131087] DMA: software IO TLB at phys 0x20000000 - 0x24000000 > [ 6.131090] xen_swiotlb_fixup: buf=ffff880020000000 size=67108864 > [ 6.139836] Kernel panic - not syncing: DMA(-12): Failed to exchange pages allocated for DMA with Xen! We either don''t have the permission or you do not ! > [ 6.139838] > [ 6.139845] Pid: 0, comm: swapper Not tainted 2.6.32-5-xen-amd64 #1 > [ 6.139847] Call Trace: > [ 6.139856] [<ffffffff8130a9fa>] ? panic+0x86/0x143 > [ 6.139862] [<ffffffff8100ecdf>] ? xen_restore_fl_direct_end+0x0/0x1 > [ 6.139867] [<ffffffff8130c8b2>] ? _spin_unlock_irqrestore+0xd/0xe > [ 6.139871] [<ffffffff8100d5e5>] ? xen_create_contiguous_region+0xc8/0xe1 > [ 6.139878] [<ffffffff8119d4ba>] ? xen_swiotlb_fixup+0x8b/0xba > [ 6.139882] [<ffffffff813129f3>] ? _etext+0x0/0x1f360d > [ 6.139887] [<ffffffff8152b430>] ? xen_swiotlb_init+0x5c/0x5f > [ 6.139891] [<ffffffff81509fbb>] ? pci_xen_swiotlb_init+0x17/0x24 > [ 6.139895] [<ffffffff8150ce7f>] ? pci_iommu_alloc+0x72/0x78 > [ 6.139900] [<ffffffff8151b14c>] ? mem_init+0x15/0xe5 > [ 6.139904] [<ffffffff81506af7>] ? start_kernel+0x202/0x3e8 > [ 6.139908] [<ffffffff81508c87>] ? xen_start_kernel+0x586/0x58a > (XEN) Domain 0 crashed: rebooting machine in 5 seconds. >Let me know whether I can assist you further to dig the issue. - -- mit freundlichen Grüßen, Arno Töll, BSc. GnuPG Key-ID: 0x8408D4C4 Wavecon GmbH | Frankenstrasse 9 | 90762 Fuerth Web: wavecon.de | Mail + Jabber at@wavecon.de -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk0LfngACgkQBWM6U4QI1MQ/0wCg4IqwpEujT1c4oEjAF8OAFaGw n8sAn2trqcuosxDHJaFOG7YoloYlpHTT =rdOx -----END PGP SIGNATURE----- _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Pasi Kärkkäinen
2010-Dec-20 20:18 UTC
[Xen-devel] Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
Adding xen-devel as CC .. crash backtrace in the end of the mail below. -- Pasi On Fri, Dec 17, 2010 at 04:15:05PM +0100, Arno Toell wrote:> -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On 17.12.2010 12:51, Pasi Kärkkäinen wrote: > > "console=hvc0 earlyprintk=xen initcall_debug debug loglevel=10" > > Here we go: > > serial output: > > (XEN) Xen version 4.0.1 (Debian 4.0.1-1) (waldi@debian.org) (gcc version 4.4.5 20100824 (prerelease) (Debian 4.4.4-11) ) Fri Sep 3 15:38:12 UTC 2010 > > (XEN) Bootloader: GRUB 1.98+20100804-10 > > (XEN) Command line: console=com2 > > (XEN) Video information: > > (XEN) VGA is text mode 80x25, font 8x16 > > (XEN) VBE/DDC methods: none; EDID transfer time: 0 seconds > > (XEN) EDID info not retrieved because no DDC retrieval method detected > > (XEN) Disc information: > > (XEN) Found 1 MBR signatures > > (XEN) Found 1 EDD information structures > > (XEN) Xen-e820 RAM map: > > (XEN) 0000000000000000 - 00000000000a0000 (usable) > > (XEN) 0000000000100000 - 000000007f679000 (usable) > > (XEN) 000000007f679000 - 000000007f68f000 (reserved) > > (XEN) 000000007f68f000 - 000000007f6ce000 (ACPI data) > > (XEN) 000000007f6ce000 - 0000000080000000 (reserved) > > (XEN) 00000000e0000000 - 00000000f0000000 (reserved) > > (XEN) 00000000fe000000 - 0000000100000000 (reserved) > > (XEN) 0000000100000000 - 0000000c80000000 (usable) > > (XEN) ACPI: RSDP 000F0A90, 0024 (r2 DELL ) > > (XEN) ACPI: XSDT 000F0B94, 009C (r1 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: FACP 7F6B3F9C, 00F4 (r3 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: DSDT 7F68F000, 3D5A (r1 DELL PE_SC3 1 INTL 20050624) > > (XEN) ACPI: FACS 7F6B6000, 0040 > > (XEN) ACPI: APIC 7F6B3478, 015E (r1 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: SPCR 7F6B35D8, 0050 (r1 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: HPET 7F6B362C, 0038 (r1 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: DMAR 7F6B3668, 01C0 (r1 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: MCFG 7F6B38C4, 003C (r1 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: WD__ 7F6B3904, 0134 (r1 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: SLIC 7F6B3A3C, 0024 (r1 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: ERST 7F692EDC, 0270 (r1 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: HEST 7F69314C, 03A8 (r1 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: BERT 7F692D5C, 0030 (r1 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: EINJ 7F692D8C, 0150 (r1 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: SRAT 7F6B3BC0, 0370 (r1 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: TCPA 7F6B3F34, 0064 (r2 DELL PE_SC3 1 DELL 1) > > (XEN) ACPI: SSDT 7F6B7000, 43F4 (r1 INTEL PPM RCM 80000001 INTL 20061109) > > (XEN) System RAM: 49142MB (50321508kB) > > (XEN) Domain heap initialised DMA width 32 bits > > (XEN) Processor #16 7:10 APIC version 21 > > (XEN) Processor #0 7:10 APIC version 21 > > (XEN) Processor #18 7:10 APIC version 21 > > (XEN) Processor #2 7:10 APIC version 21 > > (XEN) Processor #20 7:10 APIC version 21 > > (XEN) Processor #4 7:10 APIC version 21 > > (XEN) Processor #22 7:10 APIC version 21 > > (XEN) Processor #6 7:10 APIC version 21 > > (XEN) Processor #17 7:10 APIC version 21 > > (XEN) Processor #1 7:10 APIC version 21 > > (XEN) Processor #19 7:10 APIC version 21 > > (XEN) Processor #3 7:10 APIC version 21 > > (XEN) Processor #21 7:10 APIC version 21 > > (XEN) Processor #5 7:10 APIC version 21 > > (XEN) Processor #23 7:10 APIC version 21 > > (XEN) Processor #7 7:10 APIC version 21 > > (XEN) IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 > > (XEN) IOAPIC[1]: apic_id 1, version 32, address 0xfec80000, GSI 32-55 > > (XEN) Enabling APIC mode: Phys. Using 2 I/O APICs > > (XEN) Using scheduler: SMP Credit Scheduler (credit) > > (XEN) Detected 2394.064 MHz processor. > > (XEN) Initing memory sharing. > > (XEN) VMX: Supported advanced features: > > (XEN) - APIC MMIO access virtualisation > > (XEN) - APIC TPR shadow > > (XEN) - Extended Page Tables (EPT) > > (XEN) - Virtual-Processor Identifiers (VPID) > > (XEN) - Virtual NMI > > (XEN) - MSR direct-access bitmap > > (XEN) EPT supports 2MB super page. > > (XEN) HVM: ASIDs enabled. > > (XEN) HVM: VMX enabled > > (XEN) HVM: Hardware Assisted Paging detected. > > (XEN) Intel VT-d Snoop Control supported. > > (XEN) Intel VT-d DMA Passthrough not supported. > > (XEN) Intel VT-d Queued Invalidation supported. > > (XEN) Intel VT-d Interrupt Remapping supported. > > (XEN) I/O virtualisation enabled > > (XEN) - Dom0 mode: Relaxed > > (XEN) Total of 16 processors activated. > > (XEN) ENABLING IO-APIC IRQs > > (XEN) -> Using new ACK method > > (XEN) TSC is reliable, synchronization unnecessary > > (XEN) Platform timer is 14.318MHz HPET > > ?(XEN) Allocated console ring of 32 KiB. > > (XEN) Brought up 16 CPUs > > (XEN) *** LOADING DOMAIN 0 *** > > (XEN) Xen kernel: 64-bit, lsb, compat32 > > (XEN) Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x16b6000 > > (XEN) PHYSICAL MEMORY ARRANGEMENT: > > (XEN) Dom0 alloc.: 0000000c50000000->0000000c60000000 (12345334 pages to be allocated) > > (XEN) VIRTUAL MEMORY ARRANGEMENT: > > (XEN) Loaded kernel: ffffffff81000000->ffffffff816b6000 > > (XEN) Init. ramdisk: ffffffff816b6000->ffffffff83064200 > > (XEN) Phys-Mach map: ffffffff83065000->ffffffff88f14fb0 > > (XEN) Start info: ffffffff88f15000->ffffffff88f154b4 > > (XEN) Page tables: ffffffff88f16000->ffffffff88f61000 > > (XEN) Boot stack: ffffffff88f61000->ffffffff88f62000 > > (XEN) TOTAL: ffffffff80000000->ffffffff89000000 > > (XEN) ENTRY ADDRESS: ffffffff81506200 > > (XEN) Dom0 has maximum 16 VCPUs > > (XEN) Scrubbing Free RAM: done. > > (XEN) Xen trace buffers: disabled > > (XEN) Std. Loglevel: Errors and warnings > > (XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings) > > (XEN) *** Serial input -> DOM0 (type ''CTRL-a'' three times to switch input to Xen) > > (XEN) Freed 176kB init memory. > > mapping kernel into physical memory > > Xen: setup ISA identity maps > > about to get started... > > [ 0.000000] Initializing cgroup subsys cpuset > > [ 0.000000] Initializing cgroup subsys cpu > > [ 0.000000] Linux version 2.6.32-5-xen-amd64 (Debian 2.6.32-29) (ben@decadent.org.uk) (gcc version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Fri Dec 10 17:41:50 UT0 > > [ 0.000000] Command line: placeholder root=UUID=4346c332-863c-4482-b9a1-f3d45dffc1e7 ro console=ttyS1 console=hvc0 earlyprintk=xen initcall_debug debug l0 > > [ 0.000000] KERNEL supported cpus: > > [ 0.000000] Intel GenuineIntel > > [ 0.000000] AMD AuthenticAMD > > [ 0.000000] Centaur CentaurHauls > > [ 0.000000] xen_release_chunk: looking at area pfn 80000-e0000: 393216 pages freed > > [ 0.000000] xen_release_chunk: looking at area pfn f0000-fe000: 57344 pages freed > > [ 0.000000] xen_release_chunk: looking at area pfn 800000-bd5ff6: 0 pages freed > > [ 0.000000] released 450560 pages of unused memory > > [ 0.000000] BIOS-provided physical RAM map: > > [ 0.000000] Xen: 0000000000000000 - 00000000000a0000 (usable) > > [ 0.000000] Xen: 00000000000a0000 - 0000000000100000 (reserved) > > [ 0.000000] Xen: 0000000000100000 - 000000007f679000 (usable) > > [ 0.000000] Xen: 000000007f679000 - 000000007f68f000 (reserved) > > [ 0.000000] Xen: 000000007f68f000 - 000000007f6ce000 (ACPI data) > > [ 0.000000] Xen: 000000007f6ce000 - 0000000080000000 (reserved) > > [ 0.000000] Xen: 00000000e0000000 - 00000000f0000000 (reserved) > > [ 0.000000] Xen: 00000000fe000000 - 0000000100000000 (reserved) > > [ 0.000000] Xen: 0000000100000000 - 0000000800000000 (usable) > > [ 0.000000] bootconsole [xenboot0] enabled > > [ 0.000000] DMI 2.6 present. > > [ 0.000000] last_pfn = 0x800000 max_arch_pfn = 0x400000000 > > [ 0.000000] x86 PAT enabled: cpu 0, old 0x50100070406, new 0x7010600070106 > > [ 0.000000] last_pfn = 0x7f679 max_arch_pfn = 0x400000000 > > [ 0.000000] initial memory mapped : 0 - 20000000 > > [ 0.000000] init_memory_mapping: 0000000000000000-000000007f679000 > > [ 0.000000] 0000000000 - 007f679000 page 4k > > [ 0.000000] kernel direct mapping tables up to 7f679000 @ 100000-4ff000 > > [ 0.000000] init_memory_mapping: 0000000100000000-0000000800000000 > > [ 0.000000] 0100000000 - 0800000000 page 4k > > [ 0.000000] kernel direct mapping tables up to 800000000 @ 8f61000-cf82000 > > [ 0.000000] RAMDISK: 016b6000 - 03064200 > > [ 0.000000] ACPI: RSDP 00000000000f0a90 00024 (v02 DELL ) > > [ 0.000000] ACPI: XSDT 00000000000f0b94 0009C (v01 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: FACP 000000007f6b3f9c 000F4 (v03 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: DSDT 000000007f68f000 03D5A (v01 DELL PE_SC3 00000001 INTL 20050624) > > [ 0.000000] ACPI: FACS 000000007f6b6000 00040 > > [ 0.000000] ACPI: APIC 000000007f6b3478 0015E (v01 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: SPCR 000000007f6b35d8 00050 (v01 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: HPET 000000007f6b362c 00038 (v01 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: XMAR 000000007f6b3668 001C0 (v01 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: MCFG 000000007f6b38c4 0003C (v01 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: WD__ 000000007f6b3904 00134 (v01 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: SLIC 000000007f6b3a3c 00024 (v01 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: ERST 000000007f692edc 00270 (v01 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: HEST 000000007f69314c 003A8 (v01 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: BERT 000000007f692d5c 00030 (v01 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: EINJ 000000007f692d8c 00150 (v01 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: SRAT 000000007f6b3bc0 00370 (v01 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: TCPA 000000007f6b3f34 00064 (v02 DELL PE_SC3 00000001 DELL 00000001) > > [ 0.000000] ACPI: SSDT 000000007f6b7000 043F4 (v01 INTEL PPM RCM 80000001 INTL 20061109) > > [ 0.000000] ACPI: Local APIC address 0xfee00000 > > [ 0.000000] No NUMA configuration found > > [ 0.000000] Faking a node at 0000000000000000-0000000800000000 > > [ 0.000000] Bootmem setup node 0 0000000000000000-0000000800000000 > > [ 0.000000] NODE_DATA [0000000000008000 - 000000000000ffff] > > [ 0.000000] bootmap [00000000004b1000 - 00000000005b0fff] pages 100 > > [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 0800000000] > > [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] > > [ 0.000000] #1 [0008f16000 - 0008f61000] XEN PAGETABLES ==> [0008f16000 - 0008f61000] > > [ 0.000000] #2 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] > > [ 0.000000] #3 [0001000000 - 0001695994] TEXT DATA BSS ==> [0001000000 - 0001695994] > > [ 0.000000] #4 [00016b6000 - 0003064200] RAMDISK ==> [00016b6000 - 0003064200] > > [ 0.000000] #5 [0003065000 - 0008f16000] XEN START INFO ==> [0003065000 - 0008f16000] > > [ 0.000000] #6 [0001696000 - 00016964fd] BRK ==> [0001696000 - 00016964fd] > > [ 0.000000] #7 [0000100000 - 00004b1000] PGTABLE ==> [0000100000 - 00004b1000] > > [ 0.000000] #8 [0008f61000 - 000c77d000] PGTABLE ==> [0008f61000 - 000c77d000] > > [ 0.000000] found SMP MP-table at [ffff8800000fe710] fe710 > > [ 0.000000] Zone PFN ranges: > > [ 0.000000] DMA 0x00000000 -> 0x00001000 > > [ 0.000000] DMA32 0x00001000 -> 0x00100000 > > [ 0.000000] Normal 0x00100000 -> 0x00800000 > > [ 0.000000] Movable zone start PFN for each node > > [ 0.000000] early_node_map[3] active PFN ranges > > [ 0.000000] 0: 0x00000000 -> 0x000000a0 > > [ 0.000000] 0: 0x00000100 -> 0x0007f679 > > [ 0.000000] 0: 0x00100000 -> 0x00800000 > > [ 0.000000] On node 0 totalpages: 7861785 > > [ 0.000000] DMA zone: 56 pages used for memmap > > [ 0.000000] DMA zone: 948 pages reserved > > [ 0.000000] DMA zone: 2996 pages, LIFO batch:0 > > [ 0.000000] DMA32 zone: 14280 pages used for memmap > > [ 0.000000] DMA32 zone: 503473 pages, LIFO batch:31 > > [ 0.000000] Normal zone: 100352 pages used for memmap > > [ 0.000000] Normal zone: 7239680 pages, LIFO batch:31 > > [ 0.000000] ACPI: PM-Timer IO Port: 0x808 > > [ 0.000000] ACPI: Local APIC address 0xfee00000 > > [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x02] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x14] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x04] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x16] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x06] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x11] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x01] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x13] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x03] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x15] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x05] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x17] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x07] enabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x30] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x31] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x32] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x33] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x34] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x35] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x36] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x37] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x38] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x39] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x3a] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x3b] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x3c] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x3d] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x3e] disabled) > > [ 0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x3f] disabled) > > [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) > > [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0]) > > [ 0.000000] IOAPIC[0]: apic_id 0, version 0, address 0xfec00000, GSI 0-0 > > [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec80000] gsi_base[32]) > > [ 0.000000] IOAPIC[1]: apic_id 1, version 0, address 0xfec80000, GSI 32-32 > > [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) > > [ 0.000000] ERROR: Unable to locate IOAPIC for GSI 2 > > [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) > > [ 0.000000] ERROR: Unable to locate IOAPIC for GSI 9 > > [ 0.000000] Using ACPI (MADT) for SMP configuration information > > [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000 > > [ 0.000000] SMP: Allowing 16 CPUs, 0 hotplug CPUs > > [ 0.000000] nr_irqs_gsi: 288 > > [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000 > > [ 0.000000] PM: Registered nosave memory: 000000007f679000 - 000000007f68f000 > > [ 0.000000] PM: Registered nosave memory: 000000007f68f000 - 000000007f6ce000 > > [ 0.000000] PM: Registered nosave memory: 000000007f6ce000 - 0000000080000000 > > [ 0.000000] PM: Registered nosave memory: 0000000080000000 - 00000000e0000000 > > [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000 > > [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fe000000 > > [ 0.000000] PM: Registered nosave memory: 00000000fe000000 - 0000000100000000 > > [ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) > > [ 0.000000] Booting paravirtualized kernel on Xen > > [ 0.000000] Xen version: 4.0.1 (preserve-AD) (dom0) > > [ 0.000000] NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:16 nr_node_ids:1 > > [ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff88002804f000 s90328 r8192 d24360 u122880 > > [ 0.000000] pcpu-alloc: s90328 r8192 d24360 u122880 alloc=30*4096 > > [ 0.000000] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07 > > [ 0.000000] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15 > > [ 6.121891] trying to map vcpu_info 0 at ffff88002805a020, mfn 81805a, offset 32 > > [ 6.121896] cpu 0 using vcpu_info at ffff88002805a020 > > [ 6.121899] trying to map vcpu_info 1 at ffff880028078020, mfn 818078, offset 32 > > [ 6.121902] cpu 1 using vcpu_info at ffff880028078020 > > [ 6.121905] trying to map vcpu_info 2 at ffff880028096020, mfn 818096, offset 32 > > [ 6.121908] cpu 2 using vcpu_info at ffff880028096020 > > [ 6.121910] trying to map vcpu_info 3 at ffff8800280b4020, mfn 8180b4, offset 32 > > [ 6.121914] cpu 3 using vcpu_info at ffff8800280b4020 > > [ 6.121916] trying to map vcpu_info 4 at ffff8800280d2020, mfn 8180d2, offset 32 > > [ 6.121919] cpu 4 using vcpu_info at ffff8800280d2020 > > [ 6.121921] trying to map vcpu_info 5 at ffff8800280f0020, mfn 8180f0, offset 32 > > [ 6.121925] cpu 5 using vcpu_info at ffff8800280f0020 > > [ 6.121927] trying to map vcpu_info 6 at ffff88002810e020, mfn 81810e, offset 32 > > [ 6.121930] cpu 6 using vcpu_info at ffff88002810e020 > > [ 6.121932] trying to map vcpu_info 7 at ffff88002812c020, mfn 81812c, offset 32 > > [ 6.121936] cpu 7 using vcpu_info at ffff88002812c020 > > [ 6.121938] trying to map vcpu_info 8 at ffff88002814a020, mfn 81814a, offset 32 > > [ 6.121941] cpu 8 using vcpu_info at ffff88002814a020 > > [ 6.121943] trying to map vcpu_info 9 at ffff880028168020, mfn 818168, offset 32 > > [ 6.121947] cpu 9 using vcpu_info at ffff880028168020 > > [ 6.121949] trying to map vcpu_info 10 at ffff880028186020, mfn 818186, offset 32 > > [ 6.121952] cpu 10 using vcpu_info at ffff880028186020 > > [ 6.121955] trying to map vcpu_info 11 at ffff8800281a4020, mfn 8181a4, offset 32 > > [ 6.121958] cpu 11 using vcpu_info at ffff8800281a4020 > > [ 6.121960] trying to map vcpu_info 12 at ffff8800281c2020, mfn 8181c2, offset 32 > > [ 6.121963] cpu 12 using vcpu_info at ffff8800281c2020 > > [ 6.121965] trying to map vcpu_info 13 at ffff8800281e0020, mfn 8181e0, offset 32 > > [ 6.121969] cpu 13 using vcpu_info at ffff8800281e0020 > > [ 6.121971] trying to map vcpu_info 14 at ffff8800281fe020, mfn 8181fe, offset 32 > > [ 6.121974] cpu 14 using vcpu_info at ffff8800281fe020 > > [ 6.121976] trying to map vcpu_info 15 at ffff88002821c020, mfn 81821c, offset 32 > > [ 6.121980] cpu 15 using vcpu_info at ffff88002821c020 > > [ 6.121981] Xen: using vcpu_info placement > > [ 6.121987] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 7746149 > > [ 6.121990] Policy zone: Normal > > [ 6.121992] Kernel command line: placeholder root=UUID=4346c332-863c-4482-b9a1-f3d45dffc1e7 ro console=ttyS1 console=hvc0 earlyprintk=xen initcall_debug 0 > > [ 6.122041] PID hash table entries: 4096 (order: 3, 32768 bytes) > > [ 6.122370] Initializing CPU#0 > > [ 6.131080] DMA: Placing 64MB software IO TLB between ffff880020000000 - ffff880024000000 > > [ 6.131087] DMA: software IO TLB at phys 0x20000000 - 0x24000000 > > [ 6.131090] xen_swiotlb_fixup: buf=ffff880020000000 size=67108864 > > [ 6.139836] Kernel panic - not syncing: DMA(-12): Failed to exchange pages allocated for DMA with Xen! We either don''t have the permission or you do not ! > > [ 6.139838] > > [ 6.139845] Pid: 0, comm: swapper Not tainted 2.6.32-5-xen-amd64 #1 > > [ 6.139847] Call Trace: > > [ 6.139856] [<ffffffff8130a9fa>] ? panic+0x86/0x143 > > [ 6.139862] [<ffffffff8100ecdf>] ? xen_restore_fl_direct_end+0x0/0x1 > > [ 6.139867] [<ffffffff8130c8b2>] ? _spin_unlock_irqrestore+0xd/0xe > > [ 6.139871] [<ffffffff8100d5e5>] ? xen_create_contiguous_region+0xc8/0xe1 > > [ 6.139878] [<ffffffff8119d4ba>] ? xen_swiotlb_fixup+0x8b/0xba > > [ 6.139882] [<ffffffff813129f3>] ? _etext+0x0/0x1f360d > > [ 6.139887] [<ffffffff8152b430>] ? xen_swiotlb_init+0x5c/0x5f > > [ 6.139891] [<ffffffff81509fbb>] ? pci_xen_swiotlb_init+0x17/0x24 > > [ 6.139895] [<ffffffff8150ce7f>] ? pci_iommu_alloc+0x72/0x78 > > [ 6.139900] [<ffffffff8151b14c>] ? mem_init+0x15/0xe5 > > [ 6.139904] [<ffffffff81506af7>] ? start_kernel+0x202/0x3e8 > > [ 6.139908] [<ffffffff81508c87>] ? xen_start_kernel+0x586/0x58a > > (XEN) Domain 0 crashed: rebooting machine in 5 seconds. > > > > Let me know whether I can assist you further to dig the issue. > > > - -- > mit freundlichen Grüßen, > Arno Töll, BSc. > GnuPG Key-ID: 0x8408D4C4 > > Wavecon GmbH | Frankenstrasse 9 | 90762 Fuerth > Web: wavecon.de | Mail + Jabber at@wavecon.de > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.10 (GNU/Linux) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ > > iEYEARECAAYFAk0LfngACgkQBWM6U4QI1MQ/0wCg4IqwpEujT1c4oEjAF8OAFaGw > n8sAn2trqcuosxDHJaFOG7YoloYlpHTT > =rdOx > -----END PGP SIGNATURE----- > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users_______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Arno Toell
2010-Dec-20 20:20 UTC
Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 20.12.2010 21:18, Pasi Kärkkäinen wrote:> > Adding xen-devel as CC .. crash backtrace in the end of the mail below.For reference: I created bug #1698 related to this issue. See http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=1698 - -- mit freundlichen Grüßen, Arno Töll, BSc. GnuPG Key-ID: 0x8408D4C4 Wavecon GmbH | Frankenstrasse 9 | 90762 Fuerth Web: wavecon.de | Mail + Jabber at@wavecon.de -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk0Pun4ACgkQBWM6U4QI1MTLvgCg2wpNssQtfydup5mrzdKZ9LOW OHMAn1X9MnEapZAsLwkhLmXFlxeTk6zl =i4ja -----END PGP SIGNATURE----- _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Ian Campbell
2010-Dec-21 13:13 UTC
Re: [Xen-devel] Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
On Mon, 2010-12-20 at 20:18 +0000, Pasi Kärkkäinen wrote:> > > [ 6.122370] Initializing CPU#0 > > > [ 6.131080] DMA: Placing 64MB software IO TLB between ffff880020000000 - ffff880024000000 > > > [ 6.131087] DMA: software IO TLB at phys 0x20000000 - 0x24000000 > > > [ 6.131090] xen_swiotlb_fixup: buf=ffff880020000000 size=67108864 > > > [ 6.139836] Kernel panic - not syncing: DMA(-12): Failed to exchange pages allocated for DMA with Xen! We either don''t have the permission or you do not !This suggests that the xen_exchange_memory hypercall has failed for some reason. -12 is -ENOMEM but size is only 64M and this is start of day so I can''t think why this would be the case (or at least why it wouldn''t always be the case if it was happening at all). Might be worth trying the dom0_mem hypervisor parameter to limit the initial size of dom0, perhaps to 32G. Ian.> > > [ 6.139838] > > > [ 6.139845] Pid: 0, comm: swapper Not tainted 2.6.32-5-xen-amd64 #1 > > > [ 6.139847] Call Trace: > > > [ 6.139856] [<ffffffff8130a9fa>] ? panic+0x86/0x143 > > > [ 6.139862] [<ffffffff8100ecdf>] ? xen_restore_fl_direct_end+0x0/0x1 > > > [ 6.139867] [<ffffffff8130c8b2>] ? _spin_unlock_irqrestore+0xd/0xe > > > [ 6.139871] [<ffffffff8100d5e5>] ? xen_create_contiguous_region+0xc8/0xe1 > > > [ 6.139878] [<ffffffff8119d4ba>] ? xen_swiotlb_fixup+0x8b/0xba > > > [ 6.139882] [<ffffffff813129f3>] ? _etext+0x0/0x1f360d > > > [ 6.139887] [<ffffffff8152b430>] ? xen_swiotlb_init+0x5c/0x5f > > > [ 6.139891] [<ffffffff81509fbb>] ? pci_xen_swiotlb_init+0x17/0x24 > > > [ 6.139895] [<ffffffff8150ce7f>] ? pci_iommu_alloc+0x72/0x78 > > > [ 6.139900] [<ffffffff8151b14c>] ? mem_init+0x15/0xe5 > > > [ 6.139904] [<ffffffff81506af7>] ? start_kernel+0x202/0x3e8 > > > [ 6.139908] [<ffffffff81508c87>] ? xen_start_kernel+0x586/0x58a > > > (XEN) Domain 0 crashed: rebooting machine in 5 seconds._______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Arno Toell
2010-Dec-23 11:13 UTC
Re: [Xen-devel] Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 21.12.2010 14:13, Ian Campbell wrote:> Might be worth trying the dom0_mem hypervisor parameter to limit the > initial size of dom0, perhaps to 32G.Following Ians suggestion I will summarize again, what I''ve written in the bug report. Passing dom0_mem=max:4GB to the hypervisor works around the issue. That is, the dom0 with underlying hypervisor does boot. Please see http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=1698#c4 for a full dmesg/xm info output. The relevant part is: node_to_cpu : node0:0,2,4,6,8,10,12,14 node1:1,3,5,7,9,11,13,15 node_to_memory : node0:21765 node1:24425 node_to_dma32_mem : node0:0 node1:1969 Moreover my company is willing to pay anyone who fixes this bug a symbolic fee of 1000 EUR as thank-you for letting us making use of Xen; either personally to the contributor or to a (non-profit) organization of the contributor''s choice. - -- mit freundlichen Grüßen, Arno Töll, BSc. GnuPG Key-ID: 0x8408D4C4 Wavecon GmbH | Frankenstrasse 9 | 90762 Fuerth Web: wavecon.de | Mail + Jabber at@wavecon.de -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk0TLtYACgkQBWM6U4QI1MTMPwCg1x3YaBWRgoEiB9SU24AvM2Ze N2kAoJWUP7KLX5zWDQ+RtYRoD7xjVVR3 =7heG -----END PGP SIGNATURE----- _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Konrad Rzeszutek Wilk
2010-Dec-27 15:28 UTC
Re: [Xen-devel] Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
On Tue, Dec 21, 2010 at 01:13:29PM +0000, Ian Campbell wrote:> On Mon, 2010-12-20 at 20:18 +0000, Pasi Kärkkäinen wrote: > > > > [ 6.122370] Initializing CPU#0 > > > > [ 6.131080] DMA: Placing 64MB software IO TLB between ffff880020000000 - ffff880024000000 > > > > [ 6.131087] DMA: software IO TLB at phys 0x20000000 - 0x24000000 > > > > [ 6.131090] xen_swiotlb_fixup: buf=ffff880020000000 size=67108864 > > > > [ 6.139836] Kernel panic - not syncing: DMA(-12): Failed to exchange pages allocated for DMA with Xen! We either don''t have the permission or you do not ! > > This suggests that the xen_exchange_memory hypercall has failed for some > reason. > > -12 is -ENOMEM but size is only 64M and this is start of day so I can''t > think why this would be the case (or at least why it wouldn''t always be > the case if it was happening at all). > > Might be worth trying the dom0_mem hypervisor parameter to limit the > initial size of dom0, perhaps to 32G.His ''node_to_dma32'' ended being 0 and 62 respectivly. Not enough to allocate the 64MB SWIOTLB buffer. Isn''t there some logic in the Xen hypervisor to leave some swath of memory for DMA32?> > Ian. > > > > > [ 6.139838] > > > > [ 6.139845] Pid: 0, comm: swapper Not tainted 2.6.32-5-xen-amd64 #1 > > > > [ 6.139847] Call Trace: > > > > [ 6.139856] [<ffffffff8130a9fa>] ? panic+0x86/0x143 > > > > [ 6.139862] [<ffffffff8100ecdf>] ? xen_restore_fl_direct_end+0x0/0x1 > > > > [ 6.139867] [<ffffffff8130c8b2>] ? _spin_unlock_irqrestore+0xd/0xe > > > > [ 6.139871] [<ffffffff8100d5e5>] ? xen_create_contiguous_region+0xc8/0xe1 > > > > [ 6.139878] [<ffffffff8119d4ba>] ? xen_swiotlb_fixup+0x8b/0xba > > > > [ 6.139882] [<ffffffff813129f3>] ? _etext+0x0/0x1f360d > > > > [ 6.139887] [<ffffffff8152b430>] ? xen_swiotlb_init+0x5c/0x5f > > > > [ 6.139891] [<ffffffff81509fbb>] ? pci_xen_swiotlb_init+0x17/0x24 > > > > [ 6.139895] [<ffffffff8150ce7f>] ? pci_iommu_alloc+0x72/0x78 > > > > [ 6.139900] [<ffffffff8151b14c>] ? mem_init+0x15/0xe5 > > > > [ 6.139904] [<ffffffff81506af7>] ? start_kernel+0x202/0x3e8 > > > > [ 6.139908] [<ffffffff81508c87>] ? xen_start_kernel+0x586/0x58a > > > > (XEN) Domain 0 crashed: rebooting machine in 5 seconds. > > > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xensource.com > http://lists.xensource.com/xen-devel_______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Pasi Kärkkäinen
2011-Jan-05 10:58 UTC
Re: [Xen-devel] Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
On Mon, Dec 27, 2010 at 10:28:12AM -0500, Konrad Rzeszutek Wilk wrote:> On Tue, Dec 21, 2010 at 01:13:29PM +0000, Ian Campbell wrote: > > On Mon, 2010-12-20 at 20:18 +0000, Pasi Kärkkäinen wrote: > > > > > [ 6.122370] Initializing CPU#0 > > > > > [ 6.131080] DMA: Placing 64MB software IO TLB between ffff880020000000 - ffff880024000000 > > > > > [ 6.131087] DMA: software IO TLB at phys 0x20000000 - 0x24000000 > > > > > [ 6.131090] xen_swiotlb_fixup: buf=ffff880020000000 size=67108864 > > > > > [ 6.139836] Kernel panic - not syncing: DMA(-12): Failed to exchange pages allocated for DMA with Xen! We either don''t have the permission or you do not ! > > > > This suggests that the xen_exchange_memory hypercall has failed for some > > reason. > > > > -12 is -ENOMEM but size is only 64M and this is start of day so I can''t > > think why this would be the case (or at least why it wouldn''t always be > > the case if it was happening at all). > > > > Might be worth trying the dom0_mem hypervisor parameter to limit the > > initial size of dom0, perhaps to 32G. > > His ''node_to_dma32'' ended being 0 and 62 respectivly. Not enough to allocate > the 64MB SWIOTLB buffer. Isn''t there some logic in the Xen hypervisor to > leave some swath of memory for DMA32? >Hmm.. iirc there was some discussions (and patches maybe?) related to Xen dma32 reservations some time ago.. -- Pasi> > > > Ian. > > > > > > > [ 6.139838] > > > > > [ 6.139845] Pid: 0, comm: swapper Not tainted 2.6.32-5-xen-amd64 #1 > > > > > [ 6.139847] Call Trace: > > > > > [ 6.139856] [<ffffffff8130a9fa>] ? panic+0x86/0x143 > > > > > [ 6.139862] [<ffffffff8100ecdf>] ? xen_restore_fl_direct_end+0x0/0x1 > > > > > [ 6.139867] [<ffffffff8130c8b2>] ? _spin_unlock_irqrestore+0xd/0xe > > > > > [ 6.139871] [<ffffffff8100d5e5>] ? xen_create_contiguous_region+0xc8/0xe1 > > > > > [ 6.139878] [<ffffffff8119d4ba>] ? xen_swiotlb_fixup+0x8b/0xba > > > > > [ 6.139882] [<ffffffff813129f3>] ? _etext+0x0/0x1f360d > > > > > [ 6.139887] [<ffffffff8152b430>] ? xen_swiotlb_init+0x5c/0x5f > > > > > [ 6.139891] [<ffffffff81509fbb>] ? pci_xen_swiotlb_init+0x17/0x24 > > > > > [ 6.139895] [<ffffffff8150ce7f>] ? pci_iommu_alloc+0x72/0x78 > > > > > [ 6.139900] [<ffffffff8151b14c>] ? mem_init+0x15/0xe5 > > > > > [ 6.139904] [<ffffffff81506af7>] ? start_kernel+0x202/0x3e8 > > > > > [ 6.139908] [<ffffffff81508c87>] ? xen_start_kernel+0x586/0x58a > > > > > (XEN) Domain 0 crashed: rebooting machine in 5 seconds. > > > > > > _______________________________________________ > > Xen-devel mailing list > > Xen-devel@lists.xensource.com > > http://lists.xensource.com/xen-devel_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Arno Toell
2011-Jan-05 16:05 UTC
Re: [Xen-devel] Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1> This suggests that the xen_exchange_memory hypercall has failed for some > reason. > > -12 is -ENOMEM but size is only 64M and this is start of day so I can''t > think why this would be the case (or at least why it wouldn''t always be > the case if it was happening at all).I was speaking earlier today to Pasi about this bug again by accident. There he asked whether I did try to boot the xen-4.0-testing tree. Now I did, as I built the most recent -testing snapshot and I have some more to add: Booting the Xen hypervisor in version 4.0.2-rc1-pre built by myself on the affected system resulted in no failure for Debian''s stock 2.6.32-5-xen-amd64 kernel. Jeremy''s xen tree at git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git (resulting in 2.6.32.27) failed to boot, but that is my fault as I was too lazy to build an appropriate .config. So this is NOT related to the bug. So the question is now, whether there was a bug in 4.0.1 that has been fixed in -testing which fixes this one as well (or if it is a duplicate perhaps?), or if Debian introduced that bug. Would someone mind finding this out together with me? Serial output is now: __ __ _ _ ___ ____ _ \ \/ /___ _ __ | || | / _ \ |___ \ _ __ ___/ | _ __ _ __ ___ \ // _ \ ''_ \ | || |_| | | | __) |__| ''__/ __| |__| ''_ \| ''__/ _ \ / \ __/ | | | |__ _| |_| | / __/|__| | | (__| |__| |_) | | | __/ /_/\_\___|_| |_| |_|(_)___(_)_____| |_| \___|_| | .__/|_| \___| |_| (XEN) Xen version 4.0.2-rc1-pre (root@c1.wavecon.info) (gcc version 4.4.5 (Debian 4.4.5-8) ) Wed Jan 5 08:31:44 EST 2011 (XEN) Latest ChangeSet: Fri Dec 24 10:29:50 2010 +0000 21422:714d808e57bb (XEN) Bootloader: GRUB 1.98+20100804-10 (XEN) Command line: placeholder console=com2 (XEN) Video information: (XEN) VGA is text mode 80x25, font 8x16 (XEN) VBE/DDC methods: none; EDID transfer time: 0 seconds (XEN) EDID info not retrieved because no DDC retrieval method detected (XEN) Disc information: (XEN) Found 1 MBR signatures (XEN) Found 1 EDD information structures (XEN) Xen-e820 RAM map: (XEN) 0000000000000000 - 00000000000a0000 (usable) (XEN) 0000000000100000 - 000000007f679000 (usable) (XEN) 000000007f679000 - 000000007f68f000 (reserved) (XEN) 000000007f68f000 - 000000007f6ce000 (ACPI data) (XEN) 000000007f6ce000 - 0000000080000000 (reserved) (XEN) 00000000e0000000 - 00000000f0000000 (reserved) (XEN) 00000000fe000000 - 0000000100000000 (reserved) (XEN) 0000000100000000 - 0000000c80000000 (usable) (XEN) ACPI: RSDP 000F0A90, 0024 (r2 DELL ) (XEN) ACPI: XSDT 000F0B94, 009C (r1 DELL PE_SC3 1 DELL 1) (XEN) ACPI: FACP 7F6B3F9C, 00F4 (r3 DELL PE_SC3 1 DELL 1) (XEN) ACPI: DSDT 7F68F000, 3D5A (r1 DELL PE_SC3 1 INTL 20050624) (XEN) ACPI: FACS 7F6B6000, 0040 (XEN) ACPI: APIC 7F6B3478, 015E (r1 DELL PE_SC3 1 DELL 1) (XEN) ACPI: SPCR 7F6B35D8, 0050 (r1 DELL PE_SC3 1 DELL 1) (XEN) ACPI: HPET 7F6B362C, 0038 (r1 DELL PE_SC3 1 DELL 1) (XEN) ACPI: DMAR 7F6B3668, 01C0 (r1 DELL PE_SC3 1 DELL 1) (XEN) ACPI: MCFG 7F6B38C4, 003C (r1 DELL PE_SC3 1 DELL 1) (XEN) ACPI: WD__ 7F6B3904, 0134 (r1 DELL PE_SC3 1 DELL 1) (XEN) ACPI: SLIC 7F6B3A3C, 0024 (r1 DELL PE_SC3 1 DELL 1) (XEN) ACPI: ERST 7F692EDC, 0270 (r1 DELL PE_SC3 1 DELL 1) (XEN) ACPI: HEST 7F69314C, 03A8 (r1 DELL PE_SC3 1 DELL 1) (XEN) ACPI: BERT 7F692D5C, 0030 (r1 DELL PE_SC3 1 DELL 1) (XEN) ACPI: EINJ 7F692D8C, 0150 (r1 DELL PE_SC3 1 DELL 1) (XEN) ACPI: SRAT 7F6B3BC0, 0370 (r1 DELL PE_SC3 1 DELL 1) (XEN) ACPI: TCPA 7F6B3F34, 0064 (r2 DELL PE_SC3 1 DELL 1) (XEN) ACPI: SSDT 7F6B7000, 43F4 (r1 INTEL PPM RCM 80000001 INTL 20061109) (XEN) System RAM: 49142MB (50321508kB) (XEN) Domain heap initialised DMA width 32 bits (XEN) Processor #16 7:10 APIC version 21 (XEN) Processor #0 7:10 APIC version 21 (XEN) Processor #18 7:10 APIC version 21 (XEN) Processor #2 7:10 APIC version 21 (XEN) Processor #20 7:10 APIC version 21 (XEN) Processor #4 7:10 APIC version 21 (XEN) Processor #22 7:10 APIC version 21 (XEN) Processor #6 7:10 APIC version 21 (XEN) Processor #17 7:10 APIC version 21 (XEN) Processor #1 7:10 APIC version 21 (XEN) Processor #19 7:10 APIC version 21 (XEN) Processor #3 7:10 APIC version 21 (XEN) Processor #21 7:10 APIC version 21 (XEN) Processor #5 7:10 APIC version 21 (XEN) Processor #23 7:10 APIC version 21 (XEN) Processor #7 7:10 APIC version 21 (XEN) IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 (XEN) IOAPIC[1]: apic_id 1, version 32, address 0xfec80000, GSI 32-55 (XEN) Enabling APIC mode: Phys. Using 2 I/O APICs (XEN) Using scheduler: SMP Credit Scheduler (credit) (XEN) Detected 2394.088 MHz processor. (XEN) Initing memory sharing. (XEN) VMX: Supported advanced features: (XEN) - APIC MMIO access virtualisation (XEN) - APIC TPR shadow (XEN) - Extended Page Tables (EPT) (XEN) - Virtual-Processor Identifiers (VPID) (XEN) - Virtual NMI (XEN) - MSR direct-access bitmap (XEN) EPT supports 2MB super page. (XEN) HVM: ASIDs enabled. (XEN) HVM: VMX enabled (XEN) HVM: Hardware Assisted Paging detected. (XEN) Intel VT-d Snoop Control enabled. (XEN) Intel VT-d Dom0 DMA Passthrough not enabled. (XEN) Intel VT-d Queued Invalidation enabled. (XEN) Intel VT-d Interrupt Remapping enabled. (XEN) I/O virtualisation enabled (XEN) - Dom0 mode: Relaxed (XEN) Total of 16 processors activated. (XEN) ENABLING IO-APIC IRQs (XEN) -> Using new ACK method (XEN) TSC is reliable, synchronization unnecessary (XEN) Platform timer is 14.318MHz HPET �(XEN) Allocated console ring of 32 KiB. (XEN) Brought up 16 CPUs (XEN) *** LOADING DOMAIN 0 *** (XEN) Xen kernel: 64-bit, lsb, compat32 (XEN) Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x16b6000 (XEN) PHYSICAL MEMORY ARRANGEMENT: (XEN) Dom0 alloc.: 0000000c50000000->0000000c60000000 (12319770 pages to be allocated) (XEN) VIRTUAL MEMORY ARRANGEMENT: (XEN) Loaded kernel: ffffffff81000000->ffffffff816b6000 (XEN) Init. ramdisk: ffffffff816b6000->ffffffff83064200 (XEN) Phys-Mach map: ffffffff83065000->ffffffff88ee30d0 (XEN) Start info: ffffffff88ee4000->ffffffff88ee44b4 (XEN) Page tables: ffffffff88ee5000->ffffffff88f30000 (XEN) Boot stack: ffffffff88f30000->ffffffff88f31000 (XEN) TOTAL: ffffffff80000000->ffffffff89000000 (XEN) ENTRY ADDRESS: ffffffff81506200 (XEN) Dom0 has maximum 16 VCPUs (XEN) Scrubbing Free RAM: .done. (XEN) Xen trace buffers: disabled (XEN) Std. Loglevel: Errors and warnings (XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings) (XEN) *** Serial input -> DOM0 (type ''CTRL-a'' three times to switch input to Xen) (XEN) Freed 176kB init memory. mapping kernel into physical memory Xen: setup ISA identity maps about to get started... [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Linux version 2.6.32-5-xen-amd64 (Debian 2.6.32-29) (ben@decadent.org.uk) (gcc version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Fri Dec 10 17:41:50 UT0 [ 0.000000] Command line: placeholder root=UUID=488ac918-6644-46f9-bc1b-4e7d5918a47f ro console=ttyS1 console=hvc0 earlyprintk=xen initcall_debug debug lo [ 0.000000] KERNEL supported cpus: [ 0.000000] Intel GenuineIntel [ 0.000000] AMD AuthenticAMD [ 0.000000] Centaur CentaurHauls [ 0.000000] xen_release_chunk: looking at area pfn 80000-e0000: 393216 pages freed [ 0.000000] xen_release_chunk: looking at area pfn f0000-fe000: 57344 pages freed [ 0.000000] xen_release_chunk: looking at area pfn 800000-bcfc1a: 0 pages freed [ 0.000000] released 450560 pages of unused memory [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] Xen: 0000000000000000 - 00000000000a0000 (usable) [ 0.000000] Xen: 00000000000a0000 - 0000000000100000 (reserved) [ 0.000000] Xen: 0000000000100000 - 000000007f679000 (usable) [ 0.000000] Xen: 000000007f679000 - 000000007f68f000 (reserved) [ 0.000000] Xen: 000000007f68f000 - 000000007f6ce000 (ACPI data) [ 0.000000] Xen: 000000007f6ce000 - 0000000080000000 (reserved) [ 0.000000] Xen: 00000000e0000000 - 00000000f0000000 (reserved) [ 0.000000] Xen: 00000000fe000000 - 0000000100000000 (reserved) [ 0.000000] Xen: 0000000100000000 - 0000000800000000 (usable) [ 0.000000] bootconsole [xenboot0] enabled [ 0.000000] DMI 2.6 present. [ 0.000000] last_pfn = 0x800000 max_arch_pfn = 0x400000000 [ 0.000000] x86 PAT enabled: cpu 0, old 0x50100070406, new 0x7010600070106 [ 0.000000] last_pfn = 0x7f679 max_arch_pfn = 0x400000000 [ 0.000000] initial memory mapped : 0 - 20000000 [ 0.000000] init_memory_mapping: 0000000000000000-000000007f679000 [ 0.000000] 0000000000 - 007f679000 page 4k [ 0.000000] kernel direct mapping tables up to 7f679000 @ 100000-4ff000 [ 0.000000] init_memory_mapping: 0000000100000000-0000000800000000 [ 0.000000] 0100000000 - 0800000000 page 4k [ 0.000000] kernel direct mapping tables up to 800000000 @ 8f30000-cf51000 [ 0.000000] RAMDISK: 016b6000 - 03064200 [ 0.000000] ACPI: RSDP 00000000000f0a90 00024 (v02 DELL ) [ 0.000000] ACPI: XSDT 00000000000f0b94 0009C (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: FACP 000000007f6b3f9c 000F4 (v03 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: DSDT 000000007f68f000 03D5A (v01 DELL PE_SC3 00000001 INTL 20050624) [ 0.000000] ACPI: FACS 000000007f6b6000 00040 [ 0.000000] ACPI: APIC 000000007f6b3478 0015E (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: SPCR 000000007f6b35d8 00050 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: HPET 000000007f6b362c 00038 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: XMAR 000000007f6b3668 001C0 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: MCFG 000000007f6b38c4 0003C (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: WD__ 000000007f6b3904 00134 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: SLIC 000000007f6b3a3c 00024 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: ERST 000000007f692edc 00270 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: HEST 000000007f69314c 003A8 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: BERT 000000007f692d5c 00030 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: EINJ 000000007f692d8c 00150 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: SRAT 000000007f6b3bc0 00370 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: TCPA 000000007f6b3f34 00064 (v02 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: SSDT 000000007f6b7000 043F4 (v01 INTEL PPM RCM 80000001 INTL 20061109) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] No NUMA configuration found [ 0.000000] Faking a node at 0000000000000000-0000000800000000 [ 0.000000] Bootmem setup node 0 0000000000000000-0000000800000000 [ 0.000000] NODE_DATA [0000000000008000 - 000000000000ffff] [ 0.000000] bootmap [00000000004b1000 - 00000000005b0fff] pages 100 [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 0800000000] [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] [ 0.000000] #1 [0008ee5000 - 0008f30000] XEN PAGETABLES ==> [0008ee5000 - 0008f30000] [ 0.000000] #2 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] [ 0.000000] #3 [0001000000 - 0001695994] TEXT DATA BSS ==> [0001000000 - 0001695994] [ 0.000000] #4 [00016b6000 - 0003064200] RAMDISK ==> [00016b6000 - 0003064200] [ 0.000000] #5 [0003065000 - 0008ee5000] XEN START INFO ==> [0003065000 - 0008ee5000] [ 0.000000] #6 [0001696000 - 00016964fd] BRK ==> [0001696000 - 00016964fd] [ 0.000000] #7 [0000100000 - 00004b1000] PGTABLE ==> [0000100000 - 00004b1000] [ 0.000000] #8 [0008f30000 - 000c74c000] PGTABLE ==> [0008f30000 - 000c74c000] [ 0.000000] found SMP MP-table at [ffff8800000fe710] fe710 [ 0.000000] Zone PFN ranges: [ 0.000000] DMA 0x00000000 -> 0x00001000 [ 0.000000] DMA32 0x00001000 -> 0x00100000 [ 0.000000] Normal 0x00100000 -> 0x00800000 [ 0.000000] Movable zone start PFN for each node [ 0.000000] early_node_map[3] active PFN ranges [ 0.000000] 0: 0x00000000 -> 0x000000a0 [ 0.000000] 0: 0x00000100 -> 0x0007f679 [ 0.000000] 0: 0x00100000 -> 0x00800000 [ 0.000000] On node 0 totalpages: 7861785 [ 0.000000] DMA zone: 56 pages used for memmap [ 0.000000] DMA zone: 948 pages reserved [ 0.000000] DMA zone: 2996 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 14280 pages used for memmap [ 0.000000] DMA32 zone: 503473 pages, LIFO batch:31 [ 0.000000] Normal zone: 100352 pages used for memmap [ 0.000000] Normal zone: 7239680 pages, LIFO batch:31 [ 0.000000] ACPI: PM-Timer IO Port: 0x808 [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x02] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x14] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x04] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x16] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x06] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x11] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x01] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x13] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x03] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x15] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x05] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x17] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x07] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x30] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x31] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x32] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x33] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x34] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x35] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x36] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x37] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x38] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x39] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x3a] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x3b] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x3c] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x3d] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x3e] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x3f] disabled) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 0, version 0, address 0xfec00000, GSI 0-0 [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec80000] gsi_base[32]) [ 0.000000] IOAPIC[1]: apic_id 1, version 0, address 0xfec80000, GSI 32-32 [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.000000] ERROR: Unable to locate IOAPIC for GSI 2 [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.000000] ERROR: Unable to locate IOAPIC for GSI 9 [ 0.000000] Using ACPI (MADT) for SMP configuration information [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000 [ 0.000000] SMP: Allowing 16 CPUs, 0 hotplug CPUs [ 0.000000] nr_irqs_gsi: 288 [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000 [ 0.000000] PM: Registered nosave memory: 000000007f679000 - 000000007f68f000 [ 0.000000] PM: Registered nosave memory: 000000007f68f000 - 000000007f6ce000 [ 0.000000] PM: Registered nosave memory: 000000007f6ce000 - 0000000080000000 [ 0.000000] PM: Registered nosave memory: 0000000080000000 - 00000000e0000000 [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000 [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fe000000 [ 0.000000] PM: Registered nosave memory: 00000000fe000000 - 0000000100000000 [ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) [ 0.000000] Booting paravirtualized kernel on Xen [ 0.000000] Xen version: 4.0.2-rc1-pre (preserve-AD) (dom0) [ 0.000000] NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:16 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff88002804f000 s90328 r8192 d24360 u122880 [ 0.000000] pcpu-alloc: s90328 r8192 d24360 u122880 alloc=30*4096 [ 0.000000] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07 [ 0.000000] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15 [ 6.923660] trying to map vcpu_info 0 at ffff88002805a020, mfn 81805a, offset 32 [ 6.923665] cpu 0 using vcpu_info at ffff88002805a020 [ 6.923667] trying to map vcpu_info 1 at ffff880028078020, mfn 818078, offset 32 [ 6.923671] cpu 1 using vcpu_info at ffff880028078020 [ 6.923673] trying to map vcpu_info 2 at ffff880028096020, mfn 818096, offset 32 [ 6.923676] cpu 2 using vcpu_info at ffff880028096020 [ 6.923678] trying to map vcpu_info 3 at ffff8800280b4020, mfn 8180b4, offset 32 [ 6.923682] cpu 3 using vcpu_info at ffff8800280b4020 [ 6.923684] trying to map vcpu_info 4 at ffff8800280d2020, mfn 8180d2, offset 32 [ 6.923687] cpu 4 using vcpu_info at ffff8800280d2020 [ 6.923690] trying to map vcpu_info 5 at ffff8800280f0020, mfn 8180f0, offset 32 [ 6.923693] cpu 5 using vcpu_info at ffff8800280f0020 [ 6.923695] trying to map vcpu_info 6 at ffff88002810e020, mfn 81810e, offset 32 [ 6.923698] cpu 6 using vcpu_info at ffff88002810e020 [ 6.923701] trying to map vcpu_info 7 at ffff88002812c020, mfn 81812c, offset 32 [ 6.923704] cpu 7 using vcpu_info at ffff88002812c020 [ 6.923706] trying to map vcpu_info 8 at ffff88002814a020, mfn 81814a, offset 32 [ 6.923709] cpu 8 using vcpu_info at ffff88002814a020 [ 6.923712] trying to map vcpu_info 9 at ffff880028168020, mfn 818168, offset 32 [ 6.923715] cpu 9 using vcpu_info at ffff880028168020 [ 6.923717] trying to map vcpu_info 10 at ffff880028186020, mfn 818186, offset 32 [ 6.923720] cpu 10 using vcpu_info at ffff880028186020 [ 6.923723] trying to map vcpu_info 11 at ffff8800281a4020, mfn 8181a4, offset 32 [ 6.923726] cpu 11 using vcpu_info at ffff8800281a4020 [ 6.923728] trying to map vcpu_info 12 at ffff8800281c2020, mfn 8181c2, offset 32 [ 6.923731] cpu 12 using vcpu_info at ffff8800281c2020 [ 6.923734] trying to map vcpu_info 13 at ffff8800281e0020, mfn 8181e0, offset 32 [ 6.923737] cpu 13 using vcpu_info at ffff8800281e0020 [ 6.923739] trying to map vcpu_info 14 at ffff8800281fe020, mfn 8181fe, offset 32 [ 6.923742] cpu 14 using vcpu_info at ffff8800281fe020 [ 6.923745] trying to map vcpu_info 15 at ffff88002821c020, mfn 81821c, offset 32 [ 6.923748] cpu 15 using vcpu_info at ffff88002821c020 [ 6.923750] Xen: using vcpu_info placement [ 6.923755] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 7746149 [ 6.923758] Policy zone: Normal [ 6.923761] Kernel command line: placeholder root=UUID=488ac918-6644-46f9-bc1b-4e7d5918a47f ro console=ttyS1 console=hvc0 earlyprintk=xen initcall_debug o [ 6.923811] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 6.924136] Initializing CPU#0 [ 6.932756] DMA: Placing 64MB software IO TLB between ffff880020000000 - ffff880024000000 [ 6.932764] DMA: software IO TLB at phys 0x20000000 - 0x24000000 [ 6.932767] xen_swiotlb_fixup: buf=ffff880020000000 size=67108864 [ 6.951766] xen_swiotlb_fixup: buf=ffff880024060000 size=32768 [ 7.076245] Memory: 30756556k/33554432k available (3146k kernel code, 2107292k absent, 690584k reserved, 1901k data, 600k init) [ 7.076285] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1 [ 7.076341] Hierarchical RCU implementation. [ 7.076355] NR_IRQS:4352 nr_irqs:4352 [ 7.076472] xen: --> irq=0 [ 7.076483] xen: --> irq=1 [ 7.076491] xen: --> irq=2 [ 7.076499] xen: --> irq=3 [ 7.076507] xen: --> irq=4 [ 7.076515] xen: --> irq=5 [ 7.076522] xen: --> irq=6 [ 7.076530] xen: --> irq=7 [ 7.076538] xen: --> irq=8 [ 7.076545] xen: --> irq=9 [ 7.076553] xen: --> irq=10 [ 7.076561] xen: --> irq=11 [ 7.076569] xen: --> irq=12 [ 7.076577] xen: --> irq=13 [ 7.076584] xen: --> irq=14 [ 7.076592] xen: --> irq=15 [ 7.076609] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 7.076612] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 7.076615] xen: sci override: source_irq=9 global_irq=9 trigger=c polarity=1 [ 7.076618] xen: registering gsi 9 triggering 0 polarity 0 [ 7.076620] xen_allocate_pirq: returning irq 9 for gsi 9 [ 7.076622] xen: --> irq=9 [ 7.076656] xen: acpi sci 9 [ 7.082825] Console: colour VGA+ 80x25 [ 7.082829] console [hvc0] enabled, bootconsole disabled [ 7.082829] console [hvc0] enabled, bootconsole disabled [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Linux version 2.6.32-5-xen-amd64 (Debian 2.6.32-29) (ben@decadent.org.uk) (gcc version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Fri Dec 10 17:41:50 UT0 [ 0.000000] Command line: placeholder root=UUID=488ac918-6644-46f9-bc1b-4e7d5918a47f ro console=ttyS1 console=hvc0 earlyprintk=xen initcall_debug debug lo [ 0.000000] KERNEL supported cpus: [ 0.000000] Intel GenuineIntel [ 0.000000] AMD AuthenticAMD [ 0.000000] Centaur CentaurHauls [ 0.000000] xen_release_chunk: looking at area pfn 80000-e0000: 393216 pages freed [ 0.000000] xen_release_chunk: looking at area pfn f0000-fe000: 57344 pages freed [ 0.000000] xen_release_chunk: looking at area pfn 800000-bcfc1a: 0 pages freed [ 0.000000] released 450560 pages of unused memory [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] Xen: 0000000000000000 - 00000000000a0000 (usable) [ 0.000000] Xen: 00000000000a0000 - 0000000000100000 (reserved) [ 0.000000] Xen: 0000000000100000 - 000000007f679000 (usable) [ 0.000000] Xen: 000000007f679000 - 000000007f68f000 (reserved) [ 0.000000] Xen: 000000007f68f000 - 000000007f6ce000 (ACPI data) [ 0.000000] Xen: 000000007f6ce000 - 0000000080000000 (reserved) [ 0.000000] Xen: 00000000e0000000 - 00000000f0000000 (reserved) [ 0.000000] Xen: 00000000fe000000 - 0000000100000000 (reserved) [ 0.000000] Xen: 0000000100000000 - 0000000800000000 (usable) [ 0.000000] bootconsole [xenboot0] enabled [ 0.000000] DMI 2.6 present. [ 0.000000] last_pfn = 0x800000 max_arch_pfn = 0x400000000 [ 0.000000] x86 PAT enabled: cpu 0, old 0x50100070406, new 0x7010600070106 [ 0.000000] last_pfn = 0x7f679 max_arch_pfn = 0x400000000 [ 0.000000] initial memory mapped : 0 - 20000000 [ 0.000000] init_memory_mapping: 0000000000000000-000000007f679000 [ 0.000000] 0000000000 - 007f679000 page 4k [ 0.000000] kernel direct mapping tables up to 7f679000 @ 100000-4ff000 [ 0.000000] init_memory_mapping: 0000000100000000-0000000800000000 [ 0.000000] 0100000000 - 0800000000 page 4k [ 0.000000] kernel direct mapping tables up to 800000000 @ 8f30000-cf51000 [ 0.000000] RAMDISK: 016b6000 - 03064200 [ 0.000000] ACPI: RSDP 00000000000f0a90 00024 (v02 DELL ) [ 0.000000] ACPI: XSDT 00000000000f0b94 0009C (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: FACP 000000007f6b3f9c 000F4 (v03 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: DSDT 000000007f68f000 03D5A (v01 DELL PE_SC3 00000001 INTL 20050624) [ 0.000000] ACPI: FACS 000000007f6b6000 00040 [ 0.000000] ACPI: APIC 000000007f6b3478 0015E (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: SPCR 000000007f6b35d8 00050 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: HPET 000000007f6b362c 00038 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: XMAR 000000007f6b3668 001C0 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: MCFG 000000007f6b38c4 0003C (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: WD__ 000000007f6b3904 00134 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: SLIC 000000007f6b3a3c 00024 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: ERST 000000007f692edc 00270 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: HEST 000000007f69314c 003A8 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: BERT 000000007f692d5c 00030 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: EINJ 000000007f692d8c 00150 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: SRAT 000000007f6b3bc0 00370 (v01 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: TCPA 000000007f6b3f34 00064 (v02 DELL PE_SC3 00000001 DELL 00000001) [ 0.000000] ACPI: SSDT 000000007f6b7000 043F4 (v01 INTEL PPM RCM 80000001 INTL 20061109) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] No NUMA configuration found [ 0.000000] Faking a node at 0000000000000000-0000000800000000 [ 0.000000] Bootmem setup node 0 0000000000000000-0000000800000000 [ 0.000000] NODE_DATA [0000000000008000 - 000000000000ffff] [ 0.000000] bootmap [00000000004b1000 - 00000000005b0fff] pages 100 [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 0800000000] [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] [ 0.000000] #1 [0008ee5000 - 0008f30000] XEN PAGETABLES ==> [0008ee5000 - 0008f30000] [ 0.000000] #2 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] [ 0.000000] #3 [0001000000 - 0001695994] TEXT DATA BSS ==> [0001000000 - 0001695994] [ 0.000000] #4 [00016b6000 - 0003064200] RAMDISK ==> [00016b6000 - 0003064200] [ 0.000000] #5 [0003065000 - 0008ee5000] XEN START INFO ==> [0003065000 - 0008ee5000] [ 0.000000] #6 [0001696000 - 00016964fd] BRK ==> [0001696000 - 00016964fd] [ 0.000000] #7 [0000100000 - 00004b1000] PGTABLE ==> [0000100000 - 00004b1000] [ 0.000000] #8 [0008f30000 - 000c74c000] PGTABLE ==> [0008f30000 - 000c74c000] [ 0.000000] found SMP MP-table at [ffff8800000fe710] fe710 [ 0.000000] Zone PFN ranges: [ 0.000000] DMA 0x00000000 -> 0x00001000 [ 0.000000] DMA32 0x00001000 -> 0x00100000 [ 0.000000] Normal 0x00100000 -> 0x00800000 [ 0.000000] Movable zone start PFN for each node [ 0.000000] early_node_map[3] active PFN ranges [ 0.000000] 0: 0x00000000 -> 0x000000a0 [ 0.000000] 0: 0x00000100 -> 0x0007f679 [ 0.000000] 0: 0x00100000 -> 0x00800000 [ 0.000000] On node 0 totalpages: 7861785 [ 0.000000] DMA zone: 56 pages used for memmap [ 0.000000] DMA zone: 948 pages reserved [ 0.000000] DMA zone: 2996 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 14280 pages used for memmap [ 0.000000] DMA32 zone: 503473 pages, LIFO batch:31 [ 0.000000] Normal zone: 100352 pages used for memmap [ 0.000000] Normal zone: 7239680 pages, LIFO batch:31 [ 0.000000] ACPI: PM-Timer IO Port: 0x808 [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x02] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x14] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x04] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x16] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x06] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x11] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x01] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x13] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x03] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x15] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x05] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x17] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x07] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x30] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x31] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x32] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x33] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x34] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x35] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x36] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x37] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x38] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x39] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x3a] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x3b] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x3c] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x3d] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x3e] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x3f] disabled) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 0, version 0, address 0xfec00000, GSI 0-0 [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec80000] gsi_base[32]) [ 0.000000] IOAPIC[1]: apic_id 1, version 0, address 0xfec80000, GSI 32-32 [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.000000] ERROR: Unable to locate IOAPIC for GSI 2 [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.000000] ERROR: Unable to locate IOAPIC for GSI 9 [ 0.000000] Using ACPI (MADT) for SMP configuration information [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000 [ 0.000000] SMP: Allowing 16 CPUs, 0 hotplug CPUs [ 0.0[ 7.806935] scsi 0:2:0:0: Direct-Access DELL PERC H700 2.30 PQ: 0 ANSI: 5 [ 7.810109] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 [ 7.810271] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002 [ 7.810419] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 7.810576] usb usb3: Product: EHCI Host Controller [ 7.810685] usb usb3: Manufacturer: Linux 2.6.32-5-xen-amd64 ehci_hcd [ 7.810826] usb usb3: SerialNumber: 0000:00:1d.7 [ 7.810996] usb usb3: configuration #1 chosen from 1 choice [ 7.811153] hub 3-0:1.0: USB hub found [ 7.811253] hub 3-0:1.0: 4 ports detected [ 7.811404] initcall ehci_hcd_init+0x0/0x7c [ehci_hcd] returned 0 after 202824 usecs [ 7.811408] xen: registering gsi 18 triggering 0 polarity 1 [ 7.811418] alloc irq_desc for 18 on node -1 [ 7.811420] alloc kstat_irqs on node -1 [ 7.811423] xen: --> irq=18 [ 7.811452] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 18 (level, low) - -> IRQ 18 [ 7.811461] uhci_hcd 0000:00:1a.1: setting latency timer to 64 [ 7.811464] uhci_hcd 0000:00:1a.1: UHCI Host Controller [ 7.811473] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 [ 7.811555] uhci_hcd 0000:00:1a.1: irq 18, io base 0x0000ec60 [ 7.811610] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001 [ 7.811612] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 7.811613] usb usb4: Product: UHCI Host Controller [ 7.811615] usb usb4: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd [ 7.811616] usb usb4: SerialNumber: 0000:00:1a.1 [ 7.811670] usb usb4: configuration #1 chosen from 1 choice [ 7.811695] hub 4-0:1.0: USB hub found [ 7.811707] hub 4-0:1.0: 2 ports detected [ 7.811754] xen: registering gsi 21 triggering 0 polarity 1 [ 7.811756] xen_allocate_pirq: returning irq 21 for gsi 21 [ 7.811757] xen: --> irq=21 [ 7.811761] Already setup the GSI :21 [ 7.811763] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 21 (level, low) - -> IRQ 21 [ 7.811771] uhci_hcd 0000:00:1d.0: setting latency timer to 64 [ 7.811774] uhci_hcd 0000:00:1d.0: UHCI Host Controller [ 7.811782] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5 [ 7.811812] uhci_hcd 7.811863] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001 [ 7.811865] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 7.811866] usb usb5: Product: UHCI Host Controller [ 7.811868] usb usb5: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd [ 7.811869] usb usb5: SerialNumber: 0000:00:1d.0 [ 7.811919] usb usb5: configuration #1 chosen from 1 choice [ 7.811941] hub 5-0:1.0: USB hub found [ 7.811953] hub 5-0:1.0: 2 ports detected [ 7.812031] xen: registering gsi 20 triggering 0 polarity 1 [ 7.812039] alloc irq_desc for 20 on node -1 [ 7.812040] alloc kstat_irqs on node -1 [ 7.812043] xen: --> irq=20 [ 7.812071] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 20 (level, low) - -> IRQ 20 [ 7.812079] uhci_hcd 0000:00:1d.1: setting latency timer to 64 [ 7.812083] uhci_hcd 0000:00:1d.1: UHCI Host Controller [ 7.812091] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6 [ 7.812171] uhci_hcd 0000:00:1d.1: irq 20, io base 0x0000eca0 [ 7.812223] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001 [ 7.812225] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 7.812227] usb usb6: Product: UHCI Host Controller [ 7.812228] usb usb6: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd [ 7.812230] usb usb6: SerialNumber: 0000:00:1d.1 [ 7.812282] usb usb6: configuration #1 chosen from 1 choice [ 7.812304] hub 6-0:1.0: USB hub found [ 7.812316] hub 6-0:1.0: 2 ports detected [ 7.812374] initcall uhci_hcd_init+0x0/0xbb [uhci_hcd] returned 0 after 201098 usecs [ 7.818906] calling enclosure_init+0x0/0x13 [enclosure] @ 394 [ 7.819052] initcall enclosure_init+0x0/0x13 [enclosure] returned 0 after 12 usecs [ 7.942611] usb 1-3: new high speed USB device using ehci_hcd and address 2 [ 8.073426] usb 1-3: New USB device found, idVendor=0424, idProduct=2514 [ 8.073596] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 8.073804] usb 1-3: configuration #1 chosen from 1 choice [ 8.074092] hub 1-3:1.0: USB hub found [ 8.074300] hub 1-3:1.0: 3 ports detected [ 8.265170] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) [ 8.290526] ata1.00: ATAPI: TEAC DVD-ROM DV-28SW, R.2A, max UDMA/100 [ 8.305404] ata1.00: configured for UDMA/100 [ 8.316726] scsi 1:0:0:0: CD-ROM TEAC DVD-ROM DV-28SW R.2A PQ: 0 ANSI: 5 [ 8.545103] usb 5-2: new full speed USB device using uhci_hcd and address 2 [ 8.712878] usb 5-2: New USB device found, idVendor=0624, idProduct=0248 [ 8.713042] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 8.713198] usb 5-2: Product: USB Composite Device-0 [ 8.713307] usb 5-2: Manufacturer: Avocent [ 8.713397] usb 5-2: SerialNumber: 20080519 [ 8.713554] usb 5-2: configuration #1 chosen from 1 choice [ 8.817107] ata2: failed to resume link (SControl 0) [ 8.828433] ata2: SATA link down (SStatus 4 SControl 0) [ 8.829523] calling ses_init+0x0/0x35 [ses] @ 394 [ 8.832761] calling init_sd+0x0/0x16b [sd_mod] @ 395 [ 8.833072] sd 0:2:0:0: [sda] 4683988992 512-byte logical blocks: (2.39 TB/2.18 TiB) [ 8.833103] initcall init_sd+0x0/0x16b [sd_mod] returned 0 after 211 usecs [ 8.833497] sd 0:2:0:0: [sda] Write Protect is off [ 8.833613] sd 0:2:0:0: [sda] Mode Sense: 1f 00 00 08 [ 8.833789] sd 0:2:0:0: [sda] Write cache: enabled, read cache: enabled, doesn''t support DPO or FUA [ 8.833874] calling ata_generic_init+0x0/0x1a [ata_generic] @ 320 [ 8.833901] initcall ata_generic_init+0x0/0x1a [ata_generic] returned 0 after 22 usecs [ 8.834583] sda:calling hid_init+0x0/0x5c [hid] @ 411 [ 8.838023] initcall hid_init+0x0/0x5c [hid] returned 0 after 30 usecs [ 8.840124] calling hid_init+0x0/0xc7 [usbhid] @ 412 [ 8.840313] usbcore: registered new interface driver hiddev [ 8.845103] input: Avocent USB Composite Device-0 as /devices/pci0000:00/0000:00:1d.0/usb5/5-2/5-2:1.0/input/input1 [ 8.845379] generic-usb 0003:0624:0248.0001: input,hidraw0: USB HID v1.00 Keyboard [Avocent USB Composite Device-0] on usb-0000:00:1d.0-2/input0 [ 8.849044] input: Avocent USB Composite Device-0 as /devices/pci0000:00/0000:00:1d.0/usb5/5-2/5-2:1.1/input/input2 [ 8.849358] generic-usb 0003:0624:0248.0002: input,hidraw1: USB HID v1.00 Mouse [Avocent USB Composite Device-0] on usb-0000:00:1d.0-2/input1 [ 8.849651] usbcore: registered new interface driver usbhid [ 8.849774] usbhid: v2.6:USB HID core driver [ 8.849874] initcall hid_init+0x0/0xc7 [usbhid] returned 0 after 9406 usecs [ 8.867328] sda1 sda2 [ 8.867814] sd 0:2:0:0: [sda] Attached SCSI disk [ 8.872371] calling cdrom_init+0x0/0x6a [cdrom] @ 418 [ 8.872517] initcall cdrom_init+0x0/0x6a [cdrom] returned 0 after 25 usecs [ 8.874563] calling init_sr+0x0/0x3f [sr_mod] @ 418 [ 8.896171] sr0: scsi3-mmc drive: 24x/24x cd/rw xa/form2 cdda tray [ 8.896318] Uniform CD-ROM driver Revision: 3.20 [ 8.896499] sr 1:0:0:0: Attached scsi CD-ROM sr0 [ 8.896616] initcall init_sr+0x0/0x3f [sr_mod] returned 0 after 21422 usecs [ 8.900380] calling init_sg+0x0/0xc1 [sg] @ 424 [ 9.029141] ses 0:0:32:0: Attached Enclosure device [ 9.029179] ses 0:0:32:0: Attached scsi generic sg0 type 13 [ 9.029207] sd 0:2:0:0: Attached scsi generic sg1 type 0 [ 9.029232] sr 1:0:0:0: Attached scsi generic sg2 type 5 [ 9.029237] initcall init_sg+0x0/0xc1 [sg] returned 0 after 125731 usecs [ 9.029794] initcall ses_init+0x0/0x35 [ses] returned 0 after 195464 usecs [ 9.114842] calling wait_scan_init+0x0/0xd [scsi_wait_scan] @ 429 [ 9.114983] initcall wait_scan_init+0x0/0xd [scsi_wait_scan] returned 0 after 0 usecs [ 9.172718] PM: Starting manual resume from disk [ 9.172825] PM: Resume from partition 8:2 [ 9.172914] PM: Checking hibernation image. [ 9.173223] PM: Error -22 checking image file [ 9.173331] PM: Resume from disk failed. [ 9.176511] calling init_mbcache+0x0/0x14 [mbcache] @ 459 [ 9.176637] initcall init_mbcache+0x0/0x14 [mbcache] returned 0 after 0 usecs [ 9.178972] calling journal_init+0x0/0x89 [jbd] @ 459 [ 9.179216] initcall journal_init+0x0/0x89 [jbd] returned 0 after 122 usecs [ 9.183388] calling init_ext3_fs+0x0/0x67 [ext3] @ 459 [ 9.183571] initcall init_ext3_fs+0x0/0x67 [ext3] returned 0 after 59 usecs [ 9.190925] kjournald starting. Commit interval 5 seconds [ 9.190934] EXT3-fs: mounted filesystem with ordered data mode. INIT: version 2.88 booting Using makefile-style concurrent boot in runlevel S. Starting the hotplug events dispatcher: udevd[ 9.959461] udev[507]: starting version 164 . Synthesizing the initial hotplug events...done. Waiting for /dev to be fully populated...[ 10.101284] calling xen_acpi_processor_extcntl_init+0x0/0x4a [acpi_processor] @ 524 [ 10.101475] initcall xen_acpi_processor_extcntl_init+0x0/0x4a [acpi_processor] returned 0 after 0 usecs [ 10.114955] calling acpi_power_meter_init+0x0/0x35 [power_meter] @ 582 [ 10.115618] ACPI Error: SMBus or IPMI write requires Buffer of length 42, found length 20 (20090903/exfield-286) [ 10.115862] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PMI0._GHL] (Node ffff8807ffc38c20), AE_AML_BUFFER_LIMIT [ 10.116150] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PMI0._PMC] (Node ffff8807ffc38ba0), AE_AML_BUFFER_LIMIT [ 10.116438] ACPI Exception: AE_AML_BUFFER_LIMIT, Evaluating _PMC (20090903/power_meter-772) [ 10.116670] initcall acpi_power_meter_init+0x0/0x35 [power_meter] returned 0 after 1523 usecs [ 10.152619] calling acpi_processor_init+0x0/0x12f [processor] @ 537 [ 10.153521] calling evdev_init+0x0/0xc [evdev] @ 670 [ 10.153732] initcall evdev_init+0x0/0xc [evdev] returned 0 after 91 usecs [ 10.157383] calling serio_raw_init+0x0/0x1a [serio_raw] @ 644 [ 10.157541] initcall serio_raw_init+0x0/0x1a [serio_raw] returned 0 after 22 usecs [ 10.158249] calling dcdbas_init+0x0/0x5d [dcdbas] @ 659 [ 10.158258] initcall acpi_processor_init+0x0/0x12f [processor] returned 0 after 5337 usecs [ 10.158598] calling pcspkr_init+0x0/0xc [pcspkr] @ 641 [ 10.158641] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2) [ 10.158647] initcall dcdbas_init+0x0/0x5d [dcdbas] returned 0 after 59 usecs [ 10.159119] input: PC Speaker as /devices/platform/pcspkr/input/input3 [ 10.159317] initcall pcspkr_init+0x0/0xc [pcspkr] returned 0 after 239 usecs [ 10.159793] calling acpi_button_init+0x0/0x57 [button] @ 573 [ 10.160079] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4 [ 10.160324] ACPI: Power Button [PWRF] [ 10.160460] initcall acpi_button_init+0x0/0x57 [button] returned 0 after 491 usecs [ 10.162935] calling joydev_init+0x0/0xc [joydev] @ 671 [ 10.163097] initcall joydev_init+0x0/0xc [joydev] returned 0 after 40 usecs [ 10.303146] calling psmouse_init+0x0/0x6b [psmouse] @ 645 [ 10.303364] initcall psmouse_init+0x0/0x6b [psmouse] returned 0 after 68 usecs [ 10.370828] calling snd_mem_init+0x0/0x2c [snd_page_alloc] @ 641 [ 10.370978] initcall snd_mem_init+0x0/0x2c [snd_page_alloc] returned 0 after 5 usecs [ 10.375157] calling init_soundcore+0x0/0x9a [soundcore] @ 641 [ 10.375307] initcall init_soundcore+0x0/0x9a [soundcore] returned 0 after 17 usecs [ 10.389947] calling alsa_sound_init+0x0/0x87 [snd] @ 641 [ 10.390090] initcall alsa_sound_init+0x0/0x87 [snd] returned 0 after 16 usecs [ 10.506774] calling alsa_timer_init+0x0/0x169 [snd_timer] @ 641 [ 10.506976] initcall alsa_timer_init+0x0/0x169 [snd_timer] returned 0 after 54 usecs [ 10.515813] calling alsa_pcm_init+0x0/0x67 [snd_pcm] @ 641 [ 10.515946] initcall alsa_pcm_init+0x0/0x67 [snd_pcm] returned 0 after 3 usecs [ 10.522768] calling pcsp_init+0x0/0x1b [snd_pcsp] @ 641 [ 10.522892] Error: Driver ''pcspkr'' is already registered, aborting... [ 10.523035] initcall pcsp_init+0x0/0x1b [snd_pcsp] returned -16 after 139 usecs [ 10.523195] initcall pcsp_init+0x0/0x1b [snd_pcsp] returned with error code -16 done. Setting preliminary keymap...done. Activating swap...[ 10.853970] Adding 46874992k swap on /dev/sda2. Priority:-1 extents:1 across:46874992k done. Checking root file system...fsck from util-linux-ng 2.17.2 /dev/sda1: clean, 113482/3540208 files, 974477/14160156 blocks done. [ 10.958775] EXT3 FS on sda1, internal journal Cleaning up ifupdown.... [ 11.030255] calling loop_init+0x0/0x19e [loop] @ 832 [ 11.031004] loop: module loaded [ 11.031107] initcall loop_init+0x0/0x19e [loop] returned 0 after 709 usecs Loading kernel modules...done. Setting up networking.... Activating lvm and md swap...done. Checking file systems...fsck from util-linux-ng 2.17.2 done. Mounting local filesystems...done. Activating swapfile swap...done. Cleaning up temporary files.... Setting kernel variables ...done. Configuring network interfaces...[ 11.526815] alloc irq_desc for 4260 on node -1 [ 11.526927] alloc kstat_irqs on node -1 [ 11.527115] alloc irq_desc for 4259 on node -1 [ 11.527217] alloc kstat_irqs on node -1 [ 11.527376] alloc irq_desc for 4258 on node -1 [ 11.527477] alloc kstat_irqs on node -1 [ 11.527636] alloc irq_desc for 4257 on node -1 [ 11.527738] alloc kstat_irqs on node -1 [ 11.527896] alloc irq_desc for 4256 on node -1 [ 11.527997] alloc kstat_irqs on node -1 [ 11.528156] alloc irq_desc for 4255 on node -1 [ 11.528258] alloc kstat_irqs on node -1 [ 11.528417] alloc irq_desc for 4254 on node -1 [ 11.528519] alloc kstat_irqs on node -1 [ 11.528678] alloc irq_desc for 4253 on node -1 [ 11.528779] alloc kstat_irqs on node -1 [ 11.528938] alloc irq_desc for 4252 on node -1 [ 11.529039] alloc kstat_irqs on node -1 [ 11.588647] bnx2: eth0: using MSIX [ 11.590192] ADDRCONF(NETDEV_UP): eth0: link is not ready done. Starting portmap daemon.... ... - -- mit freundlichen Grüßen, Arno Töll, BSc. GnuPG Key-ID: 0x8408D4C4 Wavecon GmbH | Frankenstrasse 9 | 90762 Fuerth Web: wavecon.de | Mail + Jabber at@wavecon.de -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBAgAGBQJNJJbdAAoJELBdpXvEXpo9hpYP+gOC8QcB7d555xQdvcJLM9iG CetTMf3Tfvp1fbGN6gObftNKjTQShbPTwME2Fkki2BryPr3DiFiLdkgjBRax27Ix Vk0FsuMm59nKgvt+Wn1wpTPMWSAX9pIVKVdVknlQToc8sYs0HQNeiDPA7PYtKGcr QkkQfMx+D/lc3kCuuLng/+n0PKzA1vxyb0AJOeyFJKuSgPHfZIkGyd6ec4NaSvGE qY5qDm2Bkshws5OHAzXhXp5M4H2b32OKXkLQk966hURgoEMUiSUMdnmiZai1F2lW z4kpCZ31H0x+A7/k2DZx5xrHCrTWKW/tTmzgK8A3tZz5pJP6NPeF2MNR1UhWydnQ BWTVSVA3cuSUX3pE50BzvHJH2+JY5+E6RLvWF9gSSY99QgHcRo9CPjjQMljwvRbK YH0v4o+4DdDRuWNsh1emmeEsEHL/gqcnUnYqhoq9rgeT02XluCOYnRywvto0eq5H 2ZiqZhKkM3DLt7ZXCJoo3Hs2nL/n25gJYv33bFz42ylxbOUPbLpDaMs/cIQZR6s9 6CMIBaeE3hrexi9Jl7HQ6rErt9MTJKp/zOzAzVtcKHx3HcDE/Iya31ICzn41FwVv ESEvzpRFwsy/MeSXceaKY470QrMP6OXEpqD8P/foTurmm2P4/3Q+hrIL5cQ9PzxO v3aOGQn/K61VO/mIaLV5 =OT05 -----END PGP SIGNATURE----- _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Ian Campbell
2011-Jan-05 16:16 UTC
Re: [Xen-devel] Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
On Wed, 2011-01-05 at 16:05 +0000, Arno Toell wrote:> So the question is now, whether there was a bug in 4.0.1 that has been > fixed in -testing which fixes this one as well (or if it is a duplicate > perhaps?), or if Debian introduced that bug. Would someone mind finding > this out together with me?As far as I can tell Debian does not patch the hypervisor at all, it is just stock 4.0.1. That makes it seem likely that the issue is fixed in xen-4.0-testing.hg and will be in the 4.0.2 release. If you wanted to figure out which changeset then you could bisect the hypervisor changes between the RELEASE-4.0.1 tag in xen-4.0-testing.hg and the version you tested which was ok. Ian. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Konrad Rzeszutek Wilk
2011-Jan-11 16:38 UTC
Re: [Xen-devel] Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
On Wed, Jan 05, 2011 at 05:05:50PM +0100, Arno Toell wrote:> -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > > This suggests that the xen_exchange_memory hypercall has failed for some > > reason. > > > > -12 is -ENOMEM but size is only 64M and this is start of day so I can''t > > think why this would be the case (or at least why it wouldn''t always be > > the case if it was happening at all). > > I was speaking earlier today to Pasi about this bug again by accident. > There he asked whether I did try to boot the xen-4.0-testing tree. Now I > did, as I built the most recent -testing snapshot and I have some more > to add: > > Booting the Xen hypervisor in version 4.0.2-rc1-pre built by myself on > the affected system resulted in no failure for Debian''s stock > 2.6.32-5-xen-amd64 kernel. Jeremy''s xen tree at > git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git (resulting > in 2.6.32.27) failed to boot, but that is my fault as I was too lazy to > build an appropriate .config. So this is NOT related to the bug. > > So the question is now, whether there was a bug in 4.0.1 that has been > fixed in -testing which fixes this one as well (or if it is a duplicateThere was some fix for the VT-d allocation that ended up crashing Dom0 (b/c of an memory accounting issue). It could have been that was what you hit. I don''t remember the changeset number, but you could try booting your old hypervisor without the Vt-D and see if that was it (iommu=off) ? _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Arno Toell
2011-Jan-11 17:03 UTC
Re: [Xen-devel] Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 11.01.2011 17:38, Konrad Rzeszutek Wilk wrote:> It could have been that was what you hit. I don''t remember the changeset > number, but you could try booting your old hypervisor without the Vt-D > and see if that was it (iommu=off) ?Chances are, as I already mentioned the machine boots fine if I disable VMX in bios. Booting with "iommu=off" has the same effect. I skipped through the changelogs recently and found, one (or more) of the following changesets _should_ fix the issue. I''m lacking any knowledge about the hypervisor''s internal subsystems and code paths though. So my seeked fix might or might not be within that subset at all. http://xenbits.xensource.com/xen-4.0-testing.hg?rev/aced00366822 http://xenbits.xensource.com/xen-4.0-testing.hg?rev/c9f461d6ea1d http://xenbits.xensource.com/xen-4.0-testing.hg?rev/f7d54e1d7044 http://xenbits.xensource.com/xen-4.0-testing.hg?rev/81a636dd784d http://xenbits.xensource.com/xen-4.0-testing.hg?rev/9c7b9e65bc37 http://xenbits.xensource.com/xen-4.0-testing.hg?rev/ae381a864b4f http://xenbits.xensource.com/xen-4.0-testing.hg?rev/4e689840622f As said, I look for the exact fix, to get Debian people a hint about what to backport for their 4.0.1 soon-to-be-stable package. - -- mit freundlichen Grüßen, Arno Töll, BSc. GnuPG Key-ID: 0x8408D4C4 Wavecon GmbH | Frankenstrasse 9 | 90762 Fuerth Web: wavecon.de | Mail + Jabber at@wavecon.de -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBAgAGBQJNLI1rAAoJELBdpXvEXpo9MWAQAJUu3SPr5yICqkVLH0/eoACB UOI+RUN1V1fNqymecLVUuOEyjH3FsvkmyfMnA30ksMxMDAnhdl5mL+FwYQ2Bdd/s H9MPD4XlfFnNZYvoLo8uS+hKbWCZyraU97oco11tRJG6MMYPYmt5G+9veLI9F6os UAjkMJAm8NBAO27cL6BYRzQ24Ve16gWyFteB0oPPFd7GSxBMPidy1A6OLM/OKJWH BfkIOj9sN+USKRxDQE64ql0fbET3We27s5Z9hOX0LsMzpF2czZcPudA9I5GZZgop DNlLTRWPI4YE5XqpJ48GWR0q53UZaYS3pclZIsfZ1CQJhG2rOg11Y5jJLrADwmll rRzKslR7vWgPZjUep15wi3+OT+eXESZ2lzTaWpZeWo6EveNPFbL2AalxWH/x6Uat ljmNL+wrVhMx+y3kSlFtniPpIXwUUY0NZ9uwfkwRhsykpiOSwCDEm4k24Zaw8xpO uP3MEYkfubbkepx8rbU5JI0fYdjtUivFQmzUmJmJTr2gcke8qWTadElq2vjv1ijM uTl4+hy+gLeNmSCzo30wzul0R4KrPgn9RWOnvKt02XsBaFtLGfGMllAc8UbIpyC6 k7D7u8AEf6L0Japd6Ah7Dc2kgmPf3o4H+z02ZpbVKekRY9O6ybTJqLDT7fINWsWT PAdhMOSsUb0exgkoZT0D =abEC -----END PGP SIGNATURE----- _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Konrad Rzeszutek Wilk
2011-Jan-11 17:20 UTC
Re: [Xen-devel] Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
On Tue, Jan 11, 2011 at 06:03:40PM +0100, Arno Toell wrote:> -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On 11.01.2011 17:38, Konrad Rzeszutek Wilk wrote: > > It could have been that was what you hit. I don''t remember the changeset > > number, but you could try booting your old hypervisor without the Vt-D > > and see if that was it (iommu=off) ? > > Chances are, as I already mentioned the machine boots fine if I disable > VMX in bios. Booting with "iommu=off" has the same effect. > > I skipped through the changelogs recently and found, one (or more) of > the following changesets _should_ fix the issue. I''m lacking any > knowledge about the hypervisor''s internal subsystems and code paths > though. So my seeked fix might or might not be within that subset at all. > > http://xenbits.xensource.com/xen-4.0-testing.hg?rev/aced00366822 > http://xenbits.xensource.com/xen-4.0-testing.hg?rev/c9f461d6ea1d > http://xenbits.xensource.com/xen-4.0-testing.hg?rev/f7d54e1d7044This is not the bug you are hitting, but that fix is important.> http://xenbits.xensource.com/xen-4.0-testing.hg?rev/81a636dd784dDitto> http://xenbits.xensource.com/xen-4.0-testing.hg?rev/9c7b9e65bc37 > http://xenbits.xensource.com/xen-4.0-testing.hg?rev/ae381a864b4f > http://xenbits.xensource.com/xen-4.0-testing.hg?rev/4e689840622f > > As said, I look for the exact fix, to get Debian people a hint about > what to backport for their 4.0.1 soon-to-be-stable package.Hmm, let me ping Andrew, he might know. Andrew, do you remember what fix you needed to get Dom0 to boot when you had more than 64GB of memory with the VT-d enabled? _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
andrew thomas
2011-Jan-11 18:39 UTC
Re: [Xen-devel] Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
Konrad Rzeszutek Wilk wrote:> Hmm, let me ping Andrew, he might know. Andrew, do you remember what fix > you needed to get Dom0 to boot when you had more than 64GB of memory > with the VT-d enabled? > >From the xen-4.0-testing.hg repo: changeset: 21403:e7d9d8d46730 user: Keir Fraser <keir@xen.org> date: Wed Dec 15 10:31:59 2010 +0000 files: xen/arch/x86/domain_build.c description: x86/iommu: account for necessary allocations when calculating Dom0''s initial allocation size As of c/s 21812:e382656e4dcc, IOMMU related allocations for Dom0 happen only after it got all of its memory allocated, and hence the reserve (mainly for setting up its swiotlb) may get exhausted without accounting for the necessary allocations up front. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Arno Toell
2011-Jan-12 11:55 UTC
Re: [Xen-devel] Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 11.01.2011 19:39, andrew thomas wrote:> From the xen-4.0-testing.hg repo: > > changeset: 21403:e7d9d8d46730Thank you very much, Thomas. I will forward this to Debian people, so they hopefully will backport that fix. - -- mit freundlichen Grüßen, Arno Töll, BSc. GnuPG Key-ID: 0x8408D4C4 Wavecon GmbH | Frankenstrasse 9 | 90762 Fuerth Web: wavecon.de | Mail + Jabber at@wavecon.de -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBAgAGBQJNLZa4AAoJELBdpXvEXpo9ZKMP/0VFk+ePxw+h8YLPJyYNGvUz WUnaqnscssFubAr3Pge6OZXjH0pYubai1DvjnBymYYu8JXnFY4bmlCmDVNjqfEW0 4fbNcBrJmpNg0Tb741Wiw0SwF3c7Js85KpvKNyTMNi+FvaySI+HS6S5ojee1FisJ HdkAfQYDFW4ePOS3YY5SI1JYc9+MpgYZnN5ZPvfltXYmK0WSCqh8P004sraFFZGA JjJAurKCCEBELH1DilVmxg6XR+IMIB+5kXIRnbbUpN9h5/J3jwyouq+hLiIZCxpu Sse4q/s1IPysBEvP9YqFP0rMZN+wdyFq0xdMMhorkc881oHM1hAc3n+H+XkMV4Au dECJQgpx1GRTYDAqRVBZW4+Efi+40oYe6IGERK2447Y0NSJioaajiJtyoCM3TdlT RSO8EpDIedImDONx2Cxd+XsK75Tf5nGQ0FBcRkak/wutxVKtVP1A/gwt6okF3MaA B5yFl1BJT0nPjfP5UxjLAIjIKrjqaI5I1psavsyvGADl8lIUEPBg8Gpu9usfz9zn wHBVGULS3zaYdI5O6LfQXIw6EtNf0zdwRIl4Ep4GMVMcvNnzTf47I7Q59Jo28Z+P ObdwQ3axohrWxUfMvUMBe+A0bfEyavJMA3UrNTl8n9JzNSjnniaUYJdP6DqAotlX H9D+JRKKOfMwbCAE8MG1 =0D37 -----END PGP SIGNATURE----- _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Arno Toell
2011-Jan-13 12:11 UTC
Re: [Xen-devel] Re: [Xen-users] Hypervisor hangs on startup, 2.6.32-5-xen dom0 kernel panic
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 11.01.2011 19:39, andrew thomas wrote:> From the xen-4.0-testing.hg repo: > changeset: 21403:e7d9d8d46730 > x86/iommu: account for necessary allocations when calculating Dom0''s > initial allocation sizeI have verified this now and can confirm this commit fixes the problem. Thank you very much. This closes bug #1698 as well. - -- mit freundlichen Grüßen, Arno Töll, BSc. GnuPG Key-ID: 0x8408D4C4 Wavecon GmbH | Frankenstrasse 9 | 90762 Fuerth Web: wavecon.de | Mail + Jabber at@wavecon.de -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBAgAGBQJNLuvxAAoJELBdpXvEXpo9yE0QAIAjHmDq1b2i0ZCR86ZUSXul Z2/O2/FwBWTa8Zgo6HwCGsmKplzyhPmxEhXa71d1uV6bx4sHVE+RlrmgCnPrGwXZ o+QgeQ9NTpOaB/+ZJlMkm5S/j04Ub0vWrLDYQSOuSMIMvNxIehhzH9PkUDBaPnYP stAFsuocUfPWgZ38pdI7K99jyc/fO4iHcAtYvvN1AEj6IGxxK3UnPrtMkKDI71v4 6XBTyIvZz7W+IAoahGAHo0f6rjpHdbm+2e8xivZWis5uRA/BGVDlPllsGx1nHRZr rh23flhenUS8uqx24mu1tJvz0ohlTX/cbcTikclbmjd0qcmZ1XzBkNphr+KEfeqq wzz6zXGxdPkwev670h5eZCK4ogO7Kyw25faRHOLLzNJhflI1plm3IRIb3ni/ycPe MHsJ9nLBgx+Vnwvv59DX6K5vFAATThzHYBKiduAxWBZ6YEgfpop9lqkRxLs2LjQY PJUqr2dt9HRBgWkXtRACLyHHilJNXdLAmX9QfrBHhoaHpnzw41rsNMAsTvxQy/m2 v2gZBNXflX08dwde0wCuBeqeIiShOb5ebEOcjknuIEBAPGhGugQZOxqzJX4eDjxl jT4oh64Sh5fTzfwFbO/Y0CdNNLvrMWEsru3eU9hRM5d/aEmvQTguvu5n0PYprrZx S0lymSjmWTQXxNn7UCIx =y176 -----END PGP SIGNATURE----- _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Apparently Analagous Threads
- Hypervisor hangs on startup
- Xen Restarting on "Scrubbing Free RAM"
- reboot after "scrubbing free ram"
- Bug#748052: Bug#748052: Bug#748052: Bug#748052: xen-hypervisor-4.3-amd64: No USB keyboard af
- Bug#748052: Bug#748052: Bug#748052: Bug#748052: xen-hypervisor-4.3-a