* xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor
@ 2010-08-30 0:08 Mike Viau
2010-08-30 5:52 ` xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor? Pasi Kärkkäinen
2010-08-30 9:58 ` xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor Ian Campbell
0 siblings, 2 replies; 15+ messages in thread
From: Mike Viau @ 2010-08-30 0:08 UTC (permalink / raw)
To: xen-devel; +Cc: pkg-xen-devel
[-- Attachment #1.1: Type: text/plain, Size: 690 bytes --]
Hello list,
I have performed a fresh install (fully updated) of
squeeze amd64 and installed the xen-linux-system-2.6.32-5-xen-amd64 package
with all its dependencies.
When I restart and tried to boot the linux-image-2.6.32-5-xen-amd64 (pvops style) kernel on bare-metal my laptop boots fine.
When I use the hyper-visor on the system with the same linux-image-2.6.32-5-xen-amd64 kernel, it hangs and does not boot up...
Attached is my grub.cfg and relevant dmesg output (notice the failure messages start occurring near the bottom).
So, should I be filling a bug for this issue or does anyone on the list have a better suggestion?
Thanks
-M
[-- Attachment #1.2: Type: text/html, Size: 946 bytes --]
[-- Attachment #2: grub.cfg --]
[-- Type: application/octet-stream, Size: 5137 bytes --]
#
# 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="0"
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
}
insmod part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set dd594014-8570-45a6-be99-25f04210c866
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
load_video
insmod gfxterm
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 84df2200-cd6f-4896-9918-a9d4329dadc9
set locale_dir=($root)/grub/locale
set lang=en
insmod gettext
set timeout=5
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_msdos
insmod ext2
set root='(hd0,msdos5)'
search --no-floppy --fs-uuid --set dd594014-8570-45a6-be99-25f04210c866
insmod png
if background_image /usr/share/images/desktop-base/moreblue-orbit-grub.png ; then
set color_normal=black/black
set color_highlight=magenta/black
else
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
fi
### 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_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 84df2200-cd6f-4896-9918-a9d4329dadc9
echo 'Loading Linux 2.6.32-5-xen-amd64 ...'
linux /vmlinuz-2.6.32-5-xen-amd64 root=UUID=dd594014-8570-45a6-be99-25f04210c866 ro
echo 'Loading initial ramdisk ...'
initrd /initrd.img-2.6.32-5-xen-amd64
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-xen-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 84df2200-cd6f-4896-9918-a9d4329dadc9
echo 'Loading Linux 2.6.32-5-xen-amd64 ...'
linux /vmlinuz-2.6.32-5-xen-amd64 root=UUID=dd594014-8570-45a6-be99-25f04210c866 ro single
echo 'Loading initial ramdisk ...'
initrd /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_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 84df2200-cd6f-4896-9918-a9d4329dadc9
echo 'Loading Linux 2.6.32-5-amd64 ...'
linux /vmlinuz-2.6.32-5-amd64 root=UUID=dd594014-8570-45a6-be99-25f04210c866 ro
echo 'Loading initial ramdisk ...'
initrd /initrd.img-2.6.32-5-amd64
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 84df2200-cd6f-4896-9918-a9d4329dadc9
echo 'Loading Linux 2.6.32-5-amd64 ...'
linux /vmlinuz-2.6.32-5-amd64 root=UUID=dd594014-8570-45a6-be99-25f04210c866 ro single
echo 'Loading initial ramdisk ...'
initrd /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_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 84df2200-cd6f-4896-9918-a9d4329dadc9
echo 'Loading Linux 2.6.32-5-xen-amd64 ...'
multiboot /xen-4.0-amd64.gz placeholder
module /vmlinuz-2.6.32-5-xen-amd64 placeholder root=UUID=dd594014-8570-45a6-be99-25f04210c866 ro
echo 'Loading initial ramdisk ...'
module /initrd.img-2.6.32-5-xen-amd64
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-xen-amd64 and XEN 4.0-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os --class xen {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 84df2200-cd6f-4896-9918-a9d4329dadc9
echo 'Loading Linux 2.6.32-5-xen-amd64 ...'
multiboot /xen-4.0-amd64.gz placeholder
module /vmlinuz-2.6.32-5-xen-amd64 placeholder root=UUID=dd594014-8570-45a6-be99-25f04210c866 ro single
echo 'Loading initial ramdisk ...'
module /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 ###
[-- Attachment #3: xen-hang-on-boot.txt --]
[-- Type: text/plain, Size: 77277 bytes --]
Aug 21 09:08:27 BUBBLE kernel: imklog 4.6.4, log source = /proc/kmsg started.
Aug 21 09:08:27 BUBBLE rsyslogd: [origin software="rsyslogd" swVersion="4.6.4" x-pid="1196" x-info="http://www.rsyslog.com"] (re)start
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Initializing cgroup subsys cpuset
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Initializing cgroup subsys cpu
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Linux version 2.6.32-5-xen-amd64 (Debian 2.6.32-18) (ben@decadent.org.uk) (gcc version 4.3.5 (Debian 4.3.5-2) ) #1 SMP Sat Jul 24 04:03:11 UTC 2010
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Command line: root=UUID=dd594014-8570-45a6-be99-25f04210c866 ro
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] KERNEL supported cpus:
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Intel GenuineIntel
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] AMD AuthenticAMD
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Centaur CentaurHauls
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] xen_release_chunk: looking at area pfn c0000-f0000: 196608 pages freed
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] xen_release_chunk: looking at area pfn f4000-f4c80: 3200 pages freed
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] released 199808 pages of unused memory
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] BIOS-provided physical RAM map:
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: 0000000000000000 - 000000000009d800 (usable)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: 000000000009d800 - 0000000000100000 (reserved)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: 0000000000100000 - 00000000bfeb0000 (usable)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: 00000000bfeb0000 - 00000000bfecc000 (ACPI data)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: 00000000bfecc000 - 00000000bff00000 (ACPI NVS)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: 00000000bff00000 - 00000000c0000000 (reserved)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: 00000000f0000000 - 00000000f4000000 (reserved)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: 00000000fec00000 - 00000000fec10000 (reserved)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: 00000000fed00000 - 00000000fed00400 (reserved)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: 00000000fed14000 - 00000000fed1a000 (reserved)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: 00000000fed1c000 - 00000000fed90000 (reserved)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: 00000000fee00000 - 00000000fee01000 (reserved)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: 00000000ff000000 - 0000000100000000 (reserved)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] DMI present.
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] last_pfn = 0xbfeb0 max_arch_pfn = 0x400000000
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x50100070406, new 0x7010600070106
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000bfeb0000
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] RAMDISK: 016c5000 - 03000800
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: RSDP 00000000000f69b0 00024 (v02 LENOVO)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: XSDT 00000000bfebb27e 0008C (v01 LENOVO TP-7K 00002290 LTP 00000000)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: FACP 00000000bfebb400 000F4 (v03 LENOVO TP-7K 00002290 LNVO 00000001)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20090903/tbfadt-526)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 000000000000102C/0 (20090903/tbfadt-557)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: DSDT 00000000bfebb81d 1044C (v01 LENOVO TP-7K 00002290 MSFT 03000000)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: FACS 00000000bfee4000 00040
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: SSDT 00000000bfebb5b4 00269 (v01 LENOVO TP-7K 00002290 MSFT 03000000)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: ECDT 00000000bfecbc69 00052 (v01 LENOVO TP-7K 00002290 LNVO 00000001)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: TCPA 00000000bfecbcbb 00032 (v02 LENOVO TP-7K 00002290 LNVO 00000001)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: APIC 00000000bfecbced 00068 (v01 LENOVO TP-7K 00002290 LNVO 00000001)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: MCFG 00000000bfecbd55 0003C (v01 LENOVO TP-7K 00002290 LNVO 00000001)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: HPET 00000000bfecbd91 00038 (v01 LENOVO TP-7K 00002290 LNVO 00000001)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: SLIC 00000000bfecbe62 00176 (v01 LENOVO TP-7K 00002290 LTP 00000000)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: BOOT 00000000bfecbfd8 00028 (v01 LENOVO TP-7K 00002290 LTP 00000001)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: SSDT 00000000bfee26d9 0025F (v01 LENOVO TP-7K 00002290 INTL 20050513)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: SSDT 00000000bfee2938 000A6 (v01 LENOVO TP-7K 00002290 INTL 20050513)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: SSDT 00000000bfee29de 004F7 (v01 LENOVO TP-7K 00002290 INTL 20050513)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: SSDT 00000000bfee2ed5 001D8 (v01 LENOVO TP-7K 00002290 INTL 20050513)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: DMI detected: Lenovo ThinkPad R61
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: Added _OSI(Linux)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] No NUMA configuration found
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Faking a node at 0000000000000000-00000000bfeb0000
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Bootmem setup node 0 0000000000000000-00000000bfeb0000
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] NODE_DATA [0000000000008000 - 000000000000ffff]
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] bootmap [0000000000010000 - 0000000000027fd7] pages 18
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] (8 early reservations) ==> bootmem [0000000000 - 00bfeb0000]
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] #1 [00037a9000 - 00037ca000] XEN PAGETABLES ==> [00037a9000 - 00037ca000]
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] #2 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000]
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] #3 [0001000000 - 00016a49d4] TEXT DATA BSS ==> [0001000000 - 00016a49d4]
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] #4 [00016c5000 - 0003000800] RAMDISK ==> [00016c5000 - 0003000800]
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] #5 [0003001000 - 00037a9000] XEN START INFO ==> [0003001000 - 00037a9000]
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] #6 [00016a5000 - 00016a514c] BRK ==> [00016a5000 - 00016a514c]
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] #7 [0000100000 - 00006e0000] PGTABLE ==> [0000100000 - 00006e0000]
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] found SMP MP-table at [ffff8800000f69e0] f69e0
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Zone PFN ranges:
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] DMA 0x00000000 -> 0x00001000
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] DMA32 0x00001000 -> 0x00100000
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Normal 0x00100000 -> 0x00100000
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Movable zone start PFN for each node
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] early_node_map[2] active PFN ranges
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] 0: 0x00000000 -> 0x0000009d
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] 0: 0x00000100 -> 0x000bfeb0
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x1008
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] IOAPIC[0]: apic_id 1, version 0, address 0xfec00000, GSI 0-0
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 0000000000100000
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:30000000)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Booting paravirtualized kernel on Xen
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen version: 4.0.1-rc5 (preserve-AD) (dom0)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:2 nr_node_ids:1
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880003800000 s90328 r8192 d24360 u122880
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] pcpu-alloc: s90328 r8192 d24360 u122880 alloc=30*4096
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] pcpu-alloc: [0] 0 [0] 1
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Xen: using vcpu_info placement
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 773742
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Policy zone: DMA32
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Kernel command line: root=UUID=dd594014-8570-45a6-be99-25f04210c866 ro
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Initializing CPU#0
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] DMA: Placing 64MB software IO TLB between ffff8800065e2000 - ffff88000a5e2000
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] DMA: software IO TLB at phys 0x65e2000 - 0xa5e2000
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] xen_swiotlb_fixup: buf=ffff8800065e2000 size=67108864
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] xen_swiotlb_fixup: buf=ffff88000a642000 size=32768
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Memory: 2987740k/3144384k available (3138k kernel code, 396k absent, 156248k reserved, 1900k data, 596k init)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Hierarchical RCU implementation.
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] NR_IRQS:4352 nr_irqs:768
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] xen: sci override: source_irq=9 global_irq=9 trigger=c polarity=1
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] xen_allocate_pirq: returning irq 9 for gsi 9
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] xen: acpi sci 9
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Console: colour VGA+ 80x25
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] console [tty0] enabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] installing Xen timer for CPU 0
Aug 21 09:08:27 BUBBLE kernel: [ 0.000000] Detected 1995.064 MHz processor.
Aug 21 09:08:27 BUBBLE kernel: [ 0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3990.12 BogoMIPS (lpj=7980256)
Aug 21 09:08:27 BUBBLE kernel: [ 0.004000] Security Framework initialized
Aug 21 09:08:27 BUBBLE kernel: [ 0.004000] SELinux: Disabled at boot.
Aug 21 09:08:27 BUBBLE kernel: [ 0.004000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
Aug 21 09:08:27 BUBBLE kernel: [ 0.004214] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
Aug 21 09:08:27 BUBBLE kernel: [ 0.005322] Mount-cache hash table entries: 256
Aug 21 09:08:27 BUBBLE kernel: [ 0.005598] Initializing cgroup subsys ns
Aug 21 09:08:27 BUBBLE kernel: [ 0.005671] Initializing cgroup subsys cpuacct
Aug 21 09:08:27 BUBBLE kernel: [ 0.005740] Initializing cgroup subsys devices
Aug 21 09:08:27 BUBBLE kernel: [ 0.005807] Initializing cgroup subsys freezer
Aug 21 09:08:27 BUBBLE kernel: [ 0.005874] Initializing cgroup subsys net_cls
Aug 21 09:08:27 BUBBLE kernel: [ 0.005984] CPU: L1 I cache: 32K, L1 D cache: 32K
Aug 21 09:08:27 BUBBLE kernel: [ 0.006098] CPU: L2 cache: 4096K
Aug 21 09:08:27 BUBBLE kernel: [ 0.006166] CPU 0/0x0 -> Node 0
Aug 21 09:08:27 BUBBLE kernel: [ 0.006231] CPU: Physical Processor ID: 0
Aug 21 09:08:27 BUBBLE kernel: [ 0.006296] CPU: Processor Core ID: 0
Aug 21 09:08:27 BUBBLE kernel: [ 0.006364] mce: CPU supports 6 MCE banks
Aug 21 09:08:27 BUBBLE kernel: [ 0.006452] Performance Events: unsupported p6 CPU model 15 no PMU driver, software events only.
Aug 21 09:08:27 BUBBLE kernel: [ 0.006643] SMP alternatives: switching to UP code
Aug 21 09:08:27 BUBBLE kernel: [ 0.012000] ACPI: Core revision 20090903
Aug 21 09:08:27 BUBBLE kernel: [ 0.044365] installing Xen timer for CPU 1
Aug 21 09:08:27 BUBBLE kernel: [ 0.044477] SMP alternatives: switching to SMP code
Aug 21 09:08:27 BUBBLE kernel: [ 0.000007] Initializing CPU#1
Aug 21 09:08:27 BUBBLE kernel: [ 0.000055] CPU: L1 I cache: 32K, L1 D cache: 32K
Aug 21 09:08:27 BUBBLE kernel: [ 0.000058] CPU: L2 cache: 4096K
Aug 21 09:08:27 BUBBLE kernel: [ 0.000063] CPU 1/0x0 -> Node 0
Aug 21 09:08:27 BUBBLE kernel: [ 0.000065] CPU: Physical Processor ID: 0
Aug 21 09:08:27 BUBBLE kernel: [ 0.000067] CPU: Processor Core ID: 1
Aug 21 09:08:27 BUBBLE kernel: [ 0.048147] Brought up 2 CPUs
Aug 21 09:08:27 BUBBLE kernel: [ 0.048706] devtmpfs: initialized
Aug 21 09:08:27 BUBBLE kernel: [ 0.052180] Grant table initialized
Aug 21 09:08:27 BUBBLE kernel: [ 0.052180] regulator: core version 0.5
Aug 21 09:08:27 BUBBLE kernel: [ 0.052237] NET: Registered protocol family 16
Aug 21 09:08:27 BUBBLE kernel: [ 0.052415] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Aug 21 09:08:27 BUBBLE kernel: [ 0.052415] ACPI: bus type pci registered
Aug 21 09:08:27 BUBBLE kernel: [ 0.052415] PCI: MCFG configuration 0: base f0000000 segment 0 buses 0 - 63
Aug 21 09:08:27 BUBBLE kernel: [ 0.052415] PCI: MCFG area at f0000000 reserved in E820
Aug 21 09:08:27 BUBBLE kernel: [ 0.070187] PCI: Using MMCONFIG at f0000000 - f3ffffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.070253] PCI: Using configuration type 1 for base access
Aug 21 09:08:27 BUBBLE kernel: [ 0.070930] bio: create slab <bio-0> at 0
Aug 21 09:08:27 BUBBLE kernel: [ 0.074797] ACPI: EC: EC description table is found, configuring boot EC
Aug 21 09:08:27 BUBBLE kernel: [ 0.088525] ACPI: BIOS _OSI(Linux) query honored via DMI
Aug 21 09:08:27 BUBBLE kernel: [ 0.099222] ACPI: Interpreter enabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.100001] ACPI: (supports S0 S3 S4 S5)
Aug 21 09:08:27 BUBBLE kernel: [ 0.100001] ACPI: Using IOAPIC for interrupt routing
Aug 21 09:08:27 BUBBLE kernel: [ 0.115070] ACPI: EC: GPE = 0x12, I/O: command/status = 0x66, data = 0x62
Aug 21 09:08:27 BUBBLE kernel: [ 0.115209] ACPI: Power Resource [PUBS] (on)
Aug 21 09:08:27 BUBBLE kernel: [ 0.118045] ACPI: ACPI Dock Station Driver: 3 docks/bays found
Aug 21 09:08:27 BUBBLE kernel: [ 0.118715] ACPI: PCI Root Bridge [PCI0] (0000:00)
Aug 21 09:08:27 BUBBLE kernel: [ 0.119061] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.119133] pci 0000:00:01.0: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.120356] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.120434] pci 0000:00:19.0: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.121270] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.121348] pci 0000:00:1a.7: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.121780] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.121857] pci 0000:00:1b.0: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.122227] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.122305] pci 0000:00:1c.0: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.122686] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.122763] pci 0000:00:1c.1: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.123144] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.123222] pci 0000:00:1c.2: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.123603] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.123681] pci 0000:00:1c.3: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.124001] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.124001] pci 0000:00:1c.4: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.124001] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.124001] pci 0000:00:1d.7: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.124001] pci 0000:00:1f.0: quirk: region 1000-107f claimed by ICH6 ACPI/GPIO/TCO
Aug 21 09:08:27 BUBBLE kernel: [ 0.124001] pci 0000:00:1f.0: quirk: region 1180-11bf claimed by ICH6 GPIO
Aug 21 09:08:27 BUBBLE kernel: [ 0.124001] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 1600 (mask 007f)
Aug 21 09:08:27 BUBBLE kernel: [ 0.124001] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 15e0 (mask 000f)
Aug 21 09:08:27 BUBBLE kernel: [ 0.124001] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 1680 (mask 001f)
Aug 21 09:08:27 BUBBLE kernel: [ 0.124651] pci 0000:00:1f.2: PME# supported from D3hot
Aug 21 09:08:27 BUBBLE kernel: [ 0.124727] pci 0000:00:1f.2: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.126329] pci 0000:03:00.0: PME# supported from D0 D3hot
Aug 21 09:08:27 BUBBLE kernel: [ 0.126409] pci 0000:03:00.0: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.126606] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
Aug 21 09:08:27 BUBBLE kernel: [ 0.127800] pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.127879] pci 0000:15:00.0: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.128001] pci 0000:15:00.1: PME# supported from D0 D1 D2 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.128001] pci 0000:15:00.1: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.128001] pci 0000:15:00.2: PME# supported from D0 D1 D2 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.128001] pci 0000:15:00.2: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.128327] pci 0000:15:00.3: PME# supported from D0 D1 D2 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.128406] pci 0000:15:00.3: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.128816] pci 0000:15:00.4: PME# supported from D0 D1 D2 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.128895] pci 0000:15:00.4: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.129306] pci 0000:15:00.5: PME# supported from D0 D1 D2 D3hot D3cold
Aug 21 09:08:27 BUBBLE kernel: [ 0.129384] pci 0000:15:00.5: PME# disabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.129674] pci 0000:00:1e.0: transparent bridge
Aug 21 09:08:27 BUBBLE kernel: [ 0.145768] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11)
Aug 21 09:08:27 BUBBLE kernel: [ 0.146586] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
Aug 21 09:08:27 BUBBLE kernel: [ 0.147376] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
Aug 21 09:08:27 BUBBLE kernel: [ 0.148171] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
Aug 21 09:08:27 BUBBLE kernel: [ 0.148990] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
Aug 21 09:08:27 BUBBLE kernel: [ 0.149810] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11)
Aug 21 09:08:27 BUBBLE kernel: [ 0.150631] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11)
Aug 21 09:08:27 BUBBLE kernel: [ 0.151450] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
Aug 21 09:08:27 BUBBLE kernel: [ 0.152124] xen_balloon: Initialising balloon driver with page order 0.
Aug 21 09:08:27 BUBBLE kernel: [ 0.152289] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Aug 21 09:08:27 BUBBLE kernel: [ 0.152382] vgaarb: loaded
Aug 21 09:08:27 BUBBLE kernel: [ 0.152491] PCI: Using ACPI for IRQ routing
Aug 21 09:08:27 BUBBLE kernel: [ 0.152653] Switching to clocksource xen
Aug 21 09:08:27 BUBBLE kernel: [ 0.153859] pnp: PnP ACPI init
Aug 21 09:08:27 BUBBLE kernel: [ 0.153934] ACPI: bus type pnp registered
Aug 21 09:08:27 BUBBLE kernel: [ 0.156350] xen_allocate_pirq: returning irq 13 for gsi 13
Aug 21 09:08:27 BUBBLE kernel: [ 0.156489] xen_allocate_pirq: returning irq 8 for gsi 8
Aug 21 09:08:27 BUBBLE kernel: [ 0.156628] xen_allocate_pirq: returning irq 1 for gsi 1
Aug 21 09:08:27 BUBBLE kernel: [ 0.156760] xen_allocate_pirq: returning irq 12 for gsi 12
Aug 21 09:08:27 BUBBLE kernel: [ 0.159228] pnp: PnP ACPI: found 11 devices
Aug 21 09:08:27 BUBBLE kernel: [ 0.159295] ACPI: ACPI bus type pnp unregistered
Aug 21 09:08:27 BUBBLE kernel: [ 0.159370] system 00:00: iomem range 0x0-0x9ffff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.159440] system 00:00: iomem range 0xc0000-0xc3fff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.159510] system 00:00: iomem range 0xc4000-0xc7fff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.159580] system 00:00: iomem range 0xc8000-0xcbfff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.159650] system 00:00: iomem range 0xcc000-0xcffff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.159720] system 00:00: iomem range 0xd0000-0xd3fff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.159790] system 00:00: iomem range 0xe0000-0xe3fff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.159860] system 00:00: iomem range 0xe4000-0xe7fff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.159931] system 00:00: iomem range 0xe8000-0xebfff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160002] system 00:00: iomem range 0xec000-0xeffff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160072] system 00:00: iomem range 0xf0000-0xfffff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160141] system 00:00: iomem range 0x100000-0xbfffffff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160224] system 00:00: iomem range 0xfec00000-0xfed3ffff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160306] system 00:00: iomem range 0xfed4c000-0xffffffff could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160404] system 00:02: ioport range 0x164e-0x164f has been reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160475] system 00:02: ioport range 0x1000-0x107f has been reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160544] system 00:02: ioport range 0x1180-0x11bf has been reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160614] system 00:02: ioport range 0x800-0x80f has been reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160684] system 00:02: ioport range 0x15e0-0x15ef has been reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160753] system 00:02: ioport range 0x1600-0x165f could not be reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160824] system 00:02: iomem range 0xf0000000-0xf3ffffff has been reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160895] system 00:02: iomem range 0xfed1c000-0xfed1ffff has been reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.160965] system 00:02: iomem range 0xfed14000-0xfed17fff has been reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.161036] system 00:02: iomem range 0xfed18000-0xfed18fff has been reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.161106] system 00:02: iomem range 0xfed19000-0xfed19fff has been reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.161176] system 00:02: iomem range 0xfed45000-0xfed4bfff has been reserved
Aug 21 09:08:27 BUBBLE kernel: [ 0.167421] PM-Timer failed consistency check (0x0xffffff) - aborting.
Aug 21 09:08:27 BUBBLE kernel: [ 0.167720] pci 0000:01:00.0: BAR 6: can't allocate mem resource [0xf0000000-0xefffffff]
Aug 21 09:08:27 BUBBLE kernel: [ 0.167803] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
Aug 21 09:08:27 BUBBLE kernel: [ 0.167873] pci 0000:00:01.0: IO window: 0x2000-0x2fff
Aug 21 09:08:27 BUBBLE kernel: [ 0.167946] pci 0000:00:01.0: MEM window: 0xd4000000-0xd6ffffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:01.0: PREFETCH window: 0x000000e0000000-0x000000efffffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.0: IO window: 0x3000-0x3fff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.0: MEM window: 0xfc000000-0xfdffffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.0: PREFETCH window: 0x000000f8000000-0x000000f80fffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.1: IO window: 0x4000-0x4fff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.1: MEM window: 0xdc100000-0xdf2fffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.1: PREFETCH window: 0x000000dfd00000-0x000000dfdfffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.2: PCI bridge, secondary bus 0000:04
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.2: IO window: 0x5000-0x5fff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.2: MEM window: 0xd8000000-0xd9ffffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.2: PREFETCH window: 0x000000dfa00000-0x000000dfafffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.3: PCI bridge, secondary bus 0000:05
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.3: IO window: 0x6000-0x6fff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.3: MEM window: 0xd0000000-0xd1ffffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.3: PREFETCH window: 0x000000df700000-0x000000df7fffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.4: PCI bridge, secondary bus 0000:0d
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.4: IO window: 0x7000-0x7fff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.4: MEM window: 0xcc000000-0xcdffffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1c.4: PREFETCH window: 0x000000df400000-0x000000df4fffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:15:00.0: CardBus bridge, secondary bus 0000:16
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:15:00.0: IO window: 0x008000-0x0080ff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:15:00.0: IO window: 0x008400-0x0084ff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:15:00.0: PREFETCH window: 0xf4000000-0xf7ffffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:15:00.0: MEM window: 0xc0000000-0xc3ffffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:15
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1e.0: IO window: 0x8000-0xbfff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1e.0: MEM window: 0xf8100000-0xfbffffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.168005] pci 0000:00:1e.0: PREFETCH window: 0x000000f4000000-0x000000f7ffffff
Aug 21 09:08:27 BUBBLE kernel: [ 0.170509] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Aug 21 09:08:27 BUBBLE kernel: [ 0.170628] pci 0000:00:1c.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
Aug 21 09:08:27 BUBBLE kernel: [ 0.170752] pci 0000:00:1c.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
Aug 21 09:08:27 BUBBLE kernel: [ 0.170879] pci 0000:00:1c.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22
Aug 21 09:08:27 BUBBLE kernel: [ 0.171003] pci 0000:00:1c.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
Aug 21 09:08:27 BUBBLE kernel: [ 0.171113] xen_allocate_pirq: returning irq 20 for gsi 20
Aug 21 09:08:27 BUBBLE kernel: [ 0.171184] Already setup the GSI :20
Aug 21 09:08:27 BUBBLE kernel: [ 0.171249] pci 0000:00:1c.4: PCI INT A -> GSI 20 (level, low) -> IRQ 20
Aug 21 09:08:27 BUBBLE kernel: [ 0.171341] pci 0000:00:1e.0: enabling device (0005 -> 0007)
Aug 21 09:08:27 BUBBLE kernel: [ 0.171457] xen_allocate_pirq: returning irq 16 for gsi 16
Aug 21 09:08:27 BUBBLE kernel: [ 0.171527] Already setup the GSI :16
Aug 21 09:08:27 BUBBLE kernel: [ 0.171592] pci 0000:15:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Aug 21 09:08:27 BUBBLE kernel: [ 0.171804] NET: Registered protocol family 2
Aug 21 09:08:27 BUBBLE kernel: [ 0.172243] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
Aug 21 09:08:27 BUBBLE kernel: [ 0.175204] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
Aug 21 09:08:27 BUBBLE kernel: [ 0.179604] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Aug 21 09:08:27 BUBBLE kernel: [ 0.180250] TCP: Hash tables configured (established 524288 bind 65536)
Aug 21 09:08:27 BUBBLE kernel: [ 0.180322] TCP reno registered
Aug 21 09:08:27 BUBBLE kernel: [ 0.180527] NET: Registered protocol family 1
Aug 21 09:08:27 BUBBLE kernel: [ 0.181081] Unpacking initramfs...
Aug 21 09:08:27 BUBBLE kernel: [ 0.220141] Freeing initrd memory: 25838k freed
Aug 21 09:08:27 BUBBLE kernel: [ 0.235769] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Aug 21 09:08:27 BUBBLE kernel: [ 0.235850] DMA: Placing 64MB software IO TLB between ffff8800065e2000 - ffff88000a5e2000
Aug 21 09:08:27 BUBBLE kernel: [ 0.235932] DMA: software IO TLB at phys 0x65e2000 - 0xa5e2000
Aug 21 09:08:27 BUBBLE kernel: [ 0.236138] Simple Boot Flag at 0x35 set to 0x1
Aug 21 09:08:27 BUBBLE kernel: [ 0.236660] audit: initializing netlink socket (disabled)
Aug 21 09:08:27 BUBBLE kernel: [ 0.236744] type=2000 audit(1282396097.911:1): initialized
Aug 21 09:08:27 BUBBLE kernel: [ 0.240488] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Aug 21 09:08:27 BUBBLE kernel: [ 0.242401] VFS: Disk quotas dquot_6.5.2
Aug 21 09:08:27 BUBBLE kernel: [ 0.246349] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Aug 21 09:08:27 BUBBLE kernel: [ 0.248303] msgmni has been set to 5885
Aug 21 09:08:27 BUBBLE kernel: [ 0.248652] alg: No test for stdrng (krng)
Aug 21 09:08:27 BUBBLE kernel: [ 0.248787] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Aug 21 09:08:27 BUBBLE kernel: [ 0.248869] io scheduler noop registered
Aug 21 09:08:27 BUBBLE kernel: [ 0.248934] io scheduler anticipatory registered
Aug 21 09:08:27 BUBBLE kernel: [ 0.248999] io scheduler deadline registered
Aug 21 09:08:27 BUBBLE kernel: [ 0.249103] io scheduler cfq registered (default)
Aug 21 09:08:27 BUBBLE kernel: [ 0.258360] hpet_acpi_add: no address or irqs in _CRS
Aug 21 09:08:27 BUBBLE kernel: [ 0.258460] Linux agpgart interface v0.103
Aug 21 09:08:27 BUBBLE kernel: [ 0.258611] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Aug 21 09:08:27 BUBBLE kernel: [ 0.259168] input: Macintosh mouse button emulation as /devices/virtual/input/input0
Aug 21 09:08:27 BUBBLE kernel: [ 0.259316] PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Aug 21 09:08:27 BUBBLE kernel: [ 0.267171] serio: i8042 KBD port at 0x60,0x64 irq 1
Aug 21 09:08:27 BUBBLE kernel: [ 0.267244] serio: i8042 AUX port at 0x60,0x64 irq 12
Aug 21 09:08:27 BUBBLE kernel: [ 0.267412] mice: PS/2 mouse device common for all mice
Aug 21 09:08:27 BUBBLE kernel: [ 0.267560] rtc_cmos 00:07: RTC can wake from S4
Aug 21 09:08:27 BUBBLE kernel: [ 0.267678] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
Aug 21 09:08:27 BUBBLE kernel: [ 0.267807] rtc0: alarms up to one month, y3k, 114 bytes nvram
Aug 21 09:08:27 BUBBLE kernel: [ 0.267886] cpuidle: using governor ladder
Aug 21 09:08:27 BUBBLE kernel: [ 0.267952] cpuidle: using governor menu
Aug 21 09:08:27 BUBBLE kernel: [ 0.268021] No iBFT detected.
Aug 21 09:08:27 BUBBLE kernel: [ 0.268417] TCP cubic registered
Aug 21 09:08:27 BUBBLE kernel: [ 0.268643] NET: Registered protocol family 10
Aug 21 09:08:27 BUBBLE kernel: [ 0.269277] lo: Disabled Privacy Extensions
Aug 21 09:08:27 BUBBLE kernel: [ 0.269653] Mobile IPv6
Aug 21 09:08:27 BUBBLE kernel: [ 0.269720] NET: Registered protocol family 17
Aug 21 09:08:27 BUBBLE kernel: [ 0.269899] registered taskstats version 1
Aug 21 09:08:27 BUBBLE kernel: [ 0.271622] rtc_cmos 00:07: setting system clock to 2010-08-21 13:08:17 UTC (1282396097)
Aug 21 09:08:27 BUBBLE kernel: [ 0.271773] Initalizing network drop monitor service
Aug 21 09:08:27 BUBBLE kernel: [ 0.271921] Freeing unused kernel memory: 596k freed
Aug 21 09:08:27 BUBBLE kernel: [ 0.272302] Write protecting the kernel read-only data: 4312k
Aug 21 09:08:27 BUBBLE kernel: [ 0.272838] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
Aug 21 09:08:27 BUBBLE kernel: [ 0.309082] udev: starting version 160
Aug 21 09:08:27 BUBBLE kernel: [ 0.483828] e1000e: Intel(R) PRO/1000 Network Driver - 1.0.2-k2
Aug 21 09:08:27 BUBBLE kernel: [ 0.483904] e1000e: Copyright (c) 1999-2008 Intel Corporation.
Aug 21 09:08:27 BUBBLE kernel: [ 0.484005] xen_allocate_pirq: returning irq 20 for gsi 20
Aug 21 09:08:27 BUBBLE kernel: [ 0.484159] Already setup the GSI :20
Aug 21 09:08:27 BUBBLE kernel: [ 0.484226] e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
Aug 21 09:08:27 BUBBLE kernel: [ 0.518058] usbcore: registered new interface driver usbfs
Aug 21 09:08:27 BUBBLE kernel: [ 0.518167] usbcore: registered new interface driver hub
Aug 21 09:08:27 BUBBLE kernel: [ 0.536243] usbcore: registered new device driver usb
Aug 21 09:08:27 BUBBLE kernel: [ 0.540833] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Aug 21 09:08:27 BUBBLE kernel: [ 0.546084] SCSI subsystem initialized
Aug 21 09:08:27 BUBBLE kernel: [ 0.571199] ricoh-mmc: Ricoh MMC Controller disabling driver
Aug 21 09:08:27 BUBBLE kernel: [ 0.571273] ricoh-mmc: Copyright(c) Philip Langdale
Aug 21 09:08:27 BUBBLE kernel: [ 0.571369] ricoh-mmc: Ricoh MMC controller found at 0000:15:00.3 [1180:0843] (rev 11)
Aug 21 09:08:27 BUBBLE kernel: [ 0.571501] ricoh-mmc: Controller is now disabled.
Aug 21 09:08:27 BUBBLE kernel: [ 0.578416] firewire_ohci 0000:15:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
Aug 21 09:08:27 BUBBLE kernel: [ 0.582136] thermal LNXTHERM:01: registered as thermal_zone0
Aug 21 09:08:27 BUBBLE kernel: [ 0.582218] ACPI: Thermal Zone [THM0] (36 C)
Aug 21 09:08:27 BUBBLE kernel: [ 0.584190] sdhci: Secure Digital Host Controller Interface driver
Aug 21 09:08:27 BUBBLE kernel: [ 0.584219] thermal LNXTHERM:02: registered as thermal_zone1
Aug 21 09:08:27 BUBBLE kernel: [ 0.584232] ACPI: Thermal Zone [THM1] (41 C)
Aug 21 09:08:27 BUBBLE kernel: [ 0.584389] sdhci: Copyright(c) Pierre Ossman
Aug 21 09:08:27 BUBBLE kernel: [ 0.660018] firewire_ohci: Added fw-ohci device 0000:15:00.1, OHCI version 1.10
Aug 21 09:08:27 BUBBLE kernel: [ 0.660162] sdhci-pci 0000:15:00.2: SDHCI controller found [1180:0822] (rev 21)
Aug 21 09:08:27 BUBBLE kernel: [ 0.660317] sdhci-pci 0000:15:00.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Aug 21 09:08:27 BUBBLE kernel: [ 0.661435] sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
Aug 21 09:08:27 BUBBLE kernel: [ 0.662633] Registered led device: mmc0::
Aug 21 09:08:27 BUBBLE kernel: [ 0.663737] mmc0: SDHCI controller on PCI [0000:15:00.2] using DMA
Aug 21 09:08:27 BUBBLE kernel: [ 0.742668] 0000:00:19.0: eth0: (PCI Express:2.5GB/s:Width x1) 00:15:58:c9:91:92
Aug 21 09:08:27 BUBBLE kernel: [ 0.742753] 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
Aug 21 09:08:27 BUBBLE kernel: [ 0.742859] 0000:00:19.0: eth0: MAC: 6, PHY: 6, PBA No: ffffff-0ff
Aug 21 09:08:27 BUBBLE kernel: [ 0.743236] ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0
Aug 21 09:08:27 BUBBLE kernel: [ 0.743557] ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0
Aug 21 09:08:27 BUBBLE kernel: [ 0.743641] xen_allocate_pirq: returning irq 22 for gsi 22
Aug 21 09:08:27 BUBBLE kernel: [ 0.743711] Already setup the GSI :22
Aug 21 09:08:27 BUBBLE kernel: [ 0.743776] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 22 (level, low) -> IRQ 22
Aug 21 09:08:27 BUBBLE kernel: [ 0.743877] ehci_hcd 0000:00:1a.7: EHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.743965] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
Aug 21 09:08:27 BUBBLE kernel: [ 0.748033] ehci_hcd 0000:00:1a.7: irq 22, io mem 0xfe225800
Aug 21 09:08:27 BUBBLE kernel: [ 0.756021] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Aug 21 09:08:27 BUBBLE kernel: [ 0.756119] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Aug 21 09:08:27 BUBBLE kernel: [ 0.756188] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 21 09:08:27 BUBBLE kernel: [ 0.756269] usb usb1: Product: EHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.756334] usb usb1: Manufacturer: Linux 2.6.32-5-xen-amd64 ehci_hcd
Aug 21 09:08:27 BUBBLE kernel: [ 0.756401] usb usb1: SerialNumber: 0000:00:1a.7
Aug 21 09:08:27 BUBBLE kernel: [ 0.756555] usb usb1: configuration #1 chosen from 1 choice
Aug 21 09:08:27 BUBBLE kernel: [ 0.756664] hub 1-0:1.0: USB hub found
Aug 21 09:08:27 BUBBLE kernel: [ 0.756747] hub 1-0:1.0: 4 ports detected
Aug 21 09:08:27 BUBBLE kernel: [ 0.756914] xen_allocate_pirq: returning irq 16 for gsi 16
Aug 21 09:08:27 BUBBLE kernel: [ 0.756984] Already setup the GSI :16
Aug 21 09:08:27 BUBBLE kernel: [ 0.757049] ata_piix 0000:00:1f.1: PCI INT C -> GSI 16 (level, low) -> IRQ 16
Aug 21 09:08:27 BUBBLE kernel: [ 0.757331] scsi0 : ata_piix
Aug 21 09:08:27 BUBBLE kernel: [ 0.757522] scsi1 : ata_piix
Aug 21 09:08:27 BUBBLE kernel: [ 0.758591] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x18c0 irq 14
Aug 21 09:08:27 BUBBLE kernel: [ 0.758660] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x18c8 irq 15
Aug 21 09:08:27 BUBBLE kernel: [ 0.758813] xen_allocate_pirq: returning irq 16 for gsi 16
Aug 21 09:08:27 BUBBLE kernel: [ 0.758885] Already setup the GSI :16
Aug 21 09:08:27 BUBBLE kernel: [ 0.758950] ahci 0000:00:1f.2: PCI INT B -> GSI 16 (level, low) -> IRQ 16
Aug 21 09:08:27 BUBBLE kernel: [ 0.759274] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 1.5 Gbps 0x5 impl SATA mode
Aug 21 09:08:27 BUBBLE kernel: [ 0.759382] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc
Aug 21 09:08:27 BUBBLE kernel: [ 0.759779] scsi2 : ahci
Aug 21 09:08:27 BUBBLE kernel: [ 0.759950] scsi3 : ahci
Aug 21 09:08:27 BUBBLE kernel: [ 0.760133] scsi4 : ahci
Aug 21 09:08:27 BUBBLE kernel: [ 0.760337] ata3: SATA max UDMA/133 abar m2048@0xfe225000 port 0xfe225100 irq 746
Aug 21 09:08:27 BUBBLE kernel: [ 0.760417] ata4: DUMMY
Aug 21 09:08:27 BUBBLE kernel: [ 0.760483] ata5: SATA max UDMA/133 abar m2048@0xfe225000 port 0xfe225200 irq 746
Aug 21 09:08:27 BUBBLE kernel: [ 0.760925] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
Aug 21 09:08:27 BUBBLE kernel: [ 0.761238] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
Aug 21 09:08:27 BUBBLE kernel: [ 0.761340] ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19
Aug 21 09:08:27 BUBBLE kernel: [ 0.761438] ehci_hcd 0000:00:1d.7: EHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.761515] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
Aug 21 09:08:27 BUBBLE kernel: [ 0.761674] ehci_hcd 0000:00:1d.7: debug port 1
Aug 21 09:08:27 BUBBLE kernel: [ 0.765669] ehci_hcd 0000:00:1d.7: irq 19, io mem 0xfe225c00
Aug 21 09:08:27 BUBBLE kernel: [ 0.780024] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Aug 21 09:08:27 BUBBLE kernel: [ 0.780118] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Aug 21 09:08:27 BUBBLE kernel: [ 0.780188] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 21 09:08:27 BUBBLE kernel: [ 0.780269] usb usb2: Product: EHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.780335] usb usb2: Manufacturer: Linux 2.6.32-5-xen-amd64 ehci_hcd
Aug 21 09:08:27 BUBBLE kernel: [ 0.780404] usb usb2: SerialNumber: 0000:00:1d.7
Aug 21 09:08:27 BUBBLE kernel: [ 0.780555] usb usb2: configuration #1 chosen from 1 choice
Aug 21 09:08:27 BUBBLE kernel: [ 0.780675] hub 2-0:1.0: USB hub found
Aug 21 09:08:27 BUBBLE kernel: [ 0.780757] hub 2-0:1.0: 6 ports detected
Aug 21 09:08:27 BUBBLE kernel: [ 0.873530] uhci_hcd: USB Universal Host Controller Interface driver
Aug 21 09:08:27 BUBBLE kernel: [ 0.873646] xen_allocate_pirq: returning irq 20 for gsi 20
Aug 21 09:08:27 BUBBLE kernel: [ 0.873721] Already setup the GSI :20
Aug 21 09:08:27 BUBBLE kernel: [ 0.873787] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
Aug 21 09:08:27 BUBBLE kernel: [ 0.873877] uhci_hcd 0000:00:1a.0: UHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.873953] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Aug 21 09:08:27 BUBBLE kernel: [ 0.874130] uhci_hcd 0000:00:1a.0: irq 20, io base 0x00001820
Aug 21 09:08:27 BUBBLE kernel: [ 0.874284] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Aug 21 09:08:27 BUBBLE kernel: [ 0.874354] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 21 09:08:27 BUBBLE kernel: [ 0.874435] usb usb3: Product: UHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.874503] usb usb3: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
Aug 21 09:08:27 BUBBLE kernel: [ 0.874571] usb usb3: SerialNumber: 0000:00:1a.0
Aug 21 09:08:27 BUBBLE kernel: [ 0.874724] usb usb3: configuration #1 chosen from 1 choice
Aug 21 09:08:27 BUBBLE kernel: [ 0.874882] hub 3-0:1.0: USB hub found
Aug 21 09:08:27 BUBBLE kernel: [ 0.874966] hub 3-0:1.0: 2 ports detected
Aug 21 09:08:27 BUBBLE kernel: [ 0.876757] uhci_hcd 0000:00:1a.1: power state changed by ACPI to D0
Aug 21 09:08:27 BUBBLE kernel: [ 0.877068] uhci_hcd 0000:00:1a.1: power state changed by ACPI to D0
Aug 21 09:08:27 BUBBLE kernel: [ 0.877152] xen_allocate_pirq: returning irq 21 for gsi 21
Aug 21 09:08:27 BUBBLE kernel: [ 0.877228] Already setup the GSI :21
Aug 21 09:08:27 BUBBLE kernel: [ 0.877298] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
Aug 21 09:08:27 BUBBLE kernel: [ 0.877392] uhci_hcd 0000:00:1a.1: UHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.877482] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
Aug 21 09:08:27 BUBBLE kernel: [ 0.877659] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840
Aug 21 09:08:27 BUBBLE kernel: [ 0.877823] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Aug 21 09:08:27 BUBBLE kernel: [ 0.877901] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 21 09:08:27 BUBBLE kernel: [ 0.877987] usb usb4: Product: UHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.878061] usb usb4: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
Aug 21 09:08:27 BUBBLE kernel: [ 0.878131] usb usb4: SerialNumber: 0000:00:1a.1
Aug 21 09:08:27 BUBBLE kernel: [ 0.878335] usb usb4: configuration #1 chosen from 1 choice
Aug 21 09:08:27 BUBBLE kernel: [ 0.878488] hub 4-0:1.0: USB hub found
Aug 21 09:08:27 BUBBLE kernel: [ 0.878572] hub 4-0:1.0: 2 ports detected
Aug 21 09:08:27 BUBBLE kernel: [ 0.879093] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
Aug 21 09:08:27 BUBBLE kernel: [ 0.879922] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
Aug 21 09:08:27 BUBBLE kernel: [ 0.880002] xen_allocate_pirq: returning irq 16 for gsi 16
Aug 21 09:08:27 BUBBLE kernel: [ 0.880085] Already setup the GSI :16
Aug 21 09:08:27 BUBBLE kernel: [ 0.880150] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Aug 21 09:08:27 BUBBLE kernel: [ 0.880241] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.880318] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
Aug 21 09:08:27 BUBBLE kernel: [ 0.887082] uhci_hcd 0000:00:1d.0: irq 16, io base 0x00001860
Aug 21 09:08:27 BUBBLE kernel: [ 0.887245] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
Aug 21 09:08:27 BUBBLE kernel: [ 0.887315] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 21 09:08:27 BUBBLE kernel: [ 0.887398] usb usb5: Product: UHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.887466] usb usb5: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
Aug 21 09:08:27 BUBBLE kernel: [ 0.887534] usb usb5: SerialNumber: 0000:00:1d.0
Aug 21 09:08:27 BUBBLE kernel: [ 0.887743] usb usb5: configuration #1 chosen from 1 choice
Aug 21 09:08:27 BUBBLE kernel: [ 0.887901] hub 5-0:1.0: USB hub found
Aug 21 09:08:27 BUBBLE kernel: [ 0.887983] hub 5-0:1.0: 2 ports detected
Aug 21 09:08:27 BUBBLE kernel: [ 0.888171] xen_allocate_pirq: returning irq 17 for gsi 17
Aug 21 09:08:27 BUBBLE kernel: [ 0.888251] Already setup the GSI :17
Aug 21 09:08:27 BUBBLE kernel: [ 0.888322] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
Aug 21 09:08:27 BUBBLE kernel: [ 0.888415] uhci_hcd 0000:00:1d.1: UHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.888495] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
Aug 21 09:08:27 BUBBLE kernel: [ 0.888643] uhci_hcd 0000:00:1d.1: irq 17, io base 0x00001880
Aug 21 09:08:27 BUBBLE kernel: [ 0.888791] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
Aug 21 09:08:27 BUBBLE kernel: [ 0.888861] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 21 09:08:27 BUBBLE kernel: [ 0.888944] usb usb6: Product: UHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.889011] usb usb6: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
Aug 21 09:08:27 BUBBLE kernel: [ 0.889079] usb usb6: SerialNumber: 0000:00:1d.1
Aug 21 09:08:27 BUBBLE kernel: [ 0.889267] usb usb6: configuration #1 chosen from 1 choice
Aug 21 09:08:27 BUBBLE kernel: [ 0.889416] hub 6-0:1.0: USB hub found
Aug 21 09:08:27 BUBBLE kernel: [ 0.889497] hub 6-0:1.0: 2 ports detected
Aug 21 09:08:27 BUBBLE kernel: [ 0.889907] uhci_hcd 0000:00:1d.2: power state changed by ACPI to D0
Aug 21 09:08:27 BUBBLE kernel: [ 0.890219] uhci_hcd 0000:00:1d.2: power state changed by ACPI to D0
Aug 21 09:08:27 BUBBLE kernel: [ 0.890299] xen_allocate_pirq: returning irq 18 for gsi 18
Aug 21 09:08:27 BUBBLE kernel: [ 0.890370] Already setup the GSI :18
Aug 21 09:08:27 BUBBLE kernel: [ 0.890435] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Aug 21 09:08:27 BUBBLE kernel: [ 0.890523] uhci_hcd 0000:00:1d.2: UHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.890599] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
Aug 21 09:08:27 BUBBLE kernel: [ 0.890792] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0
Aug 21 09:08:27 BUBBLE kernel: [ 0.890942] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
Aug 21 09:08:27 BUBBLE kernel: [ 0.891012] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 21 09:08:27 BUBBLE kernel: [ 0.891093] usb usb7: Product: UHCI Host Controller
Aug 21 09:08:27 BUBBLE kernel: [ 0.891159] usb usb7: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
Aug 21 09:08:27 BUBBLE kernel: [ 0.891226] usb usb7: SerialNumber: 0000:00:1d.2
Aug 21 09:08:27 BUBBLE kernel: [ 0.891366] usb usb7: configuration #1 chosen from 1 choice
Aug 21 09:08:27 BUBBLE kernel: [ 0.891469] hub 7-0:1.0: USB hub found
Aug 21 09:08:27 BUBBLE kernel: [ 0.891549] hub 7-0:1.0: 2 ports detected
Aug 21 09:08:27 BUBBLE kernel: [ 0.920734] ata1.00: ATAPI: HL-DT-ST DVDRAM GMA-4082N, PX07, max UDMA/33
Aug 21 09:08:27 BUBBLE kernel: [ 0.936382] ata1.00: configured for UDMA/33
Aug 21 09:08:27 BUBBLE kernel: [ 0.942153] scsi 0:0:0:0: CD-ROM HL-DT-ST DVDRAM GMA-4082N PX07 PQ: 0 ANSI: 5
Aug 21 09:08:27 BUBBLE kernel: [ 1.080036] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Aug 21 09:08:27 BUBBLE kernel: [ 1.081384] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Aug 21 09:08:27 BUBBLE kernel: [ 1.081469] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
Aug 21 09:08:27 BUBBLE kernel: [ 1.082656] ata3.00: ATA-8: Hitachi HTS722020K9SA00, DC4OC76A, max UDMA/133
Aug 21 09:08:27 BUBBLE kernel: [ 1.082725] ata3.00: 390721968 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
Aug 21 09:08:27 BUBBLE kernel: [ 1.084261] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Aug 21 09:08:27 BUBBLE kernel: [ 1.084345] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
Aug 21 09:08:27 BUBBLE kernel: [ 1.085543] ata3.00: configured for UDMA/133
Aug 21 09:08:27 BUBBLE kernel: [ 1.088029] ata5: SATA link down (SStatus 0 SControl 300)
Aug 21 09:08:27 BUBBLE kernel: [ 1.102509] ata3.00: configured for UDMA/133
Aug 21 09:08:27 BUBBLE kernel: [ 1.102577] ata3: EH complete
Aug 21 09:08:27 BUBBLE kernel: [ 1.102758] scsi 2:0:0:0: Direct-Access ATA Hitachi HTS72202 DC4O PQ: 0 ANSI: 5
Aug 21 09:08:27 BUBBLE kernel: [ 1.118241] sd 2:0:0:0: [sda] 390721968 512-byte logical blocks: (200 GB/186 GiB)
Aug 21 09:08:27 BUBBLE kernel: [ 1.118451] sd 2:0:0:0: [sda] Write Protect is off
Aug 21 09:08:27 BUBBLE kernel: [ 1.118672] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug 21 09:08:27 BUBBLE kernel: [ 1.118999] sda: sda1 sda2 < sda5
Aug 21 09:08:27 BUBBLE kernel: [ 1.160107] firewire_core: created device fw0: GUID 00016c2000175c12, S400
Aug 21 09:08:27 BUBBLE kernel: [ 1.163799] sda6 sda7 >
Aug 21 09:08:27 BUBBLE kernel: [ 1.179087] sd 2:0:0:0: [sda] Attached SCSI disk
Aug 21 09:08:27 BUBBLE kernel: [ 1.195318] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
Aug 21 09:08:27 BUBBLE kernel: [ 1.195403] Uniform CD-ROM driver Revision: 3.20
Aug 21 09:08:27 BUBBLE kernel: [ 1.202236] sr 0:0:0:0: Attached scsi generic sg0 type 5
Aug 21 09:08:27 BUBBLE kernel: [ 1.202783] sd 2:0:0:0: Attached scsi generic sg1 type 0
Aug 21 09:08:27 BUBBLE kernel: [ 1.958045] PM: Starting manual resume from disk
Aug 21 09:08:27 BUBBLE kernel: [ 2.023309] EXT4-fs (sda5): mounted filesystem with ordered data mode
Aug 21 09:08:27 BUBBLE kernel: [ 3.374930] udev: starting version 160
Aug 21 09:08:27 BUBBLE kernel: [ 3.647635] ACPI: SSDT 00000000bfee1b32 002C4 (v01 PmRef Cpu0Ist 00000100 INTL 20050513)
Aug 21 09:08:27 BUBBLE kernel: [ 3.674770] ACPI: SSDT 00000000bfee1e7b 0085E (v01 PmRef Cpu0Cst 00000100 INTL 20050513)
Aug 21 09:08:27 BUBBLE kernel: [ 3.743351] Marking TSC unstable due to TSC halts in idle
Aug 21 09:08:27 BUBBLE kernel: [ 3.743477] ACPI: CPU-1 (power states: C1[C1] C2[C2] C3[C3])
Aug 21 09:08:27 BUBBLE kernel: [ 3.744470] ACPI: SSDT 00000000bfee1a6a 000C8 (v01 PmRef Cpu1Ist 00000100 INTL 20050513)
Aug 21 09:08:27 BUBBLE kernel: [ 3.747336] ACPI: SSDT 00000000bfee1df6 00085 (v01 PmRef Cpu1Cst 00000100 INTL 20050513)
Aug 21 09:08:27 BUBBLE kernel: [ 3.785277] ACPI: CPU-1 (power states: C1[C1] C2[C2] C3[C3])
Aug 21 09:08:27 BUBBLE kernel: [ 3.857747] ACPI: AC Adapter [AC] (on-line)
Aug 21 09:08:27 BUBBLE kernel: [ 3.865168] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
Aug 21 09:08:27 BUBBLE kernel: [ 3.874959] ACPI: Lid Switch [LID]
Aug 21 09:08:27 BUBBLE kernel: [ 3.875253] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
Aug 21 09:08:27 BUBBLE kernel: [ 3.875403] ACPI: Sleep Button [SLPB]
Aug 21 09:08:27 BUBBLE kernel: [ 3.875754] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
Aug 21 09:08:27 BUBBLE kernel: [ 3.875892] ACPI: Power Button [PWRF]
Aug 21 09:08:27 BUBBLE kernel: [ 3.892598] ACPI: Battery Slot [BAT0] (battery present)
Aug 21 09:08:27 BUBBLE kernel: [ 3.919222] cfg80211: Using static regulatory domain info
Aug 21 09:08:27 BUBBLE kernel: [ 3.919296] cfg80211: Regulatory domain: US
Aug 21 09:08:27 BUBBLE kernel: [ 3.919364] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
Aug 21 09:08:27 BUBBLE kernel: [ 3.919447] (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm)
Aug 21 09:08:27 BUBBLE kernel: [ 3.919518] (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
Aug 21 09:08:27 BUBBLE kernel: [ 3.919588] (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
Aug 21 09:08:27 BUBBLE kernel: [ 3.919659] (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
Aug 21 09:08:27 BUBBLE kernel: [ 3.919730] (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
Aug 21 09:08:27 BUBBLE kernel: [ 3.919800] (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm)
Aug 21 09:08:27 BUBBLE kernel: [ 3.919878] cfg80211: Calling CRDA for country: US
Aug 21 09:08:27 BUBBLE kernel: [ 3.927235] ACPI: WMI: Mapper loaded
Aug 21 09:08:27 BUBBLE kernel: [ 4.186065] Non-volatile memory driver v1.3
Aug 21 09:08:27 BUBBLE kernel: [ 4.218853] input: PC Speaker as /devices/platform/pcspkr/input/input5
Aug 21 09:08:27 BUBBLE kernel: [ 4.271756] thinkpad_acpi: ThinkPad ACPI Extras v0.23
Aug 21 09:08:27 BUBBLE kernel: [ 4.271827] thinkpad_acpi: http://ibm-acpi.sf.net/
Aug 21 09:08:27 BUBBLE kernel: [ 4.271894] thinkpad_acpi: ThinkPad BIOS 7KETC9WW (2.29 ), EC 7KHT24WW-1.08
Aug 21 09:08:27 BUBBLE kernel: [ 4.271963] thinkpad_acpi: Lenovo ThinkPad R61, model 8919W1B
Aug 21 09:08:27 BUBBLE kernel: [ 4.274218] thinkpad_acpi: ACPI backlight control delay disabled
Aug 21 09:08:27 BUBBLE kernel: [ 4.274644] thinkpad_acpi: radio switch found; radios are enabled
Aug 21 09:08:27 BUBBLE kernel: [ 4.275029] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
Aug 21 09:08:27 BUBBLE kernel: [ 4.275116] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
Aug 21 09:08:27 BUBBLE kernel: [ 4.283770] acpi device:06: registered as cooling_device0
Aug 21 09:08:27 BUBBLE kernel: [ 4.284954] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:05/LNXVIDEO:01/input/input6
Aug 21 09:08:27 BUBBLE kernel: [ 4.285097] ACPI: Video Device [VID1] (multi-head: yes rom: no post: no)
Aug 21 09:08:27 BUBBLE kernel: [ 4.286516] Registered led device: tpacpi::thinklight
Aug 21 09:08:27 BUBBLE kernel: [ 4.286625] Registered led device: tpacpi::power
Aug 21 09:08:27 BUBBLE kernel: [ 4.286725] Registered led device: tpacpi::standby
Aug 21 09:08:27 BUBBLE kernel: [ 4.286817] Registered led device: tpacpi::thinkvantage
Aug 21 09:08:27 BUBBLE kernel: [ 4.292105] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one.
Aug 21 09:08:27 BUBBLE kernel: [ 4.292592] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input7
Aug 21 09:08:27 BUBBLE kernel: [ 4.661258] nvidia: module license 'NVIDIA' taints kernel.
Aug 21 09:08:27 BUBBLE kernel: [ 4.661375] Disabling lock debugging due to kernel taint
Aug 21 09:08:27 BUBBLE kernel: [ 4.792648] xen_allocate_pirq: returning irq 23 for gsi 23
Aug 21 09:08:27 BUBBLE kernel: [ 4.792723] Already setup the GSI :23
Aug 21 09:08:27 BUBBLE kernel: [ 4.792789] i801_smbus 0000:00:1f.3: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Aug 21 09:08:27 BUBBLE kernel: [ 4.805998] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, 1.2.26ks
Aug 21 09:08:27 BUBBLE kernel: [ 4.806086] iwl3945: Copyright(c) 2003-2009 Intel Corporation
Aug 21 09:08:27 BUBBLE kernel: [ 4.806283] xen_allocate_pirq: returning irq 17 for gsi 17
Aug 21 09:08:27 BUBBLE kernel: [ 4.806355] Already setup the GSI :17
Aug 21 09:08:27 BUBBLE kernel: [ 4.806421] iwl3945 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
Aug 21 09:08:27 BUBBLE kernel: [ 4.875688] yenta_cardbus 0000:15:00.0: CardBus bridge found [17aa:20c6]
Aug 21 09:08:27 BUBBLE kernel: [ 4.879368] iwl3945 0000:03:00.0: Tunable channels: 11 802.11bg, 13 802.11a channels
Aug 21 09:08:27 BUBBLE kernel: [ 4.879454] iwl3945 0000:03:00.0: Detected Intel Wireless WiFi Link 3945ABG
Aug 21 09:08:27 BUBBLE kernel: [ 5.000827] yenta_cardbus 0000:15:00.0: ISA IRQ mask 0x0cb8, PCI irq 16
Aug 21 09:08:27 BUBBLE kernel: [ 5.000903] yenta_cardbus 0000:15:00.0: Socket status: 30000006
Aug 21 09:08:27 BUBBLE kernel: [ 5.000978] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge I/O window: 0x8000 - 0xbfff
Aug 21 09:08:27 BUBBLE kernel: [ 5.001064] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge Memory window: 0xf8100000 - 0xfbffffff
Aug 21 09:08:27 BUBBLE kernel: [ 5.001151] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge Memory window: 0xf4000000 - 0xf7ffffff
Aug 21 09:08:27 BUBBLE kernel: [ 5.040474] nvidia 0000:01:00.0: power state changed by ACPI to D0
Aug 21 09:08:27 BUBBLE kernel: [ 5.040606] nvidia 0000:01:00.0: power state changed by ACPI to D0
Aug 21 09:08:27 BUBBLE kernel: [ 5.044095] xen_allocate_pirq: returning irq 16 for gsi 16
Aug 21 09:08:27 BUBBLE kernel: [ 5.046230] Already setup the GSI :16
Aug 21 09:08:27 BUBBLE kernel: [ 5.046297] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Aug 21 09:08:27 BUBBLE kernel: [ 5.046387] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
Aug 21 09:08:27 BUBBLE kernel: [ 5.046676] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 173.14.25 Thu Jan 28 01:53:43 PST 2010
Aug 21 09:08:27 BUBBLE kernel: [ 5.046900] NVRM: PAT configuration unsupported, falling back to MTRRs.
Aug 21 09:08:27 BUBBLE kernel: [ 5.086594] input: DualPoint Stick as /devices/platform/i8042/serio1/input/input8
Aug 21 09:08:27 BUBBLE kernel: [ 5.118010] input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input9
Aug 21 09:08:27 BUBBLE kernel: [ 5.380427] xen_allocate_pirq: returning irq 17 for gsi 17
Aug 21 09:08:27 BUBBLE kernel: [ 5.380569] Already setup the GSI :17
Aug 21 09:08:27 BUBBLE kernel: [ 5.380676] HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17
Aug 21 09:08:27 BUBBLE kernel: [ 5.381288] hda_intel: probe_mask set to 0x1 for device 17aa:20ac
Aug 21 09:08:27 BUBBLE kernel: [ 5.897628] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input10
Aug 21 09:08:27 BUBBLE kernel: [ 6.738725] Adding 2051064k swap on /dev/sda7. Priority:-1 extents:1 across:2051064k
Aug 21 09:08:27 BUBBLE kernel: [ 7.163749] loop: module loaded
Aug 21 09:08:27 BUBBLE kernel: [ 7.189119] thinkpad_ec: thinkpad_ec 0.40 loaded.
Aug 21 09:08:27 BUBBLE kernel: [ 7.193144] tp_smapi 0.40 loading...
Aug 21 09:08:27 BUBBLE kernel: [ 7.193360] tp_smapi successfully loaded (smapi_port=0xb2).
Aug 21 09:08:27 BUBBLE kernel: [ 7.200683] hdaps: LENOVO ThinkPad R61 detected, setting orientation 1
Aug 21 09:08:27 BUBBLE kernel: [ 7.202170] hdaps: device successfully initialized.
Aug 21 09:08:27 BUBBLE kernel: [ 7.204108] input: ThinkPad HDAPS joystick emulation as /devices/virtual/input/input11
Aug 21 09:08:27 BUBBLE kernel: [ 7.205196] input: ThinkPad HDAPS accelerometer data as /devices/virtual/input/input12
Aug 21 09:08:27 BUBBLE kernel: [ 7.205484] hdaps: driver successfully loaded.
Aug 21 09:08:27 BUBBLE kernel: [ 8.911908] fuse init (API version 7.13)
Aug 21 09:08:27 BUBBLE kernel: [ 9.914986] ADDRCONF(NETDEV_UP): eth0: link is not ready
Aug 21 09:08:27 BUBBLE kernel: [ 10.065310] Event-channel device installed.
Aug 21 09:08:28 BUBBLE kernel: [ 10.992299] input: ACPI Virtual Keyboard Device as /devices/virtual/input/input13
Aug 21 09:08:32 BUBBLE kernel: [ 15.033362] iwl3945 0000:03:00.0: firmware: requesting iwlwifi-3945-2.ucode
Aug 21 09:08:32 BUBBLE kernel: [ 15.287877] iwl3945 0000:03:00.0: loaded firmware version 15.32.2.9
Aug 21 09:08:32 BUBBLE kernel: [ 15.357634] Registered led device: iwl-phy0::radio
Aug 21 09:08:32 BUBBLE kernel: [ 15.357734] Registered led device: iwl-phy0::assoc
Aug 21 09:08:32 BUBBLE kernel: [ 15.357821] Registered led device: iwl-phy0::RX
Aug 21 09:08:32 BUBBLE kernel: [ 15.357904] Registered led device: iwl-phy0::TX
Aug 21 09:08:32 BUBBLE kernel: [ 15.374662] ADDRCONF(NETDEV_UP): wlan0: link is not ready
Aug 21 09:08:34 BUBBLE kernel: [ 17.277556] Bridge firewalling registered
Aug 21 09:08:35 BUBBLE kernel: [ 17.927877] lp: driver loaded but no devices found
Aug 21 09:08:35 BUBBLE kernel: [ 17.968614] ppdev: user-space parallel port driver
Aug 21 09:08:45 BUBBLE kernel: [ 28.172092] smapi smapi: set_real_thresh: set start to 39 for bat=0
Aug 21 09:08:45 BUBBLE kernel: [ 28.396093] smapi smapi: set_real_thresh: set stop to 70 for bat=0
Aug 21 09:08:49 BUBBLE kernel: [ 32.126698] PGD 2b01067 PUD bc850067 PMD 242d067 PTE fffffffffffff237
Aug 21 09:08:49 BUBBLE kernel: [ 32.126716] CPU 0
Aug 21 09:08:49 BUBBLE kernel: [ 32.126720] Modules linked in: cpufreq_powersave cpufreq_conservative cpufreq_userspace cpufreq_stats parport_pc ppdev lp parport bridge stp xen_evtchn xenfs binfmt_misc uinput fuse ext2 hdaps tp_smapi thinkpad_ec loop firewire_sbp2 snd_hda_codec_analog snd_hda_intel snd_hda_codec joydev snd_hwdep arc4 pcmcia snd_pcm_oss snd_mixer_oss snd_pcm ecb snd_seq_midi yenta_socket serio_raw iwl3945 snd_rawmidi i2c_i801 rsrc_nonstatic nvidia(P) snd_seq_midi_event video thinkpad_acpi pcmcia_core iwlcore output evdev psmouse pcspkr i2c_core nvram snd_seq snd_timer snd_seq_device snd soundcore snd_page_alloc mac80211 wmi cfg80211 rfkill button battery ac processor acpi_processor ext4 mbcache jbd2 crc16 sg sr_mod sd_mod crc_t10dif cdrom ata_generic uhci_hcd sdhci_pci sdhci ahci firewire_ohci ata_piix thermal ricoh_mmc mmc_core led_class firewire_core crc_itu_t libata thermal_sys ehci_hcd scsi_mod e1000e usbcore nls_base [last unloaded: scsi_wait_scan]
Aug 21 09:08:49 BUBBLE kernel: [ 32.126863] Pid: 1723, comm: Xorg Tainted: P 2.6.32-5-xen-amd64 #1 8919W1B
Aug 21 09:08:49 BUBBLE kernel: [ 32.126867] RIP: e033:[<00007ff88e2ecc22>] [<00007ff88e2ecc22>] 0x7ff88e2ecc22
Aug 21 09:08:49 BUBBLE kernel: [ 32.126875] RSP: e02b:00007fff2738f110 EFLAGS: 00010203
Aug 21 09:08:49 BUBBLE kernel: [ 32.126878] RAX: 0000000000000000 RBX: 000000000151c440 RCX: 0000000000000001
Aug 21 09:08:49 BUBBLE kernel: [ 32.126882] RDX: 0000000000000000 RSI: 00007ff893775000 RDI: 0000000000000000
Aug 21 09:08:49 BUBBLE kernel: [ 32.126885] RBP: 0000000000000020 R08: 000000000151c3c0 R09: 00007ff893776018
Aug 21 09:08:49 BUBBLE kernel: [ 32.126888] R10: 00007ff893776008 R11: 0000000000000206 R12: 0000000000000002
Aug 21 09:08:49 BUBBLE kernel: [ 32.126891] R13: 0000000000000001 R14: 00007ff88e872af0 R15: 00007ff88e872af0
Aug 21 09:08:49 BUBBLE kernel: [ 32.126897] FS: 00007ff893760700(0000) GS:ffff880003800000(0000) knlGS:0000000000000000
Aug 21 09:08:49 BUBBLE kernel: [ 32.126901] CS: e033 DS: 0000 ES: 0000 CR0: 000000008005003b
Aug 21 09:08:49 BUBBLE kernel: [ 32.126904] CR2: 00007ff893775000 CR3: 00000000bcfb6000 CR4: 0000000000002660
Aug 21 09:08:49 BUBBLE kernel: [ 32.126907] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
Aug 21 09:08:49 BUBBLE kernel: [ 32.126911] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
Aug 21 09:08:49 BUBBLE kernel: [ 32.126915] Process Xorg (pid: 1723, threadinfo ffff880002a06000, task ffff8800bce58000)
Aug 21 09:08:49 BUBBLE kernel: [ 32.126917]
Aug 21 09:08:49 BUBBLE kernel: [ 32.126924] RSP <00007fff2738f110>
Aug 21 09:08:49 BUBBLE kernel: [ 32.126929] ---[ end trace 49a53d55e2ef959f ]---
Aug 21 09:09:03 BUBBLE kernel: [ 46.085869] PGD 27c7067 PUD bd452067 PMD 274f067 PTE fffffffffffff237
Aug 21 09:09:03 BUBBLE kernel: [ 46.085888] CPU 1
Aug 21 09:09:03 BUBBLE kernel: [ 46.085891] Modules linked in: cpufreq_powersave cpufreq_conservative cpufreq_userspace cpufreq_stats parport_pc ppdev lp parport bridge stp xen_evtchn xenfs binfmt_misc uinput fuse ext2 hdaps tp_smapi thinkpad_ec loop firewire_sbp2 snd_hda_codec_analog snd_hda_intel snd_hda_codec joydev snd_hwdep arc4 pcmcia snd_pcm_oss snd_mixer_oss snd_pcm ecb snd_seq_midi yenta_socket serio_raw iwl3945 snd_rawmidi i2c_i801 rsrc_nonstatic nvidia(P) snd_seq_midi_event video thinkpad_acpi pcmcia_core iwlcore output evdev psmouse pcspkr i2c_core nvram snd_seq snd_timer snd_seq_device snd soundcore snd_page_alloc mac80211 wmi cfg80211 rfkill button battery ac processor acpi_processor ext4 mbcache jbd2 crc16 sg sr_mod sd_mod crc_t10dif cdrom ata_generic uhci_hcd sdhci_pci sdhci ahci firewire_ohci ata_piix thermal ricoh_mmc mmc_core led_class firewire_core crc_itu_t libata thermal_sys ehci_hcd scsi_mod e1000e usbcore nls_base [last unloaded: scsi_wait_scan]
Aug 21 09:09:03 BUBBLE kernel: [ 46.086035] Pid: 1981, comm: Xorg Tainted: P D 2.6.32-5-xen-amd64 #1 8919W1B
Aug 21 09:09:03 BUBBLE kernel: [ 46.086038] RIP: e033:[<00007f70d0740c22>] [<00007f70d0740c22>] 0x7f70d0740c22
Aug 21 09:09:03 BUBBLE kernel: [ 46.086047] RSP: e02b:00007fff034f2250 EFLAGS: 00010203
Aug 21 09:09:03 BUBBLE kernel: [ 46.086050] RAX: 0000000000000000 RBX: 00000000027b0440 RCX: 0000000000000001
Aug 21 09:09:03 BUBBLE kernel: [ 46.086053] RDX: 0000000000000000 RSI: 00007f70d5bc9000 RDI: 0000000000000000
Aug 21 09:09:03 BUBBLE kernel: [ 46.086056] RBP: 0000000000000020 R08: 00000000027b03c0 R09: 00007f70d5bca018
Aug 21 09:09:03 BUBBLE kernel: [ 46.086059] R10: 00007f70d5bca008 R11: 0000000000000202 R12: 0000000000000002
Aug 21 09:09:03 BUBBLE kernel: [ 46.086062] R13: 0000000000000001 R14: 00007f70d0cc6af0 R15: 00007f70d0cc6af0
Aug 21 09:09:03 BUBBLE kernel: [ 46.086068] FS: 00007f70d5bb4700(0000) GS:ffff88000381e000(0000) knlGS:0000000000000000
Aug 21 09:09:03 BUBBLE kernel: [ 46.086072] CS: e033 DS: 0000 ES: 0000 CR0: 000000008005003b
Aug 21 09:09:03 BUBBLE kernel: [ 46.086075] CR2: 00007f70d5bc9000 CR3: 00000000025e2000 CR4: 0000000000002660
Aug 21 09:09:03 BUBBLE kernel: [ 46.086078] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
Aug 21 09:09:03 BUBBLE kernel: [ 46.086082] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
Aug 21 09:09:03 BUBBLE kernel: [ 46.086086] Process Xorg (pid: 1981, threadinfo ffff8800bd0c4000, task ffff8800bd4169f0)
Aug 21 09:09:03 BUBBLE kernel: [ 46.086088]
Aug 21 09:09:03 BUBBLE kernel: [ 46.086095] RSP <00007fff034f2250>
Aug 21 09:09:03 BUBBLE kernel: [ 46.086100] ---[ end trace 49a53d55e2ef95a0 ]---
Aug 21 09:09:15 BUBBLE kernel: [ 58.736132] PGD 267f067 PUD 265e067 PMD 2be3067 PTE fffffffffffff237
Aug 21 09:09:15 BUBBLE kernel: [ 58.736152] CPU 1
Aug 21 09:09:15 BUBBLE kernel: [ 58.736156] Modules linked in: cpufreq_powersave cpufreq_conservative cpufreq_userspace cpufreq_stats parport_pc ppdev lp parport bridge stp xen_evtchn xenfs binfmt_misc uinput fuse ext2 hdaps tp_smapi thinkpad_ec loop firewire_sbp2 snd_hda_codec_analog snd_hda_intel snd_hda_codec joydev snd_hwdep arc4 pcmcia snd_pcm_oss snd_mixer_oss snd_pcm ecb snd_seq_midi yenta_socket serio_raw iwl3945 snd_rawmidi i2c_i801 rsrc_nonstatic nvidia(P) snd_seq_midi_event video thinkpad_acpi pcmcia_core iwlcore output evdev psmouse pcspkr i2c_core nvram snd_seq snd_timer snd_seq_device snd soundcore snd_page_alloc mac80211 wmi cfg80211 rfkill button battery ac processor acpi_processor ext4 mbcache jbd2 crc16 sg sr_mod sd_mod crc_t10dif cdrom ata_generic uhci_hcd sdhci_pci sdhci ahci firewire_ohci ata_piix thermal ricoh_mmc mmc_core led_class firewire_core crc_itu_t libata thermal_sys ehci_hcd scsi_mod e1000e usbcore nls_base [last unloaded: scsi_wait_scan]
Aug 21 09:09:15 BUBBLE kernel: [ 58.736308] Pid: 1984, comm: Xorg Tainted: P D 2.6.32-5-xen-amd64 #1 8919W1B
Aug 21 09:09:15 BUBBLE kernel: [ 58.736311] RIP: e033:[<00007f0dc2941c22>] [<00007f0dc2941c22>] 0x7f0dc2941c22
Aug 21 09:09:15 BUBBLE kernel: [ 58.736319] RSP: e02b:00007fff876c99a0 EFLAGS: 00010203
Aug 21 09:09:15 BUBBLE kernel: [ 58.736322] RAX: 0000000000000000 RBX: 000000000216a440 RCX: 0000000000000001
Aug 21 09:09:15 BUBBLE kernel: [ 58.736325] RDX: 0000000000000000 RSI: 00007f0dc7dca000 RDI: 0000000000000000
Aug 21 09:09:15 BUBBLE kernel: [ 58.736329] RBP: 0000000000000020 R08: 000000000216a3c0 R09: 00007f0dc7dcb018
Aug 21 09:09:15 BUBBLE kernel: [ 58.736332] R10: 00007f0dc7dcb008 R11: 0000000000000206 R12: 0000000000000002
Aug 21 09:09:15 BUBBLE kernel: [ 58.736335] R13: 0000000000000001 R14: 00007f0dc2ec7af0 R15: 00007f0dc2ec7af0
Aug 21 09:09:15 BUBBLE kernel: [ 58.736341] FS: 00007f0dc7db5700(0000) GS:ffff88000381e000(0000) knlGS:0000000000000000
Aug 21 09:09:15 BUBBLE kernel: [ 58.736345] CS: e033 DS: 0000 ES: 0000 CR0: 000000008005003b
Aug 21 09:09:15 BUBBLE kernel: [ 58.736351] CR2: 00007f0dc7dca000 CR3: 0000000002733000 CR4: 0000000000002660
Aug 21 09:09:15 BUBBLE kernel: [ 58.736355] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
Aug 21 09:09:15 BUBBLE kernel: [ 58.736358] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
Aug 21 09:09:15 BUBBLE kernel: [ 58.736362] Process Xorg (pid: 1984, threadinfo ffff880002b86000, task ffff8800bd4169f0)
Aug 21 09:09:15 BUBBLE kernel: [ 58.736364]
Aug 21 09:09:15 BUBBLE kernel: [ 58.736371] RSP <00007fff876c99a0>
Aug 21 09:09:15 BUBBLE kernel: [ 58.736376] ---[ end trace 49a53d55e2ef95a1 ]---
Aug 21 09:09:28 BUBBLE kernel: [ 71.388438] PGD bd205067 PUD bc808067 PMD 202e067 PTE fffffffffffff237
Aug 21 09:09:28 BUBBLE kernel: [ 71.388456] CPU 1
Aug 21 09:09:28 BUBBLE kernel: [ 71.388460] Modules linked in: cpufreq_powersave cpufreq_conservative cpufreq_userspace cpufreq_stats parport_pc ppdev lp parport bridge stp xen_evtchn xenfs binfmt_misc uinput fuse ext2 hdaps tp_smapi thinkpad_ec loop firewire_sbp2 snd_hda_codec_analog snd_hda_intel snd_hda_codec joydev snd_hwdep arc4 pcmcia snd_pcm_oss snd_mixer_oss snd_pcm ecb snd_seq_midi yenta_socket serio_raw iwl3945 snd_rawmidi i2c_i801 rsrc_nonstatic nvidia(P) snd_seq_midi_event video thinkpad_acpi pcmcia_core iwlcore output evdev psmouse pcspkr i2c_core nvram snd_seq snd_timer snd_seq_device snd soundcore snd_page_alloc mac80211 wmi cfg80211 rfkill button battery ac processor acpi_processor ext4 mbcache jbd2 crc16 sg sr_mod sd_mod crc_t10dif cdrom ata_generic uhci_hcd sdhci_pci sdhci ahci firewire_ohci ata_piix thermal ricoh_mmc mmc_core led_class firewire_core crc_itu_t libata thermal_sys ehci_hcd scsi_mod e1000e usbcore nls_base [last unloaded: scsi_wait_scan]
Aug 21 09:09:28 BUBBLE kernel: [ 71.388603] Pid: 1987, comm: Xorg Tainted: P D 2.6.32-5-xen-amd64 #1 8919W1B
Aug 21 09:09:28 BUBBLE kernel: [ 71.388606] RIP: e033:[<00007f5ae336ec22>] [<00007f5ae336ec22>] 0x7f5ae336ec22
Aug 21 09:09:28 BUBBLE kernel: [ 71.388615] RSP: e02b:00007fff44083f30 EFLAGS: 00010203
Aug 21 09:09:28 BUBBLE kernel: [ 71.388618] RAX: 0000000000000000 RBX: 0000000000ebc440 RCX: 0000000000000001
Aug 21 09:09:28 BUBBLE kernel: [ 71.388622] RDX: 0000000000000000 RSI: 00007f5ae87f7000 RDI: 0000000000000000
Aug 21 09:09:28 BUBBLE kernel: [ 71.388625] RBP: 0000000000000020 R08: 0000000000ebc3c0 R09: 00007f5ae87f8018
Aug 21 09:09:28 BUBBLE kernel: [ 71.388628] R10: 00007f5ae87f8008 R11: 0000000000000206 R12: 0000000000000002
Aug 21 09:09:28 BUBBLE kernel: [ 71.388631] R13: 0000000000000001 R14: 00007f5ae38f4af0 R15: 00007f5ae38f4af0
Aug 21 09:09:28 BUBBLE kernel: [ 71.388637] FS: 00007f5ae87e2700(0000) GS:ffff88000381e000(0000) knlGS:0000000000000000
Aug 21 09:09:28 BUBBLE kernel: [ 71.388641] CS: e033 DS: 0000 ES: 0000 CR0: 000000008005003b
Aug 21 09:09:28 BUBBLE kernel: [ 71.388644] CR2: 00007f5ae87f7000 CR3: 0000000002b91000 CR4: 0000000000002660
Aug 21 09:09:28 BUBBLE kernel: [ 71.388647] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
Aug 21 09:09:28 BUBBLE kernel: [ 71.388651] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
Aug 21 09:09:28 BUBBLE kernel: [ 71.388654] Process Xorg (pid: 1987, threadinfo ffff8800020f4000, task ffff8800bd412a60)
Aug 21 09:09:28 BUBBLE kernel: [ 71.388657]
Aug 21 09:09:28 BUBBLE kernel: [ 71.388664] RSP <00007fff44083f30>
Aug 21 09:09:28 BUBBLE kernel: [ 71.388669] ---[ end trace 49a53d55e2ef95a2 ]---
Aug 21 09:09:41 BUBBLE kernel: [ 84.042315] PGD bd42f067 PUD be650067 PMD bcfac067 PTE fffffffffffff237
Aug 21 09:09:41 BUBBLE kernel: [ 84.042334] CPU 1
Aug 21 09:09:41 BUBBLE kernel: [ 84.042337] Modules linked in: cpufreq_powersave cpufreq_conservative cpufreq_userspace cpufreq_stats parport_pc ppdev lp parport bridge stp xen_evtchn xenfs binfmt_misc uinput fuse ext2 hdaps tp_smapi thinkpad_ec loop firewire_sbp2 snd_hda_codec_analog snd_hda_intel snd_hda_codec joydev snd_hwdep arc4 pcmcia snd_pcm_oss snd_mixer_oss snd_pcm ecb snd_seq_midi yenta_socket serio_raw iwl3945 snd_rawmidi i2c_i801 rsrc_nonstatic nvidia(P) snd_seq_midi_event video thinkpad_acpi pcmcia_core iwlcore output evdev psmouse pcspkr i2c_core nvram snd_seq snd_timer snd_seq_device snd soundcore snd_page_alloc mac80211 wmi cfg80211 rfkill button battery ac processor acpi_processor ext4 mbcache jbd2 crc16 sg sr_mod sd_mod crc_t10dif cdrom ata_generic uhci_hcd sdhci_pci sdhci ahci firewire_ohci ata_piix thermal ricoh_mmc mmc_core led_class firewire_core crc_itu_t libata thermal_sys ehci_hcd scsi_mod e1000e usbcore nls_base [last unloaded: scsi_wait_scan]
Aug 21 09:09:41 BUBBLE kernel: [ 84.042481] Pid: 1990, comm: Xorg Tainted: P D 2.6.32-5-xen-amd64 #1 8919W1B
Aug 21 09:09:41 BUBBLE kernel: [ 84.042484] RIP: e033:[<00007fe3a0d84c22>] [<00007fe3a0d84c22>] 0x7fe3a0d84c22
Aug 21 09:09:41 BUBBLE kernel: [ 84.042493] RSP: e02b:00007fffb9bef270 EFLAGS: 00010203
Aug 21 09:09:41 BUBBLE kernel: [ 84.042496] RAX: 0000000000000000 RBX: 00000000021eb440 RCX: 0000000000000001
Aug 21 09:09:41 BUBBLE kernel: [ 84.042499] RDX: 0000000000000000 RSI: 00007fe3a620d000 RDI: 0000000000000000
Aug 21 09:09:41 BUBBLE kernel: [ 84.042502] RBP: 0000000000000020 R08: 00000000021eb3c0 R09: 00007fe3a620e018
Aug 21 09:09:41 BUBBLE kernel: [ 84.042505] R10: 00007fe3a620e008 R11: 0000000000000206 R12: 0000000000000002
Aug 21 09:09:41 BUBBLE kernel: [ 84.042509] R13: 0000000000000001 R14: 00007fe3a130aaf0 R15: 00007fe3a130aaf0
Aug 21 09:09:41 BUBBLE kernel: [ 84.042515] FS: 00007fe3a61f8700(0000) GS:ffff88000381e000(0000) knlGS:0000000000000000
Aug 21 09:09:41 BUBBLE kernel: [ 84.042518] CS: e033 DS: 0000 ES: 0000 CR0: 000000008005003b
Aug 21 09:09:41 BUBBLE kernel: [ 84.042521] CR2: 00007fe3a620d000 CR3: 00000000bd57a000 CR4: 0000000000002660
Aug 21 09:09:41 BUBBLE kernel: [ 84.042525] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
Aug 21 09:09:41 BUBBLE kernel: [ 84.042528] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
Aug 21 09:09:41 BUBBLE kernel: [ 84.042532] Process Xorg (pid: 1990, threadinfo ffff8800bce94000, task ffff8800bd4154c0)
Aug 21 09:09:41 BUBBLE kernel: [ 84.042534]
Aug 21 09:09:41 BUBBLE kernel: [ 84.042541] RSP <00007fffb9bef270>
Aug 21 09:09:41 BUBBLE kernel: [ 84.042546] ---[ end trace 49a53d55e2ef95a3 ]---
Aug 21 09:09:47 BUBBLE shutdown[2031]: shutting down for system halt
[-- Attachment #4: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor?
2010-08-30 0:08 xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor Mike Viau
@ 2010-08-30 5:52 ` Pasi Kärkkäinen
2010-08-30 13:32 ` [Pkg-xen-devel] " Mike Viau
2010-08-30 9:58 ` xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor Ian Campbell
1 sibling, 1 reply; 15+ messages in thread
From: Pasi Kärkkäinen @ 2010-08-30 5:52 UTC (permalink / raw)
To: Mike Viau; +Cc: pkg-xen-devel, xen-devel
On Sun, Aug 29, 2010 at 08:08:14PM -0400, Mike Viau wrote:
> Hello list,
>
> I have performed a fresh install (fully updated) of squeeze amd64 and
> installed the xen-linux-system-2.6.32-5-xen-amd64 package with all its
> dependencies.
>
> When I restart and tried to boot the linux-image-2.6.32-5-xen-amd64 (pvops
> style) kernel on bare-metal my laptop boots fine.
>
> When I use the hyper-visor on the system with the same
> linux-image-2.6.32-5-xen-amd64 kernel, it hangs and does not boot up...
>
> Attached is my grub.cfg and relevant dmesg output (notice the failure
> messages start occurring near the bottom).
>
> So, should I be filling a bug for this issue or does anyone on the list
> have a better suggestion?
>
So it starts all the way until X starts?
Does it work OK without X?
Did you try "nomodeset" parameter for the dom0 kernel?
-- Pasi
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor
2010-08-30 0:08 xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor Mike Viau
2010-08-30 5:52 ` xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor? Pasi Kärkkäinen
@ 2010-08-30 9:58 ` Ian Campbell
2010-08-30 13:38 ` [Pkg-xen-devel] [Xen-devel] " Mike Viau
1 sibling, 1 reply; 15+ messages in thread
From: Ian Campbell @ 2010-08-30 9:58 UTC (permalink / raw)
To: Mike Viau
Cc: pkg-xen-devel@lists.alioth.debian.org,
xen-devel@lists.xensource.com
On Mon, 2010-08-30 at 01:08 +0100, Mike Viau wrote:
> Hello list,
>
> I have performed a fresh install (fully updated) of squeeze amd64 and
> installed the xen-linux-system-2.6.32-5-xen-amd64 package with all its
> dependencies.
>
> When I restart and tried to boot the linux-image-2.6.32-5-xen-amd64
> (pvops style) kernel on bare-metal my laptop boots fine.
>
> When I use the hyper-visor on the system with the same
> linux-image-2.6.32-5-xen-amd64 kernel, it hangs and does not boot
> up...
Please can you tell us which exact kernel package version you have
installed? 2.6.32-5 quote above is the kernel ABI version which the same
across multiple kernel packages, from (I think) package 2.6.32-12
onwards up to and including 2.6.32-21 currently in Sid and likely for
some future packages as well.
As Pasi asks please try booting without X. It would also be useful to
try the latest package from Sid, it should install cleanly on Squeeze.
Ian.
--
Ian Campbell
This is a good time to punt work.
^ permalink raw reply [flat|nested] 15+ messages in thread
* RE: [Pkg-xen-devel] xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor?
2010-08-30 5:52 ` xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor? Pasi Kärkkäinen
@ 2010-08-30 13:32 ` Mike Viau
0 siblings, 0 replies; 15+ messages in thread
From: Mike Viau @ 2010-08-30 13:32 UTC (permalink / raw)
To: pasik; +Cc: pkg-xen-devel, xen-devel
[-- Attachment #1.1: Type: text/plain, Size: 1409 bytes --]
> On Mon, 30 Aug 2010 08:52:50 +0300 <pasik@iki.fi> wrote:
> > On Sun, Aug 29, 2010 at 08:08:14PM -0400, Mike wrote:
> > Hello list,
> >
> > I have performed a fresh install (fully updated) of squeeze amd64 and
> > installed the xen-linux-system-2.6.32-5-xen-amd64 package with all its
> > dependencies.
> >
> > When I restart and tried to boot the linux-image-2.6.32-5-xen-amd64 (pvops
> > style) kernel on bare-metal my laptop boots fine.
> >
> > When I use the hyper-visor on the system with the same
> > linux-image-2.6.32-5-xen-amd64 kernel, it hangs and does not boot up...
> >
> > Attached is my grub.cfg and relevant dmesg output (notice the failure
> > messages start occurring near the bottom).
> >
> > So, should I be filling a bug for this issue or does anyone on the list
> > have a better suggestion?
> >
>
> So it starts all the way until X starts?
> Does it work OK without X?
>
> Did you try "nomodeset" parameter for the dom0 kernel?
>
> -- Pasi
>
nomodeset does not fix the booting issue via the xen 4 hypervisor. Also it breaks the booting on bare-metal as well.
In which way do you prose I boot my system without X....
My default runlevel is 2 according to /etc/inittab
# The default runlevel.
id:2:initdefault:
But I get gdm and gnome DE by default.
Thanks for your help :)
[-- Attachment #1.2: Type: text/html, Size: 1839 bytes --]
[-- Attachment #2: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 15+ messages in thread
* RE: [Pkg-xen-devel] [Xen-devel] xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor
2010-08-30 9:58 ` xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor Ian Campbell
@ 2010-08-30 13:38 ` Mike Viau
2010-08-30 13:39 ` [Pkg-xen-devel] " Ian Campbell
0 siblings, 1 reply; 15+ messages in thread
From: Mike Viau @ 2010-08-30 13:38 UTC (permalink / raw)
To: ijc; +Cc: pkg-xen-devel, xen-devel
[-- Attachment #1.1: Type: text/plain, Size: 2383 bytes --]
> On Mon, 30 Aug 2010 10:58:06 +0100 <ijc@hellion.org.uk> wrote:
> > On Mon, 2010-08-30 at 01:08 +0100, Mike wrote:
> > Hello list,
> >
> > I have performed a fresh install (fully updated) of squeeze amd64 and
> > installed the xen-linux-system-2.6.32-5-xen-amd64 package with all its
> > dependencies.
> >
> > When I restart and tried to boot the linux-image-2.6.32-5-xen-amd64
> > (pvops style) kernel on bare-metal my laptop boots fine.
> >
> > When I use the hyper-visor on the system with the same
> > linux-image-2.6.32-5-xen-amd64 kernel, it hangs and does not boot
> > up...
>
> Please can you tell us which exact kernel package version you have
> installed? 2.6.32-5 quote above is the kernel ABI version which the same
> across multiple kernel packages, from (I think) package 2.6.32-12
> onwards up to and including 2.6.32-21 currently in Sid and likely for
> some future packages as well.
>
> As Pasi asks please try booting without X. It would also be useful to
> try the latest package from Sid, it should install cleanly on Squeeze.
>
> Ian.
>
I've updated xen-linux-system-2.6.32-5-xen-amd64 & dependencies (e.g.: linux-image-2.6.32-5-xen-amd64 and xen-hypervisor-amd64):
apt-cache policy xen-linux-system-2.6.32-5-xen-amd64
xen-linux-system-2.6.32-5-xen-amd64:
Installed: 2.6.32-20
Candidate: 2.6.32-20
Version table:
*** 2.6.32-20 0
500 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
100 /var/lib/dpkg/status
apt-cache policy linux-image-2.6.32-5-xen-amd64
linux-image-2.6.32-5-xen-amd64:
Installed: 2.6.32-20
Candidate: 2.6.32-20
Version table:
*** 2.6.32-20 0
500 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
100 /var/lib/dpkg/status
apt-cache policy xen-hypervisor-4.0-amd64
xen-hypervisor-4.0-amd64:
Installed: 4.0.1~rc6-1
Candidate: 4.0.1~rc6-1
Version table:
*** 4.0.1~rc6-1 0
500 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
100 /var/lib/dpkg/status
I will be happy to add http://mirror.csclub.uwaterloo.ca sid to my sources to install the Xen package(s).
Just to clarify would you like me to try the sid kernel package, the sid hypervisor package, or both?
Thanks for your help.
-M
[-- Attachment #1.2: Type: text/html, Size: 3508 bytes --]
[-- Attachment #2: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 15+ messages in thread
* RE: [Pkg-xen-devel] xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor
2010-08-30 13:38 ` [Pkg-xen-devel] [Xen-devel] " Mike Viau
@ 2010-08-30 13:39 ` Ian Campbell
2010-08-30 14:16 ` [Pkg-xen-devel] [Xen-devel] " Mike Viau
0 siblings, 1 reply; 15+ messages in thread
From: Ian Campbell @ 2010-08-30 13:39 UTC (permalink / raw)
To: Mike Viau; +Cc: pkg-xen-devel, xen-devel
On Mon, 2010-08-30 at 09:38 -0400, Mike Viau wrote:
> Just to clarify would you like me to try the sid kernel package, the
> sid hypervisor package, or both?
Sid kernel would be most interesting first off, I think.
Ian.
--
--
Ian Campbell
There's too much beauty upon this earth for lonely men to bear.
-- Richard Le Gallienne
^ permalink raw reply [flat|nested] 15+ messages in thread
* RE: [Pkg-xen-devel] [Xen-devel] xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor
2010-08-30 13:39 ` [Pkg-xen-devel] " Ian Campbell
@ 2010-08-30 14:16 ` Mike Viau
2010-08-30 14:44 ` Konrad Rzeszutek Wilk
0 siblings, 1 reply; 15+ messages in thread
From: Mike Viau @ 2010-08-30 14:16 UTC (permalink / raw)
To: ijc; +Cc: pkg-xen-devel, xen-devel
[-- Attachment #1.1: Type: text/plain, Size: 1612 bytes --]
> On Mon, 30 Aug 2010 14:39:51 +0100 <ijc@hellion.org.uk> wrote:
>
> Sid kernel would be most interesting first off, I think.
>
> Ian.
Same behaviors after updating the three packages: xen-linux-system-2.6.32-5-xen-amd64, linux-image-2.6.32-5-xen-amd64, and linux-base (2.6.32-21).
apt-cache policy xen-linux-system-2.6.32-5-xen-amd64
xen-linux-system-2.6.32-5-xen-amd64:
Installed: 2.6.32-21
Candidate: 2.6.32-21
Version table:
*** 2.6.32-21 0
500 http://mirror.csclub.uwaterloo.ca sid/main Packages
100 /var/lib/dpkg/status
2.6.32-20 0
990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
apt-cache policy linux-image-2.6.32-5-xen-amd64
linux-image-2.6.32-5-xen-amd64:
Installed: 2.6.32-21
Candidate: 2.6.32-21
Version table:
*** 2.6.32-21 0
500 http://mirror.csclub.uwaterloo.ca sid/main Packages
100 /var/lib/dpkg/status
2.6.32-20 0
990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
apt-cache policy linux-base
linux-base:
Installed: 2.6.32-21
Candidate: 2.6.32-21
Version table:
*** 2.6.32-21 0
500 http://mirror.csclub.uwaterloo.ca sid/main Packages
100 /var/lib/dpkg/status
2.6.32-20 0
990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
Bare-metal or with hypervisor does not boot with nomodeset on the kernel cmdline.
Just for troubleshooting purpose the current default Debian squeeze kernel linux-image-2.6.32-5-amd64 (2.6.32-20) also does not boot when nomodeset is set on the kernel cmdline.
-M
[-- Attachment #1.2: Type: text/html, Size: 2365 bytes --]
[-- Attachment #2: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Pkg-xen-devel] [Xen-devel] xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor
2010-08-30 14:16 ` [Pkg-xen-devel] [Xen-devel] " Mike Viau
@ 2010-08-30 14:44 ` Konrad Rzeszutek Wilk
2010-08-30 15:08 ` Mike Viau
0 siblings, 1 reply; 15+ messages in thread
From: Konrad Rzeszutek Wilk @ 2010-08-30 14:44 UTC (permalink / raw)
To: Mike Viau; +Cc: pkg-xen-devel, xen-devel, ijc
On Mon, Aug 30, 2010 at 10:16:17AM -0400, Mike Viau wrote:
>
> > On Mon, 30 Aug 2010 14:39:51 +0100 <ijc@hellion.org.uk> wrote:
> >
> > Sid kernel would be most interesting first off, I think.
> >
> > Ian.
>
> Same behaviors after updating the three packages: xen-linux-system-2.6.32-5-xen-amd64, linux-image-2.6.32-5-xen-amd64, and linux-base (2.6.32-21).
>
> apt-cache policy xen-linux-system-2.6.32-5-xen-amd64
> xen-linux-system-2.6.32-5-xen-amd64:
> Installed: 2.6.32-21
> Candidate: 2.6.32-21
> Version table:
> *** 2.6.32-21 0
> 500 http://mirror.csclub.uwaterloo.ca sid/main Packages
> 100 /var/lib/dpkg/status
> 2.6.32-20 0
> 990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
>
> apt-cache policy linux-image-2.6.32-5-xen-amd64
> linux-image-2.6.32-5-xen-amd64:
> Installed: 2.6.32-21
> Candidate: 2.6.32-21
> Version table:
> *** 2.6.32-21 0
> 500 http://mirror.csclub.uwaterloo.ca sid/main Packages
> 100 /var/lib/dpkg/status
> 2.6.32-20 0
> 990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
>
> apt-cache policy linux-base
> linux-base:
> Installed: 2.6.32-21
> Candidate: 2.6.32-21
> Version table:
> *** 2.6.32-21 0
> 500 http://mirror.csclub.uwaterloo.ca sid/main Packages
> 100 /var/lib/dpkg/status
> 2.6.32-20 0
> 990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
>
> Bare-metal or with hypervisor does not boot with nomodeset on the kernel cmdline.
>
> Just for troubleshooting purpose the current default Debian squeeze kernel linux-image-2.6.32-5-amd64 (2.6.32-20) also does not boot when nomodeset is set on the kernel cmdline.
>
Well, 'nomodeset' I don't think will help b/c you don't have KMS in
squeeze (I believe so).
The other thing is that you have:
Aug 21 09:08:27 BUBBLE kernel: [ 5.046676] NVRM: loading NVIDIA UNIX
x86_64 Kernel Module 173.14.25 Thu Jan 28 01:53:43 PST
the proprietary NVidia driver loaded. We haven't tried those
yet and instead focused on making sure the upstream nouveau drivers
work with Xen. Which they do now.
I would suggest you boot in runlevel 3, so that X is not started and see
if the machine works (as in, you don't see other failures).
And if you want X and the NVidia driver (the proprietary one), you might
need to take the brunt of debugging it and finding where the NVidia is
doing some weird stuff.
Or, there is another option, and that to use a back-ported version of
2.6.34 DRM/KMS/TTM driversets which include the nouveau support.
(I am right now running with that on a GeForce 8600 GT on Xen 4.1 +
latest PVOPS kernel).
^ permalink raw reply [flat|nested] 15+ messages in thread
* RE: [Pkg-xen-devel] [Xen-devel] xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor
2010-08-30 14:44 ` Konrad Rzeszutek Wilk
@ 2010-08-30 15:08 ` Mike Viau
2010-08-30 15:31 ` Konrad Rzeszutek Wilk
0 siblings, 1 reply; 15+ messages in thread
From: Mike Viau @ 2010-08-30 15:08 UTC (permalink / raw)
To: konrad.wilk; +Cc: pkg-xen-devel, xen-devel, ijc
[-- Attachment #1.1: Type: text/plain, Size: 3781 bytes --]
> On Mon, 30 Aug 2010 10:44:14 -0400 <konrad.wilk@oracle.com> wrote:
> > On Mon, Aug 30, 2010 at 10:16:17AM -0400, Mike Viau wrote:
> >
> > > On Mon, 30 Aug 2010 14:39:51 +0100 <ijc@hellion.org.uk> wrote:
> > >
> > > Sid kernel would be most interesting first off, I think.
> > >
> > > Ian.
> >
> > Same behaviors after updating the three packages: xen-linux-system-2.6.32-5-xen-amd64, linux-image-2.6.32-5-xen-amd64, and linux-base (2.6.32-21).
> >
> > apt-cache policy xen-linux-system-2.6.32-5-xen-amd64
> > xen-linux-system-2.6.32-5-xen-amd64:
> > Installed: 2.6.32-21
> > Candidate: 2.6.32-21
> > Version table:
> > *** 2.6.32-21 0
> > 500 http://mirror.csclub.uwaterloo.ca sid/main Packages
> > 100 /var/lib/dpkg/status
> > 2.6.32-20 0
> > 990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
> >
> > apt-cache policy linux-image-2.6.32-5-xen-amd64
> > linux-image-2.6.32-5-xen-amd64:
> > Installed: 2.6.32-21
> > Candidate: 2.6.32-21
> > Version table:
> > *** 2.6.32-21 0
> > 500 http://mirror.csclub.uwaterloo.ca sid/main Packages
> > 100 /var/lib/dpkg/status
> > 2.6.32-20 0
> > 990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
> >
> > apt-cache policy linux-base
> > linux-base:
> > Installed: 2.6.32-21
> > Candidate: 2.6.32-21
> > Version table:
> > *** 2.6.32-21 0
> > 500 http://mirror.csclub.uwaterloo.ca sid/main Packages
> > 100 /var/lib/dpkg/status
> > 2.6.32-20 0
> > 990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
> >
> > Bare-metal or with hypervisor does not boot with nomodeset on the kernel cmdline.
> >
> > Just for troubleshooting purpose the current default Debian squeeze kernel linux-image-2.6.32-5-amd64 (2.6.32-20) also does not boot when nomodeset is set on the kernel cmdline.
> >
>
> Well, 'nomodeset' I don't think will help b/c you don't have KMS in
> squeeze (I believe so).
>
I really am not sure either, but I do see KMS messages in my kernel log, see attached nouveau-crash.txt
> The other thing is that you have:
> Aug 21 09:08:27 BUBBLE kernel: [ 5.046676] NVRM: loading NVIDIA UNIX
> x86_64 Kernel Module 173.14.25 Thu Jan 28 01:53:43 PST
>
> the proprietary NVidia driver loaded. We haven't tried those
> yet and instead focused on making sure the upstream nouveau drivers
> work with Xen. Which they do now.
>
Right, so I removed the nvidia driver and used the KMS/Nouveau driver, but the system does not boot still.
> I would suggest you boot in runlevel 3, so that X is not started and see
> if the machine works (as in, you don't see other failures).
>
I would like to, but I enlisted in some suggestion (from Pasi) on how to temporarily boot my system without X... My system defaults to run level 2 which apparently starts gdm3 and then gnome DE anyways.
> And if you want X and the NVidia driver (the proprietary one), you might
> need to take the brunt of debugging it and finding where the NVidia is
> doing some weird stuff.
>
I don't really care for the enchanced 3d features offered by the nvidia drivers anyway. Good video playback and multi-screen support is more important for me.
> Or, there is another option, and that to use a back-ported version of
> 2.6.34 DRM/KMS/TTM driversets which include the nouveau support.
> (I am right now running with that on a GeForce 8600 GT on Xen 4.1 +
> latest PVOPS kernel).
>
According to http://www.backports.org/dokuwiki/doku.php?id=packages
There are only back ports for lenny or etch, could you please elaborate your set and how one might mimic what you have done using Debian squeeze?
Thanks
-M
[-- Attachment #1.2: Type: text/html, Size: 4560 bytes --]
[-- Attachment #2: nouveau-crash.txt --]
[-- Type: text/plain, Size: 71179 bytes --]
Aug 30 09:19:30 BUBBLE kernel: imklog 4.6.4, log source = /proc/kmsg started.
Aug 30 09:19:30 BUBBLE rsyslogd: [origin software="rsyslogd" swVersion="4.6.4" x-pid="1242" x-info="http://www.rsyslog.com"] (re)start
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Initializing cgroup subsys cpuset
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Initializing cgroup subsys cpu
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Linux version 2.6.32-5-xen-amd64 (Debian 2.6.32-20) (ben@decadent.org.uk) (gcc version 4.3.5 (Debian 4.3.5-2) ) #1 SMP Thu Aug 12 15:17:50 UTC 2010
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Command line: placeholder root=UUID=dd594014-8570-45a6-be99-25f04210c866 ro nomodeset
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] KERNEL supported cpus:
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Intel GenuineIntel
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] AMD AuthenticAMD
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Centaur CentaurHauls
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] xen_release_chunk: looking at area pfn c0000-f0000: 196608 pages freed
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] xen_release_chunk: looking at area pfn f4000-f4c7f: 3199 pages freed
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] released 199807 pages of unused memory
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] BIOS-provided physical RAM map:
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: 0000000000000000 - 000000000009d800 (usable)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: 000000000009d800 - 0000000000100000 (reserved)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: 0000000000100000 - 00000000bfeb0000 (usable)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: 00000000bfeb0000 - 00000000bfecc000 (ACPI data)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: 00000000bfecc000 - 00000000bff00000 (ACPI NVS)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: 00000000bff00000 - 00000000c0000000 (reserved)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: 00000000f0000000 - 00000000f4000000 (reserved)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: 00000000fec00000 - 00000000fec10000 (reserved)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: 00000000fed00000 - 00000000fed00400 (reserved)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: 00000000fed14000 - 00000000fed1a000 (reserved)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: 00000000fed1c000 - 00000000fed90000 (reserved)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: 00000000fee00000 - 00000000fee01000 (reserved)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: 00000000ff000000 - 0000000100000000 (reserved)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] DMI present.
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] last_pfn = 0xbfeb0 max_arch_pfn = 0x400000000
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x50100070406, new 0x7010600070106
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000bfeb0000
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] RAMDISK: 016b4000 - 02ff2600
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: RSDP 00000000000f69b0 00024 (v02 LENOVO)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: XSDT 00000000bfebb27e 0008C (v01 LENOVO TP-7K 00002290 LTP 00000000)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: FACP 00000000bfebb400 000F4 (v03 LENOVO TP-7K 00002290 LNVO 00000001)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20090903/tbfadt-526)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 000000000000102C/0 (20090903/tbfadt-557)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: DSDT 00000000bfebb81d 1044C (v01 LENOVO TP-7K 00002290 MSFT 03000000)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: FACS 00000000bfee4000 00040
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: SSDT 00000000bfebb5b4 00269 (v01 LENOVO TP-7K 00002290 MSFT 03000000)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: ECDT 00000000bfecbc69 00052 (v01 LENOVO TP-7K 00002290 LNVO 00000001)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: TCPA 00000000bfecbcbb 00032 (v02 LENOVO TP-7K 00002290 LNVO 00000001)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: APIC 00000000bfecbced 00068 (v01 LENOVO TP-7K 00002290 LNVO 00000001)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: MCFG 00000000bfecbd55 0003C (v01 LENOVO TP-7K 00002290 LNVO 00000001)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: HPET 00000000bfecbd91 00038 (v01 LENOVO TP-7K 00002290 LNVO 00000001)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: SLIC 00000000bfecbe62 00176 (v01 LENOVO TP-7K 00002290 LTP 00000000)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: BOOT 00000000bfecbfd8 00028 (v01 LENOVO TP-7K 00002290 LTP 00000001)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: SSDT 00000000bfee26d9 0025F (v01 LENOVO TP-7K 00002290 INTL 20050513)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: SSDT 00000000bfee2938 000A6 (v01 LENOVO TP-7K 00002290 INTL 20050513)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: SSDT 00000000bfee29de 004F7 (v01 LENOVO TP-7K 00002290 INTL 20050513)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: SSDT 00000000bfee2ed5 001D8 (v01 LENOVO TP-7K 00002290 INTL 20050513)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: DMI detected: Lenovo ThinkPad R61
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: Added _OSI(Linux)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] No NUMA configuration found
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Faking a node at 0000000000000000-00000000bfeb0000
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Bootmem setup node 0 0000000000000000-00000000bfeb0000
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] NODE_DATA [0000000000008000 - 000000000000ffff]
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] bootmap [0000000000010000 - 0000000000027fd7] pages 18
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] (8 early reservations) ==> bootmem [0000000000 - 00bfeb0000]
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] #1 [000379b000 - 00037bc000] XEN PAGETABLES ==> [000379b000 - 00037bc000]
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] #2 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000]
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] #3 [0001000000 - 0001693954] TEXT DATA BSS ==> [0001000000 - 0001693954]
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] #4 [00016b4000 - 0002ff2600] RAMDISK ==> [00016b4000 - 0002ff2600]
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] #5 [0002ff3000 - 000379b000] XEN START INFO ==> [0002ff3000 - 000379b000]
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] #6 [0001694000 - 000169414c] BRK ==> [0001694000 - 000169414c]
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] #7 [0000100000 - 00006e0000] PGTABLE ==> [0000100000 - 00006e0000]
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] found SMP MP-table at [ffff8800000f69e0] f69e0
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Zone PFN ranges:
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] DMA 0x00000000 -> 0x00001000
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] DMA32 0x00001000 -> 0x00100000
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Normal 0x00100000 -> 0x00100000
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Movable zone start PFN for each node
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] early_node_map[2] active PFN ranges
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] 0: 0x00000000 -> 0x0000009d
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] 0: 0x00000100 -> 0x000bfeb0
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x1008
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] IOAPIC[0]: apic_id 1, version 0, address 0xfec00000, GSI 0-0
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 0000000000100000
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:30000000)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Booting paravirtualized kernel on Xen
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen version: 4.0.1-rc6 (preserve-AD) (dom0)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:2 nr_node_ids:1
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff8800037f2000 s90328 r8192 d24360 u122880
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] pcpu-alloc: s90328 r8192 d24360 u122880 alloc=30*4096
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] pcpu-alloc: [0] 0 [0] 1
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Xen: using vcpu_info placement
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 773742
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Policy zone: DMA32
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Kernel command line: placeholder root=UUID=dd594014-8570-45a6-be99-25f04210c866 ro nomodeset
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Initializing CPU#0
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] DMA: Placing 64MB software IO TLB between ffff8800065d4000 - ffff88000a5d4000
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] DMA: software IO TLB at phys 0x65d4000 - 0xa5d4000
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] xen_swiotlb_fixup: buf=ffff8800065d4000 size=67108864
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] xen_swiotlb_fixup: buf=ffff88000a634000 size=32768
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Memory: 2987796k/3144384k available (3139k kernel code, 396k absent, 156192k reserved, 1906k data, 592k init)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Hierarchical RCU implementation.
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] NR_IRQS:4352 nr_irqs:768
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] xen: sci override: source_irq=9 global_irq=9 trigger=c polarity=1
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] xen_allocate_pirq: returning irq 9 for gsi 9
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] xen: acpi sci 9
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Console: colour VGA+ 80x25
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] console [tty0] enabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] installing Xen timer for CPU 0
Aug 30 09:19:30 BUBBLE kernel: [ 0.000000] Detected 1995.026 MHz processor.
Aug 30 09:19:30 BUBBLE kernel: [ 0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3990.05 BogoMIPS (lpj=7980104)
Aug 30 09:19:30 BUBBLE kernel: [ 0.004000] Security Framework initialized
Aug 30 09:19:30 BUBBLE kernel: [ 0.004000] SELinux: Disabled at boot.
Aug 30 09:19:30 BUBBLE kernel: [ 0.004000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
Aug 30 09:19:30 BUBBLE kernel: [ 0.004174] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
Aug 30 09:19:30 BUBBLE kernel: [ 0.005285] Mount-cache hash table entries: 256
Aug 30 09:19:30 BUBBLE kernel: [ 0.005562] Initializing cgroup subsys ns
Aug 30 09:19:30 BUBBLE kernel: [ 0.005634] Initializing cgroup subsys cpuacct
Aug 30 09:19:30 BUBBLE kernel: [ 0.005702] Initializing cgroup subsys devices
Aug 30 09:19:30 BUBBLE kernel: [ 0.005769] Initializing cgroup subsys freezer
Aug 30 09:19:30 BUBBLE kernel: [ 0.005836] Initializing cgroup subsys net_cls
Aug 30 09:19:30 BUBBLE kernel: [ 0.005945] CPU: L1 I cache: 32K, L1 D cache: 32K
Aug 30 09:19:30 BUBBLE kernel: [ 0.006058] CPU: L2 cache: 4096K
Aug 30 09:19:30 BUBBLE kernel: [ 0.006125] CPU 0/0x0 -> Node 0
Aug 30 09:19:30 BUBBLE kernel: [ 0.006189] CPU: Physical Processor ID: 0
Aug 30 09:19:30 BUBBLE kernel: [ 0.006254] CPU: Processor Core ID: 0
Aug 30 09:19:30 BUBBLE kernel: [ 0.006322] mce: CPU supports 6 MCE banks
Aug 30 09:19:30 BUBBLE kernel: [ 0.006409] Performance Events: unsupported p6 CPU model 15 no PMU driver, software events only.
Aug 30 09:19:30 BUBBLE kernel: [ 0.006600] SMP alternatives: switching to UP code
Aug 30 09:19:30 BUBBLE kernel: [ 0.012000] ACPI: Core revision 20090903
Aug 30 09:19:30 BUBBLE kernel: [ 0.044370] installing Xen timer for CPU 1
Aug 30 09:19:30 BUBBLE kernel: [ 0.044480] SMP alternatives: switching to SMP code
Aug 30 09:19:30 BUBBLE kernel: [ 0.004000] Initializing CPU#1
Aug 30 09:19:30 BUBBLE kernel: [ 0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
Aug 30 09:19:30 BUBBLE kernel: [ 0.004000] CPU: L2 cache: 4096K
Aug 30 09:19:30 BUBBLE kernel: [ 0.004000] CPU 1/0x0 -> Node 0
Aug 30 09:19:30 BUBBLE kernel: [ 0.004000] CPU: Physical Processor ID: 0
Aug 30 09:19:30 BUBBLE kernel: [ 0.004000] CPU: Processor Core ID: 1
Aug 30 09:19:30 BUBBLE kernel: [ 0.048145] Brought up 2 CPUs
Aug 30 09:19:30 BUBBLE kernel: [ 0.048706] devtmpfs: initialized
Aug 30 09:19:30 BUBBLE kernel: [ 0.052174] Grant table initialized
Aug 30 09:19:30 BUBBLE kernel: [ 0.052174] regulator: core version 0.5
Aug 30 09:19:30 BUBBLE kernel: [ 0.052238] NET: Registered protocol family 16
Aug 30 09:19:30 BUBBLE kernel: [ 0.052415] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Aug 30 09:19:30 BUBBLE kernel: [ 0.052415] ACPI: bus type pci registered
Aug 30 09:19:30 BUBBLE kernel: [ 0.052415] PCI: MCFG configuration 0: base f0000000 segment 0 buses 0 - 63
Aug 30 09:19:30 BUBBLE kernel: [ 0.052415] PCI: MCFG area at f0000000 reserved in E820
Aug 30 09:19:30 BUBBLE kernel: [ 0.070172] PCI: Using MMCONFIG at f0000000 - f3ffffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.070239] PCI: Using configuration type 1 for base access
Aug 30 09:19:30 BUBBLE kernel: [ 0.070916] bio: create slab <bio-0> at 0
Aug 30 09:19:30 BUBBLE kernel: [ 0.070991] ACPI: EC: EC description table is found, configuring boot EC
Aug 30 09:19:30 BUBBLE kernel: [ 0.085214] ACPI: BIOS _OSI(Linux) query honored via DMI
Aug 30 09:19:30 BUBBLE kernel: [ 0.103232] ACPI: Interpreter enabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.103301] ACPI: (supports S0 S3 S4 S5)
Aug 30 09:19:30 BUBBLE kernel: [ 0.103575] ACPI: Using IOAPIC for interrupt routing
Aug 30 09:19:30 BUBBLE kernel: [ 0.119126] ACPI: EC: GPE = 0x12, I/O: command/status = 0x66, data = 0x62
Aug 30 09:19:30 BUBBLE kernel: [ 0.120074] ACPI: Power Resource [PUBS] (on)
Aug 30 09:19:30 BUBBLE kernel: [ 0.122055] ACPI: ACPI Dock Station Driver: 3 docks/bays found
Aug 30 09:19:30 BUBBLE kernel: [ 0.124576] ACPI: PCI Root Bridge [PCI0] (0000:00)
Aug 30 09:19:30 BUBBLE kernel: [ 0.124959] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.125032] pci 0000:00:01.0: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.125587] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.125664] pci 0000:00:19.0: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.126505] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.126583] pci 0000:00:1a.7: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.127018] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.127095] pci 0000:00:1b.0: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.127467] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.127545] pci 0000:00:1c.0: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.127930] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.128001] pci 0000:00:1c.1: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.128001] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.128001] pci 0000:00:1c.2: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.128001] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.128001] pci 0000:00:1c.3: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.128001] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.128001] pci 0000:00:1c.4: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.128001] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.128001] pci 0000:00:1d.7: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.128500] pci 0000:00:1f.0: quirk: region 1000-107f claimed by ICH6 ACPI/GPIO/TCO
Aug 30 09:19:30 BUBBLE kernel: [ 0.128588] pci 0000:00:1f.0: quirk: region 1180-11bf claimed by ICH6 GPIO
Aug 30 09:19:30 BUBBLE kernel: [ 0.128663] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 1600 (mask 007f)
Aug 30 09:19:30 BUBBLE kernel: [ 0.128751] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 15e0 (mask 000f)
Aug 30 09:19:30 BUBBLE kernel: [ 0.128837] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 1680 (mask 001f)
Aug 30 09:19:30 BUBBLE kernel: [ 0.129663] pci 0000:00:1f.2: PME# supported from D3hot
Aug 30 09:19:30 BUBBLE kernel: [ 0.129740] pci 0000:00:1f.2: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.131350] pci 0000:03:00.0: PME# supported from D0 D3hot
Aug 30 09:19:30 BUBBLE kernel: [ 0.131432] pci 0000:03:00.0: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.131629] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
Aug 30 09:19:30 BUBBLE kernel: [ 0.132001] pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.132001] pci 0000:15:00.0: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.132329] pci 0000:15:00.1: PME# supported from D0 D1 D2 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.132409] pci 0000:15:00.1: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.132823] pci 0000:15:00.2: PME# supported from D0 D1 D2 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.132903] pci 0000:15:00.2: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.133317] pci 0000:15:00.3: PME# supported from D0 D1 D2 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.133396] pci 0000:15:00.3: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.133809] pci 0000:15:00.4: PME# supported from D0 D1 D2 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.133889] pci 0000:15:00.4: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.134302] pci 0000:15:00.5: PME# supported from D0 D1 D2 D3hot D3cold
Aug 30 09:19:30 BUBBLE kernel: [ 0.134382] pci 0000:15:00.5: PME# disabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.134673] pci 0000:00:1e.0: transparent bridge
Aug 30 09:19:30 BUBBLE kernel: [ 0.151404] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11)
Aug 30 09:19:30 BUBBLE kernel: [ 0.152217] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
Aug 30 09:19:30 BUBBLE kernel: [ 0.153022] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
Aug 30 09:19:30 BUBBLE kernel: [ 0.153824] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
Aug 30 09:19:30 BUBBLE kernel: [ 0.154628] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
Aug 30 09:19:30 BUBBLE kernel: [ 0.155432] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11)
Aug 30 09:19:30 BUBBLE kernel: [ 0.156245] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11)
Aug 30 09:19:30 BUBBLE kernel: [ 0.157048] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
Aug 30 09:19:30 BUBBLE kernel: [ 0.157784] xen_balloon: Initialising balloon driver with page order 0.
Aug 30 09:19:30 BUBBLE kernel: [ 0.157959] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Aug 30 09:19:30 BUBBLE kernel: [ 0.158049] vgaarb: loaded
Aug 30 09:19:30 BUBBLE kernel: [ 0.160057] PCI: Using ACPI for IRQ routing
Aug 30 09:19:30 BUBBLE kernel: [ 0.160665] Switching to clocksource xen
Aug 30 09:19:30 BUBBLE kernel: [ 0.161897] pnp: PnP ACPI init
Aug 30 09:19:30 BUBBLE kernel: [ 0.161972] ACPI: bus type pnp registered
Aug 30 09:19:30 BUBBLE kernel: [ 0.164405] xen_allocate_pirq: returning irq 13 for gsi 13
Aug 30 09:19:30 BUBBLE kernel: [ 0.164549] xen_allocate_pirq: returning irq 8 for gsi 8
Aug 30 09:19:30 BUBBLE kernel: [ 0.164682] xen_allocate_pirq: returning irq 1 for gsi 1
Aug 30 09:19:30 BUBBLE kernel: [ 0.164814] xen_allocate_pirq: returning irq 12 for gsi 12
Aug 30 09:19:30 BUBBLE kernel: [ 0.167336] pnp: PnP ACPI: found 11 devices
Aug 30 09:19:30 BUBBLE kernel: [ 0.167403] ACPI: ACPI bus type pnp unregistered
Aug 30 09:19:30 BUBBLE kernel: [ 0.167479] system 00:00: iomem range 0x0-0x9ffff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.167550] system 00:00: iomem range 0xc0000-0xc3fff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.167621] system 00:00: iomem range 0xc4000-0xc7fff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.167691] system 00:00: iomem range 0xc8000-0xcbfff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.167762] system 00:00: iomem range 0xcc000-0xcffff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.167832] system 00:00: iomem range 0xd0000-0xd3fff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.167903] system 00:00: iomem range 0xe0000-0xe3fff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.167973] system 00:00: iomem range 0xe4000-0xe7fff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.168043] system 00:00: iomem range 0xe8000-0xebfff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.168113] system 00:00: iomem range 0xec000-0xeffff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.168184] system 00:00: iomem range 0xf0000-0xfffff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.168254] system 00:00: iomem range 0x100000-0xbfffffff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.168337] system 00:00: iomem range 0xfec00000-0xfed3ffff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.168421] system 00:00: iomem range 0xfed4c000-0xffffffff could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.168510] system 00:02: ioport range 0x164e-0x164f has been reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.168580] system 00:02: ioport range 0x1000-0x107f has been reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.168649] system 00:02: ioport range 0x1180-0x11bf has been reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.168719] system 00:02: ioport range 0x800-0x80f has been reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.168789] system 00:02: ioport range 0x15e0-0x15ef has been reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.168859] system 00:02: ioport range 0x1600-0x165f could not be reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.168929] system 00:02: iomem range 0xf0000000-0xf3ffffff has been reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.169002] system 00:02: iomem range 0xfed1c000-0xfed1ffff has been reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.169072] system 00:02: iomem range 0xfed14000-0xfed17fff has been reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.169142] system 00:02: iomem range 0xfed18000-0xfed18fff has been reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.169212] system 00:02: iomem range 0xfed19000-0xfed19fff has been reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.169282] system 00:02: iomem range 0xfed45000-0xfed4bfff has been reserved
Aug 30 09:19:30 BUBBLE kernel: [ 0.175682] PM-Timer failed consistency check (0x0xffffff) - aborting.
Aug 30 09:19:30 BUBBLE kernel: [ 0.175990] pci 0000:01:00.0: BAR 6: can't allocate mem resource [0xf0000000-0xefffffff]
Aug 30 09:19:30 BUBBLE kernel: [ 0.176074] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
Aug 30 09:19:30 BUBBLE kernel: [ 0.176144] pci 0000:00:01.0: IO window: 0x2000-0x2fff
Aug 30 09:19:30 BUBBLE kernel: [ 0.176218] pci 0000:00:01.0: MEM window: 0xd4000000-0xd6ffffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.176290] pci 0000:00:01.0: PREFETCH window: 0x000000e0000000-0x000000efffffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.176380] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
Aug 30 09:19:30 BUBBLE kernel: [ 0.176453] pci 0000:00:1c.0: IO window: 0x3000-0x3fff
Aug 30 09:19:30 BUBBLE kernel: [ 0.176534] pci 0000:00:1c.0: MEM window: 0xfc000000-0xfdffffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.176612] pci 0000:00:1c.0: PREFETCH window: 0x000000f8000000-0x000000f80fffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.176713] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03
Aug 30 09:19:30 BUBBLE kernel: [ 0.176786] pci 0000:00:1c.1: IO window: 0x4000-0x4fff
Aug 30 09:19:30 BUBBLE kernel: [ 0.176868] pci 0000:00:1c.1: MEM window: 0xdc100000-0xdf2fffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.176945] pci 0000:00:1c.1: PREFETCH window: 0x000000dfd00000-0x000000dfdfffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1c.2: PCI bridge, secondary bus 0000:04
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1c.2: IO window: 0x5000-0x5fff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1c.2: MEM window: 0xd8000000-0xd9ffffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1c.2: PREFETCH window: 0x000000dfa00000-0x000000dfafffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1c.3: PCI bridge, secondary bus 0000:05
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1c.3: IO window: 0x6000-0x6fff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1c.3: MEM window: 0xd0000000-0xd1ffffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1c.3: PREFETCH window: 0x000000df700000-0x000000df7fffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1c.4: PCI bridge, secondary bus 0000:0d
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1c.4: IO window: 0x7000-0x7fff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1c.4: MEM window: 0xcc000000-0xcdffffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1c.4: PREFETCH window: 0x000000df400000-0x000000df4fffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:15:00.0: CardBus bridge, secondary bus 0000:16
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:15:00.0: IO window: 0x008000-0x0080ff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:15:00.0: IO window: 0x008400-0x0084ff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:15:00.0: PREFETCH window: 0xf4000000-0xf7ffffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:15:00.0: MEM window: 0xc0000000-0xc3ffffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:15
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1e.0: IO window: 0x8000-0xbfff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1e.0: MEM window: 0xf8100000-0xfbffffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.177004] pci 0000:00:1e.0: PREFETCH window: 0x000000f4000000-0x000000f7ffffff
Aug 30 09:19:30 BUBBLE kernel: [ 0.178794] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Aug 30 09:19:30 BUBBLE kernel: [ 0.178913] pci 0000:00:1c.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
Aug 30 09:19:30 BUBBLE kernel: [ 0.179039] pci 0000:00:1c.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
Aug 30 09:19:30 BUBBLE kernel: [ 0.179164] pci 0000:00:1c.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22
Aug 30 09:19:30 BUBBLE kernel: [ 0.179290] pci 0000:00:1c.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
Aug 30 09:19:30 BUBBLE kernel: [ 0.179401] xen_allocate_pirq: returning irq 20 for gsi 20
Aug 30 09:19:30 BUBBLE kernel: [ 0.179471] Already setup the GSI :20
Aug 30 09:19:30 BUBBLE kernel: [ 0.179536] pci 0000:00:1c.4: PCI INT A -> GSI 20 (level, low) -> IRQ 20
Aug 30 09:19:30 BUBBLE kernel: [ 0.179630] pci 0000:00:1e.0: enabling device (0005 -> 0007)
Aug 30 09:19:30 BUBBLE kernel: [ 0.179747] xen_allocate_pirq: returning irq 16 for gsi 16
Aug 30 09:19:30 BUBBLE kernel: [ 0.179817] Already setup the GSI :16
Aug 30 09:19:30 BUBBLE kernel: [ 0.179882] pci 0000:15:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Aug 30 09:19:30 BUBBLE kernel: [ 0.180094] NET: Registered protocol family 2
Aug 30 09:19:30 BUBBLE kernel: [ 0.180526] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
Aug 30 09:19:30 BUBBLE kernel: [ 0.183515] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
Aug 30 09:19:30 BUBBLE kernel: [ 0.187927] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Aug 30 09:19:30 BUBBLE kernel: [ 0.188555] TCP: Hash tables configured (established 524288 bind 65536)
Aug 30 09:19:30 BUBBLE kernel: [ 0.188624] TCP reno registered
Aug 30 09:19:30 BUBBLE kernel: [ 0.188827] NET: Registered protocol family 1
Aug 30 09:19:30 BUBBLE kernel: [ 0.189406] Unpacking initramfs...
Aug 30 09:19:30 BUBBLE kernel: [ 0.228435] Freeing initrd memory: 25849k freed
Aug 30 09:19:30 BUBBLE kernel: [ 0.244089] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Aug 30 09:19:30 BUBBLE kernel: [ 0.244170] DMA: Placing 64MB software IO TLB between ffff8800065d4000 - ffff88000a5d4000
Aug 30 09:19:30 BUBBLE kernel: [ 0.244253] DMA: software IO TLB at phys 0x65d4000 - 0xa5d4000
Aug 30 09:19:30 BUBBLE kernel: [ 0.244418] Simple Boot Flag at 0x35 set to 0x1
Aug 30 09:19:30 BUBBLE kernel: [ 0.244949] audit: initializing netlink socket (disabled)
Aug 30 09:19:30 BUBBLE kernel: [ 0.245053] type=2000 audit(1283174360.129:1): initialized
Aug 30 09:19:30 BUBBLE kernel: [ 0.248657] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Aug 30 09:19:30 BUBBLE kernel: [ 0.256266] VFS: Disk quotas dquot_6.5.2
Aug 30 09:19:30 BUBBLE kernel: [ 0.256392] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Aug 30 09:19:30 BUBBLE kernel: [ 0.256565] msgmni has been set to 5886
Aug 30 09:19:30 BUBBLE kernel: [ 0.256915] alg: No test for stdrng (krng)
Aug 30 09:19:30 BUBBLE kernel: [ 0.257061] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Aug 30 09:19:30 BUBBLE kernel: [ 0.257145] io scheduler noop registered
Aug 30 09:19:30 BUBBLE kernel: [ 0.257211] io scheduler anticipatory registered
Aug 30 09:19:30 BUBBLE kernel: [ 0.257276] io scheduler deadline registered
Aug 30 09:19:30 BUBBLE kernel: [ 0.257383] io scheduler cfq registered (default)
Aug 30 09:19:30 BUBBLE kernel: [ 0.267955] hpet_acpi_add: no address or irqs in _CRS
Aug 30 09:19:30 BUBBLE kernel: [ 0.268054] Linux agpgart interface v0.103
Aug 30 09:19:30 BUBBLE kernel: [ 0.268210] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Aug 30 09:19:30 BUBBLE kernel: [ 0.268782] input: Macintosh mouse button emulation as /devices/virtual/input/input0
Aug 30 09:19:30 BUBBLE kernel: [ 0.268932] PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Aug 30 09:19:30 BUBBLE kernel: [ 0.273038] serio: i8042 KBD port at 0x60,0x64 irq 1
Aug 30 09:19:30 BUBBLE kernel: [ 0.273038] serio: i8042 AUX port at 0x60,0x64 irq 12
Aug 30 09:19:30 BUBBLE kernel: [ 0.278415] mice: PS/2 mouse device common for all mice
Aug 30 09:19:30 BUBBLE kernel: [ 0.278553] rtc_cmos 00:07: RTC can wake from S4
Aug 30 09:19:30 BUBBLE kernel: [ 0.278669] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
Aug 30 09:19:30 BUBBLE kernel: [ 0.278803] rtc0: alarms up to one month, y3k, 114 bytes nvram
Aug 30 09:19:30 BUBBLE kernel: [ 0.278882] cpuidle: using governor ladder
Aug 30 09:19:30 BUBBLE kernel: [ 0.278948] cpuidle: using governor menu
Aug 30 09:19:30 BUBBLE kernel: [ 0.279017] No iBFT detected.
Aug 30 09:19:30 BUBBLE kernel: [ 0.279418] TCP cubic registered
Aug 30 09:19:30 BUBBLE kernel: [ 0.279620] NET: Registered protocol family 10
Aug 30 09:19:30 BUBBLE kernel: [ 0.280240] lo: Disabled Privacy Extensions
Aug 30 09:19:30 BUBBLE kernel: [ 0.280592] Mobile IPv6
Aug 30 09:19:30 BUBBLE kernel: [ 0.280657] NET: Registered protocol family 17
Aug 30 09:19:30 BUBBLE kernel: [ 0.280839] registered taskstats version 1
Aug 30 09:19:30 BUBBLE kernel: [ 0.282584] rtc_cmos 00:07: setting system clock to 2010-08-30 13:19:19 UTC (1283174359)
Aug 30 09:19:30 BUBBLE kernel: [ 0.282718] Initalizing network drop monitor service
Aug 30 09:19:30 BUBBLE kernel: [ 0.282862] Freeing unused kernel memory: 592k freed
Aug 30 09:19:30 BUBBLE kernel: [ 0.283218] Write protecting the kernel read-only data: 4320k
Aug 30 09:19:30 BUBBLE kernel: [ 0.287273] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
Aug 30 09:19:30 BUBBLE kernel: [ 0.322090] udev: starting version 160
Aug 30 09:19:30 BUBBLE kernel: [ 0.523755] e1000e: Intel(R) PRO/1000 Network Driver - 1.0.2-k2
Aug 30 09:19:30 BUBBLE kernel: [ 0.523829] e1000e: Copyright (c) 1999-2008 Intel Corporation.
Aug 30 09:19:30 BUBBLE kernel: [ 0.523987] xen_allocate_pirq: returning irq 20 for gsi 20
Aug 30 09:19:30 BUBBLE kernel: [ 0.524062] Already setup the GSI :20
Aug 30 09:19:30 BUBBLE kernel: [ 0.524132] e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
Aug 30 09:19:30 BUBBLE kernel: [ 0.537729] usbcore: registered new interface driver usbfs
Aug 30 09:19:30 BUBBLE kernel: [ 0.537832] usbcore: registered new interface driver hub
Aug 30 09:19:30 BUBBLE kernel: [ 0.553693] SCSI subsystem initialized
Aug 30 09:19:30 BUBBLE kernel: [ 0.557691] usbcore: registered new device driver usb
Aug 30 09:19:30 BUBBLE kernel: [ 0.581866] ricoh-mmc: Ricoh MMC Controller disabling driver
Aug 30 09:19:30 BUBBLE kernel: [ 0.581936] ricoh-mmc: Copyright(c) Philip Langdale
Aug 30 09:19:30 BUBBLE kernel: [ 0.582030] ricoh-mmc: Ricoh MMC controller found at 0000:15:00.3 [1180:0843] (rev 11)
Aug 30 09:19:30 BUBBLE kernel: [ 0.582160] ricoh-mmc: Controller is now disabled.
Aug 30 09:19:30 BUBBLE kernel: [ 0.583538] thermal LNXTHERM:01: registered as thermal_zone0
Aug 30 09:19:30 BUBBLE kernel: [ 0.583618] ACPI: Thermal Zone [THM0] (56 C)
Aug 30 09:19:30 BUBBLE kernel: [ 0.585848] thermal LNXTHERM:02: registered as thermal_zone1
Aug 30 09:19:30 BUBBLE kernel: [ 0.585930] ACPI: Thermal Zone [THM1] (57 C)
Aug 30 09:19:30 BUBBLE kernel: [ 0.588198] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Aug 30 09:19:30 BUBBLE kernel: [ 0.593602] firewire_ohci 0000:15:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
Aug 30 09:19:30 BUBBLE kernel: [ 0.598209] sdhci: Secure Digital Host Controller Interface driver
Aug 30 09:19:30 BUBBLE kernel: [ 0.598330] sdhci: Copyright(c) Pierre Ossman
Aug 30 09:19:30 BUBBLE kernel: [ 0.673020] firewire_ohci: Added fw-ohci device 0000:15:00.1, OHCI version 1.10
Aug 30 09:19:30 BUBBLE kernel: [ 0.673147] sdhci-pci 0000:15:00.2: SDHCI controller found [1180:0822] (rev 21)
Aug 30 09:19:30 BUBBLE kernel: [ 0.673300] sdhci-pci 0000:15:00.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Aug 30 09:19:30 BUBBLE kernel: [ 0.674412] sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
Aug 30 09:19:30 BUBBLE kernel: [ 0.675621] Registered led device: mmc0::
Aug 30 09:19:30 BUBBLE kernel: [ 0.676004] mmc0: SDHCI controller on PCI [0000:15:00.2] using DMA
Aug 30 09:19:30 BUBBLE kernel: [ 0.782659] 0000:00:19.0: eth0: (PCI Express:2.5GB/s:Width x1) 00:15:58:c9:91:92
Aug 30 09:19:30 BUBBLE kernel: [ 0.782744] 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
Aug 30 09:19:30 BUBBLE kernel: [ 0.782850] 0000:00:19.0: eth0: MAC: 6, PHY: 6, PBA No: ffffff-0ff
Aug 30 09:19:30 BUBBLE kernel: [ 0.783260] ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0
Aug 30 09:19:30 BUBBLE kernel: [ 0.783631] ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0
Aug 30 09:19:30 BUBBLE kernel: [ 0.783716] xen_allocate_pirq: returning irq 22 for gsi 22
Aug 30 09:19:30 BUBBLE kernel: [ 0.783786] Already setup the GSI :22
Aug 30 09:19:30 BUBBLE kernel: [ 0.783852] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 22 (level, low) -> IRQ 22
Aug 30 09:19:30 BUBBLE kernel: [ 0.783953] ehci_hcd 0000:00:1a.7: EHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.784009] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
Aug 30 09:19:30 BUBBLE kernel: [ 0.788130] ehci_hcd 0000:00:1a.7: irq 22, io mem 0xfe225800
Aug 30 09:19:30 BUBBLE kernel: [ 0.804019] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Aug 30 09:19:30 BUBBLE kernel: [ 0.804116] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Aug 30 09:19:30 BUBBLE kernel: [ 0.804186] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 30 09:19:30 BUBBLE kernel: [ 0.804268] usb usb1: Product: EHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.804334] usb usb1: Manufacturer: Linux 2.6.32-5-xen-amd64 ehci_hcd
Aug 30 09:19:30 BUBBLE kernel: [ 0.804402] usb usb1: SerialNumber: 0000:00:1a.7
Aug 30 09:19:30 BUBBLE kernel: [ 0.804565] usb usb1: configuration #1 chosen from 1 choice
Aug 30 09:19:30 BUBBLE kernel: [ 0.804676] hub 1-0:1.0: USB hub found
Aug 30 09:19:30 BUBBLE kernel: [ 0.804760] hub 1-0:1.0: 4 ports detected
Aug 30 09:19:30 BUBBLE kernel: [ 0.804939] xen_allocate_pirq: returning irq 16 for gsi 16
Aug 30 09:19:30 BUBBLE kernel: [ 0.805010] Already setup the GSI :16
Aug 30 09:19:30 BUBBLE kernel: [ 0.805076] ahci 0000:00:1f.2: PCI INT B -> GSI 16 (level, low) -> IRQ 16
Aug 30 09:19:30 BUBBLE kernel: [ 0.805360] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 1.5 Gbps 0x5 impl SATA mode
Aug 30 09:19:30 BUBBLE kernel: [ 0.805445] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc
Aug 30 09:19:30 BUBBLE kernel: [ 0.805873] scsi0 : ahci
Aug 30 09:19:30 BUBBLE kernel: [ 0.806053] scsi1 : ahci
Aug 30 09:19:30 BUBBLE kernel: [ 0.806196] scsi2 : ahci
Aug 30 09:19:30 BUBBLE kernel: [ 0.806411] ata1: SATA max UDMA/133 abar m2048@0xfe225000 port 0xfe225100 irq 746
Aug 30 09:19:30 BUBBLE kernel: [ 0.806494] ata2: DUMMY
Aug 30 09:19:30 BUBBLE kernel: [ 0.806561] ata3: SATA max UDMA/133 abar m2048@0xfe225000 port 0xfe225200 irq 746
Aug 30 09:19:30 BUBBLE kernel: [ 0.806712] xen_allocate_pirq: returning irq 16 for gsi 16
Aug 30 09:19:30 BUBBLE kernel: [ 0.806785] Already setup the GSI :16
Aug 30 09:19:30 BUBBLE kernel: [ 0.806851] ata_piix 0000:00:1f.1: PCI INT C -> GSI 16 (level, low) -> IRQ 16
Aug 30 09:19:30 BUBBLE kernel: [ 0.807145] scsi3 : ata_piix
Aug 30 09:19:30 BUBBLE kernel: [ 0.807320] scsi4 : ata_piix
Aug 30 09:19:30 BUBBLE kernel: [ 0.808311] ata4: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x18c0 irq 14
Aug 30 09:19:30 BUBBLE kernel: [ 0.808382] ata5: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x18c8 irq 15
Aug 30 09:19:30 BUBBLE kernel: [ 0.808961] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
Aug 30 09:19:30 BUBBLE kernel: [ 0.809277] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
Aug 30 09:19:30 BUBBLE kernel: [ 0.809380] ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19
Aug 30 09:19:30 BUBBLE kernel: [ 0.809484] ehci_hcd 0000:00:1d.7: EHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.809560] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
Aug 30 09:19:30 BUBBLE kernel: [ 0.809721] ehci_hcd 0000:00:1d.7: debug port 1
Aug 30 09:19:30 BUBBLE kernel: [ 0.813730] ehci_hcd 0000:00:1d.7: irq 19, io mem 0xfe225c00
Aug 30 09:19:30 BUBBLE kernel: [ 0.828018] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Aug 30 09:19:30 BUBBLE kernel: [ 0.828112] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Aug 30 09:19:30 BUBBLE kernel: [ 0.828182] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 30 09:19:30 BUBBLE kernel: [ 0.828263] usb usb2: Product: EHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.828328] usb usb2: Manufacturer: Linux 2.6.32-5-xen-amd64 ehci_hcd
Aug 30 09:19:30 BUBBLE kernel: [ 0.828396] usb usb2: SerialNumber: 0000:00:1d.7
Aug 30 09:19:30 BUBBLE kernel: [ 0.828541] usb usb2: configuration #1 chosen from 1 choice
Aug 30 09:19:30 BUBBLE kernel: [ 0.828662] hub 2-0:1.0: USB hub found
Aug 30 09:19:30 BUBBLE kernel: [ 0.828743] hub 2-0:1.0: 6 ports detected
Aug 30 09:19:30 BUBBLE kernel: [ 0.853886] uhci_hcd: USB Universal Host Controller Interface driver
Aug 30 09:19:30 BUBBLE kernel: [ 0.853993] xen_allocate_pirq: returning irq 20 for gsi 20
Aug 30 09:19:30 BUBBLE kernel: [ 0.854066] Already setup the GSI :20
Aug 30 09:19:30 BUBBLE kernel: [ 0.854132] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
Aug 30 09:19:30 BUBBLE kernel: [ 0.854222] uhci_hcd 0000:00:1a.0: UHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.854299] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Aug 30 09:19:30 BUBBLE kernel: [ 0.854462] uhci_hcd 0000:00:1a.0: irq 20, io base 0x00001820
Aug 30 09:19:30 BUBBLE kernel: [ 0.854613] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Aug 30 09:19:30 BUBBLE kernel: [ 0.854682] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 30 09:19:30 BUBBLE kernel: [ 0.854764] usb usb3: Product: UHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.854829] usb usb3: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
Aug 30 09:19:30 BUBBLE kernel: [ 0.854897] usb usb3: SerialNumber: 0000:00:1a.0
Aug 30 09:19:30 BUBBLE kernel: [ 0.855042] usb usb3: configuration #1 chosen from 1 choice
Aug 30 09:19:30 BUBBLE kernel: [ 0.855145] hub 3-0:1.0: USB hub found
Aug 30 09:19:30 BUBBLE kernel: [ 0.855225] hub 3-0:1.0: 2 ports detected
Aug 30 09:19:30 BUBBLE kernel: [ 0.855667] uhci_hcd 0000:00:1a.1: power state changed by ACPI to D0
Aug 30 09:19:30 BUBBLE kernel: [ 0.855979] uhci_hcd 0000:00:1a.1: power state changed by ACPI to D0
Aug 30 09:19:30 BUBBLE kernel: [ 0.856059] xen_allocate_pirq: returning irq 21 for gsi 21
Aug 30 09:19:30 BUBBLE kernel: [ 0.856140] Already setup the GSI :21
Aug 30 09:19:30 BUBBLE kernel: [ 0.856206] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
Aug 30 09:19:30 BUBBLE kernel: [ 0.856295] uhci_hcd 0000:00:1a.1: UHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.856372] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
Aug 30 09:19:30 BUBBLE kernel: [ 0.856533] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840
Aug 30 09:19:30 BUBBLE kernel: [ 0.856684] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Aug 30 09:19:30 BUBBLE kernel: [ 0.856753] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 30 09:19:30 BUBBLE kernel: [ 0.856835] usb usb4: Product: UHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.856901] usb usb4: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
Aug 30 09:19:30 BUBBLE kernel: [ 0.856968] usb usb4: SerialNumber: 0000:00:1a.1
Aug 30 09:19:30 BUBBLE kernel: [ 0.857107] usb usb4: configuration #1 chosen from 1 choice
Aug 30 09:19:30 BUBBLE kernel: [ 0.857213] hub 4-0:1.0: USB hub found
Aug 30 09:19:30 BUBBLE kernel: [ 0.857294] hub 4-0:1.0: 2 ports detected
Aug 30 09:19:30 BUBBLE kernel: [ 0.857729] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
Aug 30 09:19:30 BUBBLE kernel: [ 0.858039] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
Aug 30 09:19:30 BUBBLE kernel: [ 0.858118] xen_allocate_pirq: returning irq 16 for gsi 16
Aug 30 09:19:30 BUBBLE kernel: [ 0.858188] Already setup the GSI :16
Aug 30 09:19:30 BUBBLE kernel: [ 0.858254] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Aug 30 09:19:30 BUBBLE kernel: [ 0.858342] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.858418] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
Aug 30 09:19:30 BUBBLE kernel: [ 0.863949] uhci_hcd 0000:00:1d.0: irq 16, io base 0x00001860
Aug 30 09:19:30 BUBBLE kernel: [ 0.864109] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
Aug 30 09:19:30 BUBBLE kernel: [ 0.864181] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 30 09:19:30 BUBBLE kernel: [ 0.864266] usb usb5: Product: UHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.864335] usb usb5: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
Aug 30 09:19:30 BUBBLE kernel: [ 0.864405] usb usb5: SerialNumber: 0000:00:1d.0
Aug 30 09:19:30 BUBBLE kernel: [ 0.864547] usb usb5: configuration #1 chosen from 1 choice
Aug 30 09:19:30 BUBBLE kernel: [ 0.864653] hub 5-0:1.0: USB hub found
Aug 30 09:19:30 BUBBLE kernel: [ 0.864737] hub 5-0:1.0: 2 ports detected
Aug 30 09:19:30 BUBBLE kernel: [ 0.864891] xen_allocate_pirq: returning irq 17 for gsi 17
Aug 30 09:19:30 BUBBLE kernel: [ 0.864961] Already setup the GSI :17
Aug 30 09:19:30 BUBBLE kernel: [ 0.865027] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
Aug 30 09:19:30 BUBBLE kernel: [ 0.865116] uhci_hcd 0000:00:1d.1: UHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.865190] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
Aug 30 09:19:30 BUBBLE kernel: [ 0.865335] uhci_hcd 0000:00:1d.1: irq 17, io base 0x00001880
Aug 30 09:19:30 BUBBLE kernel: [ 0.865482] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
Aug 30 09:19:30 BUBBLE kernel: [ 0.865551] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 30 09:19:30 BUBBLE kernel: [ 0.865633] usb usb6: Product: UHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.865699] usb usb6: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
Aug 30 09:19:30 BUBBLE kernel: [ 0.865766] usb usb6: SerialNumber: 0000:00:1d.1
Aug 30 09:19:30 BUBBLE kernel: [ 0.865905] usb usb6: configuration #1 chosen from 1 choice
Aug 30 09:19:30 BUBBLE kernel: [ 0.866010] hub 6-0:1.0: USB hub found
Aug 30 09:19:30 BUBBLE kernel: [ 0.866091] hub 6-0:1.0: 2 ports detected
Aug 30 09:19:30 BUBBLE kernel: [ 0.866482] uhci_hcd 0000:00:1d.2: power state changed by ACPI to D0
Aug 30 09:19:30 BUBBLE kernel: [ 0.866793] uhci_hcd 0000:00:1d.2: power state changed by ACPI to D0
Aug 30 09:19:30 BUBBLE kernel: [ 0.866872] xen_allocate_pirq: returning irq 18 for gsi 18
Aug 30 09:19:30 BUBBLE kernel: [ 0.866942] Already setup the GSI :18
Aug 30 09:19:30 BUBBLE kernel: [ 0.867008] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Aug 30 09:19:30 BUBBLE kernel: [ 0.867099] uhci_hcd 0000:00:1d.2: UHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.867173] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
Aug 30 09:19:30 BUBBLE kernel: [ 0.867321] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0
Aug 30 09:19:30 BUBBLE kernel: [ 0.867468] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
Aug 30 09:19:30 BUBBLE kernel: [ 0.867537] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 30 09:19:30 BUBBLE kernel: [ 0.867618] usb usb7: Product: UHCI Host Controller
Aug 30 09:19:30 BUBBLE kernel: [ 0.867684] usb usb7: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
Aug 30 09:19:30 BUBBLE kernel: [ 0.867752] usb usb7: SerialNumber: 0000:00:1d.2
Aug 30 09:19:30 BUBBLE kernel: [ 0.867887] usb usb7: configuration #1 chosen from 1 choice
Aug 30 09:19:30 BUBBLE kernel: [ 0.867992] hub 7-0:1.0: USB hub found
Aug 30 09:19:30 BUBBLE kernel: [ 0.868084] hub 7-0:1.0: 2 ports detected
Aug 30 09:19:30 BUBBLE kernel: [ 0.976723] ata4.00: ATAPI: HL-DT-ST DVDRAM GMA-4082N, PX07, max UDMA/33
Aug 30 09:19:30 BUBBLE kernel: [ 0.996384] ata4.00: configured for UDMA/33
Aug 30 09:19:30 BUBBLE kernel: [ 1.124033] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Aug 30 09:19:30 BUBBLE kernel: [ 1.124126] ata3: SATA link down (SStatus 0 SControl 300)
Aug 30 09:19:30 BUBBLE kernel: [ 1.125374] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Aug 30 09:19:30 BUBBLE kernel: [ 1.125458] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
Aug 30 09:19:30 BUBBLE kernel: [ 1.126643] ata1.00: ATA-8: Hitachi HTS722020K9SA00, DC4OC76A, max UDMA/133
Aug 30 09:19:30 BUBBLE kernel: [ 1.126713] ata1.00: 390721968 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
Aug 30 09:19:30 BUBBLE kernel: [ 1.128227] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Aug 30 09:19:30 BUBBLE kernel: [ 1.128312] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
Aug 30 09:19:30 BUBBLE kernel: [ 1.129520] ata1.00: configured for UDMA/133
Aug 30 09:19:30 BUBBLE kernel: [ 1.146513] ata1.00: configured for UDMA/133
Aug 30 09:19:30 BUBBLE kernel: [ 1.146581] ata1: EH complete
Aug 30 09:19:30 BUBBLE kernel: [ 1.146777] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS72202 DC4O PQ: 0 ANSI: 5
Aug 30 09:19:30 BUBBLE kernel: [ 1.150997] scsi 3:0:0:0: CD-ROM HL-DT-ST DVDRAM GMA-4082N PX07 PQ: 0 ANSI: 5
Aug 30 09:19:30 BUBBLE kernel: [ 1.166810] sd 0:0:0:0: [sda] 390721968 512-byte logical blocks: (200 GB/186 GiB)
Aug 30 09:19:30 BUBBLE kernel: [ 1.167001] sd 0:0:0:0: [sda] Write Protect is off
Aug 30 09:19:30 BUBBLE kernel: [ 1.167114] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug 30 09:19:30 BUBBLE kernel: [ 1.167442] sda:
Aug 30 09:19:30 BUBBLE kernel: [ 1.176115] firewire_core: created device fw0: GUID 00016c2000175c12, S400
Aug 30 09:19:30 BUBBLE kernel: [ 1.177819] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
Aug 30 09:19:30 BUBBLE kernel: [ 1.177904] Uniform CD-ROM driver Revision: 3.20
Aug 30 09:19:30 BUBBLE kernel: [ 1.183810] sda1 sda2 < sda5 sda6 sda7 >
Aug 30 09:19:30 BUBBLE kernel: [ 1.226016] sd 0:0:0:0: [sda] Attached SCSI disk
Aug 30 09:19:30 BUBBLE kernel: [ 1.232774] sd 0:0:0:0: Attached scsi generic sg0 type 0
Aug 30 09:19:30 BUBBLE kernel: [ 1.232889] sr 3:0:0:0: Attached scsi generic sg1 type 5
Aug 30 09:19:30 BUBBLE kernel: [ 2.012850] PM: Starting manual resume from disk
Aug 30 09:19:30 BUBBLE kernel: [ 2.067226] EXT4-fs (sda5): mounted filesystem with ordered data mode
Aug 30 09:19:30 BUBBLE kernel: [ 3.496885] udev: starting version 160
Aug 30 09:19:30 BUBBLE kernel: [ 3.679631] ACPI: SSDT 00000000bfee1b32 002C4 (v01 PmRef Cpu0Ist 00000100 INTL 20050513)
Aug 30 09:19:30 BUBBLE kernel: [ 3.688573] ACPI: SSDT 00000000bfee1e7b 0085E (v01 PmRef Cpu0Cst 00000100 INTL 20050513)
Aug 30 09:19:30 BUBBLE kernel: [ 3.808989] Marking TSC unstable due to TSC halts in idle
Aug 30 09:19:30 BUBBLE kernel: [ 3.809325] ACPI: CPU-1 (power states: C1[C1] C2[C2] C3[C3])
Aug 30 09:19:30 BUBBLE kernel: [ 3.810255] ACPI: SSDT 00000000bfee1a6a 000C8 (v01 PmRef Cpu1Ist 00000100 INTL 20050513)
Aug 30 09:19:30 BUBBLE kernel: [ 3.811560] ACPI: SSDT 00000000bfee1df6 00085 (v01 PmRef Cpu1Cst 00000100 INTL 20050513)
Aug 30 09:19:30 BUBBLE kernel: [ 3.816982] ACPI: CPU-1 (power states: C1[C1] C2[C2] C3[C3])
Aug 30 09:19:30 BUBBLE kernel: [ 3.882625] acpi device:06: registered as cooling_device0
Aug 30 09:19:30 BUBBLE kernel: [ 3.883553] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:05/LNXVIDEO:01/input/input2
Aug 30 09:19:30 BUBBLE kernel: [ 3.883670] ACPI: Video Device [VID1] (multi-head: yes rom: no post: no)
Aug 30 09:19:30 BUBBLE kernel: [ 3.915474] ACPI: AC Adapter [AC] (on-line)
Aug 30 09:19:30 BUBBLE kernel: [ 3.941983] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
Aug 30 09:19:30 BUBBLE kernel: [ 3.944541] ACPI: Lid Switch [LID]
Aug 30 09:19:30 BUBBLE kernel: [ 3.944747] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input4
Aug 30 09:19:30 BUBBLE kernel: [ 3.944860] ACPI: Sleep Button [SLPB]
Aug 30 09:19:30 BUBBLE kernel: [ 3.945073] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
Aug 30 09:19:30 BUBBLE kernel: [ 3.945175] ACPI: Power Button [PWRF]
Aug 30 09:19:30 BUBBLE kernel: [ 3.968254] ACPI: Battery Slot [BAT0] (battery present)
Aug 30 09:19:30 BUBBLE kernel: [ 4.186118] cfg80211: Using static regulatory domain info
Aug 30 09:19:30 BUBBLE kernel: [ 4.186191] cfg80211: Regulatory domain: US
Aug 30 09:19:30 BUBBLE kernel: [ 4.186257] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
Aug 30 09:19:30 BUBBLE kernel: [ 4.186339] (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm)
Aug 30 09:19:30 BUBBLE kernel: [ 4.186410] (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
Aug 30 09:19:30 BUBBLE kernel: [ 4.186480] (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
Aug 30 09:19:30 BUBBLE kernel: [ 4.186556] (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
Aug 30 09:19:30 BUBBLE kernel: [ 4.186628] (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
Aug 30 09:19:30 BUBBLE kernel: [ 4.186698] (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm)
Aug 30 09:19:30 BUBBLE kernel: [ 4.187426] cfg80211: Calling CRDA for country: US
Aug 30 09:19:30 BUBBLE kernel: [ 4.207620] ACPI: WMI: Mapper loaded
Aug 30 09:19:30 BUBBLE kernel: [ 4.210442] input: PC Speaker as /devices/platform/pcspkr/input/input6
Aug 30 09:19:30 BUBBLE kernel: [ 4.230810] Non-volatile memory driver v1.3
Aug 30 09:19:30 BUBBLE kernel: [ 4.285457] thinkpad_acpi: ThinkPad ACPI Extras v0.23
Aug 30 09:19:30 BUBBLE kernel: [ 4.285530] thinkpad_acpi: http://ibm-acpi.sf.net/
Aug 30 09:19:30 BUBBLE kernel: [ 4.285596] thinkpad_acpi: ThinkPad BIOS 7KETC9WW (2.29 ), EC 7KHT24WW-1.08
Aug 30 09:19:30 BUBBLE kernel: [ 4.285675] thinkpad_acpi: Lenovo ThinkPad R61, model 8919W1B
Aug 30 09:19:30 BUBBLE kernel: [ 4.290124] thinkpad_acpi: ACPI backlight control delay disabled
Aug 30 09:19:30 BUBBLE kernel: [ 4.290572] xen_allocate_pirq: returning irq 23 for gsi 23
Aug 30 09:19:30 BUBBLE kernel: [ 4.290646] Already setup the GSI :23
Aug 30 09:19:30 BUBBLE kernel: [ 4.290716] i801_smbus 0000:00:1f.3: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Aug 30 09:19:30 BUBBLE kernel: [ 4.290745] thinkpad_acpi: radio switch found; radios are enabled
Aug 30 09:19:30 BUBBLE kernel: [ 4.290909] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
Aug 30 09:19:30 BUBBLE kernel: [ 4.291000] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
Aug 30 09:19:30 BUBBLE kernel: [ 4.292717] yenta_cardbus 0000:15:00.0: CardBus bridge found [17aa:20c6]
Aug 30 09:19:30 BUBBLE kernel: [ 4.297696] Registered led device: tpacpi::thinklight
Aug 30 09:19:30 BUBBLE kernel: [ 4.298068] Registered led device: tpacpi::power
Aug 30 09:19:30 BUBBLE kernel: [ 4.298158] Registered led device: tpacpi::standby
Aug 30 09:19:30 BUBBLE kernel: [ 4.298527] Registered led device: tpacpi::thinkvantage
Aug 30 09:19:30 BUBBLE kernel: [ 4.303054] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one.
Aug 30 09:19:30 BUBBLE kernel: [ 4.303594] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input7
Aug 30 09:19:30 BUBBLE kernel: [ 4.424981] yenta_cardbus 0000:15:00.0: ISA IRQ mask 0x0cb8, PCI irq 16
Aug 30 09:19:30 BUBBLE kernel: [ 4.425106] yenta_cardbus 0000:15:00.0: Socket status: 30000006
Aug 30 09:19:30 BUBBLE kernel: [ 4.425233] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge I/O window: 0x8000 - 0xbfff
Aug 30 09:19:30 BUBBLE kernel: [ 4.425368] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge Memory window: 0xf8100000 - 0xfbffffff
Aug 30 09:19:30 BUBBLE kernel: [ 4.425503] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge Memory window: 0xf4000000 - 0xf7ffffff
Aug 30 09:19:30 BUBBLE kernel: [ 4.529764] [drm] Initialized drm 1.1.0 20060810
Aug 30 09:19:30 BUBBLE kernel: [ 4.599946] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, 1.2.26ks
Aug 30 09:19:30 BUBBLE kernel: [ 4.600009] iwl3945: Copyright(c) 2003-2009 Intel Corporation
Aug 30 09:19:30 BUBBLE kernel: [ 4.600423] xen_allocate_pirq: returning irq 17 for gsi 17
Aug 30 09:19:30 BUBBLE kernel: [ 4.600546] Already setup the GSI :17
Aug 30 09:19:30 BUBBLE kernel: [ 4.600654] iwl3945 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
Aug 30 09:19:30 BUBBLE kernel: [ 4.669070] iwl3945 0000:03:00.0: Tunable channels: 11 802.11bg, 13 802.11a channels
Aug 30 09:19:30 BUBBLE kernel: [ 4.669160] iwl3945 0000:03:00.0: Detected Intel Wireless WiFi Link 3945ABG
Aug 30 09:19:30 BUBBLE kernel: [ 4.894327] input: DualPoint Stick as /devices/platform/i8042/serio1/input/input8
Aug 30 09:19:30 BUBBLE kernel: [ 4.931082] input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input9
Aug 30 09:19:30 BUBBLE kernel: [ 4.985357] pci 0000:01:00.0: power state changed by ACPI to D0
Aug 30 09:19:30 BUBBLE kernel: [ 4.985485] pci 0000:01:00.0: power state changed by ACPI to D0
Aug 30 09:19:30 BUBBLE kernel: [ 4.985567] xen_allocate_pirq: returning irq 16 for gsi 16
Aug 30 09:19:30 BUBBLE kernel: [ 4.985640] Already setup the GSI :16
Aug 30 09:19:30 BUBBLE kernel: [ 4.985704] pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Aug 30 09:19:30 BUBBLE kernel: [ 4.988857] [drm] nouveau 0000:01:00.0: failed to evaluate _DSM: 5
Aug 30 09:19:30 BUBBLE kernel: [ 4.991323] [drm] nouveau 0000:01:00.0: Detected an NV50 generation card (0x086900a2)
Aug 30 09:19:30 BUBBLE kernel: [ 5.003421] [drm] Initialized nouveau 0.0.15 20090420 for 0000:01:00.0 on minor 0
Aug 30 09:19:30 BUBBLE kernel: [ 5.478725] xen_allocate_pirq: returning irq 17 for gsi 17
Aug 30 09:19:30 BUBBLE kernel: [ 5.478850] Already setup the GSI :17
Aug 30 09:19:30 BUBBLE kernel: [ 5.478955] HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17
Aug 30 09:19:30 BUBBLE kernel: [ 5.479084] hda_intel: probe_mask set to 0x1 for device 17aa:20ac
Aug 30 09:19:30 BUBBLE kernel: [ 5.922391] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input10
Aug 30 09:19:30 BUBBLE kernel: [ 6.924008] hda-intel: azx_get_response timeout, switching to polling mode: last cmd=0x001f000a
Aug 30 09:19:30 BUBBLE kernel: [ 7.753542] Adding 2051064k swap on /dev/sda7. Priority:-1 extents:1 across:2051064k
Aug 30 09:19:30 BUBBLE kernel: [ 8.153050] loop: module loaded
Aug 30 09:19:30 BUBBLE kernel: [ 8.183251] thinkpad_ec: thinkpad_ec 0.40 loaded.
Aug 30 09:19:30 BUBBLE kernel: [ 8.185296] tp_smapi 0.40 loading...
Aug 30 09:19:30 BUBBLE kernel: [ 8.186359] tp_smapi successfully loaded (smapi_port=0xb2).
Aug 30 09:19:30 BUBBLE kernel: [ 8.204885] hdaps: LENOVO ThinkPad R61 detected, setting orientation 1
Aug 30 09:19:30 BUBBLE kernel: [ 8.205745] hdaps: device successfully initialized.
Aug 30 09:19:30 BUBBLE kernel: [ 8.206832] input: ThinkPad HDAPS joystick emulation as /devices/virtual/input/input11
Aug 30 09:19:30 BUBBLE kernel: [ 8.208123] input: ThinkPad HDAPS accelerometer data as /devices/virtual/input/input12
Aug 30 09:19:30 BUBBLE kernel: [ 8.208424] hdaps: driver successfully loaded.
Aug 30 09:19:30 BUBBLE kernel: [ 9.928993] fuse init (API version 7.13)
Aug 30 09:19:30 BUBBLE kernel: [ 10.198029] ADDRCONF(NETDEV_UP): eth0: link is not ready
Aug 30 09:19:30 BUBBLE kernel: [ 11.574384] Event-channel device installed.
Aug 30 09:19:31 BUBBLE kernel: [ 12.504094] input: ACPI Virtual Keyboard Device as /devices/virtual/input/input13
Aug 30 09:19:34 BUBBLE kernel: [ 14.979669] iwl3945 0000:03:00.0: firmware: requesting iwlwifi-3945-2.ucode
Aug 30 09:19:34 BUBBLE kernel: [ 15.177421] iwl3945 0000:03:00.0: loaded firmware version 15.32.2.9
Aug 30 09:19:34 BUBBLE kernel: [ 15.248642] Registered led device: iwl-phy0::radio
Aug 30 09:19:34 BUBBLE kernel: [ 15.248819] Registered led device: iwl-phy0::assoc
Aug 30 09:19:34 BUBBLE kernel: [ 15.249276] Registered led device: iwl-phy0::RX
Aug 30 09:19:34 BUBBLE kernel: [ 15.249380] Registered led device: iwl-phy0::TX
Aug 30 09:19:34 BUBBLE kernel: [ 15.263134] ADDRCONF(NETDEV_UP): wlan0: link is not ready
Aug 30 09:19:38 BUBBLE kernel: [ 19.075118] [TTM] Zone kernel: Available graphics memory: 1570056 kiB.
Aug 30 09:19:38 BUBBLE kernel: [ 19.075132] [drm] nouveau 0000:01:00.0: 128 MiB VRAM
Aug 30 09:19:38 BUBBLE kernel: [ 19.109340] [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture)
Aug 30 09:19:38 BUBBLE kernel: [ 19.109476] mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining
Aug 30 09:19:38 BUBBLE kernel: [ 19.110400] [drm] nouveau 0000:01:00.0: Allocating FIFO number 1
Aug 30 09:19:38 BUBBLE kernel: [ 19.117898] [drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 1
Aug 30 09:19:38 BUBBLE kernel: [ 19.118162] [drm] nouveau 0000:01:00.0: nouveau_channel_free: freeing fifo 1
Aug 30 09:19:38 BUBBLE kernel: [ 19.140474] [TTM] Zone kernel: Used memory at exit: 0 kiB.
Aug 30 09:19:38 BUBBLE kernel: [ 19.360472] [TTM] Zone kernel: Available graphics memory: 1570056 kiB.
Aug 30 09:19:38 BUBBLE kernel: [ 19.360493] [drm] nouveau 0000:01:00.0: 128 MiB VRAM
Aug 30 09:19:38 BUBBLE kernel: [ 19.393915] [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture)
Aug 30 09:19:38 BUBBLE kernel: [ 19.396884] mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining
Aug 30 09:19:38 BUBBLE kernel: [ 19.397270] [drm] nouveau 0000:01:00.0: Allocating FIFO number 1
Aug 30 09:19:38 BUBBLE kernel: [ 19.406325] [drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 1
Aug 30 09:19:38 BUBBLE kernel: [ 19.407216] [drm] nouveau 0000:01:00.0: nouveau_channel_free: freeing fifo 1
Aug 30 09:19:38 BUBBLE kernel: [ 19.431670] [TTM] Zone kernel: Used memory at exit: 0 kiB.
Aug 30 09:19:38 BUBBLE kernel: [ 19.597974] Bridge firewalling registered
Aug 30 09:19:38 BUBBLE kernel: [ 19.644374] [TTM] Zone kernel: Available graphics memory: 1570056 kiB.
Aug 30 09:19:38 BUBBLE kernel: [ 19.644389] [drm] nouveau 0000:01:00.0: 128 MiB VRAM
Aug 30 09:19:38 BUBBLE kernel: [ 19.677100] [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture)
Aug 30 09:19:38 BUBBLE kernel: [ 19.677112] mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining
Aug 30 09:19:38 BUBBLE kernel: [ 19.677440] [drm] nouveau 0000:01:00.0: Allocating FIFO number 1
Aug 30 09:19:38 BUBBLE kernel: [ 19.684531] [drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 1
Aug 30 09:19:38 BUBBLE kernel: [ 19.685027] [drm] nouveau 0000:01:00.0: nouveau_channel_free: freeing fifo 1
Aug 30 09:19:38 BUBBLE kernel: [ 19.707323] [TTM] Zone kernel: Used memory at exit: 0 kiB.
Aug 30 09:19:39 BUBBLE kernel: [ 19.912444] [TTM] Zone kernel: Available graphics memory: 1570056 kiB.
Aug 30 09:19:39 BUBBLE kernel: [ 19.912471] [drm] nouveau 0000:01:00.0: 128 MiB VRAM
Aug 30 09:19:39 BUBBLE kernel: [ 19.945201] [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture)
Aug 30 09:19:39 BUBBLE kernel: [ 19.945274] mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining
Aug 30 09:19:39 BUBBLE kernel: [ 19.945713] [drm] nouveau 0000:01:00.0: Allocating FIFO number 1
Aug 30 09:19:39 BUBBLE kernel: [ 19.953367] [drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 1
Aug 30 09:19:39 BUBBLE kernel: [ 19.954556] [drm] nouveau 0000:01:00.0: nouveau_channel_free: freeing fifo 1
Aug 30 09:19:39 BUBBLE kernel: [ 19.980237] [TTM] Zone kernel: Used memory at exit: 0 kiB.
Aug 30 09:19:39 BUBBLE kernel: [ 20.207187] [TTM] Zone kernel: Available graphics memory: 1570056 kiB.
Aug 30 09:19:39 BUBBLE kernel: [ 20.207203] [drm] nouveau 0000:01:00.0: 128 MiB VRAM
Aug 30 09:19:39 BUBBLE kernel: [ 20.244160] [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture)
Aug 30 09:19:39 BUBBLE kernel: [ 20.245223] mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining
Aug 30 09:19:39 BUBBLE kernel: [ 20.245589] [drm] nouveau 0000:01:00.0: Allocating FIFO number 1
Aug 30 09:19:39 BUBBLE kernel: [ 20.253287] [drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 1
Aug 30 09:19:39 BUBBLE kernel: [ 20.254156] [drm] nouveau 0000:01:00.0: nouveau_channel_free: freeing fifo 1
Aug 30 09:19:39 BUBBLE kernel: [ 20.260559] CPU 0
Aug 30 09:19:39 BUBBLE kernel: [ 20.260563] Modules linked in: cpufreq_conservative cpufreq_userspace cpufreq_stats bridge stp xen_evtchn xenfs binfmt_misc uinput fuse ext2 hdaps tp_smapi thinkpad_ec loop firewire_sbp2 snd_hda_codec_analog snd_hda_intel snd_hda_codec snd_hwdep snd_pcm_oss snd_mixer_oss joydev arc4 snd_pcm nouveau snd_seq_midi ecb snd_rawmidi ttm snd_seq_midi_event drm_kms_helper snd_seq iwl3945 pcmcia snd_timer drm iwlcore snd_seq_device serio_raw yenta_socket i2c_i801 i2c_algo_bit thinkpad_acpi mac80211 psmouse rsrc_nonstatic nvram evdev i2c_core pcspkr wmi pcmcia_core cfg80211 snd soundcore snd_page_alloc rfkill button battery ac video output processor acpi_processor ext4 mbcache jbd2 crc16 sg sd_mod crc_t10dif sr_mod cdrom ata_generic uhci_hcd sdhci_pci sdhci firewire_ohci ahci ata_piix ehci_hcd ricoh_mmc firewire_core crc_itu_t mmc_core led_class thermal thermal_sys libata scsi_mod e1000e usbcore nls_base [last unloaded: scsi_wait_scan]
Aug 30 09:19:39 BUBBLE kernel: [ 20.260707] Pid: 1751, comm: loadcpufreq Not tainted 2.6.32-5-xen-amd64 #1 8919W1B
Aug 30 09:19:39 BUBBLE kernel: [ 20.260710] RIP: e030:[<ffffffff8100c5e0>] [<ffffffff8100c5e0>] pin_pagetable_pfn+0x2d/0x36
Aug 30 09:19:39 BUBBLE kernel: [ 20.260721] RSP: e02b:ffff8800bccafe08 EFLAGS: 00010282
Aug 30 09:19:39 BUBBLE kernel: [ 20.260724] RAX: 00000000ffffffea RBX: 00000000000bccac RCX: 0000000000000001
Aug 30 09:19:39 BUBBLE kernel: [ 20.260728] RDX: 0000000000000000 RSI: 0000000000000001 RDI: ffff8800bccafe08
Aug 30 09:19:39 BUBBLE kernel: [ 20.260731] RBP: ffff8800bdbeb800 R08: 0000000000000560 R09: ffffea000294c5a0
Aug 30 09:19:39 BUBBLE kernel: [ 20.260735] R10: 0000000000007ff0 R11: 0000000000000001 R12: ffff880001cb8830
Aug 30 09:19:39 BUBBLE kernel: [ 20.260738] R13: 0000000000000014 R14: ffff8800bd27abb0 R15: ffff880001cb8830
Aug 30 09:19:39 BUBBLE kernel: [ 20.260746] FS: 00007f45e1199700(0000) GS:ffff8800037f2000(0000) knlGS:0000000000000000
Aug 30 09:19:39 BUBBLE kernel: [ 20.260749] CS: e033 DS: 0000 ES: 0000 CR0: 000000008005003b
Aug 30 09:19:39 BUBBLE kernel: [ 20.260753] CR2: 00007f45e0cd4896 CR3: 00000000bda57000 CR4: 0000000000002660
Aug 30 09:19:39 BUBBLE kernel: [ 20.260757] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
Aug 30 09:19:39 BUBBLE kernel: [ 20.260761] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
Aug 30 09:19:39 BUBBLE kernel: [ 20.260765] Process loadcpufreq (pid: 1751, threadinfo ffff8800bccae000, task ffff8800023854c0)
Aug 30 09:19:39 BUBBLE kernel: [ 20.260770] 0000000000000000 000000000004012d ffffea000294c5a0 00000000000bccac
Aug 30 09:19:39 BUBBLE kernel: [ 20.260777] <0> ffff8800bdbeb800 ffffffff810ccd26 ffff8800bcda48b8 00007f45e0cd4896
Aug 30 09:19:39 BUBBLE kernel: [ 20.260785] <0> 00000000bcda4000 ffffffff810cabd8 ffff8800bd27abb0 00007f45e0cd4896
Aug 30 09:19:39 BUBBLE kernel: [ 20.260801] [<ffffffff810ccd26>] ? __pte_alloc+0x6b/0xc6
Aug 30 09:19:39 BUBBLE kernel: [ 20.260807] [<ffffffff810cabd8>] ? pmd_alloc+0x28/0x5b
Aug 30 09:19:39 BUBBLE kernel: [ 20.260812] [<ffffffff810cce4f>] ? handle_mm_fault+0xce/0x7a5
Aug 30 09:19:39 BUBBLE kernel: [ 20.260818] [<ffffffff8130b235>] ? page_fault+0x25/0x30
Aug 30 09:19:39 BUBBLE kernel: [ 20.260824] [<ffffffff8130b46a>] ? error_exit+0x2a/0x60
Aug 30 09:19:39 BUBBLE kernel: [ 20.260829] [<ffffffff8101251d>] ? retint_restore_args+0x5/0x6
Aug 30 09:19:39 BUBBLE kernel: [ 20.260834] [<ffffffff8130d396>] ? do_page_fault+0x2e0/0x2fc
Aug 30 09:19:39 BUBBLE kernel: [ 20.260839] [<ffffffff8130b235>] ? page_fault+0x25/0x30
Aug 30 09:19:39 BUBBLE kernel: [ 20.260931] RSP <ffff8800bccafe08>
Aug 30 09:19:39 BUBBLE kernel: [ 20.260936] ---[ end trace 511c3e582034fe1c ]---
Aug 30 09:19:39 BUBBLE kernel: [ 20.398478] [TTM] Zone kernel: Used memory at exit: 0 kiB.
Aug 30 09:19:40 BUBBLE kernel: [ 20.793564] [TTM] Zone kernel: Available graphics memory: 1570056 kiB.
Aug 30 09:19:40 BUBBLE kernel: [ 20.793579] [drm] nouveau 0000:01:00.0: 128 MiB VRAM
Aug 30 09:19:40 BUBBLE kernel: [ 20.827280] [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture)
Aug 30 09:19:40 BUBBLE kernel: [ 20.827292] mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining
Aug 30 09:19:40 BUBBLE kernel: [ 20.827624] [drm] nouveau 0000:01:00.0: Allocating FIFO number 1
Aug 30 09:19:40 BUBBLE kernel: [ 20.834861] [drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 1
Aug 30 09:19:40 BUBBLE kernel: [ 20.835637] [drm] nouveau 0000:01:00.0: nouveau_channel_free: freeing fifo 1
Aug 30 09:20:23 BUBBLE shutdown[1799]: shutting down for system halt
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Pkg-xen-devel] [Xen-devel] xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor
2010-08-30 15:08 ` Mike Viau
@ 2010-08-30 15:31 ` Konrad Rzeszutek Wilk
2010-08-31 8:21 ` [Pkg-xen-devel] " Ian Campbell
0 siblings, 1 reply; 15+ messages in thread
From: Konrad Rzeszutek Wilk @ 2010-08-30 15:31 UTC (permalink / raw)
To: Mike Viau; +Cc: pkg-xen-devel, xen-devel, ijc
On Mon, Aug 30, 2010 at 11:08:21AM -0400, Mike Viau wrote:
>
> > On Mon, 30 Aug 2010 10:44:14 -0400 <konrad.wilk@oracle.com> wrote:
> > > On Mon, Aug 30, 2010 at 10:16:17AM -0400, Mike Viau wrote:
> > >
> > > > On Mon, 30 Aug 2010 14:39:51 +0100 <ijc@hellion.org.uk> wrote:
> > > >
> > > > Sid kernel would be most interesting first off, I think.
> > > >
> > > > Ian.
> > >
> > > Same behaviors after updating the three packages: xen-linux-system-2.6.32-5-xen-amd64, linux-image-2.6.32-5-xen-amd64, and linux-base (2.6.32-21).
> > >
> > > apt-cache policy xen-linux-system-2.6.32-5-xen-amd64
> > > xen-linux-system-2.6.32-5-xen-amd64:
> > > Installed: 2.6.32-21
> > > Candidate: 2.6.32-21
> > > Version table:
> > > *** 2.6.32-21 0
> > > 500 http://mirror.csclub.uwaterloo.ca sid/main Packages
> > > 100 /var/lib/dpkg/status
> > > 2.6.32-20 0
> > > 990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
> > >
> > > apt-cache policy linux-image-2.6.32-5-xen-amd64
> > > linux-image-2.6.32-5-xen-amd64:
> > > Installed: 2.6.32-21
> > > Candidate: 2.6.32-21
> > > Version table:
> > > *** 2.6.32-21 0
> > > 500 http://mirror.csclub.uwaterloo.ca sid/main Packages
> > > 100 /var/lib/dpkg/status
> > > 2.6.32-20 0
> > > 990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
> > >
> > > apt-cache policy linux-base
> > > linux-base:
> > > Installed: 2.6.32-21
> > > Candidate: 2.6.32-21
> > > Version table:
> > > *** 2.6.32-21 0
> > > 500 http://mirror.csclub.uwaterloo.ca sid/main Packages
> > > 100 /var/lib/dpkg/status
> > > 2.6.32-20 0
> > > 990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
> > >
> > > Bare-metal or with hypervisor does not boot with nomodeset on the kernel cmdline.
> > >
> > > Just for troubleshooting purpose the current default Debian squeeze kernel linux-image-2.6.32-5-amd64 (2.6.32-20) also does not boot when nomodeset is set on the kernel cmdline.
> > >
> >
> > Well, 'nomodeset' I don't think will help b/c you don't have KMS in
> > squeeze (I believe so).
> >
>
> I really am not sure either, but I do see KMS messages in my kernel log, see attached nouveau-crash.txt
Hm, I think it is "nouveau.modeset=0" that you need.
>
> > The other thing is that you have:
> > Aug 21 09:08:27 BUBBLE kernel: [ 5.046676] NVRM: loading NVIDIA UNIX
> > x86_64 Kernel Module 173.14.25 Thu Jan 28 01:53:43 PST
> >
> > the proprietary NVidia driver loaded. We haven't tried those
> > yet and instead focused on making sure the upstream nouveau drivers
> > work with Xen. Which they do now.
> >
>
> Right, so I removed the nvidia driver and used the KMS/Nouveau driver, but the system does not boot still.
Right, that is b/c it does not have all of the patches needed. I think.
>
> > I would suggest you boot in runlevel 3, so that X is not started and see
> > if the machine works (as in, you don't see other failures).
> >
>
> I would like to, but I enlisted in some suggestion (from Pasi) on how to temporarily boot my system without X... My system defaults to run level 2 which apparently starts gdm3 and then gnome DE anyways.
>
> > And if you want X and the NVidia driver (the proprietary one), you might
> > need to take the brunt of debugging it and finding where the NVidia is
> > doing some weird stuff.
> >
>
> I don't really care for the enchanced 3d features offered by the nvidia drivers anyway. Good video playback and multi-screen support is more important for me.
>
> > Or, there is another option, and that to use a back-ported version of
> > 2.6.34 DRM/KMS/TTM driversets which include the nouveau support.
> > (I am right now running with that on a GeForce 8600 GT on Xen 4.1 +
> > latest PVOPS kernel).
> >
>
> According to http://www.backports.org/dokuwiki/doku.php?id=packages
>
> There are only back ports for lenny or etch, could you please elaborate your set and how one might mimic what you have done using Debian squeeze?
http://wiki.xensource.com/xenwiki/XenPVOPSDRM
But it might be that those patches are already in the source tree that
you are using.
If you know how to search for patches that were compiled in an Debian
kernel, try looking for these:
http://git.kernel.org/?p=linux/kernel/git/konrad/xen.git;a=shortlog;h=refs/heads/devel/kms.fixes-0.5
Or you can wait two-three days and I will get to take a look at the
kernel's patch queue.
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Pkg-xen-devel] xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor
2010-08-30 15:31 ` Konrad Rzeszutek Wilk
@ 2010-08-31 8:21 ` Ian Campbell
2010-08-31 12:34 ` [Pkg-xen-devel] [Xen-devel] " Mike Viau
0 siblings, 1 reply; 15+ messages in thread
From: Ian Campbell @ 2010-08-31 8:21 UTC (permalink / raw)
To: Konrad Rzeszutek Wilk; +Cc: pkg-xen-devel, Mike Viau, xen-devel
On Mon, 2010-08-30 at 11:31 -0400, Konrad Rzeszutek Wilk wrote:
> >
> > > > Well, 'nomodeset' I don't think will help b/c you don't have KMS in
> > > > squeeze (I believe so).
> > > >
> > >
> > > I really am not sure either, but I do see KMS messages in my kernel log, see attached nouveau-crash.txt
Although Squeeze is 2.6.32 based it is carrying a backport of the 2.6.33
(I think) DRM code. I think this means it has KMS although I'm not even
80% sure on that...
> On Mon, Aug 30, 2010 at 11:08:21AM -0400, Mike Viau wrote:
>
> http://wiki.xensource.com/xenwiki/XenPVOPSDRM
>
> But it might be that those patches are already in the source tree that
> you are using.
>
> If you know how to search for patches that were compiled in an Debian
> kernel, try looking for these:
>
> http://git.kernel.org/?p=linux/kernel/git/konrad/xen.git;a=shortlog;h=refs/heads/devel/kms.fixes-0.5
Hmm, I think that was among the stuff which was deliberately excluded
from the Squeeze kernel by the Debian maintainer.
(See this thread:
http://lists.alioth.debian.org/pipermail/pkg-xen-devel/2010-August/002918.html )
I have put a version of the 2.6.32-21 package which reinstates those
changes at <http://www.hellion.org.uk/debian/test/> which it would be
useful to test. (actually the upload is ongoing, I'm betting on the
timezones allowing it to complete before you see this ;-))
The packages are otherwise identical to the 2.6.32-21 package currently
in Sid.
Ian.
--
Ian Campbell
Current Noise: Pantera - Psycho Holiday
Courage is fear that has said its prayers.
^ permalink raw reply [flat|nested] 15+ messages in thread
* RE: [Pkg-xen-devel] [Xen-devel] xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor
2010-08-31 8:21 ` [Pkg-xen-devel] " Ian Campbell
@ 2010-08-31 12:34 ` Mike Viau
2010-08-31 12:38 ` [Pkg-xen-devel] " Ian Campbell
0 siblings, 1 reply; 15+ messages in thread
From: Mike Viau @ 2010-08-31 12:34 UTC (permalink / raw)
To: ijc, konrad.wilk; +Cc: pkg-xen-devel, xen-devel
[-- Attachment #1.1: Type: text/plain, Size: 1462 bytes --]
> On Tue, 31 Aug 2010 09:21:52 +0100 <ijc@hellion.org.uk> wrote:
>
> Although Squeeze is 2.6.32 based it is carrying a backport of the 2.6.33
> (I think) DRM code. I think this means it has KMS although I'm not even
> 80% sure on that...
>
> > On Mon, Aug 30, 2010 at 11:08:21AM -0400, Mike Viau wrote:
> >
> > http://wiki.xensource.com/xenwiki/XenPVOPSDRM
> >
> > But it might be that those patches are already in the source tree that
> > you are using.
> >
> > If you know how to search for patches that were compiled in an Debian
> > kernel, try looking for these:
> >
> > http://git.kernel.org/?p=linux/kernel/git/konrad/xen.git;a=shortlog;h=refs/heads/devel/kms.fixes-0.5
>
> Hmm, I think that was among the stuff which was deliberately excluded
> from the Squeeze kernel by the Debian maintainer.
> (See this thread:
> http://lists.alioth.debian.org/pipermail/pkg-xen-devel/2010-August/002918.html )
>
> I have put a version of the 2.6.32-21 package which reinstates those
> changes at <http://www.hellion.org.uk/debian/test/> which it would be
> useful to test. (actually the upload is ongoing, I'm betting on the
> timezones allowing it to complete before you see this ;-))
>
> The packages are otherwise identical to the 2.6.32-21 package currently
> in Sid.
>
> Ian.
Yup I can see the debs, what should I add to my sources.list? I found the public key from your website already :)
-M
[-- Attachment #1.2: Type: text/html, Size: 1879 bytes --]
[-- Attachment #2: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 15+ messages in thread
* RE: [Pkg-xen-devel] xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor
2010-08-31 12:34 ` [Pkg-xen-devel] [Xen-devel] " Mike Viau
@ 2010-08-31 12:38 ` Ian Campbell
2010-08-31 14:07 ` [Pkg-xen-devel] [Xen-devel] " Mike Viau
0 siblings, 1 reply; 15+ messages in thread
From: Ian Campbell @ 2010-08-31 12:38 UTC (permalink / raw)
To: Mike Viau
Cc: pkg-xen-devel@lists.alioth.debian.org,
xen-devel@lists.xensource.com, konrad.wilk@oracle.com
On Tue, 2010-08-31 at 13:34 +0100, Mike Viau wrote:
>
> Yup I can see the debs, what should I add to my sources.list?
There is no apt repository here, just download the relevant .deb files
and use "dpkg -i"
> I found the public key from your website already :)
I don't think anything there is signed.
If you would like something signed you'll have to wait till I'm at home
tonight with my private key.
Ian.
--
Ian Campbell
Current Noise: Bryan Ferry & Roxy Music - Both Ends Burning
Decaffeinated coffee? Just Say No.
^ permalink raw reply [flat|nested] 15+ messages in thread
* RE: [Pkg-xen-devel] [Xen-devel] xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor
2010-08-31 12:38 ` [Pkg-xen-devel] " Ian Campbell
@ 2010-08-31 14:07 ` Mike Viau
2010-08-31 15:43 ` Konrad Rzeszutek Wilk
0 siblings, 1 reply; 15+ messages in thread
From: Mike Viau @ 2010-08-31 14:07 UTC (permalink / raw)
To: ijc; +Cc: waldi, pkg-xen-devel, xen-devel, konrad.wilk
[-- Attachment #1.1: Type: text/plain, Size: 3161 bytes --]
That's fantastic because it all just works!
Attached is my xm dmesg, dmesg, and xm info output.
I replaced the packages that were already installed with Ian Campbell (2.6.32-21+xen0), and the system just booted as expected with the additional Xen functionality.
apt-cache policy xen-linux-system-2.6.32-5-xen-amd64
xen-linux-system-2.6.32-5-xen-amd64:
Installed: 2.6.32-21+xen0
Candidate: 2.6.32-21+xen0
Version table:
*** 2.6.32-21+xen0 0
500 file: debs/ Packages
100 /var/lib/dpkg/status
2.6.32-20 0
990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
apt-cache policy linux-image-2.6.32-5-xen-amd64
linux-image-2.6.32-5-xen-amd64:
Installed: 2.6.32-21+xen0
Candidate: 2.6.32-21+xen0
Version table:
*** 2.6.32-21+xen0 0
500 file: debs/ Packages
100 /var/lib/dpkg/status
2.6.32-20 0
990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
apt-cache policy linux-base
linux-base:
Installed: 2.6.32-21+xen0
Candidate: 2.6.32-21+xen0
Version table:
*** 2.6.32-21+xen0 0
500 file: debs/ Packages
100 /var/lib/dpkg/status
2.6.32-20 0
990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
apt-cache policy firmware-linux-free
firmware-linux-free:
Installed: 2.6.32-21+xen0
Candidate: 2.6.32-21+xen0
Version table:
*** 2.6.32-21+xen0 0
500 file: debs/ Packages
100 /var/lib/dpkg/status
2.6.32-20 0
990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
apt-cache policy linux-headers-2.6.32-5-xen-amd64
linux-headers-2.6.32-5-xen-amd64:
Installed: 2.6.32-21+xen0
Candidate: 2.6.32-21+xen0
Version table:
*** 2.6.32-21+xen0 0
500 file: debs/ Packages
100 /var/lib/dpkg/status
2.6.32-20 0
990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
apt-cache policy linux-headers-2.6.32-5-common-xen
linux-headers-2.6.32-5-common-xen:
Installed: 2.6.32-21+xen0
Candidate: 2.6.32-21+xen0
Version table:
*** 2.6.32-21+xen0 0
500 file: debs/ Packages
100 /var/lib/dpkg/status
2.6.32-20 0
990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
apt-cache policy linux-libc-dev
linux-libc-dev:
Installed: 2.6.32-21+xen0
Candidate: 2.6.32-21+xen0
Version table:
*** 2.6.32-21+xen0 0
500 file: debs/ Packages
100 /var/lib/dpkg/status
2.6.32-20 0
990 http://mirror.csclub.uwaterloo.ca squeeze/main Packages
2.6.30-8squeeze1 0
990 http://security.debian.org squeeze/updates/main Packages
So that being said, what are the chances for inclusion of this added KMS stuff in the official Debian xen kernel packages?
I can vouch on the fact that Ian Campbell's packages worked right away with no additional hacks.
I can/will test further naturally...
I think Bastian Blank, is the right person to be informing so I have CC'ed him as well.
Thread at Xen-Devel starts at: http://lists.xensource.com/archives/html/xen-devel/2010-08/msg01809.html
Big thanks too!
-M
[-- Attachment #1.2: Type: text/html, Size: 4725 bytes --]
[-- Attachment #2: dmesg.txt --]
[-- Type: text/plain, Size: 64456 bytes --]
[ 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-21+xen0) (Ian.Campbell@citrix.com) (gcc version 4.3.5 (Debian 4.3.5-2) ) #1 SMP Mon Aug 30 11:57:03 UTC 2010
[ 0.000000] Command line: placeholder root=UUID=dd594014-8570-45a6-be99-25f04210c866 ro
[ 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 c0000-f0000: 196608 pages freed
[ 0.000000] xen_release_chunk: looking at area pfn f4000-f4c7f: 3199 pages freed
[ 0.000000] released 199807 pages of unused memory
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] Xen: 0000000000000000 - 000000000009d800 (usable)
[ 0.000000] Xen: 000000000009d800 - 0000000000100000 (reserved)
[ 0.000000] Xen: 0000000000100000 - 00000000bfeb0000 (usable)
[ 0.000000] Xen: 00000000bfeb0000 - 00000000bfecc000 (ACPI data)
[ 0.000000] Xen: 00000000bfecc000 - 00000000bff00000 (ACPI NVS)
[ 0.000000] Xen: 00000000bff00000 - 00000000c0000000 (reserved)
[ 0.000000] Xen: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] Xen: 00000000fec00000 - 00000000fec10000 (reserved)
[ 0.000000] Xen: 00000000fed00000 - 00000000fed00400 (reserved)
[ 0.000000] Xen: 00000000fed14000 - 00000000fed1a000 (reserved)
[ 0.000000] Xen: 00000000fed1c000 - 00000000fed90000 (reserved)
[ 0.000000] Xen: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] Xen: 00000000ff000000 - 0000000100000000 (reserved)
[ 0.000000] DMI present.
[ 0.000000] last_pfn = 0xbfeb0 max_arch_pfn = 0x400000000
[ 0.000000] x86 PAT enabled: cpu 0, old 0x50100070406, new 0x7010600070106
[ 0.000000] initial memory mapped : 0 - 20000000
[ 0.000000] init_memory_mapping: 0000000000000000-00000000bfeb0000
[ 0.000000] 0000000000 - 00bfeb0000 page 4k
[ 0.000000] kernel direct mapping tables up to bfeb0000 @ 100000-704000
[ 0.000000] RAMDISK: 016b1000 - 02fd6a00
[ 0.000000] ACPI: RSDP 00000000000f69b0 00024 (v02 LENOVO)
[ 0.000000] ACPI: XSDT 00000000bfebb27e 0008C (v01 LENOVO TP-7K 00002290 LTP 00000000)
[ 0.000000] ACPI: FACP 00000000bfebb400 000F4 (v03 LENOVO TP-7K 00002290 LNVO 00000001)
[ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20090903/tbfadt-526)
[ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 000000000000102C/0 (20090903/tbfadt-557)
[ 0.000000] ACPI: DSDT 00000000bfebb81d 1044C (v01 LENOVO TP-7K 00002290 MSFT 03000000)
[ 0.000000] ACPI: FACS 00000000bfee4000 00040
[ 0.000000] ACPI: SSDT 00000000bfebb5b4 00269 (v01 LENOVO TP-7K 00002290 MSFT 03000000)
[ 0.000000] ACPI: ECDT 00000000bfecbc69 00052 (v01 LENOVO TP-7K 00002290 LNVO 00000001)
[ 0.000000] ACPI: TCPA 00000000bfecbcbb 00032 (v02 LENOVO TP-7K 00002290 LNVO 00000001)
[ 0.000000] ACPI: APIC 00000000bfecbced 00068 (v01 LENOVO TP-7K 00002290 LNVO 00000001)
[ 0.000000] ACPI: MCFG 00000000bfecbd55 0003C (v01 LENOVO TP-7K 00002290 LNVO 00000001)
[ 0.000000] ACPI: HPET 00000000bfecbd91 00038 (v01 LENOVO TP-7K 00002290 LNVO 00000001)
[ 0.000000] ACPI: SLIC 00000000bfecbe62 00176 (v01 LENOVO TP-7K 00002290 LTP 00000000)
[ 0.000000] ACPI: BOOT 00000000bfecbfd8 00028 (v01 LENOVO TP-7K 00002290 LTP 00000001)
[ 0.000000] ACPI: SSDT 00000000bfee26d9 0025F (v01 LENOVO TP-7K 00002290 INTL 20050513)
[ 0.000000] ACPI: SSDT 00000000bfee2938 000A6 (v01 LENOVO TP-7K 00002290 INTL 20050513)
[ 0.000000] ACPI: SSDT 00000000bfee29de 004F7 (v01 LENOVO TP-7K 00002290 INTL 20050513)
[ 0.000000] ACPI: SSDT 00000000bfee2ed5 001D8 (v01 LENOVO TP-7K 00002290 INTL 20050513)
[ 0.000000] ACPI: DMI detected: Lenovo ThinkPad R61
[ 0.000000] ACPI: Added _OSI(Linux)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-00000000bfeb0000
[ 0.000000] Bootmem setup node 0 0000000000000000-00000000bfeb0000
[ 0.000000] NODE_DATA [0000000000008000 - 000000000000ffff]
[ 0.000000] bootmap [0000000000010000 - 0000000000027fd7] pages 18
[ 0.000000] (8 early reservations) ==> bootmem [0000000000 - 00bfeb0000]
[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
[ 0.000000] #1 [000377f000 - 00037a0000] XEN PAGETABLES ==> [000377f000 - 00037a0000]
[ 0.000000] #2 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000]
[ 0.000000] #3 [0001000000 - 0001690954] TEXT DATA BSS ==> [0001000000 - 0001690954]
[ 0.000000] #4 [00016b1000 - 0002fd6a00] RAMDISK ==> [00016b1000 - 0002fd6a00]
[ 0.000000] #5 [0002fd7000 - 000377f000] XEN START INFO ==> [0002fd7000 - 000377f000]
[ 0.000000] #6 [0001691000 - 000169114c] BRK ==> [0001691000 - 000169114c]
[ 0.000000] #7 [0000100000 - 00006e0000] PGTABLE ==> [0000100000 - 00006e0000]
[ 0.000000] found SMP MP-table at [ffff8800000f69e0] f69e0
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000000 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x00100000
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0x00000000 -> 0x0000009d
[ 0.000000] 0: 0x00000100 -> 0x000bfeb0
[ 0.000000] On node 0 totalpages: 785997
[ 0.000000] DMA zone: 56 pages used for memmap
[ 0.000000] DMA zone: 1507 pages reserved
[ 0.000000] DMA zone: 2434 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 10692 pages used for memmap
[ 0.000000] DMA32 zone: 771308 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 1, version 0, address 0xfec00000, GSI 0-0
[ 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: 0x8086a201 base: 0xfed00000
[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 256
[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[ 0.000000] PM: Registered nosave memory: 000000000009e000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:30000000)
[ 0.000000] Booting paravirtualized kernel on Xen
[ 0.000000] Xen version: 4.0.1-rc6 (preserve-AD) (dom0)
[ 0.000000] NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff8800037d6000 s90328 r8192 d24360 u122880
[ 0.000000] pcpu-alloc: s90328 r8192 d24360 u122880 alloc=30*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1
[ 0.000000] trying to map vcpu_info 0 at ffff8800037e1020, mfn 13b7e1, offset 32
[ 0.000000] cpu 0 using vcpu_info at ffff8800037e1020
[ 0.000000] trying to map vcpu_info 1 at ffff8800037ff020, mfn 13b7ff, offset 32
[ 0.000000] cpu 1 using vcpu_info at ffff8800037ff020
[ 0.000000] Xen: using vcpu_info placement
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 773742
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: placeholder root=UUID=dd594014-8570-45a6-be99-25f04210c866 ro
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Initializing CPU#0
[ 0.000000] DMA: Placing 64MB software IO TLB between ffff8800065b8000 - ffff88000a5b8000
[ 0.000000] DMA: software IO TLB at phys 0x65b8000 - 0xa5b8000
[ 0.000000] xen_swiotlb_fixup: buf=ffff8800065b8000 size=67108864
[ 0.000000] xen_swiotlb_fixup: buf=ffff88000a618000 size=32768
[ 0.000000] Memory: 2987908k/3144384k available (3143k kernel code, 396k absent, 156080k reserved, 1887k data, 596k init)
[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] NR_IRQS:4352 nr_irqs:768
[ 0.000000] xen: --> irq=0
[ 0.000000] xen: --> irq=1
[ 0.000000] xen: --> irq=2
[ 0.000000] xen: --> irq=3
[ 0.000000] xen: --> irq=4
[ 0.000000] xen: --> irq=5
[ 0.000000] xen: --> irq=6
[ 0.000000] xen: --> irq=7
[ 0.000000] xen: --> irq=8
[ 0.000000] xen: --> irq=9
[ 0.000000] xen: --> irq=10
[ 0.000000] xen: --> irq=11
[ 0.000000] xen: --> irq=12
[ 0.000000] xen: --> irq=13
[ 0.000000] xen: --> irq=14
[ 0.000000] xen: --> irq=15
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] xen: sci override: source_irq=9 global_irq=9 trigger=c polarity=1
[ 0.000000] xen: registering gsi 9 triggering 0 polarity 0
[ 0.000000] xen_allocate_pirq: returning irq 9 for gsi 9
[ 0.000000] xen: --> irq=9
[ 0.000000] xen: acpi sci 9
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] Xen: using vcpuop timer interface
[ 0.000000] installing Xen timer for CPU 0
[ 0.000000] alloc irq_desc for 767 on node 0
[ 0.000000] alloc kstat_irqs on node 0
[ 0.000000] Detected 1995.036 MHz processor.
[ 0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3990.07 BogoMIPS (lpj=7980144)
[ 0.004000] Security Framework initialized
[ 0.004000] SELinux: Disabled at boot.
[ 0.004000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.004232] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.005348] Mount-cache hash table entries: 256
[ 0.005623] Initializing cgroup subsys ns
[ 0.005695] Initializing cgroup subsys cpuacct
[ 0.005764] Initializing cgroup subsys devices
[ 0.005831] Initializing cgroup subsys freezer
[ 0.005897] Initializing cgroup subsys net_cls
[ 0.006008] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.006122] CPU: L2 cache: 4096K
[ 0.006189] CPU 0/0x0 -> Node 0
[ 0.006254] CPU: Physical Processor ID: 0
[ 0.006319] CPU: Processor Core ID: 0
[ 0.006386] mce: CPU supports 6 MCE banks
[ 0.006475] Performance Events: unsupported p6 CPU model 15 no PMU driver, software events only.
[ 0.006665] SMP alternatives: switching to UP code
[ 0.008338] ACPI: Core revision 20090903
[ 0.040077] alloc irq_desc for 766 on node 0
[ 0.040081] alloc kstat_irqs on node 0
[ 0.040093] alloc irq_desc for 765 on node 0
[ 0.040095] alloc kstat_irqs on node 0
[ 0.040102] alloc irq_desc for 764 on node 0
[ 0.040105] alloc kstat_irqs on node 0
[ 0.040111] alloc irq_desc for 763 on node 0
[ 0.040113] alloc kstat_irqs on node 0
[ 0.040363] installing Xen timer for CPU 1
[ 0.040435] alloc irq_desc for 762 on node 0
[ 0.040437] alloc kstat_irqs on node 0
[ 0.040475] SMP alternatives: switching to SMP code
[ 0.044001] alloc irq_desc for 761 on node 0
[ 0.044001] alloc kstat_irqs on node 0
[ 0.044010] alloc irq_desc for 760 on node 0
[ 0.044012] alloc kstat_irqs on node 0
[ 0.044020] alloc irq_desc for 759 on node 0
[ 0.044022] alloc kstat_irqs on node 0
[ 0.044029] alloc irq_desc for 758 on node 0
[ 0.044031] alloc kstat_irqs on node 0
[ 0.004000] Initializing CPU#1
[ 0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.004000] CPU: L2 cache: 4096K
[ 0.004000] CPU 1/0x0 -> Node 0
[ 0.004000] CPU: Physical Processor ID: 0
[ 0.004000] CPU: Processor Core ID: 1
[ 0.044144] Brought up 2 CPUs
[ 0.044601] CPU0 attaching sched-domain:
[ 0.044605] domain 0: span 0-1 level CPU
[ 0.044609] groups: 0 1
[ 0.044617] CPU1 attaching sched-domain:
[ 0.044620] domain 0: span 0-1 level CPU
[ 0.044624] groups: 1 0
[ 0.044705] devtmpfs: initialized
[ 0.048474] Grant table initialized
[ 0.048474] regulator: core version 0.5
[ 0.048474] NET: Registered protocol family 16
[ 0.048474] alloc irq_desc for 757 on node 0
[ 0.048474] alloc kstat_irqs on node 0
[ 0.048474] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.048474] ACPI: bus type pci registered
[ 0.048474] PCI: MCFG configuration 0: base f0000000 segment 0 buses 0 - 63
[ 0.048474] PCI: MCFG area at f0000000 reserved in E820
[ 0.066711] PCI: Using MMCONFIG at f0000000 - f3ffffff
[ 0.066778] PCI: Using configuration type 1 for base access
[ 0.067455] bio: create slab <bio-0> at 0
[ 0.068098] ERROR: Unable to locate IOAPIC for GSI 9
[ 0.068222] ACPI: EC: EC description table is found, configuring boot EC
[ 0.082159] ACPI: BIOS _OSI(Linux) query honored via DMI
[ 0.095222] ACPI: Interpreter enabled
[ 0.095288] ACPI: (supports S0 S3 S4 S5)
[ 0.095560] ACPI: Using IOAPIC for interrupt routing
[ 0.111032] ACPI: EC: GPE = 0x12, I/O: command/status = 0x66, data = 0x62
[ 0.111170] ACPI: Power Resource [PUBS] (on)
[ 0.114024] ACPI: ACPI Dock Station Driver: 3 docks/bays found
[ 0.116114] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 0.116490] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.116566] pci 0000:00:01.0: PME# disabled
[ 0.116906] pci 0000:00:19.0: reg 10 32bit mmio: [0xfe200000-0xfe21ffff]
[ 0.116929] pci 0000:00:19.0: reg 14 32bit mmio: [0xfe224000-0xfe224fff]
[ 0.116952] pci 0000:00:19.0: reg 18 io port: [0x1800-0x181f]
[ 0.117121] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[ 0.117201] pci 0000:00:19.0: PME# disabled
[ 0.117438] pci 0000:00:1a.0: reg 20 io port: [0x1820-0x183f]
[ 0.117648] pci 0000:00:1a.1: reg 20 io port: [0x1840-0x185f]
[ 0.117850] pci 0000:00:1a.7: reg 10 32bit mmio: [0xfe225800-0xfe225bff]
[ 0.118037] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 0.118117] pci 0000:00:1a.7: PME# disabled
[ 0.118348] pci 0000:00:1b.0: reg 10 64bit mmio: [0xfe220000-0xfe223fff]
[ 0.118551] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.118631] pci 0000:00:1b.0: PME# disabled
[ 0.119003] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.119083] pci 0000:00:1c.0: PME# disabled
[ 0.119464] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.119544] pci 0000:00:1c.1: PME# disabled
[ 0.119927] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.120001] pci 0000:00:1c.2: PME# disabled
[ 0.120265] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.120345] pci 0000:00:1c.3: PME# disabled
[ 0.120728] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.120808] pci 0000:00:1c.4: PME# disabled
[ 0.121084] pci 0000:00:1d.0: reg 20 io port: [0x1860-0x187f]
[ 0.121294] pci 0000:00:1d.1: reg 20 io port: [0x1880-0x189f]
[ 0.121504] pci 0000:00:1d.2: reg 20 io port: [0x18a0-0x18bf]
[ 0.121734] pci 0000:00:1d.7: reg 10 32bit mmio: [0xfe225c00-0xfe225fff]
[ 0.121940] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.122019] pci 0000:00:1d.7: PME# disabled
[ 0.122605] pci 0000:00:1f.0: quirk: region 1000-107f claimed by ICH6 ACPI/GPIO/TCO
[ 0.122693] pci 0000:00:1f.0: quirk: region 1180-11bf claimed by ICH6 GPIO
[ 0.122767] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 1600 (mask 007f)
[ 0.122854] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 15e0 (mask 000f)
[ 0.122940] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 1680 (mask 001f)
[ 0.123177] pci 0000:00:1f.1: reg 10 io port: [0x00-0x07]
[ 0.123200] pci 0000:00:1f.1: reg 14 io port: [0x00-0x03]
[ 0.123222] pci 0000:00:1f.1: reg 18 io port: [0x00-0x07]
[ 0.123244] pci 0000:00:1f.1: reg 1c io port: [0x00-0x03]
[ 0.123267] pci 0000:00:1f.1: reg 20 io port: [0x18c0-0x18cf]
[ 0.123508] pci 0000:00:1f.2: reg 10 io port: [0x18f8-0x18ff]
[ 0.123530] pci 0000:00:1f.2: reg 14 io port: [0x18ec-0x18ef]
[ 0.123553] pci 0000:00:1f.2: reg 18 io port: [0x18f0-0x18f7]
[ 0.123575] pci 0000:00:1f.2: reg 1c io port: [0x18e8-0x18eb]
[ 0.123597] pci 0000:00:1f.2: reg 20 io port: [0x1c00-0x1c1f]
[ 0.123620] pci 0000:00:1f.2: reg 24 32bit mmio: [0xfe225000-0xfe2257ff]
[ 0.123760] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.123836] pci 0000:00:1f.2: PME# disabled
[ 0.124001] pci 0000:00:1f.3: reg 10 32bit mmio: [0xfe226000-0xfe2260ff]
[ 0.124001] pci 0000:00:1f.3: reg 20 io port: [0x1c20-0x1c3f]
[ 0.124001] pci 0000:01:00.0: reg 10 32bit mmio: [0xd6000000-0xd6ffffff]
[ 0.124001] pci 0000:01:00.0: reg 14 64bit mmio pref: [0xe0000000-0xefffffff]
[ 0.124001] pci 0000:01:00.0: reg 1c 64bit mmio: [0xd4000000-0xd5ffffff]
[ 0.124001] pci 0000:01:00.0: reg 24 io port: [0x2000-0x207f]
[ 0.124001] pci 0000:01:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff]
[ 0.124001] pci 0000:00:01.0: bridge io port: [0x2000-0x2fff]
[ 0.124001] pci 0000:00:01.0: bridge 32bit mmio: [0xd4000000-0xd6ffffff]
[ 0.124001] pci 0000:00:01.0: bridge 64bit mmio pref: [0xe0000000-0xefffffff]
[ 0.124001] pci 0000:00:1c.0: bridge io port: [0x3000-0x3fff]
[ 0.124001] pci 0000:00:1c.0: bridge 32bit mmio: [0xfc000000-0xfdffffff]
[ 0.124001] pci 0000:00:1c.0: bridge 64bit mmio pref: [0xf8000000-0xf80fffff]
[ 0.124001] pci 0000:03:00.0: reg 10 32bit mmio: [0xdf2ff000-0xdf2fffff]
[ 0.124001] pci 0000:03:00.0: PME# supported from D0 D3hot
[ 0.124001] pci 0000:03:00.0: PME# disabled
[ 0.124001] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.124001] pci 0000:00:1c.1: bridge io port: [0x4000-0x4fff]
[ 0.124001] pci 0000:00:1c.1: bridge 32bit mmio: [0xdc100000-0xdf2fffff]
[ 0.124001] pci 0000:00:1c.1: bridge 64bit mmio pref: [0xdfd00000-0xdfdfffff]
[ 0.124001] pci 0000:00:1c.2: bridge io port: [0x5000-0x5fff]
[ 0.124001] pci 0000:00:1c.2: bridge 32bit mmio: [0xd8000000-0xd9ffffff]
[ 0.124001] pci 0000:00:1c.2: bridge 64bit mmio pref: [0xdfa00000-0xdfafffff]
[ 0.124001] pci 0000:00:1c.3: bridge io port: [0x6000-0x6fff]
[ 0.124001] pci 0000:00:1c.3: bridge 32bit mmio: [0xd0000000-0xd1ffffff]
[ 0.124001] pci 0000:00:1c.3: bridge 64bit mmio pref: [0xdf700000-0xdf7fffff]
[ 0.124001] pci 0000:00:1c.4: bridge io port: [0x7000-0x7fff]
[ 0.124001] pci 0000:00:1c.4: bridge 32bit mmio: [0xcc000000-0xcdffffff]
[ 0.124001] pci 0000:00:1c.4: bridge 64bit mmio pref: [0xdf400000-0xdf4fffff]
[ 0.124001] pci 0000:15:00.0: reg 10 32bit mmio: [0xf8100000-0xf8100fff]
[ 0.124001] pci 0000:15:00.0: supports D1 D2
[ 0.124001] pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.124001] pci 0000:15:00.0: PME# disabled
[ 0.124001] pci 0000:15:00.1: reg 10 32bit mmio: [0xf8101000-0xf81017ff]
[ 0.124001] pci 0000:15:00.1: supports D1 D2
[ 0.124001] pci 0000:15:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.124001] pci 0000:15:00.1: PME# disabled
[ 0.124001] pci 0000:15:00.2: reg 10 32bit mmio: [0xf8101800-0xf81018ff]
[ 0.124001] pci 0000:15:00.2: supports D1 D2
[ 0.124001] pci 0000:15:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.124001] pci 0000:15:00.2: PME# disabled
[ 0.124119] pci 0000:15:00.3: reg 10 32bit mmio: [0xf8101c00-0xf8101cff]
[ 0.124323] pci 0000:15:00.3: supports D1 D2
[ 0.124326] pci 0000:15:00.3: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.124408] pci 0000:15:00.3: PME# disabled
[ 0.124612] pci 0000:15:00.4: reg 10 32bit mmio: [0xf8102000-0xf81020ff]
[ 0.124816] pci 0000:15:00.4: supports D1 D2
[ 0.124820] pci 0000:15:00.4: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.124900] pci 0000:15:00.4: PME# disabled
[ 0.125106] pci 0000:15:00.5: reg 10 32bit mmio: [0xf8102400-0xf81024ff]
[ 0.125310] pci 0000:15:00.5: supports D1 D2
[ 0.125313] pci 0000:15:00.5: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.125394] pci 0000:15:00.5: PME# disabled
[ 0.125685] pci 0000:00:1e.0: transparent bridge
[ 0.125763] pci 0000:00:1e.0: bridge io port: [0x8000-0xbfff]
[ 0.125776] pci 0000:00:1e.0: bridge 32bit mmio: [0xf8100000-0xfbffffff]
[ 0.125799] pci 0000:00:1e.0: bridge 64bit mmio pref: [0xf4000000-0xf7ffffff]
[ 0.125998] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.126267] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[ 0.126379] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP0._PRT]
[ 0.126490] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
[ 0.126598] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
[ 0.126706] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP3._PRT]
[ 0.126826] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP4._PRT]
[ 0.126947] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
[ 0.141849] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11)
[ 0.142669] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.143484] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.144191] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.144979] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.145766] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.146554] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.147342] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.148007] sync cpu 0 get result 1 max_id 1
[ 0.148021] sync cpu 1 get result 1 max_id 1
[ 0.148026] alloc irq_desc for 756 on node 0
[ 0.148029] alloc kstat_irqs on node 0
[ 0.148074] xen_balloon: Initialising balloon driver with page order 0.
[ 0.148238] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.148330] vgaarb: loaded
[ 0.148439] PCI: Using ACPI for IRQ routing
[ 0.148652] Switching to clocksource xen
[ 0.149852] pnp: PnP ACPI init
[ 0.149926] ACPI: bus type pnp registered
[ 0.152318] xen: registering gsi 13 triggering 1 polarity 0
[ 0.152322] xen_allocate_pirq: returning irq 13 for gsi 13
[ 0.152393] xen: --> irq=13
[ 0.152458] xen: registering gsi 8 triggering 1 polarity 0
[ 0.152461] xen_allocate_pirq: returning irq 8 for gsi 8
[ 0.152530] xen: --> irq=8
[ 0.152596] xen: registering gsi 1 triggering 1 polarity 0
[ 0.152599] xen_allocate_pirq: returning irq 1 for gsi 1
[ 0.152665] xen: --> irq=1
[ 0.152726] xen: registering gsi 12 triggering 1 polarity 0
[ 0.152729] xen_allocate_pirq: returning irq 12 for gsi 12
[ 0.152797] xen: --> irq=12
[ 0.155166] pnp: PnP ACPI: found 11 devices
[ 0.155232] ACPI: ACPI bus type pnp unregistered
[ 0.155307] system 00:00: iomem range 0x0-0x9ffff could not be reserved
[ 0.155376] system 00:00: iomem range 0xc0000-0xc3fff could not be reserved
[ 0.155446] system 00:00: iomem range 0xc4000-0xc7fff could not be reserved
[ 0.155515] system 00:00: iomem range 0xc8000-0xcbfff could not be reserved
[ 0.155585] system 00:00: iomem range 0xcc000-0xcffff could not be reserved
[ 0.155654] system 00:00: iomem range 0xd0000-0xd3fff could not be reserved
[ 0.155724] system 00:00: iomem range 0xe0000-0xe3fff could not be reserved
[ 0.155794] system 00:00: iomem range 0xe4000-0xe7fff could not be reserved
[ 0.155864] system 00:00: iomem range 0xe8000-0xebfff could not be reserved
[ 0.155934] system 00:00: iomem range 0xec000-0xeffff could not be reserved
[ 0.156004] system 00:00: iomem range 0xf0000-0xfffff could not be reserved
[ 0.156074] system 00:00: iomem range 0x100000-0xbfffffff could not be reserved
[ 0.156156] system 00:00: iomem range 0xfec00000-0xfed3ffff could not be reserved
[ 0.156240] system 00:00: iomem range 0xfed4c000-0xffffffff could not be reserved
[ 0.156337] system 00:02: ioport range 0x164e-0x164f has been reserved
[ 0.156407] system 00:02: ioport range 0x1000-0x107f has been reserved
[ 0.156476] system 00:02: ioport range 0x1180-0x11bf has been reserved
[ 0.156545] system 00:02: ioport range 0x800-0x80f has been reserved
[ 0.156614] system 00:02: ioport range 0x15e0-0x15ef has been reserved
[ 0.156683] system 00:02: ioport range 0x1600-0x165f could not be reserved
[ 0.156753] system 00:02: iomem range 0xf0000000-0xf3ffffff has been reserved
[ 0.156822] system 00:02: iomem range 0xfed1c000-0xfed1ffff has been reserved
[ 0.156892] system 00:02: iomem range 0xfed14000-0xfed17fff has been reserved
[ 0.156962] system 00:02: iomem range 0xfed18000-0xfed18fff has been reserved
[ 0.157032] system 00:02: iomem range 0xfed19000-0xfed19fff has been reserved
[ 0.157101] system 00:02: iomem range 0xfed45000-0xfed4bfff has been reserved
[ 0.163378] PM-Timer failed consistency check (0x0xffffff) - aborting.
[ 0.163680] pci 0000:01:00.0: BAR 6: can't allocate mem resource [0xf0000000-0xefffffff]
[ 0.163765] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[ 0.163838] pci 0000:00:01.0: IO window: 0x2000-0x2fff
[ 0.163913] pci 0000:00:01.0: MEM window: 0xd4000000-0xd6ffffff
[ 0.163987] pci 0000:00:01.0: PREFETCH window: 0x000000e0000000-0x000000efffffff
[ 0.164005] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
[ 0.164005] pci 0000:00:1c.0: IO window: 0x3000-0x3fff
[ 0.164005] pci 0000:00:1c.0: MEM window: 0xfc000000-0xfdffffff
[ 0.164005] pci 0000:00:1c.0: PREFETCH window: 0x000000f8000000-0x000000f80fffff
[ 0.164005] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03
[ 0.164005] pci 0000:00:1c.1: IO window: 0x4000-0x4fff
[ 0.164005] pci 0000:00:1c.1: MEM window: 0xdc100000-0xdf2fffff
[ 0.164005] pci 0000:00:1c.1: PREFETCH window: 0x000000dfd00000-0x000000dfdfffff
[ 0.164005] pci 0000:00:1c.2: PCI bridge, secondary bus 0000:04
[ 0.164005] pci 0000:00:1c.2: IO window: 0x5000-0x5fff
[ 0.164005] pci 0000:00:1c.2: MEM window: 0xd8000000-0xd9ffffff
[ 0.164005] pci 0000:00:1c.2: PREFETCH window: 0x000000dfa00000-0x000000dfafffff
[ 0.164005] pci 0000:00:1c.3: PCI bridge, secondary bus 0000:05
[ 0.164005] pci 0000:00:1c.3: IO window: 0x6000-0x6fff
[ 0.164005] pci 0000:00:1c.3: MEM window: 0xd0000000-0xd1ffffff
[ 0.164005] pci 0000:00:1c.3: PREFETCH window: 0x000000df700000-0x000000df7fffff
[ 0.164005] pci 0000:00:1c.4: PCI bridge, secondary bus 0000:0d
[ 0.164005] pci 0000:00:1c.4: IO window: 0x7000-0x7fff
[ 0.164005] pci 0000:00:1c.4: MEM window: 0xcc000000-0xcdffffff
[ 0.164005] pci 0000:00:1c.4: PREFETCH window: 0x000000df400000-0x000000df4fffff
[ 0.164005] pci 0000:15:00.0: CardBus bridge, secondary bus 0000:16
[ 0.164005] pci 0000:15:00.0: IO window: 0x008000-0x0080ff
[ 0.164005] pci 0000:15:00.0: IO window: 0x008400-0x0084ff
[ 0.164005] pci 0000:15:00.0: PREFETCH window: 0xf4000000-0xf7ffffff
[ 0.164005] pci 0000:15:00.0: MEM window: 0xc0000000-0xc3ffffff
[ 0.164005] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:15
[ 0.164005] pci 0000:00:1e.0: IO window: 0x8000-0xbfff
[ 0.164005] pci 0000:00:1e.0: MEM window: 0xf8100000-0xfbffffff
[ 0.164005] pci 0000:00:1e.0: PREFETCH window: 0x000000f4000000-0x000000f7ffffff
[ 0.164005] xen: registering gsi 16 triggering 0 polarity 1
[ 0.164005] alloc irq_desc for 16 on node 0
[ 0.164005] alloc kstat_irqs on node 0
[ 0.166469] xen: --> irq=16
[ 0.166476] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.166550] pci 0000:00:01.0: setting latency timer to 64
[ 0.166577] xen: registering gsi 20 triggering 0 polarity 1
[ 0.166582] alloc irq_desc for 20 on node 0
[ 0.166584] alloc kstat_irqs on node 0
[ 0.166589] xen: --> irq=20
[ 0.166594] pci 0000:00:1c.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 0.166673] pci 0000:00:1c.0: setting latency timer to 64
[ 0.166702] xen: registering gsi 21 triggering 0 polarity 1
[ 0.166706] alloc irq_desc for 21 on node 0
[ 0.166709] alloc kstat_irqs on node 0
[ 0.166713] xen: --> irq=21
[ 0.166718] pci 0000:00:1c.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 0.166798] pci 0000:00:1c.1: setting latency timer to 64
[ 0.166827] xen: registering gsi 22 triggering 0 polarity 1
[ 0.166832] alloc irq_desc for 22 on node 0
[ 0.166835] alloc kstat_irqs on node 0
[ 0.166839] xen: --> irq=22
[ 0.166844] pci 0000:00:1c.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22
[ 0.166922] pci 0000:00:1c.2: setting latency timer to 64
[ 0.166951] xen: registering gsi 23 triggering 0 polarity 1
[ 0.166956] alloc irq_desc for 23 on node 0
[ 0.166958] alloc kstat_irqs on node 0
[ 0.166962] xen: --> irq=23
[ 0.166967] pci 0000:00:1c.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[ 0.167046] pci 0000:00:1c.3: setting latency timer to 64
[ 0.167074] xen: registering gsi 20 triggering 0 polarity 1
[ 0.167077] xen_allocate_pirq: returning irq 20 for gsi 20
[ 0.167144] xen: --> irq=20
[ 0.167147] Already setup the GSI :20
[ 0.167211] pci 0000:00:1c.4: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 0.167289] pci 0000:00:1c.4: setting latency timer to 64
[ 0.167304] pci 0000:00:1e.0: enabling device (0005 -> 0007)
[ 0.167386] pci 0000:00:1e.0: setting latency timer to 64
[ 0.167417] xen: registering gsi 16 triggering 0 polarity 1
[ 0.167420] xen_allocate_pirq: returning irq 16 for gsi 16
[ 0.167487] xen: --> irq=16
[ 0.167490] Already setup the GSI :16
[ 0.167555] pci 0000:15:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.167635] pci_bus 0000:00: resource 0 io: [0x00-0xffff]
[ 0.167639] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
[ 0.167642] pci_bus 0000:01: resource 0 io: [0x2000-0x2fff]
[ 0.167646] pci_bus 0000:01: resource 1 mem: [0xd4000000-0xd6ffffff]
[ 0.167649] pci_bus 0000:01: resource 2 pref mem [0xe0000000-0xefffffff]
[ 0.167652] pci_bus 0000:02: resource 0 io: [0x3000-0x3fff]
[ 0.167656] pci_bus 0000:02: resource 1 mem: [0xfc000000-0xfdffffff]
[ 0.167659] pci_bus 0000:02: resource 2 pref mem [0xf8000000-0xf80fffff]
[ 0.167662] pci_bus 0000:03: resource 0 io: [0x4000-0x4fff]
[ 0.167665] pci_bus 0000:03: resource 1 mem: [0xdc100000-0xdf2fffff]
[ 0.167669] pci_bus 0000:03: resource 2 pref mem [0xdfd00000-0xdfdfffff]
[ 0.167672] pci_bus 0000:04: resource 0 io: [0x5000-0x5fff]
[ 0.167676] pci_bus 0000:04: resource 1 mem: [0xd8000000-0xd9ffffff]
[ 0.167679] pci_bus 0000:04: resource 2 pref mem [0xdfa00000-0xdfafffff]
[ 0.167682] pci_bus 0000:05: resource 0 io: [0x6000-0x6fff]
[ 0.167685] pci_bus 0000:05: resource 1 mem: [0xd0000000-0xd1ffffff]
[ 0.167689] pci_bus 0000:05: resource 2 pref mem [0xdf700000-0xdf7fffff]
[ 0.167692] pci_bus 0000:0d: resource 0 io: [0x7000-0x7fff]
[ 0.167695] pci_bus 0000:0d: resource 1 mem: [0xcc000000-0xcdffffff]
[ 0.167699] pci_bus 0000:0d: resource 2 pref mem [0xdf400000-0xdf4fffff]
[ 0.167702] pci_bus 0000:15: resource 0 io: [0x8000-0xbfff]
[ 0.167705] pci_bus 0000:15: resource 1 mem: [0xf8100000-0xfbffffff]
[ 0.167708] pci_bus 0000:15: resource 2 pref mem [0xf4000000-0xf7ffffff]
[ 0.167712] pci_bus 0000:15: resource 3 io: [0x00-0xffff]
[ 0.167715] pci_bus 0000:15: resource 4 mem: [0x000000-0xffffffffffffffff]
[ 0.167718] pci_bus 0000:16: resource 0 io: [0x8000-0x80ff]
[ 0.167721] pci_bus 0000:16: resource 1 io: [0x8400-0x84ff]
[ 0.167725] pci_bus 0000:16: resource 2 pref mem [0xf4000000-0xf7ffffff]
[ 0.167728] pci_bus 0000:16: resource 3 mem: [0xc0000000-0xc3ffffff]
[ 0.167763] NET: Registered protocol family 2
[ 0.168212] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.171167] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[ 0.175583] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.176232] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.176306] TCP reno registered
[ 0.176507] NET: Registered protocol family 1
[ 0.176972] pci 0000:01:00.0: Boot video device
[ 0.177061] Unpacking initramfs...
[ 0.215734] Freeing initrd memory: 25750k freed
[ 0.231285] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.231366] DMA: Placing 64MB software IO TLB between ffff8800065b8000 - ffff88000a5b8000
[ 0.231448] DMA: software IO TLB at phys 0x65b8000 - 0xa5b8000
[ 0.231627] Simple Boot Flag at 0x35 set to 0x1
[ 0.232379] audit: initializing netlink socket (disabled)
[ 0.232464] type=2000 audit(1283261181.805:1): initialized
[ 0.235996] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.243448] VFS: Disk quotas dquot_6.5.2
[ 0.243576] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.243747] msgmni has been set to 5886
[ 0.244103] alg: No test for stdrng (krng)
[ 0.244237] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 0.244321] io scheduler noop registered
[ 0.244385] io scheduler anticipatory registered
[ 0.244451] io scheduler deadline registered
[ 0.244556] io scheduler cfq registered (default)
[ 0.244894] alloc irq_desc for 755 on node 0
[ 0.244898] alloc kstat_irqs on node 0
[ 0.244938] pcieport 0000:00:01.0: setting latency timer to 64
[ 0.245288] alloc irq_desc for 754 on node 0
[ 0.245291] alloc kstat_irqs on node 0
[ 0.245355] pcieport 0000:00:1c.0: setting latency timer to 64
[ 0.245791] alloc irq_desc for 753 on node 0
[ 0.245794] alloc kstat_irqs on node 0
[ 0.245857] pcieport 0000:00:1c.1: setting latency timer to 64
[ 0.246293] alloc irq_desc for 752 on node 0
[ 0.246296] alloc kstat_irqs on node 0
[ 0.246375] pcieport 0000:00:1c.2: setting latency timer to 64
[ 0.246812] alloc irq_desc for 751 on node 0
[ 0.246815] alloc kstat_irqs on node 0
[ 0.246879] pcieport 0000:00:1c.3: setting latency timer to 64
[ 0.247315] alloc irq_desc for 750 on node 0
[ 0.247318] alloc kstat_irqs on node 0
[ 0.247393] pcieport 0000:00:1c.4: setting latency timer to 64
[ 0.252887] registering netback
[ 0.253041] alloc irq_desc for 749 on node 0
[ 0.253044] alloc kstat_irqs on node 0
[ 0.254711] alloc irq_desc for 748 on node 0
[ 0.254715] alloc kstat_irqs on node 0
[ 0.255068] hpet_acpi_add: no address or irqs in _CRS
[ 0.255168] Linux agpgart interface v0.103
[ 0.255319] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.255868] input: Macintosh mouse button emulation as /devices/virtual/input/input0
[ 0.256029] PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[ 0.265764] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.265840] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.266010] mice: PS/2 mouse device common for all mice
[ 0.266152] rtc_cmos 00:07: RTC can wake from S4
[ 0.266271] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
[ 0.266408] rtc0: alarms up to one month, y3k, 114 bytes nvram
[ 0.266486] cpuidle: using governor ladder
[ 0.266550] cpuidle: using governor menu
[ 0.266619] No iBFT detected.
[ 0.267020] TCP cubic registered
[ 0.267242] NET: Registered protocol family 10
[ 0.267866] lo: Disabled Privacy Extensions
[ 0.268233] Mobile IPv6
[ 0.268300] NET: Registered protocol family 17
[ 0.268462] PM: Resume from disk failed.
[ 0.268478] registered taskstats version 1
[ 0.270182] rtc_cmos 00:07: setting system clock to 2010-08-31 13:26:21 UTC (1283261181)
[ 0.270319] Initalizing network drop monitor service
[ 0.270472] Freeing unused kernel memory: 596k freed
[ 0.270830] Write protecting the kernel read-only data: 4308k
[ 0.272668] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[ 0.308350] udev: starting version 160
[ 0.482069] thermal LNXTHERM:01: registered as thermal_zone0
[ 0.482153] ACPI: Thermal Zone [THM0] (62 C)
[ 0.483990] thermal LNXTHERM:02: registered as thermal_zone1
[ 0.488109] ACPI: Thermal Zone [THM1] (62 C)
[ 0.498496] usbcore: registered new interface driver usbfs
[ 0.498596] usbcore: registered new interface driver hub
[ 0.516388] usbcore: registered new device driver usb
[ 0.519481] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.519879] ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0
[ 0.520279] ehci_hcd 0000:00:1a.7: power state changed by ACPI to D0
[ 0.520363] xen: registering gsi 22 triggering 0 polarity 1
[ 0.520367] xen_allocate_pirq: returning irq 22 for gsi 22
[ 0.520436] xen: --> irq=22
[ 0.520442] Already setup the GSI :22
[ 0.520511] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 22 (level, low) -> IRQ 22
[ 0.520609] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[ 0.520618] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[ 0.520715] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
[ 0.523708] e1000e: Intel(R) PRO/1000 Network Driver - 1.0.2-k2
[ 0.523832] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[ 0.524772] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
[ 0.528694] SCSI subsystem initialized
[ 0.549192] ehci_hcd 0000:00:1a.7: irq 22, io mem 0xfe225800
[ 0.562815] libata version 3.00 loaded.
[ 0.563405] ricoh-mmc: Ricoh MMC Controller disabling driver
[ 0.563478] ricoh-mmc: Copyright(c) Philip Langdale
[ 0.563575] ricoh-mmc: Ricoh MMC controller found at 0000:15:00.3 [1180:0843] (rev 11)
[ 0.563706] ricoh-mmc: Controller is now disabled.
[ 0.568672] xen: registering gsi 17 triggering 0 polarity 1
[ 0.568682] alloc irq_desc for 17 on node 0
[ 0.568686] alloc kstat_irqs on node 0
[ 0.568692] xen: --> irq=17
[ 0.568703] firewire_ohci 0000:15:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 0.569058] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 0.569165] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 0.569238] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.569320] usb usb1: Product: EHCI Host Controller
[ 0.569388] usb usb1: Manufacturer: Linux 2.6.32-5-xen-amd64 ehci_hcd
[ 0.569456] usb usb1: SerialNumber: 0000:00:1a.7
[ 0.569673] usb usb1: configuration #1 chosen from 1 choice
[ 0.570727] hub 1-0:1.0: USB hub found
[ 0.570812] hub 1-0:1.0: 4 ports detected
[ 0.571030] xen: registering gsi 20 triggering 0 polarity 1
[ 0.571034] xen_allocate_pirq: returning irq 20 for gsi 20
[ 0.571101] xen: --> irq=20
[ 0.571106] Already setup the GSI :20
[ 0.571172] e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 0.571255] e1000e 0000:00:19.0: setting latency timer to 64
[ 0.571555] alloc irq_desc for 747 on node 0
[ 0.571558] alloc kstat_irqs on node 0
[ 0.577721] sdhci: Secure Digital Host Controller Interface driver
[ 0.577792] sdhci: Copyright(c) Pierre Ossman
[ 0.648023] firewire_ohci: Added fw-ohci device 0000:15:00.1, OHCI version 1.10
[ 0.648165] sdhci-pci 0000:15:00.2: SDHCI controller found [1180:0822] (rev 21)
[ 0.648290] xen: registering gsi 18 triggering 0 polarity 1
[ 0.648299] alloc irq_desc for 18 on node 0
[ 0.648302] alloc kstat_irqs on node 0
[ 0.648308] xen: --> irq=18
[ 0.648318] sdhci-pci 0000:15:00.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 0.649428] sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
[ 0.649524] sdhci-pci 0000:15:00.2: setting latency timer to 64
[ 0.650585] Registered led device: mmc0::
[ 0.651686] mmc0: SDHCI controller on PCI [0000:15:00.2] using DMA
[ 0.843694] 0000:00:19.0: eth0: (PCI Express:2.5GB/s:Width x1) 00:15:58:c9:91:92
[ 0.843778] 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
[ 0.843884] 0000:00:19.0: eth0: MAC: 6, PHY: 6, PBA No: ffffff-0ff
[ 0.844269] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
[ 0.844633] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
[ 0.844715] xen: registering gsi 19 triggering 0 polarity 1
[ 0.844721] alloc irq_desc for 19 on node 0
[ 0.844724] alloc kstat_irqs on node 0
[ 0.844729] xen: --> irq=19
[ 0.844736] ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[ 0.844829] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 0.844837] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 0.844916] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
[ 0.845080] ehci_hcd 0000:00:1d.7: debug port 1
[ 0.849048] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[ 0.849076] ehci_hcd 0000:00:1d.7: irq 19, io mem 0xfe225c00
[ 0.868022] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 0.868118] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 0.868187] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.868269] usb usb2: Product: EHCI Host Controller
[ 0.868335] usb usb2: Manufacturer: Linux 2.6.32-5-xen-amd64 ehci_hcd
[ 0.868402] usb usb2: SerialNumber: 0000:00:1d.7
[ 0.868563] usb usb2: configuration #1 chosen from 1 choice
[ 0.868669] hub 2-0:1.0: USB hub found
[ 0.868752] hub 2-0:1.0: 6 ports detected
[ 0.868915] ahci 0000:00:1f.2: version 3.0
[ 0.868946] xen: registering gsi 16 triggering 0 polarity 1
[ 0.868949] xen_allocate_pirq: returning irq 16 for gsi 16
[ 0.869021] xen: --> irq=16
[ 0.869035] Already setup the GSI :16
[ 0.869103] ahci 0000:00:1f.2: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[ 0.869263] alloc irq_desc for 746 on node 0
[ 0.869266] alloc kstat_irqs on node 0
[ 0.869394] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 1.5 Gbps 0x5 impl SATA mode
[ 0.869481] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc
[ 0.869574] ahci 0000:00:1f.2: setting latency timer to 64
[ 0.870829] uhci_hcd: USB Universal Host Controller Interface driver
[ 0.871048] scsi0 : ahci
[ 0.871285] scsi1 : ahci
[ 0.871431] scsi2 : ahci
[ 0.871644] ata1: SATA max UDMA/133 abar m2048@0xfe225000 port 0xfe225100 irq 746
[ 0.871727] ata2: DUMMY
[ 0.871793] ata3: SATA max UDMA/133 abar m2048@0xfe225000 port 0xfe225200 irq 746
[ 0.871928] ata_piix 0000:00:1f.1: version 2.13
[ 0.871944] xen: registering gsi 16 triggering 0 polarity 1
[ 0.871947] xen_allocate_pirq: returning irq 16 for gsi 16
[ 0.872016] xen: --> irq=16
[ 0.872020] Already setup the GSI :16
[ 0.872087] ata_piix 0000:00:1f.1: PCI INT C -> GSI 16 (level, low) -> IRQ 16
[ 0.872221] ata_piix 0000:00:1f.1: setting latency timer to 64
[ 0.872375] scsi3 : ata_piix
[ 0.872555] scsi4 : ata_piix
[ 0.873642] ata4: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x18c0 irq 14
[ 0.873716] ata5: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x18c8 irq 15
[ 0.873839] xen: registering gsi 20 triggering 0 polarity 1
[ 0.873842] xen_allocate_pirq: returning irq 20 for gsi 20
[ 0.873925] xen: --> irq=20
[ 0.873929] Already setup the GSI :20
[ 0.874055] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 0.874173] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[ 0.874181] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 0.874279] ata5: port disabled. ignoring.
[ 0.874294] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[ 0.874459] uhci_hcd 0000:00:1a.0: irq 20, io base 0x00001820
[ 0.874612] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 0.874681] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.874763] usb usb3: Product: UHCI Host Controller
[ 0.874828] usb usb3: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
[ 0.874896] usb usb3: SerialNumber: 0000:00:1a.0
[ 0.875044] usb usb3: configuration #1 chosen from 1 choice
[ 0.875149] hub 3-0:1.0: USB hub found
[ 0.875230] hub 3-0:1.0: 2 ports detected
[ 0.875660] uhci_hcd 0000:00:1a.1: power state changed by ACPI to D0
[ 0.875961] uhci_hcd 0000:00:1a.1: power state changed by ACPI to D0
[ 0.876037] xen: registering gsi 21 triggering 0 polarity 1
[ 0.876040] xen_allocate_pirq: returning irq 21 for gsi 21
[ 0.876107] xen: --> irq=21
[ 0.876121] Already setup the GSI :21
[ 0.876186] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 0.876267] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[ 0.876275] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[ 0.876350] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[ 0.876510] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840
[ 0.876662] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 0.876731] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.876813] usb usb4: Product: UHCI Host Controller
[ 0.876879] usb usb4: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
[ 0.876947] usb usb4: SerialNumber: 0000:00:1a.1
[ 0.877087] usb usb4: configuration #1 chosen from 1 choice
[ 0.877190] hub 4-0:1.0: USB hub found
[ 0.877270] hub 4-0:1.0: 2 ports detected
[ 0.877648] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[ 0.877942] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[ 0.878017] xen: registering gsi 16 triggering 0 polarity 1
[ 0.878020] xen_allocate_pirq: returning irq 16 for gsi 16
[ 0.878086] xen: --> irq=16
[ 0.878089] Already setup the GSI :16
[ 0.878155] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.878235] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 0.878243] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 0.878320] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
[ 0.883769] uhci_hcd 0000:00:1d.0: irq 16, io base 0x00001860
[ 0.883919] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[ 0.883988] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.884070] usb usb5: Product: UHCI Host Controller
[ 0.884137] usb usb5: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
[ 0.884205] usb usb5: SerialNumber: 0000:00:1d.0
[ 0.884344] usb usb5: configuration #1 chosen from 1 choice
[ 0.884449] hub 5-0:1.0: USB hub found
[ 0.884533] hub 5-0:1.0: 2 ports detected
[ 0.884681] xen: registering gsi 17 triggering 0 polarity 1
[ 0.884684] xen_allocate_pirq: returning irq 17 for gsi 17
[ 0.884751] xen: --> irq=17
[ 0.884755] Already setup the GSI :17
[ 0.884819] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 0.884898] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[ 0.884906] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 0.884979] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
[ 0.885124] uhci_hcd 0000:00:1d.1: irq 17, io base 0x00001880
[ 0.885270] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[ 0.885339] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.885419] usb usb6: Product: UHCI Host Controller
[ 0.885485] usb usb6: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
[ 0.885553] usb usb6: SerialNumber: 0000:00:1d.1
[ 0.885688] usb usb6: configuration #1 chosen from 1 choice
[ 0.885793] hub 6-0:1.0: USB hub found
[ 0.885873] hub 6-0:1.0: 2 ports detected
[ 0.886258] uhci_hcd 0000:00:1d.2: power state changed by ACPI to D0
[ 0.886564] uhci_hcd 0000:00:1d.2: power state changed by ACPI to D0
[ 0.886640] xen: registering gsi 18 triggering 0 polarity 1
[ 0.886643] xen_allocate_pirq: returning irq 18 for gsi 18
[ 0.886709] xen: --> irq=18
[ 0.886713] Already setup the GSI :18
[ 0.886777] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 0.886858] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[ 0.886866] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 0.886939] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
[ 0.887084] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0
[ 0.887229] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
[ 0.887298] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.887379] usb usb7: Product: UHCI Host Controller
[ 0.887445] usb usb7: Manufacturer: Linux 2.6.32-5-xen-amd64 uhci_hcd
[ 0.887513] usb usb7: SerialNumber: 0000:00:1d.2
[ 0.887652] usb usb7: configuration #1 chosen from 1 choice
[ 0.887753] hub 7-0:1.0: USB hub found
[ 0.887833] hub 7-0:1.0: 2 ports detected
[ 1.036731] ata4.00: ATAPI: HL-DT-ST DVDRAM GMA-4082N, PX07, max UDMA/33
[ 1.052387] ata4.00: configured for UDMA/33
[ 1.148115] firewire_core: created device fw0: GUID 00016c2000175c12, S400
[ 1.192034] ata3: SATA link down (SStatus 0 SControl 300)
[ 1.192133] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 1.193467] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 1.193472] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 1.193556] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 1.194748] ata1.00: ATA-8: Hitachi HTS722020K9SA00, DC4OC76A, max UDMA/133
[ 1.194818] ata1.00: 390721968 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 1.196333] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 1.196337] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 1.196423] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 1.197639] ata1.00: configured for UDMA/133
[ 1.214510] ata1.00: configured for UDMA/133
[ 1.214577] ata1: EH complete
[ 1.214766] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS72202 DC4O PQ: 0 ANSI: 5
[ 1.218955] scsi 3:0:0:0: CD-ROM HL-DT-ST DVDRAM GMA-4082N PX07 PQ: 0 ANSI: 5
[ 1.229820] sd 0:0:0:0: [sda] 390721968 512-byte logical blocks: (200 GB/186 GiB)
[ 1.230013] sd 0:0:0:0: [sda] Write Protect is off
[ 1.230081] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.230126] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.230450] sda: sda1 sda2 < sda5 sda6 sda7 >
[ 1.288840] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.305293] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 1.305379] Uniform CD-ROM driver Revision: 3.20
[ 1.305580] sr 3:0:0:0: Attached scsi CD-ROM sr0
[ 1.311812] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 1.311939] sr 3:0:0:0: Attached scsi generic sg1 type 5
[ 2.046957] PM: Starting manual resume from disk
[ 2.047042] PM: Resume from partition 8:7
[ 2.047045] PM: Checking hibernation image.
[ 2.047934] PM: Error -22 checking image file
[ 2.047937] PM: Resume from disk failed.
[ 2.105057] EXT4-fs (sda5): mounted filesystem with ordered data mode
[ 3.584738] udev: starting version 160
[ 4.144797] ACPI: WMI: Mapper loaded
[ 4.159326] input: PC Speaker as /devices/platform/pcspkr/input/input2
[ 4.203382] Non-volatile memory driver v1.3
[ 4.221361] cfg80211: Using static regulatory domain info
[ 4.221433] cfg80211: Regulatory domain: US
[ 4.221498] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 4.221580] (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm)
[ 4.221649] (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[ 4.221717] (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[ 4.221786] (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[ 4.221854] (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[ 4.221923] (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm)
[ 4.222123] cfg80211: Calling CRDA for country: US
[ 4.245482] thinkpad_acpi: ThinkPad ACPI Extras v0.23
[ 4.245554] thinkpad_acpi: http://ibm-acpi.sf.net/
[ 4.245620] thinkpad_acpi: ThinkPad BIOS 7KETC9WW (2.29 ), EC 7KHT24WW-1.08
[ 4.245689] thinkpad_acpi: Lenovo ThinkPad R61, model 8919W1B
[ 4.248430] thinkpad_acpi: ACPI backlight control delay disabled
[ 4.248906] thinkpad_acpi: radio switch found; radios are enabled
[ 4.249299] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[ 4.249387] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[ 4.264427] ACPI: SSDT 00000000bfee1b32 002C4 (v01 PmRef Cpu0Ist 00000100 INTL 20050513)
[ 4.265970] ACPI: SSDT 00000000bfee1e7b 0085E (v01 PmRef Cpu0Cst 00000100 INTL 20050513)
[ 4.268555] Registered led device: tpacpi::thinklight
[ 4.268668] Registered led device: tpacpi::power
[ 4.269031] Registered led device: tpacpi::standby
[ 4.269204] Registered led device: tpacpi::thinkvantage
[ 4.272225] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
[ 4.275075] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one.
[ 4.277895] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input4
[ 4.283332] yenta_cardbus 0000:15:00.0: CardBus bridge found [17aa:20c6]
[ 4.283510] ACPI: Lid Switch [LID]
[ 4.283700] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input5
[ 4.283855] ACPI: Sleep Button [SLPB]
[ 4.293650] Marking TSC unstable due to TSC halts in idle
[ 4.293781] ACPI: CPU-1 (power states: C1[C1] C2[C2] C3[C3])
[ 4.294136] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
[ 4.294264] ACPI: Power Button [PWRF]
[ 4.296502] ACPI: SSDT 00000000bfee1a6a 000C8 (v01 PmRef Cpu1Ist 00000100 INTL 20050513)
[ 4.297820] ACPI: SSDT 00000000bfee1df6 00085 (v01 PmRef Cpu1Cst 00000100 INTL 20050513)
[ 4.302587] ACPI: AC Adapter [AC] (on-line)
[ 4.304732] ACPI: CPU-1 (power states: C1[C1] C2[C2] C3[C3])
[ 4.333516] acpi device:06: registered as cooling_device0
[ 4.334133] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:05/LNXVIDEO:01/input/input7
[ 4.334274] ACPI: Video Device [VID1] (multi-head: yes rom: no post: no)
[ 4.340903] ACPI: Battery Slot [BAT0] (battery present)
[ 4.409002] yenta_cardbus 0000:15:00.0: ISA IRQ mask 0x0cb8, PCI irq 16
[ 4.409123] yenta_cardbus 0000:15:00.0: Socket status: 30000006
[ 4.409243] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge I/O window: 0x8000 - 0xbfff
[ 4.409377] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge Memory window: 0xf8100000 - 0xfbffffff
[ 4.409512] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge Memory window: 0xf4000000 - 0xf7ffffff
[ 4.464079] xen: registering gsi 23 triggering 0 polarity 1
[ 4.464090] xen_allocate_pirq: returning irq 23 for gsi 23
[ 4.464207] xen: --> irq=23
[ 4.464218] Already setup the GSI :23
[ 4.464322] i801_smbus 0000:00:1f.3: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 4.539685] [drm] Initialized drm 1.1.0 20060810
[ 4.549085] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, 1.2.26ks
[ 4.549171] iwl3945: Copyright(c) 2003-2009 Intel Corporation
[ 4.549366] xen: registering gsi 17 triggering 0 polarity 1
[ 4.549370] xen_allocate_pirq: returning irq 17 for gsi 17
[ 4.549438] xen: --> irq=17
[ 4.549443] Already setup the GSI :17
[ 4.549517] iwl3945 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 4.549647] iwl3945 0000:03:00.0: setting latency timer to 64
[ 4.617778] iwl3945 0000:03:00.0: Tunable channels: 11 802.11bg, 13 802.11a channels
[ 4.617864] iwl3945 0000:03:00.0: Detected Intel Wireless WiFi Link 3945ABG
[ 4.618075] alloc irq_desc for 745 on node 0
[ 4.618078] alloc kstat_irqs on node 0
[ 4.765102] input: DualPoint Stick as /devices/platform/i8042/serio1/input/input8
[ 4.799069] input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input9
[ 4.961635] phy0: Selected rate control algorithm 'iwl-3945-rs'
[ 5.108704] nouveau 0000:01:00.0: power state changed by ACPI to D0
[ 5.108823] nouveau 0000:01:00.0: power state changed by ACPI to D0
[ 5.108898] xen: registering gsi 16 triggering 0 polarity 1
[ 5.108901] xen_allocate_pirq: returning irq 16 for gsi 16
[ 5.108966] xen: --> irq=16
[ 5.108971] Already setup the GSI :16
[ 5.109034] nouveau 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 5.109119] nouveau 0000:01:00.0: setting latency timer to 64
[ 5.111853] [drm] nouveau 0000:01:00.0: failed to evaluate _DSM: 5
[ 5.114285] [drm] nouveau 0000:01:00.0: Detected an NV50 generation card (0x086900a2)
[ 5.122960] [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PRAMIN
[ 5.200863] [drm] nouveau 0000:01:00.0: ... appears to be valid
[ 5.200938] [drm] nouveau 0000:01:00.0: BIT BIOS found
[ 5.201005] [drm] nouveau 0000:01:00.0: Bios version 60.86.3e.00
[ 5.201082] [drm] nouveau 0000:01:00.0: TMDS table revision 2.0 not currently supported
[ 5.201168] [drm] nouveau 0000:01:00.0: BIT table 'd' not found
[ 5.201242] [drm] nouveau 0000:01:00.0: Found Display Configuration Block version 4.0
[ 5.201326] [drm] nouveau 0000:01:00.0: DCB connector table: VHER 0x40 5 14 2
[ 5.201395] [drm] nouveau 0000:01:00.0: 0: 0x00000040: type 0x40 idx 0 tag 0xff
[ 5.201478] [drm] nouveau 0000:01:00.0: 1: 0x00000100: type 0x00 idx 1 tag 0xff
[ 5.201561] [drm] nouveau 0000:01:00.0: 2: 0x00001231: type 0x31 idx 2 tag 0x07
[ 5.201643] [drm] nouveau 0000:01:00.0: 3: 0x00000311: type 0x11 idx 3 tag 0xff
[ 5.201725] [drm] nouveau 0000:01:00.0: Raw DCB entry 0: 01000323 00010034
[ 5.201795] [drm] nouveau 0000:01:00.0: Raw DCB entry 1: 02811300 00000028
[ 5.201864] [drm] nouveau 0000:01:00.0: Raw DCB entry 2: 02822312 00010030
[ 5.201933] [drm] nouveau 0000:01:00.0: Raw DCB entry 3: 014333f1 0080c080
[ 5.202002] [drm] nouveau 0000:01:00.0: Raw DCB entry 4: 0000000e 00000000
[ 5.202077] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at offset 0xDD0F
[ 5.245224] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at offset 0xE04F
[ 5.296106] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at offset 0xEAA4
[ 5.296204] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at offset 0xEB96
[ 5.304116] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at offset 0xED83
[ 5.304199] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table at offset 0xEDE8
[ 5.328153] [drm] nouveau 0000:01:00.0: 0xEDE8: Condition still not met after 20ms, skipping following opcodes
[ 5.328301] [drm] nouveau 0000:01:00.0: 0xCE7E: parsing output script 0
[ 5.328412] [drm] nouveau 0000:01:00.0: 0xCFF4: parsing output script 0
[ 5.328520] [drm] nouveau 0000:01:00.0: 0xC66A: parsing output script 0
[ 5.450906] [TTM] Zone kernel: Available graphics memory: 1570058 kiB.
[ 5.450987] [drm] nouveau 0000:01:00.0: 128 MiB VRAM
[ 5.483646] [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture)
[ 5.483787] mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining
[ 5.484246] [drm] nouveau 0000:01:00.0: Allocating FIFO number 1
[ 5.491441] [drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 1
[ 5.492627] [drm] nouveau 0000:01:00.0: Detected a LVDS output
[ 5.492697] [drm] nouveau 0000:01:00.0: Detected a DAC output
[ 5.492763] [drm] nouveau 0000:01:00.0: Detected a TMDS output
[ 5.492830] [drm] nouveau 0000:01:00.0: DCB encoder 1 unknown
[ 5.492896] [drm] nouveau 0000:01:00.0: Detected a LVDS connector
[ 5.591376] [drm] nouveau 0000:01:00.0: Detected a VGA connector
[ 5.591558] [drm] nouveau 0000:01:00.0: Detected a DVI-D connector
[ 5.632185] xen: registering gsi 17 triggering 0 polarity 1
[ 5.632189] xen_allocate_pirq: returning irq 17 for gsi 17
[ 5.632255] xen: --> irq=17
[ 5.632274] Already setup the GSI :17
[ 5.632338] HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 5.632434] hda_intel: probe_mask set to 0x1 for device 17aa:20ac
[ 5.632562] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 6.926898] [drm] nouveau 0000:01:00.0: allocated 1280x800 fb: 0x40250000, bo ffff880002ae3400
[ 6.933973] Console: switching to colour frame buffer device 160x50
[ 6.933992] [drm] nouveau 0000:01:00.0: 0xCE82: parsing output script 1
[ 6.934014] [drm] nouveau 0000:01:00.0: 0xCCE3: parsing clock script 0
[ 6.936382] fb0: nouveaufb frame buffer device
[ 6.936400] registered panic notifier
[ 6.936420] [drm] Initialized nouveau 0.0.15 20090420 for 0000:01:00.0 on minor 0
[ 6.946364] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input10
[ 6.952372] [drm] nouveau 0000:01:00.0: 0xCE41: parsing clock script 1
[ 7.815505] Adding 2051064k swap on /dev/sda7. Priority:-1 extents:1 across:2051064k
[ 8.228551] loop: module loaded
[ 8.267147] thinkpad_ec: thinkpad_ec 0.40 loaded.
[ 8.274754] tp_smapi 0.40 loading...
[ 8.275107] tp_smapi successfully loaded (smapi_port=0xb2).
[ 8.291025] hdaps: LENOVO ThinkPad R61 detected, setting orientation 1
[ 8.291516] hdaps: initial mode latch is 0x05
[ 8.291713] hdaps: setting ec_rate=250, filter_order=2
[ 8.291940] hdaps: device successfully initialized.
[ 8.292644] input: ThinkPad HDAPS joystick emulation as /devices/virtual/input/input11
[ 8.294622] input: ThinkPad HDAPS accelerometer data as /devices/virtual/input/input12
[ 8.295293] hdaps: driver successfully loaded.
[ 9.858592] fuse init (API version 7.13)
[ 11.337942] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 11.806762] Event-channel device installed.
[ 11.972218] alloc irq_desc for 744 on node 0
[ 11.972224] alloc kstat_irqs on node 0
[ 11.972300] alloc irq_desc for 743 on node 0
[ 11.972304] alloc kstat_irqs on node 0
[ 11.972609] XENBUS: Unable to read cpu state
[ 11.973012] XENBUS: Unable to read cpu state
[ 12.633712] input: ACPI Virtual Keyboard Device as /devices/virtual/input/input13
[ 15.378279] iwl3945 0000:03:00.0: firmware: requesting iwlwifi-3945-2.ucode
[ 15.732469] iwl3945 0000:03:00.0: loaded firmware version 15.32.2.9
[ 15.806052] Registered led device: iwl-phy0::radio
[ 15.806369] Registered led device: iwl-phy0::assoc
[ 15.806743] Registered led device: iwl-phy0::RX
[ 15.807129] Registered led device: iwl-phy0::TX
[ 15.815551] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 18.608493] Bridge firewalling registered
[ 18.788419] [drm] nouveau 0000:01:00.0: Allocating FIFO number 2
[ 18.795338] [drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 2
[ 22.380151] smapi smapi: set_real_thresh: set start to 39 for bat=0
[ 22.604147] smapi smapi: set_real_thresh: set stop to 70 for bat=0
[ 24.327951] CPU0 attaching NULL sched-domain.
[ 24.327967] CPU1 attaching NULL sched-domain.
[ 24.352269] CPU0 attaching sched-domain:
[ 24.352280] domain 0: span 0-1 level CPU
[ 24.352291] groups: 0 1
[ 24.352313] CPU1 attaching sched-domain:
[ 24.352320] domain 0: span 0-1 level CPU
[ 24.352330] groups: 1 0
[ 42.839963] wlan0: direct probe to AP 00:14:bf:89:44:68 (try 1)
[ 42.842488] wlan0: direct probe responded
[ 42.842500] wlan0: authenticate with AP 00:14:bf:89:44:68 (try 1)
[ 42.844420] wlan0: authenticated
[ 42.844482] wlan0: associate with AP 00:14:bf:89:44:68 (try 1)
[ 42.846929] wlan0: RX AssocResp from 00:14:bf:89:44:68 (capab=0x411 status=0 aid=1)
[ 42.846939] wlan0: associated
[ 42.853731] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 43.531772] padlock: VIA PadLock not detected.
[ 53.100120] wlan0: no IPv6 routers present
[-- Attachment #3: xm_dmesg.txt --]
[-- Type: text/plain, Size: 4824 bytes --]
(XEN) Xen version 4.0.1-rc6 (Debian 4.0.1~rc6-1) (waldi@debian.org) (gcc version 4.4.5 20100816 (prerelease) (Debian 4.4.4-9) ) Tue Aug 17 21:17:33 UTC 2010
(XEN) Bootloader: GRUB 1.98+20100804-2
(XEN) Command line: placeholder
(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 - 000000000009d800 (usable)
(XEN) 000000000009d800 - 00000000000a0000 (reserved)
(XEN) 00000000000d2000 - 00000000000d4000 (reserved)
(XEN) 00000000000e0000 - 0000000000100000 (reserved)
(XEN) 0000000000100000 - 00000000bfeb0000 (usable)
(XEN) 00000000bfeb0000 - 00000000bfecc000 (ACPI data)
(XEN) 00000000bfecc000 - 00000000bff00000 (ACPI NVS)
(XEN) 00000000bff00000 - 00000000c0000000 (reserved)
(XEN) 00000000f0000000 - 00000000f4000000 (reserved)
(XEN) 00000000fec00000 - 00000000fec10000 (reserved)
(XEN) 00000000fed00000 - 00000000fed00400 (reserved)
(XEN) 00000000fed14000 - 00000000fed1a000 (reserved)
(XEN) 00000000fed1c000 - 00000000fed90000 (reserved)
(XEN) 00000000fee00000 - 00000000fee01000 (reserved)
(XEN) 00000000ff000000 - 0000000100000000 (reserved)
(XEN) 0000000100000000 - 0000000140000000 (usable)
(XEN) ACPI: RSDP 000F69B0, 0024 (r2 LENOVO)
(XEN) ACPI: XSDT BFEBB27E, 008C (r1 LENOVO TP-7K 2290 LTP 0)
(XEN) ACPI: FACP BFEBB400, 00F4 (r3 LENOVO TP-7K 2290 LNVO 1)
(XEN) ACPI Warning (tbfadt-0444): Optional field "Gpe1Block" has zero address or length: 000000000000102C/0 [20070126]
(XEN) ACPI: DSDT BFEBB81D, 1044C (r1 LENOVO TP-7K 2290 MSFT 3000000)
(XEN) ACPI: FACS BFEE4000, 0040
(XEN) ACPI: SSDT BFEBB5B4, 0269 (r1 LENOVO TP-7K 2290 MSFT 3000000)
(XEN) ACPI: ECDT BFECBC69, 0052 (r1 LENOVO TP-7K 2290 LNVO 1)
(XEN) ACPI: TCPA BFECBCBB, 0032 (r2 LENOVO TP-7K 2290 LNVO 1)
(XEN) ACPI: APIC BFECBCED, 0068 (r1 LENOVO TP-7K 2290 LNVO 1)
(XEN) ACPI: MCFG BFECBD55, 003C (r1 LENOVO TP-7K 2290 LNVO 1)
(XEN) ACPI: HPET BFECBD91, 0038 (r1 LENOVO TP-7K 2290 LNVO 1)
(XEN) ACPI: SLIC BFECBE62, 0176 (r1 LENOVO TP-7K 2290 LTP 0)
(XEN) ACPI: BOOT BFECBFD8, 0028 (r1 LENOVO TP-7K 2290 LTP 1)
(XEN) ACPI: SSDT BFEE26D9, 025F (r1 LENOVO TP-7K 2290 INTL 20050513)
(XEN) ACPI: SSDT BFEE2938, 00A6 (r1 LENOVO TP-7K 2290 INTL 20050513)
(XEN) ACPI: SSDT BFEE29DE, 04F7 (r1 LENOVO TP-7K 2290 INTL 20050513)
(XEN) ACPI: SSDT BFEE2ED5, 01D8 (r1 LENOVO TP-7K 2290 INTL 20050513)
(XEN) System RAM: 4094MB (4192564kB)
(XEN) Domain heap initialised
(XEN) Processor #0 6:15 APIC version 20
(XEN) Processor #1 6:15 APIC version 20
(XEN) IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
(XEN) Enabling APIC mode: Flat. Using 1 I/O APICs
(XEN) Using scheduler: SMP Credit Scheduler (credit)
(XEN) Detected 1995.036 MHz processor.
(XEN) Initing memory sharing.
(XEN) VMX: Supported advanced features:
(XEN) - APIC MMIO access virtualisation
(XEN) - APIC TPR shadow
(XEN) - Virtual NMI
(XEN) - MSR direct-access bitmap
(XEN) HVM: ASIDs disabled.
(XEN) HVM: VMX enabled
(XEN) I/O virtualisation disabled
(XEN) Total of 2 processors activated.
(XEN) ENABLING IO-APIC IRQs
(XEN) -> Using new ACK method
(XEN) checking TSC synchronization across 2 CPUs:
(XEN) CPU#0 had -91 usecs TSC skew, fixed it up.
(XEN) CPU#1 had 91 usecs TSC skew, fixed it up.
(XEN) Platform timer is 14.318MHz HPET
(XEN) Allocated console ring of 16 KiB.
(XEN) Brought up 2 CPUs
(XEN) *** LOADING DOMAIN 0 ***
(XEN) Xen kernel: 64-bit, lsb, compat32
(XEN) Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x16b1000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN) Dom0 alloc.: 0000000138000000->000000013c000000 (986239 pages to be allocated)
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN) Loaded kernel: ffffffff81000000->ffffffff816b1000
(XEN) Init. ramdisk: ffffffff816b1000->ffffffff82fd6a00
(XEN) Phys-Mach map: ffffffff82fd7000->ffffffff8377d3f8
(XEN) Start info: ffffffff8377e000->ffffffff8377e4b4
(XEN) Page tables: ffffffff8377f000->ffffffff837a0000
(XEN) Boot stack: ffffffff837a0000->ffffffff837a1000
(XEN) TOTAL: ffffffff80000000->ffffffff83c00000
(XEN) ENTRY ADDRESS: ffffffff81502200
(XEN) Dom0 has maximum 2 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) Xen is relinquishing VGA console.
(XEN) *** Serial input -> DOM0 (type \047CTRL-a\047 three times to switch input to Xen)
(XEN) Freed 176kB init memory.
[-- Attachment #4: xm_info.txt --]
[-- Type: text/plain, Size: 1235 bytes --]
host : BUBBLE
release : 2.6.32-5-xen-amd64
version : #1 SMP Mon Aug 30 11:57:03 UTC 2010
machine : x86_64
nr_cpus : 2
nr_nodes : 1
cores_per_socket : 2
threads_per_core : 1
cpu_mhz : 1995
hw_caps : bfebfbff:20100800:00000000:00000940:0000e3bd:00000000:00000001:00000000
virt_caps : hvm
total_memory : 4094
free_memory : 913
node_to_cpu : node0:0-1
node_to_memory : node0:913
node_to_dma32_mem : node0:847
max_node_id : 0
xen_major : 4
xen_minor : 0
xen_extra : .1-rc6
xen_caps : xen-3.0-x86_64 xen-3.0-x86_32p hvm-3.0-x86_32 hvm-3.0-x86_32p hvm-3.0-x86_64
xen_scheduler : credit
xen_pagesize : 4096
platform_params : virt_start=0xffff800000000000
xen_changeset : unavailable
xen_commandline : placeholder
cc_compiler : gcc version 4.4.5 20100816 (prerelease) (Debian 4.4.4-9)
cc_compile_by : waldi
cc_compile_domain : debian.org
cc_compile_date : Tue Aug 17 21:17:33 UTC 2010
xend_config_format : 4
[-- Attachment #5: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [Pkg-xen-devel] [Xen-devel] xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor
2010-08-31 14:07 ` [Pkg-xen-devel] [Xen-devel] " Mike Viau
@ 2010-08-31 15:43 ` Konrad Rzeszutek Wilk
0 siblings, 0 replies; 15+ messages in thread
From: Konrad Rzeszutek Wilk @ 2010-08-31 15:43 UTC (permalink / raw)
To: Mike Viau; +Cc: waldi, pkg-xen-devel, xen-devel, ijc
On Tue, Aug 31, 2010 at 10:07:43AM -0400, Mike Viau wrote:
>
> That's fantastic because it all just works!
Nice.
>
> Attached is my xm dmesg, dmesg, and xm info output.
>
> I replaced the packages that were already installed with Ian Campbell (2.6.32-21+xen0), and the system just booted as expected with the additional Xen functionality.
.. snip..
> So that being said, what are the chances for inclusion of this added KMS stuff in the official Debian xen kernel packages?
Bastian raised an important part some of patches are hacks. And sure enough
they are :-)
I would love any ideas on how to turn them in upstream material?
>
> I can vouch on the fact that Ian Campbell's packages worked right away with no additional hacks.
>
> I can/will test further naturally...
>
> I think Bastian Blank, is the right person to be informing so I have CC'ed him as well.
>
> Thread at Xen-Devel starts at: http://lists.xensource.com/archives/html/xen-devel/2010-08/msg01809.html
>
> Big thanks too!
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2010-08-31 15:43 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-30 0:08 xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor Mike Viau
2010-08-30 5:52 ` xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor? Pasi Kärkkäinen
2010-08-30 13:32 ` [Pkg-xen-devel] " Mike Viau
2010-08-30 9:58 ` xen-linux-system-2.6.32-5-xen-amd64: Lenovo R61, kernel boots on baremetel, no boot with xen4 hypervisor Ian Campbell
2010-08-30 13:38 ` [Pkg-xen-devel] [Xen-devel] " Mike Viau
2010-08-30 13:39 ` [Pkg-xen-devel] " Ian Campbell
2010-08-30 14:16 ` [Pkg-xen-devel] [Xen-devel] " Mike Viau
2010-08-30 14:44 ` Konrad Rzeszutek Wilk
2010-08-30 15:08 ` Mike Viau
2010-08-30 15:31 ` Konrad Rzeszutek Wilk
2010-08-31 8:21 ` [Pkg-xen-devel] " Ian Campbell
2010-08-31 12:34 ` [Pkg-xen-devel] [Xen-devel] " Mike Viau
2010-08-31 12:38 ` [Pkg-xen-devel] " Ian Campbell
2010-08-31 14:07 ` [Pkg-xen-devel] [Xen-devel] " Mike Viau
2010-08-31 15:43 ` Konrad Rzeszutek Wilk
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.